/* ========================================
   Francesco Luchena - Nutritionist
   More character, less AI slop
   ======================================== */

:root {
  --bg: #F8F6F3;
  --bg-alt: #F0EDE8;
  --text: #1a1a1a;
  --text-muted: #666;
  --accent: #263554;
  --olive: #4A4543;
  --border: #e0ddd8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 50ch;
}

em {
  font-style: italic;
  color: var(--accent);
}

strong {
  color: var(--text);
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Number styling */
.num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(248, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  background: rgba(248, 246, 243, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.nav--scrolled .nav__logo {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
}

.nav__logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}

.nav--scrolled .nav__logo img {
  height: 65px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav__cta:hover {
  background: var(--accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
}

.lang-switch__btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.active {
  color: var(--text);
  font-weight: 500;
}

.lang-switch__divider {
  color: var(--border);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 7rem 3rem 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.1);
  will-change: transform;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-1%, -1%);
  }
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 246, 243, 0.85) 0%, rgba(240, 237, 232, 0.9) 100%);
}

.hero__left {
  position: relative;
  z-index: 1;
}

.hero__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  display: inline-block;
  opacity: 0;
  transform: scale(0.95);
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__first {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  overflow: hidden;
}

.hero__first-inner {
  display: block;
  transform: translateY(100%);
}

.hero__last {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  margin-left: 3rem;
  overflow: hidden;
}

.hero__last-inner {
  display: block;
  transform: translateY(100%);
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero__line {
  width: 60px;
  height: 1px;
  background: var(--text);
  transform-origin: left center;
  transform: scaleX(0);
}

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero CTA Box */
.hero__cta-box {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: var(--bg);
  position: relative;
  max-width: 280px;
  opacity: 0;
  transform: translateY(30px);
}

.hero__cta-box::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}

.hero__cta-box::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.hero__cta-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 0; /* Start hidden for typewriter animation */
  min-height: 1.5em;
}

.hero__cta-label .typewriter-cursor {
  color: var(--accent, #b8a77e);
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.7s step-end infinite;
}

.hero__cta-btn {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--text);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  opacity: 0; /* Start hidden for typewriter animation */
  opacity: 0; /* Start hidden for typewriter animation */
}

.hero__cta-btn .typewriter-cursor {
  color: var(--accent, #b8a77e);
  font-weight: 300;
  margin-left: 2px;
}

.hero__cta-btn:hover {
  background: var(--text);
  color: var(--bg);
}

.hero__cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 24ch;
  line-height: 1.5;
}

.hero__box {
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--bg);
  position: relative;
}

.hero__box::before {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--bg);
  padding: 0 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero__price {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
}

.hero__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 22ch;
  line-height: 1.5;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero Decorative Icons */
.hero__decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor-icon {
  position: absolute;
  opacity: 0.06;
  color: var(--accent);
}

.decor-icon--1 {
  width: 200px;
  height: 200px;
  top: 15%;
  right: 5%;
  animation: float 20s ease-in-out infinite;
}

.decor-icon--2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 3%;
  animation: float 15s ease-in-out infinite reverse;
}

