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

  :root {
    --navy: #0D1B2A;
    --navy-mid: #1A2E45;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-pale: #F7EDD3;
    --white: #FFFFFF;
    --off-white: #F9F7F4;
    --text-muted: #6B7A8D;
    --border: rgba(201,168,76,0.18);
    --glass-bg: rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.15);
    --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--off-white); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 5vw;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background var(--transition), box-shadow var(--transition);
  }
  nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  nav.scrolled .nav-logo { color: var(--navy); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  nav.scrolled .nav-links a { color: var(--text-muted); }
  .nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.45);
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all var(--transition-fast);
  }
  nav.scrolled .nav-cta {
    border-color: var(--gold);
    color: var(--gold);
  }
  .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy) !important;
  }
  .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .nav-burger span { width: 24px; height: 1.5px; background: var(--white); transition: all var(--transition-fast); display: block; }
  nav.scrolled .nav-burger span { background: var(--navy); }

  /* ── HERO ── */
  #hero {
    position: relative;
    height: 100svh; min-height: 620px;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 100px 5vw 7vh;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1600&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.08);
    transition: transform 0.1s linear;
    will-change: transform;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      160deg,
      rgba(13,27,42,0.72) 0%,
      rgba(13,27,42,0.55) 40%,
      rgba(13,27,42,0.80) 100%
    );
  }
  .hero-content { position: relative; z-index: 2; max-width: 800px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.4rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--gold);
  }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 300;
    line-height: 1.07;
    color: var(--white);
    margin-bottom: 1.4rem;
    opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.4rem;
    opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.9s 0.65s forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: none; cursor: pointer;
    transition: all var(--transition-fast);
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.35); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all var(--transition-fast);
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

  .hero-stats {
    position: absolute; bottom: 7vh; right: 5vw;
    display: flex; gap: 2.5rem;
    z-index: 2;
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }
  .stat {
    text-align: center;
    padding: 1.4rem 1.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 16px;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
    display: block;
  }

  /* ── SCROLL INDICATOR ── */
  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0; animation: fadeIn 1s 1.2s forwards;
    z-index: 2;
  }
  .scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s 1.5s infinite; }

  /* ── SECTIONS ── */
  section { padding: 8rem 5vw; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    max-width: 680px;
  }
  .section-title em { font-style: italic; color: var(--gold); }

  /* ── WHO SECTION ── */
  #who { background: var(--off-white); }
  .who-intro { max-width: 600px; margin-bottom: 4rem; }
  .who-sub {
    margin-top: 1rem;
    font-size: 1.05rem; font-weight: 300; line-height: 1.75;
    color: var(--text-muted);
  }
  .who-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
  .who-card {
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    /* overflow прибраний з картки — тепер текст може виходити за межі */
  }
  .who-card-img-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .who-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition);
    filter: brightness(0.75) saturate(0.8);
  }
  .who-card:hover .who-card-img-wrap img,
  .who-card.active .who-card-img-wrap img { transform: scale(1.06); filter: brightness(0.6) saturate(0.9); }
  .who-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.1) 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2.5rem 2rem;
    transition: background var(--transition);
    overflow: hidden;
  }
  .who-card-tag {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .who-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
  }
  .who-card-text {
    font-size: 0.88rem; line-height: 1.7;
    color: rgba(255,255,255,0.7);
    transform: translateY(12px); opacity: 0;
    transition: all var(--transition);
    max-height: 0; overflow: hidden;
  }
  .who-card:hover .who-card-text,
  .who-card.active .who-card-text { transform: translateY(0); opacity: 1; max-height: 300px; }
  .who-card-result {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold-light);
    font-size: 0.72rem; letter-spacing: 0.1em;
    border-radius: 100px;
    transform: translateY(12px); opacity: 0;
    transition: all var(--transition) 0.05s;
  }
  .who-card:hover .who-card-result,
  .who-card.active .who-card-result { transform: translateY(0); opacity: 1; }

  /* ── BENEFITS ── */
  #benefits { background: var(--white); }
  .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
  .benefit-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 20px;
    transition: all var(--transition);
    cursor: default;
    position: relative; overflow: hidden;
  }
  .benefit-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
  }
  .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,42,0.08); border-color: var(--border); }
  .benefit-card:hover::before { transform: scaleX(1); }
  .benefit-icon {
    width: 52px; height: 52px;
    background: var(--gold-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    transition: background var(--transition-fast);
  }
  .benefit-card:hover .benefit-icon { background: var(--gold); }
  .benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.7rem;
  }
  .benefit-text { font-size: 0.88rem; line-height: 1.75; color: var(--text-muted); }

  /* ── WHY ME ── */
  #why {
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  #why::before {
    content: 'ENGLISH';
    position: absolute; right: -2vw; top: 50%; transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    pointer-events: none; white-space: nowrap;
    letter-spacing: -0.04em;
  }
  .why-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .why-left .section-title { color: var(--white); max-width: 500px; }
  .why-left .section-eyebrow { color: var(--gold); }
  .why-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-top: 1.8rem;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
  }
  .why-cta-wrap { margin-top: 2.5rem; }
  .why-right { display: flex; flex-direction: column; gap: 1.5rem; }
  .why-metric {
    display: flex; align-items: flex-start; gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    transition: all var(--transition-fast);
  }
  .why-metric:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.2); }
  .why-metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 400;
    color: var(--gold);
    line-height: 1; min-width: 80px;
  }
  .why-metric-body h4 { font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.35rem; }
  .why-metric-body p { font-size: 0.83rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

  /* ── ABOUT ── */
  #about { background: var(--off-white); }
  .about-inner { display: grid; grid-template-columns: 420px 1fr; gap: 6rem; align-items: start; }
  .about-photo-wrap { position: relative; }
  .about-photo {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 24px;
    display: block;
  }
  .about-photo-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(201,168,76,0.35);
  }
  .about-photo-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 500;
    line-height: 1;
  }
  .about-photo-badge span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }
  .about-content { padding-top: 0.5rem; }
  .about-bio {
    font-size: 1.05rem; line-height: 1.85;
    color: var(--text-muted); font-weight: 300;
    margin-top: 1.8rem;
  }
  .about-bio strong { color: var(--navy); font-weight: 500; }
  .about-certs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
  .cert-tag {
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem; letter-spacing: 0.06em;
    color: var(--navy);
    background: var(--white);
    transition: all var(--transition-fast);
  }
  .cert-tag:hover { background: var(--gold-pale); border-color: var(--gold); }
  .about-achievements { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .achievement {
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(13,27,42,0.06);
  }
  .achievement h4 { font-size: 0.82rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
  .achievement p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

  /* ── REVIEWS ── */
  #reviews { background: var(--white); }
  .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
  .slider-controls { display: flex; gap: 0.7rem; }
  .slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(13,27,42,0.15);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--navy); font-size: 1rem;
  }
  .slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
  .reviews-track-wrap { overflow: hidden; }
  .reviews-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .review-card {
    flex: 0 0 calc(33.333% - 1rem);
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--off-white);
    border: 1px solid rgba(13,27,42,0.06);
    transition: all var(--transition);
    cursor: default;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,42,0.07); }
  .review-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; color: var(--gold); font-size: 0.85rem; }
  .review-text { font-size: 0.95rem; line-height: 1.8; color: var(--navy); font-style: italic; margin-bottom: 1.8rem; }
  .review-author { display: flex; align-items: center; gap: 0.9rem; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-pale);
  }
  .review-name { font-size: 0.88rem; font-weight: 500; color: var(--navy); }
  .review-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }
  .slider-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2.5rem; }
  .slider-dot {
    width: 6px; height: 6px; border-radius: 3px;
    background: rgba(13,27,42,0.15);
    cursor: pointer; border: none;
    transition: all var(--transition-fast);
  }
  .slider-dot.active { background: var(--gold); width: 24px; }

  /* ── FAQ ── */
  #faq { background: var(--off-white); }
  .faq-inner { display: grid; grid-template-columns: 380px 1fr; gap: 6rem; align-items: start; }
  .faq-left { position: sticky; top: 100px; }
  .faq-sub { font-size: 1rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; margin-top: 1.2rem; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid rgba(13,27,42,0.08); }
  .faq-q {
    width: 100%; text-align: left;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.5rem 0;
    background: none; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem; font-weight: 400;
    color: var(--navy);
    transition: color var(--transition-fast);
  }
  .faq-q:hover { color: var(--gold); }
  .faq-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(13,27,42,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--text-muted);
    transition: all var(--transition-fast);
  }
  .faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }
  .faq-a {
    font-size: 0.9rem; line-height: 1.8;
    color: var(--text-muted);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }
  .faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.4rem; opacity: 1; }

  /* ── CONTACT ── */
  #contact { background: var(--navy); position: relative; overflow: hidden; }
  #contact::after {
    content: '';
    position: absolute; bottom: -30%; right: -10%;
    width: 60vw; height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
  .contact-left .section-title { color: var(--white); }
  .contact-left .section-eyebrow { color: var(--gold); }
  .contact-desc { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.55); font-weight: 300; margin-top: 1.5rem; }
  .contact-info { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
  .contact-link {
    display: flex; align-items: center; gap: 1rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color var(--transition-fast);
  }
  .contact-link:hover { color: var(--gold-light); }
  .contact-link-icon {
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
  }
  .contact-link:hover .contact-link-icon { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
  .social-row { display: flex; gap: 0.8rem; margin-top: 2rem; }
  .social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
  }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

  /* FORM */
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.45rem; }
  .form-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(255,255,255,0.07);
  }
  .form-select option { background: var(--navy-mid); color: var(--white); }
  .form-textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    padding: 1rem 2rem;
    background: var(--gold);
    border: none; border-radius: 100px;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative; overflow: hidden;
    margin-top: 0.5rem;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.3); }
  .form-success { display: none; text-align: center; padding: 2rem; color: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: #080F17;
    border-top: 1px solid rgba(201,168,76,0.12);
  }
  .footer-inner {
    padding: 2.8rem 5vw;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.2rem;
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.07em;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .footer-brand:hover { color: var(--gold-light); }
  .footer-brand span { color: var(--gold); }
  .footer-nav {
    display: flex; gap: 2rem; list-style: none;
  }
  .footer-nav a {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .footer-nav a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 0.74rem; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.22);
    white-space: nowrap;
  }
  .footer-bottom {
    padding: 1rem 5vw;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: center;
  }
  @media (max-width: 680px) {
    .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 1.4rem; }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
    .footer-copy { white-space: normal; text-align: center; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 0.7; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 320px 1fr; gap: 4rem; }
    .why-inner { gap: 3.5rem; }
  }
  @media (max-width: 900px) {
    .who-cards { grid-template-columns: 1fr; }
    .who-card { aspect-ratio: unset; height: 260px; transition: height 0.4s ease; }
    .who-card.active { height: 380px; }
    .why-inner { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; }
    .about-photo-wrap { max-width: 380px; }
    .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .faq-left { position: static; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .review-card { flex: 0 0 calc(80% - 1rem); }
    .hero-stats { position: static; flex-wrap: wrap; margin-top: 2rem; gap: 1rem; }
    #hero { padding: 100px 5vw 5vh; justify-content: flex-start; align-items: flex-start; }
    .hero-content { margin-top: 1.5rem; }
  }
  @media (max-width: 680px) {
    section { padding: 5rem 5vw; }
    .nav-links { display: none; }
    .nav-cta {
      display: inline-flex;
      font-size: 0.72rem;
      padding: 0.5rem 1rem;
      letter-spacing: 0.06em;
    }
    .nav-burger { display: flex; }
    nav { gap: 0.6rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-achievements { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .review-card { flex: 0 0 calc(90% - 1rem); }
    #hero {
      height: auto;
      min-height: 100svh;
      padding: 88px 5vw 5vh;
      justify-content: flex-start;
      align-items: flex-start;
      overflow: hidden;
    }
    .hero-content { margin-top: 2rem; }
    .hero-stats {
      position: static;
      margin-top: 2rem;
      flex-wrap: nowrap;
      gap: 0.5rem;
      width: 100%;
      justify-content: flex-start;
    }
    .stat {
      padding: 0.75rem 0.9rem;
      flex: 1;
      min-width: 0;
    }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0.08em; }
    .scroll-hint {
      position: static;
      align-self: center;
      margin-top: 1.5rem;
      transform: none;
    }
    .footer-nav { list-style: none; }
  }
  /* Дуже малі екрани 320–375px */
  @media (max-width: 375px) {
    .hero-h1 { font-size: clamp(1.9rem, 9.5vw, 2.4rem); }
    .nav-logo { font-size: 1.1rem; }
    .nav-cta { font-size: 0.65rem; padding: 0.45rem 0.8rem; }
    .stat-num { font-size: 1.3rem; }
    .stat-label { font-size: 0.55rem; }
    .stat { padding: 0.65rem 0.6rem; }
    .btn-primary { padding: 0.85rem 1.2rem; font-size: 0.75rem; }
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: var(--navy);
    flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: rgba(255,255,255,0.8); text-decoration: none; }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute; top: 1.5rem; right: 5vw;
    background: none; border: none; color: rgba(255,255,255,0.6);
    font-size: 1.5rem; cursor: pointer;
  }
