/* ============================================
   MYNDME.IA — Global Stylesheet
   Palette: #3D0B02 (dark brown) + #D0422A (red-orange) + #FFFFFD (off-white)
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  /* Primary palette */
  --myndme-dark: #3D0B02;
  --myndme-primary: #D0422A;
  --myndme-primary-hover: #B8391F;
  --myndme-primary-light: #E85D45;
  --myndme-light: #FFFFFD;

  /* Warm backgrounds */
  --myndme-warm-bg: #FFF8F6;
  --myndme-warm-bg-alt: #FEF0EB;
  --myndme-warm-bg-dark: #FCDDD4;

  /* Text */
  --myndme-text: #2D0A01;
  --myndme-text-light: #6B3A2E;
  --myndme-text-muted: #9B6B5E;

  /* Borders & misc */
  --myndme-border: #E8C4B8;
  --myndme-border-light: #F2DDD6;
  --myndme-shadow: rgba(61, 11, 2, 0.08);
  --myndme-shadow-hover: rgba(61, 11, 2, 0.15);

  /* Gradients */
  --myndme-gradient: linear-gradient(135deg, #3D0B02 0%, #D0422A 100%);
  --myndme-gradient-subtle: linear-gradient(135deg, #FEF0EB 0%, #FFF8F6 100%);
  --myndme-gradient-hero: linear-gradient(160deg, #3D0B02 0%, #5A1A0A 40%, #D0422A 100%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --section-padding-sm: 4rem 0;
  --container-max: 1200px;
  --container-padding: 0 1.5rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--myndme-text);
  background-color: var(--myndme-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--myndme-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--myndme-primary-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--myndme-primary);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--myndme-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  color: var(--myndme-text);
}

::selection {
  background-color: var(--myndme-primary);
  color: var(--myndme-light);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--myndme-warm-bg);
}

.section--warm {
  background: var(--myndme-gradient-subtle);
}

.section--dark {
  background: var(--myndme-gradient-hero);
  color: var(--myndme-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--myndme-light);
}

.section--dark .text-muted {
  color: rgba(255, 255, 253, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--myndme-text-light);
  max-width: 650px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--myndme-primary);
  margin-bottom: 0.75rem;
}

.section--dark .section-label {
  color: var(--myndme-primary-light);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 253, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--myndme-border-light);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px var(--myndme-shadow);
  background: rgba(255, 255, 253, 0.97);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 42px;
  width: auto;
  transition: transform var(--transition-base);
}

.navbar__logo:hover img {
  transform: rotate(-3deg) scale(1.03);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--myndme-text);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--myndme-primary);
  transition: width var(--transition-base);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--myndme-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

.lang-switcher a {
  color: var(--myndme-text-muted);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.lang-switcher a:hover {
  color: var(--myndme-primary);
}

.lang-switcher a.active {
  color: var(--myndme-primary);
  background: var(--myndme-warm-bg-alt);
  font-weight: 600;
}

.lang-switcher__sep {
  color: var(--myndme-border);
  user-select: none;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1010;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--myndme-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 253, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.navbar__mobile a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--myndme-text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--myndme-border-light);
  transition: color var(--transition-fast);
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--myndme-primary);
}

.navbar__mobile .lang-switcher {
  margin-top: 1.5rem;
  font-size: 1rem;
}

.navbar__mobile .btn {
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--myndme-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--myndme-primary);
  color: var(--myndme-light);
  box-shadow: 0 4px 14px rgba(208, 66, 42, 0.3);
}

.btn--primary:hover {
  background: var(--myndme-primary-hover);
  color: var(--myndme-light);
  box-shadow: 0 6px 20px rgba(208, 66, 42, 0.4);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--myndme-primary);
  border: 2px solid var(--myndme-primary);
}

.btn--secondary:hover {
  background: var(--myndme-primary);
  color: var(--myndme-light);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--myndme-dark);
  color: var(--myndme-light);
  box-shadow: 0 4px 14px rgba(61, 11, 2, 0.3);
}

.btn--dark:hover {
  background: #551508;
  color: var(--myndme-light);
  box-shadow: 0 6px 20px rgba(61, 11, 2, 0.4);
  transform: translateY(-2px);
}