.decor-icon--3 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Philosophy Strip */
.philosophy {
  background: var(--text);
  color: var(--bg);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.philosophy::before,
.philosophy::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.philosophy::before {
  left: 0;
  background: linear-gradient(to right, var(--text), transparent);
}

.philosophy::after {
  right: 0;
  background: linear-gradient(to left, var(--text), transparent);
}

.philosophy__track {
  display: flex;
  align-items: center;
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}

.philosophy__track span {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  padding: 0 1.5rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   About
   ======================================== */
.about {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  border-top: 1px solid var(--border);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38, 53, 84, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about__intro {
  padding-right: 2rem;
}

.about__intro p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.about__bio {
  display: flex;
  gap: 2rem;
  background: var(--bg-alt);
  padding: 2.5rem;
  border-left: 3px solid var(--accent);
}

.about__photo {
  position: relative;
  flex-shrink: 0;
}

.about__img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
}

.about__placeholder {
  width: 100px;
  height: 130px;
  background: var(--olive);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 300;
}

.about__reg {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.625rem;
  padding: 4px 8px;
  letter-spacing: 0.05em;
}

.about__text p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__creds {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   Areas
   ======================================== */
.areas {
  padding: 8rem 3rem;
  background: var(--text);
  color: var(--bg);
}

.areas__header {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.areas__header .num {
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.areas__header h2 {
  color: var(--bg);
  margin-bottom: 0;
}

.areas__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto;
}

.area {
  background: var(--text);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s;
  cursor: default;
}

.area:hover {
  background: var(--olive);
}

.area__num {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Desktop: show header as static title, not accordion */
.area__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: none;
  border: none;
  cursor: default;
  margin-bottom: 0.5rem;
}

.area__header .area__num {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.area__header h3 {
  color: var(--bg);
  font-size: 1.125rem;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.area__header .area__icon {
  display: none;
}

.area__content h3 {
  display: none;
}

.area__content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  max-width: 30ch;
  line-height: 1.6;
}

/* ========================================
   Approach - Editorial Zigzag Layout
   ======================================== */
.approach {
  padding: 8rem 3rem 10rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.approach__content {
  max-width: 1200px;
  margin: 0 auto;
}

.approach__header {
  text-align: center;
  margin-bottom: 5rem;
}

.approach__header .num {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.approach__header h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
}

.approach__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto;
}

/* Canvas - simple flex column */
.approach__canvas {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Hide decorative path on all sizes */
.approach__path {
  display: none;
}

/* Each step - alternating layout */
.approach-step {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Odd steps: image left, text right */
.approach-step--1,
.approach-step--3 {
  flex-direction: row;
}

/* Even steps: text left, image right */
.approach-step--2,
.approach-step--4 {
  flex-direction: row-reverse;
}

/* Image wrapper */
.approach-step__image-wrap {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.approach-step__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.approach-step__image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.approach-step:hover .approach-step__image-wrap img {
  transform: scale(1.03);
}

/* Hide frame element */
.approach-step__frame {
  display: none;
}

/* Text content */
.approach-step__text {
  flex: 1;
  min-width: 0;
}

/* Large decorative number */
.approach-step__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.approach-step__text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-step__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 38ch;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .approach {
    padding: 5rem 1.5rem 6rem;
  }

  .approach__header {
    margin-bottom: 3rem;
  }

  .approach__canvas {
    gap: 3rem;
  }

  .approach-step {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .approach-step__image-wrap {
    flex: none;
    width: 100%;
  }

  .approach-step__image-wrap img {
    aspect-ratio: 16/10;
  }

  .approach-step__text {
    width: 100%;
  }

  .approach-step__text p {
    max-width: 100%;
  }
}

/* Stats Strip */
.stats {
  background: #1A1A1A;
  color: var(--bg);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.stats__item {
  text-align: center;
}

.stats__number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.stats__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

/* ========================================
   Why Choose
   ======================================== */
.why {
  padding: 8rem 3rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(38, 53, 84, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.why__content {
  max-width: 1100px;
  margin: 0 auto;
}

.why__content .num {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.why__content h2 {
  margin-bottom: 1.5rem;
}

.why__intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.why__item {
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.why__item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.why__item-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.why__item-icon svg {
  width: 100%;
  height: 100%;
}

.why__item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.why__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   Practice / Studio
   ======================================== */
.practice {
  padding: 8rem 3rem;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.practice::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(38, 53, 84, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.practice::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 69, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.practice__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.practice__info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.practice__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.practice__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.practice__detail svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Practice Features */
.practice__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.practice__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.practice__feature:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.practice__feature-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.practice__feature-icon svg {
  width: 100%;
  height: 100%;
}

.practice__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.practice__feature-text strong {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

.practice__feature-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.practice__visual {
  display: flex;
  justify-content: center;
}

.practice__card {
  width: 280px;
  height: 320px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.practice__card::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: var(--accent);
  opacity: 0.1;
  z-index: -1;
}

.practice__card-inner {
  text-align: center;
}

.practice__card-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.practice__card-city {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.practice__card-region {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.practice__visual-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  color: var(--accent);
  pointer-events: none;
  z-index: -1;
}

.practice__visual-decor svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   Logo Divider Section
   ======================================== */
.logo-divider {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, var(--bg), var(--bg-alt), var(--bg));
  text-align: center;
}

.logo-divider__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.logo-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.logo-divider__logo img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  filter: grayscale(0.1);
  transition: all 0.3s ease;
}

.logo-divider__logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.logo-divider__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========================================
   Education / Credentials - Timeline Design
   ======================================== */
.education{
  padding: 8rem 3rem;
  background: #DCDAD8;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.education__content {
  max-width: 1100px;
  margin: 0 auto;
}

.education__header {
  margin-bottom: 4rem;
}

.education__header .num {
  color: rgba(80, 70, 60, 0.3);
  margin-bottom: 0.75rem;
}

.education__header h2 {
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.education__intro {
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
}

/* Timeline - 2 Column Grid */
.edu-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.edu-item {
  position: relative;
}

.edu-item__marker {
  display: none;
}

.edu-item__dot {
  display: none;
}

.edu-item__card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(38, 53, 84, 0.15);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.edu-item__card:hover {
  background: #ffffff;
  border-color: rgba(38, 53, 84, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 53, 84, 0.1);
}

.edu-item--featured .edu-item__card {
  background: linear-gradient(135deg, #263554 0%, #3d4f7a 100%);
  border-color: #263554;
  padding: 2.25rem;
}

.edu-item--focus .edu-item__card {
  background: linear-gradient(135deg, #3d4f7a 0%, #5a6d99 100%);
  border-color: #3d4f7a;
}

.edu-item__badge {
  display: inline-block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  background: #263554;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
}

.edu-item__type {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #263554;
  margin-bottom: 0.5rem;
  display: block;
}

.edu-item--featured .edu-item__type,
.edu-item--focus .edu-item__type {
  color: rgba(255, 255, 255, 0.7);
}

.edu-item__title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.edu-item--featured .edu-item__title,
.edu-item--focus .edu-item__title {
  color: #ffffff;
  font-size: 1.5rem;
}

.edu-item__institution {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.edu-item--featured .edu-item__institution,
.edu-item--focus .edu-item__institution {
  color: rgba(255, 255, 255, 0.85);
}

.edu-item__extra {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}

.edu-item--featured .edu-item__extra,
.edu-item--focus .edu-item__extra {
  color: rgba(255, 255, 255, 0.7);
}

.edu-item__detail {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
}

.edu-item--featured .edu-item__detail,
.edu-item--focus .edu-item__detail {
  color: rgba(255, 255, 255, 0.6);
}

/* Stats Bar - Horizontal */
.edu-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #263554 0%, #3d4f7a 100%);
  border-radius: 4px;
}

.edu-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.edu-stat {
  text-align: center;
}

.edu-stat__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.edu-stat__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.edu-focus-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.edu-focus-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.edu-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.edu-focus-tags span {
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Full Width Continuing Education */
.edu-continuous {
  padding-top: 3rem;
  border-top: 1px solid rgba(38, 53, 84, 0.1);
}

.edu-continuous__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.edu-continuous__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
  white-space: nowrap;
}

.edu-continuous__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(38, 53, 84, 0.2), transparent);
}

.edu-continuous__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.edu-mini {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(38, 53, 84, 0.1);
  transition: all 0.3s ease;
}

.edu-mini:hover {
  background: #ffffff;
  border-color: rgba(38, 53, 84, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(38, 53, 84, 0.08);
}

.edu-mini__tag {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #263554;
  margin-bottom: 0.5rem;
  display: block;
}

.edu-mini__title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.edu-mini__school {
  font-size: 0.75rem;
  color: #888;
}

/* ========================================
   Continuing Education - Standalone Section
   ======================================== */
.continuous {
  padding: 8rem 3rem;
  background: #F8F6F1;
  position: relative;
}

.continuous__content {
  max-width: 1100px;
  margin: 0 auto;
}

.continuous__header {
  margin-bottom: 4rem;
  text-align: center;
}

.continuous__header .num {
  color: rgba(139, 117, 53, 0.3);
  margin-bottom: 0.75rem;
}

.continuous__header h2 {
  color: #1A1A1A;
  margin-bottom: 1rem;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
}

.continuous__intro {
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.continuous__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ========================================
   Testimonials
   ======================================== */
/* ========================================
   Testimonials Header Section
   ======================================== */
.testimonials-header{
  padding: 8rem 3rem;
  background: #ffffff;
}

.testimonials-header__inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-header__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonials-header__inner h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.testimonials-header__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ========================================
   Testimonials Quotes Section
   ======================================== */
.testimonials {
  padding: 4rem 3rem 6rem;
  background: #ffffff;
}

.testimonials__quotes {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.t-quote {
  position: relative;
  padding-left: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.t-quote:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.t-quote:hover .t-quote__marks {
  opacity: 1;
  transform: translateX(0);
}

.t-quote__marks {
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  opacity: 0.5;
  transition: all 0.4s ease;
  transform: translateX(-10px);
}

.t-quote__text {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.t-quote--1 .t-quote__text {
  font-size: 1.5rem;
}

.t-quote--2 {
  margin-left: 2rem;
}

.t-quote--3 {
  margin-left: 4rem;
}

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

.t-quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.t-quote__avatar--warm {
  background: linear-gradient(135deg, #e8c4a0 0%, #d4a574 100%);
  color: #5a3e2b;
}

.t-quote__avatar--blue {
  background: linear-gradient(135deg, #5a7a9a 0%, #3d5a80 100%);
  color: #ffffff;
}

.t-quote__avatar--soft {
  background: linear-gradient(135deg, #c9b8a8 0%, #a89888 100%);
  color: #4a4038;
}

.t-quote__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.t-quote__name {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.t-quote__result {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4a574;
}

/* ========================================
   Contact
   ======================================== */
.contact {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(38, 53, 84, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact__content {
  max-width: 600px;
  text-align: center;
}

.contact__content > p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact__ways {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--bg-alt);
}

.contact__way {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.contact__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact__value {
  font-size: 0.9375rem;
  color: var(--text);
}

a.contact__way:hover .contact__value {
  color: var(--accent);
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 1rem 2rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 2px;
  transition: all 0.3s;
}

.contact__cta:hover {
  background: var(--accent);
  padding-right: 2.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 3rem 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 400;
}

.footer__title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.footer__col p,
.footer__col a {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--text);
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__reg-info {
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
}

/* ========================================
   Mobile Navigation & Hamburger
   ======================================== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  padding: 5rem 2rem 8rem;
  max-height: 100vh;
  overflow-y: auto;
  width: 100%;
}

.mobile-menu__content a {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu__content a:hover {
  color: var(--accent);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  background: var(--text);
  color: var(--bg) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 200px;
}

.mobile-menu__cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.mobile-menu__cta:active {
  transform: translateY(0);
}

.mobile-menu__lang {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
}

.mobile-lang__btn {
  flex: 1;
  padding: 0.875rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-lang__btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.mobile-lang__btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

/* Desktop only helper */
.desktop-only {
  display: block;
}

/* Mobile background for hero */
.hero__mobile-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .areas__list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  /* Mobile Navigation */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
  }

  .nav__actions {
    display: none;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav__logo img {
    height: 60px;
  }

  /* Hero Mobile */
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero__video,
  .hero__video-overlay {
    display: none;
  }

  .hero__mobile-bg {
    display: block;
  }

  .hero__tag {
    font-size: 0.6875rem;
    margin-bottom: 1.5rem;
  }

  .hero__first,
  .hero__last {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero__last {
    margin-left: 0;
  }

  .hero__sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__right {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .hero__box {
    padding: 1.75rem;
  }

  .hero__price {
    font-size: 2.5rem;
  }

  .hero__scroll {
    display: none;
  }

  .decor-icon {
    display: none;
  }

  /* About Mobile */
  .about {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2.5rem;
  }

  .about__intro {
    padding-right: 0;
  }

  .about__intro p {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .about__bio {
    flex-direction: column;
    padding: 1.75rem;
  }

  .about__img {
    width: 120px;
    height: 150px;
  }

  .about__text p {
    font-size: 0.9375rem;
  }

  .about__creds {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Areas Mobile - Accordion */
  .areas {
    padding: 5rem 2rem;
  }

  .areas__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }

  .areas__list {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }

  .area {
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: block;
  }

  .area:last-child {
    border-bottom: none;
  }

  /* Accordion header - visible on mobile */
  .area__header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1.25rem;
  }

  .area__header .area__num {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
  }

  .area__header h3 {
    flex: 1;
    font-size: 1.25rem;
    color: var(--bg);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    margin: 0;
  }

  .area__icon {
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .area__header[aria-expanded="true"] .area__icon {
    transform: rotate(180deg);
  }

  /* Accordion content - collapsible on mobile */
  .area__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem 0 3rem;
  }

  .area__header[aria-expanded="true"] + .area__content {
    max-height: 250px;
    padding-bottom: 1.25rem;
  }

  .area__content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
  }

  /* Approach Mobile */
  .approach {
    padding: 4rem 1.5rem;
  }

  .approach__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step {
    padding: 1.5rem;
  }

  .step__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  .step p {
    font-size: 0.9375rem;
  }

  /* Stats Mobile */
  .stats {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding: 2rem 1.5rem;
  }

  .stats__divider {
    display: none;
  }

  .stats__item {
    flex: 1 1 40%;
  }

  .stats__number {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }

  .stats__label {
    font-size: 0.6875rem;
  }

  /* Why Mobile */
  .why {
    padding: 4rem 1.5rem;
  }

  .why__intro {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why__item {
    padding: 1.5rem;
  }

  .why__item-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
  }

  .why__item h3 {
    font-size: 1rem;
  }

  .why__item p {
    font-size: 0.875rem;
  }

  /* Practice Mobile */
  .practice {
    padding: 4rem 1.5rem;
  }

  .practice__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .practice__visual {
    order: -1;
  }

  .practice__card {
    width: 100%;
    max-width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .practice__card-city {
    font-size: 2.25rem;
  }

  .practice__info p {
    font-size: 0.9375rem;
  }

  .practice__details {
    margin-top: 1.5rem;
  }

  .practice__detail {
    font-size: 0.875rem;
  }

  .practice__features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .practice__feature {
    padding: 1rem;
  }

  .practice__feature-icon {
    width: 32px;
    height: 32px;
  }

  .practice__visual-decor {
    display: none;
  }

  /* Logo Divider Mobile */
  .logo-divider {
    padding: 4rem 1.5rem;
  }

  .logo-divider__content {
    gap: 1.25rem;
  }

  .logo-divider__logo img {
    height: 45px;
  }

  .logo-divider__tagline {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  /* Testimonials Mobile */
  .testimonials-header {
    padding: 3rem 1.5rem;
  }

  .testimonials-header__inner h2 {
    font-size: 2rem;
  }

  .testimonials {
    padding: 3rem 1.5rem 4rem;
  }

  .testimonials__quotes {
    gap: 2rem;
  }

  .t-quote {
    padding-left: 2rem;
  }

  .t-quote__text {
    font-size: 1.1rem;
  }

  .t-quote--1 .t-quote__text {
    font-size: 1.15rem;
  }

  .t-quote--2,
  .t-quote--3 {
    margin-left: 0;
  }

  .t-quote__marks {
    font-size: 2.5rem;
    left: -0.25rem;
    top: -0.25rem;
  }

  /* Education Mobile */
  .education {
    padding: 4rem 1.5rem;
    overflow-x: hidden;
  }

  .education__header {
    margin-bottom: 2rem;
  }

  .education__intro {
    font-size: 0.875rem;
  }

  /* Timeline - Compact vertical on mobile */
  .edu-timeline {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .edu-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .edu-item__marker {
    display: none;
  }

  .edu-item__card {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
  }

  .edu-item__badge {
    flex-shrink: 0;
    font-size: 0.5625rem;
    padding: 0.25rem 0.5rem;
  }

  .edu-item--featured .edu-item__card {
    padding: 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .edu-item--featured .edu-item__badge {
    align-self: flex-start;
  }

  .edu-item--featured .edu-item__card {
    padding: 1.75rem;
  }

  .edu-item__title {
    font-size: 1.25rem;
  }

  .edu-item--featured .edu-item__title,
  .edu-item--focus .edu-item__title {
    font-size: 1.35rem;
  }

  /* Stats Bar Mobile */
  .edu-stats-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
  }

  .edu-stat-divider {
    width: 60px;
    height: 1px;
  }

  .edu-stat__num {
    font-size: 2rem;
  }

  .edu-focus-inline {
    flex-direction: column;
    gap: 0.75rem;
  }

  .edu-focus-tags span {
    font-size: 0.6875rem;
  }

  /* Continuing Education - Horizontal Scroll on Mobile */
  .edu-continuous__header {
    margin-bottom: 1rem;
  }

  .edu-continuous__items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .edu-continuous__items::-webkit-scrollbar {
    display: none;
  }

  .edu-mini {
    flex: 0 0 auto;
    width: 180px;
    padding: 1rem;
    margin: 0;
  }

  .edu-mini__tag {
    font-size: 0.5625rem;
    padding: 0.1875rem 0.5rem;
  }

  .edu-mini__title {
    font-size: 0.8125rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .edu-mini__school {
    font-size: 0.625rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .edu-mini__title {
    font-size: 1rem;
  }

  /* Continuing Education Section Mobile */
  .continuous {
    padding: 4rem 1.5rem;
    overflow: hidden;
  }

  .continuous__header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .continuous__items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .continuous__items::-webkit-scrollbar {
    display: none;
  }

  /* Logo watermark background on mobile */
  .continuous::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    max-width: 1100px;
    height: 560px;
    background-image: url('logotransparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
  }

  .continuous__content {
    position: relative;
    z-index: 1;
  }

  /* Contact Mobile */
  .contact {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .contact__content > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact__ways {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .contact__label {
    font-size: 0.6875rem;
  }

  .contact__value {
    font-size: 0.9375rem;
  }

  .contact__cta {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 2.5rem 1.5rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer__col {
    text-align: center;
  }

  .footer__col h4 {
    font-size: 0.625rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 0.8125rem;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer__legal {
    gap: 1.5rem;
  }

  .footer__meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__reg-info {
    padding-right: 0;
    border-right: none;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }

  /* Hero CTA Mobile */
  .hero__cta-box {
    padding: 1.75rem 1.5rem;
    max-width: 100%;
  }

  .hero__cta-btn {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Cookie Banner Mobile */
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner__content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-banner__text {
    font-size: 0.8125rem;
    max-width: 100%;
  }

  .cookie-banner__buttons {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 0.875rem 1rem;
  }

  /* Modal Mobile */
  .modal__content {
    padding: 1.5rem;
    max-height: 90vh;
  }

  .modal__content h2 {
    font-size: 1.375rem;
  }

  .modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  /* Philosophy Strip Mobile */
  .philosophy {
    padding: 0.875rem 0;
  }

  .philosophy::before,
  .philosophy::after {
    width: 60px;
  }

  .philosophy__track span {
    font-size: 0.6875rem;
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  /* Extra small screens */
  .hero__first,
  .hero__last {
    font-size: 2.25rem;
  }

  .hero__box {
    padding: 1.5rem;
  }

  .hero__price {
    font-size: 2rem;
  }

  .stats__item {
    flex: 1 1 45%;
  }

  .mobile-menu__content a {
    font-size: 1.5rem;
  }

  .creds__quote blockquote {
    font-size: 1rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .nav__links a,
  .nav__cta,
  .lang-switch__btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .area:hover,
  .step:hover,
  .why__item:hover,
  .cred-card:hover {
    transform: none;
  }

  /* Remove hover effects on touch */
  .contact__cta:hover {
    padding-right: 2rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .philosophy__track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: var(--bg);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.cookie-banner__text a {
  color: var(--bg);
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: var(--accent);
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.75rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--decline:hover {
  border-color: var(--bg);
}

.cookie-banner__btn--accept {
  background: var(--bg);
  color: var(--text);
}

.cookie-banner__btn--accept:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ========================================
   Modal (Privacy & Cookie Policy)
   ======================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  background: var(--bg);
  max-width: 700px;
  max-height: 80vh;
  width: 90%;
  padding: 2.5rem;
  overflow-y: auto;
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.modal__close:hover {
  color: var(--text);
}

.modal__content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal__content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.modal__body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 100%;
  line-height: 1.7;
}

.modal__body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.modal__body li {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Footer Links */
.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   Enhanced Mobile Optimization
   ======================================== */
@media (max-width: 480px) {
  /* Base improvements */
  html {
    font-size: 15px;
  }

  /* Better navigation */
  .nav {
    padding: 0.875rem 1rem;
  }

  .nav__logo img {
    height: 50px;
    width: auto;
  }

  .nav__hamburger span {
    width: 22px;
  }

  /* Mobile menu improvements */
  .mobile-menu__content a {
    font-size: 1.375rem;
    padding: 0.625rem 0;
  }

  .mobile-menu__content a:first-child {
    padding-top: 0;
  }

  /* Hero optimizations */
  .hero {
    padding: 5.5rem 1rem 2.5rem;
  }

  .hero__tag {
    font-size: 0.625rem;
    margin-bottom: 1rem;
  }

  .hero__first,
  .hero__last {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__sub {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .hero__cta-box {
    padding: 1.25rem;
  }

  .hero__cta-label {
    font-size: 0.6875rem;
  }

  .hero__cta-btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hero__cta-note {
    font-size: 0.6875rem;
  }

  /* About section */
  .about {
    padding: 3rem 1rem;
  }

  .about__intro h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .about__intro p {
    font-size: 0.9375rem;
  }

  .about__bio {
    padding: 1.25rem;
  }

  .about__photo {
    margin-right: 1rem;
  }

  .about__img {
    width: 100px;
    height: 130px;
  }

  .about__reg {
    font-size: 0.5625rem;
  }

  .about__text p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  /* Areas section - Accordion */
  .areas {
    padding: 4rem 1.25rem;
  }

  .areas__header h2 {
    font-size: 1.875rem;
  }

  .area__header {
    padding: 1rem 0;
  }

  .area__header .area__num {
    font-size: 0.6875rem;
  }

  .area__header h3 {
    font-size: 1.125rem;
    font-weight: 600;
  }

  .area__icon {
    width: 20px;
    height: 20px;
  }

  .area__content p {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  /* Why section */
  .why {
    padding: 3rem 1rem;
  }

  .why__content h2 {
    font-size: 1.5rem;
  }

  .why__intro {
    font-size: 0.875rem;
  }

  .why__item {
    padding: 1.25rem;
  }

  .why__item-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
  }

  .why__item h3 {
    font-size: 0.9375rem;
  }

  .why__item p {
    font-size: 0.8125rem;
  }

  /* Practice section */
  .practice {
    padding: 3rem 1rem;
  }

  .practice__info h2 {
    font-size: 1.75rem;
  }

  .practice__info p {
    font-size: 0.875rem;
  }

  .practice__card {
    max-width: 180px;
    height: 180px;
  }

  .practice__card-city {
    font-size: 1.75rem;
  }

  .practice__card-region {
    font-size: 0.75rem;
  }

  .practice__feature {
    padding: 0.875rem;
  }

  .practice__feature-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
  }

  .practice__feature-text strong {
    font-size: 0.875rem;
  }

  .practice__feature-text span {
    font-size: 0.6875rem;
  }

  /* Logo Divider section */
  .logo-divider {
    padding: 3rem 1rem;
  }

  .logo-divider__content {
    gap: 1rem;
  }

  .logo-divider__logo img {
    height: 40px;
  }

  .logo-divider__tagline {
    font-size: 0.6875rem;
    margin-top: 1rem;
  }

  /* Education section */
  .education {
    padding: 3rem 1rem;
  }

  .education__header h2 {
    font-size: 1.75rem;
  }

  .education__intro {
    font-size: 0.875rem;
  }

  .edu-item__card {
    padding: 1.25rem;
  }

  .edu-item__badge {
    font-size: 0.5625rem;
    padding: 0.25rem 0.625rem;
  }

  .edu-item__title {
    font-size: 1.125rem !important;
  }

  .edu-item__institution {
    font-size: 0.75rem;
  }

  .edu-item__detail {
    font-size: 0.6875rem;
  }

  .edu-stat__num {
    font-size: 1.75rem;
  }

  .edu-stat__label {
    font-size: 0.6875rem;
  }

  .edu-mini {
    padding: 1rem;
  }

  .edu-mini__tag {
    font-size: 0.5625rem;
    padding: 0.1875rem 0.5rem;
  }

  .edu-mini__title {
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .edu-mini__school {
    font-size: 0.6875rem;
  }

  /* Testimonials */
  .testimonials-header {
    padding: 2.5rem 1rem;
  }

  .testimonials-header__inner h2 {
    font-size: 1.75rem;
  }

  .testimonials-header__tagline {
    font-size: 0.875rem;
  }

  .testimonials {
    padding: 2rem 1rem 3rem;
  }

  .t-quote {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .t-quote__marks {
    font-size: 2rem;
    left: 0;
    top: 0;
  }

  .t-quote__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .t-quote__avatar {
    width: 40px;
    height: 40px;
  }

  .t-quote__name {
    font-size: 0.875rem;
  }

  .t-quote__result {
    font-size: 0.75rem;
  }

  /* Contact section */
  .contact {
    padding: 3rem 1rem;
  }

  .contact__content h2 {
    font-size: 1.75rem;
  }

  .contact__content > p {
    font-size: 0.9375rem;
  }

  .contact__ways {
    padding: 1.25rem;
    gap: 1rem;
  }

  .contact__label {
    font-size: 0.625rem;
  }

  .contact__value {
    font-size: 0.875rem;
  }

  .contact__cta {
    font-size: 0.875rem;
    padding: 1rem 1.25rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }

  .footer__name {
    font-size: 1rem;
  }

  .footer__title {
    font-size: 0.6875rem;
  }

  .footer__info {
    gap: 1rem;
  }

  .footer__col h4 {
    font-size: 0.5625rem;
    margin-bottom: 0.5rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 0.75rem;
  }

  .footer__legal a {
    font-size: 0.6875rem;
  }

  /* Cookie banner */
  .cookie-banner {
    padding: 0.875rem;
  }

  .cookie-banner__text {
    font-size: 0.75rem;
  }

  .cookie-banner__btn {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  /* Modal */
  .modal__content {
    padding: 1.25rem;
    width: 95%;
  }

  .modal__content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .modal__content h3 {
    font-size: 1rem;
  }

  .modal__body p {
    font-size: 0.875rem;
  }

  .modal__body ul {
    margin-left: 1rem;
  }

  .modal__body li {
    font-size: 0.8125rem;
  }
}

/* ========================================
   Safe Area Insets (for notched phones)
   ======================================== */
@supports (padding: max(0px)) {
  .nav {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .whatsapp-btn {
    bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
    right: max(24px, env(safe-area-inset-right));
  }

  .cookie-banner {
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  }

  @media (max-width: 768px) {
    .nav {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
    }

    .whatsapp-btn {
      bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
      right: max(20px, env(safe-area-inset-right));
    }
  }
}

/* ========================================
   Landscape Mobile Optimization
   ======================================== */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 2rem;
  }

  .hero__cta-box {
    max-width: 280px;
  }

  .about__bio {
    flex-direction: row;
  }

  .about__img {
    width: 80px;
    height: 100px;
  }

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

  .t-quote {
    padding: 1.5rem;
  }

  .t-quote__text {
    font-size: 0.9375rem;
  }
}

/* ========================================
   Touch Target Improvements
   ======================================== */
@media (max-width: 768px) {
  /* Ensure all interactive elements meet 44x44px minimum */
  .nav__hamburger {
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-menu__content a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .mobile-lang__btn {
    min-height: 44px;
    min-width: 80px;
  }

  .contact__cta {
    min-height: 52px;
  }

  .hero__cta-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .cookie-banner__btn {
    min-height: 44px;
  }

  .footer__col a {
    display: inline-block;
    padding: 0.25rem 0;
  }

  /* Better tap highlighting */
  a, button {
    -webkit-tap-highlight-color: rgba(38, 53, 84, 0.1);
  }
}

/* ========================================
   Performance Optimizations for Mobile
   ======================================== */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  section {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Simplify shadows */
  .why__item,
  .practice__feature,
  .edu-item__card,
  .contact__ways {
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .why__item {
    background: var(--bg-alt);
    border: none;
  }

  /* Optimize text rendering */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
  }

  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Mobile menu safe area */
  .mobile-menu__content {
    padding-top: max(5rem, env(safe-area-inset-top) + 4rem);
    padding-bottom: max(8rem, calc(env(safe-area-inset-bottom) + 6rem));
  }
}