.btn--white {
  background: #ffffff;
  color: var(--myndme-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.btn--white:hover {
  background: #ffffff;
  color: var(--myndme-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--icon svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--myndme-light);
  border: 1px solid var(--myndme-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--myndme-border);
  box-shadow: 0 8px 30px var(--myndme-shadow);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--myndme-warm-bg-alt);
  color: var(--myndme-primary);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.card:hover .card__icon {
  background: var(--myndme-primary);
  color: var(--myndme-light);
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--myndme-dark);
}

.card__text {
  color: var(--myndme-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--myndme-primary);
}

.card__link:hover {
  gap: 0.6rem;
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   GRID
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  background: var(--myndme-dark);
  color: var(--myndme-light);
  position: relative;
  overflow: hidden;
}

/* Dark overlay for text readability over background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61, 11, 2, 0.82) 0%, rgba(61, 11, 2, 0.55) 50%, rgba(208, 66, 42, 0.45) 100%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__logo {
  width: 160px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero__logo img {
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero__title {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__title span {
  color: #ff8a6a;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #ffffff;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  font-style: italic;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 253, 0.8);
  background: rgba(255, 255, 253, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 253, 0.12);
}

.hero__badge span {
  font-size: 1.1rem;
}

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1.5rem;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--myndme-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section--dark .stat__number {
  color: var(--myndme-primary-light);
}

.stat__label {
  font-size: 0.95rem;
  color: var(--myndme-text-light);
  font-weight: 500;
}

.section--dark .stat__label {
  color: rgba(255, 255, 253, 0.75);
}

/* ============================================
   SERVICE DETAIL (services page)
   ============================================ */
.service-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--myndme-border-light);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--myndme-warm-bg-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-block__problem {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--myndme-dark);
  margin-bottom: 1rem;
  font-style: italic;
}

.service-block__solution {
  font-size: 1.05rem;
  color: var(--myndme-text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.service-block__examples {
  color: var(--myndme-text-light);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-block__examples li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  list-style: none;
}

.service-block__examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--myndme-primary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  background: var(--myndme-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 253, 0.3);
  font-size: 1rem;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--myndme-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--myndme-border-light);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--myndme-primary);
  box-shadow: 0 8px 30px var(--myndme-shadow);
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--myndme-dark);
}

.value-card__versus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--myndme-text-light);
}

.value-card__versus strong {
  color: var(--myndme-primary);
}

@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--myndme-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--myndme-text);
  background: var(--myndme-light);
  border: 1.5px solid var(--myndme-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--myndme-primary);
  box-shadow: 0 0 0 3px rgba(208, 66, 42, 0.1);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--myndme-text-muted);
}

.office-card {
  background: var(--myndme-warm-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--myndme-border-light);
  transition: all var(--transition-base);
}

.office-card:hover {
  border-color: var(--myndme-primary);
  transform: translateY(-2px);
}

.office-card__flag {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.office-card__city {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--myndme-dark);
  margin-bottom: 0.25rem;
}

.office-card__country {
  color: var(--myndme-text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--myndme-dark);
  color: rgba(255, 255, 253, 0.7);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  color: rgba(255, 255, 253, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--myndme-light);
  margin-bottom: 1.25rem;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 253, 0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--myndme-primary-light);
}

.footer__locations {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 253, 0.6);
}

.footer__location span:first-child {
  font-size: 1.1rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 253, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  color: rgba(255, 255, 253, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer__bottom a {
  color: rgba(255, 255, 253, 0.4);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--myndme-primary-light);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand p {
    max-width: 100%;
  }
  .footer__locations {
    align-items: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 5rem 1.5rem;
  background: var(--myndme-gradient-hero);
  color: var(--myndme-light);
}

.cta-section h2 {
  color: var(--myndme-light);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 253, 0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--myndme-text-light); }
.text-primary { color: var(--myndme-primary); }
.text-white { color: var(--myndme-light); }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-sm);
  }

  .navbar__links,
  .navbar__right .btn {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 4rem;
  }

  .hero__logo {
    width: 120px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__badges {
    gap: 0.75rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 2.5rem;
  }

  .btn--lg {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__logo {
    width: 140px;
  }

  .navbar__links {
    gap: 1.25rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero::before,
  .hero::after {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    background: #fff;
    color: #000;
    min-height: auto;
    padding: 2rem 0;
  }
}
