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

    /* ── Skip-to-content link (keyboard accessibility) ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 0;
      z-index: 9999;
      padding: 12px 20px;
      background: var(--teal);
      color: var(--navy);
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 0 0 4px 0;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    /* ── Global focus-visible for keyboard navigation ─── */
    :focus-visible {
      outline: 2px solid var(--teal);
      outline-offset: 3px;
      border-radius: 2px;
    }
    /* Remove outline for mouse users */
    :focus:not(:focus-visible) { outline: none; }

    :root {
      --white:        #FFFFFF;
      --navy:         #0D1B2A;
      --teal:         #4EC5C1;
      --teal-soft:    #A8E6E3;
      --text-dark:    #0D1B2A;
      --text-mid:     #2d3f52;
      --text-muted:   #4a5e72;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-head:    'Montserrat', system-ui, sans-serif;
      --font-body:    'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--navy);
      color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── HEADER ─────────────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 clamp(20px, 5vw, 72px);
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.45s ease, box-shadow 0.45s ease;
    }

    header.scrolled {
      background: rgba(13, 27, 42, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(78, 197, 193, 0.18);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), #2BA8A4);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-mark svg { width: 20px; height: 20px; }

    .logo-text {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      color: var(--white);
    }

    .logo-text span { color: var(--teal); }

    nav {
      display: flex;
      align-items: center;
      gap: 2.4rem;
    }

    nav a {
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      position: relative;
      transition: color 0.25s;
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -4px;
      width: 0; height: 1px;
      background: var(--teal);
      transition: width 0.3s ease;
    }

    nav a:hover { color: var(--white); }
    nav a:hover::after { width: 100%; }

    .btn-nav {
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--teal);
      border: none;
      padding: 11px 24px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    }

    .btn-nav:hover {
      background: var(--teal-soft);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(78,197,193,0.35);
    }

    .btn-nav:active { transform: translateY(0); }

    /* ── HAMBURGER ──────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--white);
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 18, 30, 0.98);
      backdrop-filter: blur(24px);
      z-index: 90;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.6rem;
      opacity: 0;
      transition: opacity 0.35s ease;
      overflow-y: auto;
      padding: 6rem 1.5rem 2rem;
    }

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

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 7vw, 2rem);
      font-weight: 300;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }

    .mobile-menu a:hover { color: var(--teal); }

    /* ── HERO ───────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100dvh;
      min-height: 680px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: calc(76px + clamp(8px, 3vh, 28px));
      box-sizing: border-box;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=85&w=2560&auto=format&fit=crop');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.06);
      transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-bg.loaded { transform: scale(1); }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom,
          rgba(8, 16, 28, 0.55) 0%,
          rgba(8, 16, 28, 0.72) 50%,
          rgba(8, 16, 28, 0.85) 100%
        );
    }

    .hero-overlay::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 35%;
      background: linear-gradient(to top, rgba(13,27,42,0.6), transparent);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 860px;
      padding: 0 clamp(24px, 6vw, 80px);
      text-align: center;
    }

    .hero-eyebrow,
    .hero-content h1,
    .hero-sub,
    .hero-actions,
    .hero-stats {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }

    .hero-eyebrow.appear,
    .hero-content h1.appear,
    .hero-sub.appear,
    .hero-actions.appear,
    .hero-stats.appear {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1.4rem;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: var(--teal);
      opacity: 0.7;
    }

    .hero-content h1 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2.4rem, 5.5vw, 4.8rem);
      line-height: 1.12;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 1.3rem;
      text-shadow: 0 2px 24px rgba(0,0,0,0.4);
    }

    .hero-content h1 em {
      font-style: italic;
      color: var(--teal-soft);
    }

    .hero-sub {
      font-size: clamp(0.95rem, 1.7vw, 1.1rem);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.75);
      max-width: 580px;
      margin: 0 auto 2.6rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 3.6rem;
    }

    .btn-primary {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--teal);
      border: none;
      padding: 16px 40px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    }

    .btn-primary:hover {
      background: var(--teal-soft);
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(78,197,193,0.45);
    }

    .btn-primary:active { transform: translateY(0); }

    .btn-ghost {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.4);
      padding: 16px 40px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.25s, color 0.25s, transform 0.2s;
    }

    .btn-ghost:hover {
      border-color: var(--teal);
      color: var(--teal);
      transform: translateY(-3px);
    }

    .btn-ghost:active { transform: translateY(0); }

    .hero-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }

    .stat {
      padding: 0 2.8rem;
      border-right: 1px solid rgba(255,255,255,0.14);
    }

    .stat:first-child { padding-left: 0; }
    .stat:last-child  { border-right: none; padding-right: 0; }

    .stat-value {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-value span { color: var(--teal); }

    .stat-label {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      z-index: 2;
      opacity: 0;
      transition: opacity 1s 1.3s ease;
    }

    .scroll-hint.appear { opacity: 0.5; }

    .scroll-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--teal), transparent);
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); opacity: 0.5; }
      50%       { transform: translateY(4px); opacity: 1; }
    }

    @media (max-width: 768px) {
      nav, .header-book { display: none; }
      .hamburger { display: flex; }
      .hero-content h1 { font-size: clamp(2rem, 8.5vw, 3rem); }
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
      }
      .stat {
        padding: 0 10px;
        min-width: 0;
        box-sizing: border-box;
        border-right: 1px solid rgba(255,255,255,0.14);
      }
      .stat:first-child { padding-left: 0; }
      .stat:last-child { border-right: none; padding-right: 0; }
      .stat-value { font-size: clamp(1.4rem, 5.5vw, 2rem); }
      .stat-label {
        font-size: 0.56rem;
        letter-spacing: 0.02em;
        line-height: 1.3;
        word-break: keep-all;
        overflow-wrap: break-word;
      }
      .btn-primary, .btn-ghost { padding: 14px 28px; font-size: 0.72rem; }
    }

    @media (max-width: 420px) {
      .stat { padding: 0 6px; }
      .stat-value { font-size: clamp(1.2rem, 6.5vw, 1.6rem); }
      .stat-label {
        font-size: 0.48rem;
        letter-spacing: 0;
      }
    }

    /* ── SERVICES ───────────────────────────────────── */
    .services {
      background: linear-gradient(160deg, #0f2137 0%, #0d1b2a 60%, #112233 100%);
      padding: clamp(80px, 11vw, 130px) clamp(24px, 6vw, 80px);
      overflow: hidden;
      position: relative;
    }
    .services::before {
      content: '';
      position: absolute;
      top: -140px; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 420px;
      background: radial-gradient(ellipse, rgba(78,197,193,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .services-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto clamp(40px, 6vw, 60px);
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .services-header.visible { opacity: 1; transform: translateY(0); }
    .services-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-head);
      font-size: 0.63rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1rem;
    }
    .services-eyebrow::before,
    .services-eyebrow::after {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--teal);
      opacity: 0.55;
    }
    .services-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: clamp(1.7rem, 3.4vw, 2.8rem);
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 0.9rem;
      letter-spacing: -0.02em;
    }
    .services-subtitle {
      font-family: var(--font-body);
      font-size: clamp(0.88rem, 1.4vw, 0.97rem);
      font-weight: 400;
      line-height: 1.78;
      color: rgba(255,255,255,0.58);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      padding: 26px 24px 22px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      cursor: default;
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease,
                  box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }
    .service-card.visible { opacity: 1; transform: translateY(0); }
    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 1.5px;
      background: linear-gradient(to right, var(--teal), rgba(78,197,193,0));
      transition: width 0.4s ease;
    }
    .service-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(78,197,193,0.22);
      box-shadow: 0 20px 52px rgba(0,0,0,0.38), 0 0 0 1px rgba(78,197,193,0.08) inset;
      transform: translateY(-6px) !important;
    }
    .service-card:hover::after { width: 100%; }
    .card-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(78,197,193,0.09);
      border: 1px solid rgba(78,197,193,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .service-card:hover .card-icon {
      background: rgba(78,197,193,0.16);
      border-color: rgba(78,197,193,0.28);
      transform: scale(1.08);
    }
    .card-icon svg {
      width: 20px; height: 20px;
      stroke: var(--teal);
      stroke-width: 1.6;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .card-title {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1rem;
      color: var(--white);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .card-desc {
      font-family: var(--font-body);
      font-size: 0.83rem;
      font-weight: 400;
      line-height: 1.72;
      color: rgba(255,255,255,0.60);
      flex: 1;
    }

    /* ── WHY US ─────────────────────────────────────── */
    .why {
      background: #f2f5f8;
      padding: clamp(80px, 11vw, 130px) clamp(24px, 6vw, 80px);
      overflow: hidden;
      position: relative;
    }
    .why::before {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,197,193,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .why-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto clamp(48px, 7vw, 72px);
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .why-header.vis { opacity: 1; transform: translateY(0); }
    .why-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-head);
      font-size: 0.63rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1rem;
    }
    .why-eyebrow::before,
    .why-eyebrow::after {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--teal);
      opacity: 0.55;
    }
    .why-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: clamp(1.7rem, 3.4vw, 2.8rem);
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .why-subtitle {
      font-family: var(--font-body);
      font-size: clamp(0.9rem, 1.4vw, 1rem);
      font-weight: 400;
      line-height: 1.8;
      color: var(--text-muted);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto clamp(48px, 7vw, 72px);
    }
    @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
    .why-card {
      background: #ffffff;
      border: 1px solid rgba(13,27,42,0.06);
      border-radius: 6px;
      padding: 32px 24px 28px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
      cursor: default;
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .why-card.vis { opacity: 1; transform: translateY(0); }
    .why-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(78,197,193,0.04) 0%, rgba(78,197,193,0) 60%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .why-card:hover {
      box-shadow: 0 18px 48px rgba(13,27,42,0.10);
      border-color: rgba(78,197,193,0.22);
      transform: translateY(-6px) !important;
    }
    .why-card:hover::before { opacity: 1; }
    .why-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      background: rgba(13,27,42,0.05);
      border: 1px solid rgba(13,27,42,0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      position: relative; z-index: 1;
    }
    .why-card:hover .why-icon {
      background: rgba(78,197,193,0.1);
      border-color: rgba(78,197,193,0.22);
      transform: scale(1.07) rotate(-2deg);
    }
    .why-icon svg {
      width: 22px; height: 22px;
      stroke: var(--navy);
      stroke-width: 1.6;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s;
    }
    .why-card:hover .why-icon svg { stroke: var(--teal); }
    .why-card-title {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1.02rem;
      color: var(--text-dark);
      margin-bottom: 9px;
      letter-spacing: -0.01em;
      position: relative; z-index: 1;
    }
    .why-card-desc {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 400;
      line-height: 1.72;
      color: var(--text-muted);
      position: relative; z-index: 1;
    }
    .why-banner {
      max-width: 1100px;
      margin: 0 auto;
      background: var(--navy);
      border-radius: 6px;
      padding: clamp(36px, 5vw, 52px) clamp(28px, 5vw, 64px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .why-banner.vis { opacity: 1; transform: translateY(0); }
    .why-banner::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,197,193,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .why-banner::after {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,197,193,0.10) 0%, transparent 65%);
      pointer-events: none;
    }
    .banner-left { position: relative; z-index: 1; }
    .banner-count {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: clamp(2.6rem, 5.5vw, 4.4rem);
      line-height: 1;
      color: var(--white);
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }
    .banner-count em { font-style: normal; color: var(--teal); }
    .banner-label {
      font-family: var(--font-body);
      font-size: clamp(0.88rem, 1.4vw, 1rem);
      font-weight: 400;
      color: rgba(255,255,255,0.62);
      letter-spacing: 0.02em;
    }
    .banner-right {
      position: relative; z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
    }
    .banner-stats {
      display: flex;
      gap: clamp(24px, 4vw, 48px);
      flex-wrap: wrap;
    }
    .b-stat { text-align: center; }
    .b-stat-num {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      color: var(--white);
      line-height: 1;
      margin-bottom: 5px;
    }
    .b-stat-num span { color: var(--teal); }
    .b-stat-lbl {
      font-family: var(--font-head);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      white-space: nowrap;
    }
    .banner-cta {
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--teal);
      border: none;
      padding: 13px 30px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      display: inline-block;
    }
    .banner-cta:hover {
      background: var(--teal-soft);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(78,197,193,0.4);
    }
    .pulse-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .pulse-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--teal);
      position: relative;
      flex-shrink: 0;
    }
    .pulse-dot::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1.5px solid var(--teal);
      opacity: 0.5;
      animation: pulse-ring 2s ease-out infinite;
    }
    @keyframes pulse-ring {
      0%   { transform: scale(0.7); opacity: 0.7; }
      70%  { transform: scale(1.8); opacity: 0; }
      100% { transform: scale(1.8); opacity: 0; }
    }
    .pulse-text {
      font-family: var(--font-head);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
    }

    @media (max-width: 680px) {
      .banner-right { align-items: center; width: 100%; }
      .banner-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        width: 100%;
      }
      .b-stat { min-width: 0; text-align: left; }
      .b-stat-lbl {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        font-size: 0.58rem;
        letter-spacing: 0.06em;
        line-height: 1.35;
      }
      .banner-cta {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        white-space: normal;
        padding: 15px 16px;
        line-height: 1.4;
      }
    }

    @media (max-width: 380px) {
      .banner-stats { gap: 8px; }
      .b-stat-num { font-size: 1.35rem; }
      .b-stat-lbl {
        font-size: 0.53rem;
        letter-spacing: 0.03em;
      }
      .banner-cta {
        padding: 14px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.07em;
      }
    }

    /* ══════════════════════════════════════════════════
       СЕКЦІЯ: НАШІ ЛІКАРІ
    ══════════════════════════════════════════════════ */
    .doctors {
      padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 72px);
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .doctors::before {
      content: '';
      position: absolute;
      top: -120px; right: -80px;
      width: 520px; height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,197,193,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .doctors::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -60px;
      width: 380px; height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,197,193,0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Header */
    .doctors-header {
      max-width: 680px;
      margin: 0 auto clamp(52px, 7vw, 80px);
      text-align: center;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    .doctors-header.vis { opacity: 1; transform: translateY(0); }
    .doctors-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1.4rem;
    }
    .doctors-eyebrow::before,
    .doctors-eyebrow::after {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: var(--teal);
      opacity: 0.7;
    }
    .doctors-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      line-height: 1.14;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 1.2rem;
    }
    .doctors-subtitle {
      font-family: var(--font-body);
      font-size: clamp(0.92rem, 1.6vw, 1.05rem);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.55);
      max-width: 540px;
      margin: 0 auto;
    }

    /* Grid */
    .doctors-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 2.2vw, 28px);
      max-width: 1200px;
      margin: 0 auto;
      align-items: stretch;
    }
    @media (max-width: 960px) { .doctors-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; } }
    @media (max-width: 580px) { .doctors-grid { grid-template-columns: 1fr; max-width: 440px; } }

    /* Card */
    .doctor-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,0.032);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px;
      overflow: hidden;
      cursor: default;
      opacity: 0;
      transform: translateY(36px);
    }
    .doctor-card.vis {
      opacity: 1;
      transform: translateY(0);
      transition:
        opacity 0.75s ease,
        transform 0.75s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }
    .doctor-card:hover {
      border-color: rgba(78,197,193,0.26);
      box-shadow:
        0 0 0 1px rgba(78,197,193,0.09),
        0 28px 64px rgba(0,0,0,0.38),
        0 0 60px rgba(78,197,193,0.06);
      transform: translateY(-6px) !important;
    }

    /* Photo */
    .doctor-photo-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 3.2;
      overflow: hidden;
      flex-shrink: 0;
    }
    .doctor-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
      filter: brightness(0.85) saturate(0.82);
    }
    .doctor-card:hover .doctor-photo-wrap img {
      transform: scale(1.05);
      filter: brightness(0.96) saturate(0.9);
    }
    .doctor-photo-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 38%, rgba(13,27,42,0.72) 100%);
      pointer-events: none;
    }
    .doctor-badge {
      position: absolute;
      bottom: 14px; left: 16px;
      font-family: var(--font-head);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--teal);
      padding: 5px 12px;
      border-radius: 2px;
      z-index: 1;
      white-space: nowrap;
    }

    /* Body */
    .doctor-body {
      padding: clamp(20px, 2.4vw, 26px);
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Name + spec row */
    .doctor-name {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(1.25rem, 2vw, 1.55rem);
      line-height: 1.18;
      color: var(--white);
      margin-bottom: 4px;
      letter-spacing: 0.01em;
    }
    .doctor-spec {
      font-family: var(--font-head);
      font-size: 0.64rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }

    /* Exp pill */
    .doctor-exp-pill {
      display: inline-flex;
      align-items: baseline;
      gap: 5px;
      background: rgba(78,197,193,0.08);
      border: 1px solid rgba(78,197,193,0.16);
      border-radius: 2px;
      padding: 5px 12px;
      margin-bottom: 16px;
      width: fit-content;
    }
    .doctor-exp-num {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }
    .doctor-exp-num em { font-style: normal; color: var(--teal); }
    .doctor-exp-lbl {
      font-family: var(--font-head);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    /* Sep */
    .doctor-sep {
      width: 28px; height: 1px;
      background: rgba(78,197,193,0.3);
      margin-bottom: 14px;
      flex-shrink: 0;
    }

    /* Description */
    .doctor-desc {
      font-family: var(--font-body);
      font-size: 0.84rem;
      font-weight: 300;
      line-height: 1.78;
      color: rgba(255,255,255,0.55);
      margin-bottom: 18px;
    }

    /* Directions */
    .doctor-directions-label {
      font-family: var(--font-head);
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      margin-bottom: 9px;
    }
    .doctor-directions {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px;
    }
    .direction-tag {
      font-family: var(--font-head);
      font-size: 0.63rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.62);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 2px;
      padding: 4px 10px;
      white-space: nowrap;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .doctor-card:hover .direction-tag {
      background: rgba(78,197,193,0.07);
      border-color: rgba(78,197,193,0.16);
      color: rgba(255,255,255,0.78);
    }

    /* Achievements */
    .doctor-achievements {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .achievement-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(255,255,255,0.48);
    }
    .achievement-item::before {
      content: '';
      display: block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.55;
      flex-shrink: 0;
      margin-top: 6px;
    }

    /* Trust block */
    .doctors-trust {
      max-width: 1200px;
      margin: clamp(52px, 7vw, 80px) auto 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    .doctors-trust.vis { opacity: 1; transform: translateY(0); }
    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(16px, 3vw, 48px);
      flex-wrap: wrap;
      padding: clamp(24px, 3.5vw, 40px) clamp(28px, 5vw, 64px);
      background: rgba(78,197,193,0.048);
      border: 1px solid rgba(78,197,193,0.16);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }
    .trust-inner::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 50%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(78,197,193,0.55), transparent);
      animation: shimmer 4s ease-in-out infinite;
    }
    @keyframes shimmer {
      0%   { left: -60%; }
      100% { left: 160%; }
    }
    .trust-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      text-align: center;
    }
    .trust-stat-num {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.01em;
    }
    .trust-stat-num span { color: var(--teal); }
    .trust-stat-lbl {
      font-family: var(--font-head);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      white-space: nowrap;
    }
    .trust-vline {
      width: 1px; height: 48px;
      background: rgba(78,197,193,0.16);
      flex-shrink: 0;
    }
    @media (max-width: 600px) { .trust-vline { display: none; } }
    .trust-quote-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      max-width: 380px;
    }
    .trust-quote-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(78,197,193,0.1);
      border: 1px solid rgba(78,197,193,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-quote-icon svg {
      width: 18px; height: 18px;
      stroke: var(--teal);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .trust-quote {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(0.95rem, 1.7vw, 1.12rem);
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }
  

/* ============================================= */

  /* ── REVIEWS SECTION ────────────────────────────── */
  .reviews {
    background: linear-gradient(165deg, #0b1c2e 0%, #0d1b2a 45%, #0f2137 100%);
    padding: clamp(80px, 11vw, 140px) clamp(24px, 6vw, 80px);
    position: relative;
    overflow: hidden;
  }

  /* Ambient glow blobs */
  .reviews::before {
    content: '';
    position: absolute;
    top: -100px; left: -80px;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,197,193,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .reviews::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,197,193,0.05) 0%, transparent 65%);
    pointer-events: none;
  }

  /* ── Header ─────────────────────────────────────── */
  .reviews-header {
    max-width: 660px;
    margin: 0 auto clamp(52px, 7vw, 80px);
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    position: relative;
    z-index: 1;
  }
  .reviews-header.rv-vis { opacity: 1; transform: translateY(0); }

  .reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.4rem;
  }
  .reviews-eyebrow::before,
  .reviews-eyebrow::after {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--teal);
    opacity: 0.7;
  }

  .reviews-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.1rem;
  }

  .reviews-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.52);
    max-width: 520px;
    margin: 0 auto;
  }

  /* ── Grid ────────────────────────────────────────── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    max-width: 1200px;
    margin: 0 auto clamp(52px, 7vw, 80px);
    align-items: stretch;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 960px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
  }
  @media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
  }

  /* ── Review Card ─────────────────────────────────── */
  .review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.038);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: clamp(24px, 2.8vw, 32px);
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(36px);
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      background 0.35s ease,
      transform 0.35s ease;
  }

  /* Scroll reveal */
  .review-card.rv-vis {
    opacity: 1;
    transform: translateY(0);
  }

  /* Top accent line on hover */
  .review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 1.5px;
    background: linear-gradient(to right, var(--teal), rgba(78,197,193,0));
    transition: width 0.45s ease;
  }

  /* Subtle inner glow on hover */
  .review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(78,197,193,0.06) 0%, transparent 68%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .review-card:hover {
    background: rgba(255,255,255,0.062);
    border-color: rgba(78,197,193,0.24);
    box-shadow:
      0 0 0 1px rgba(78,197,193,0.08) inset,
      0 28px 64px rgba(0,0,0,0.42),
      0 0 48px rgba(78,197,193,0.06);
    transform: translateY(-7px) !important;
  }
  .review-card:hover::before { width: 100%; }
  .review-card:hover::after  { opacity: 1; }

  /* Quote icon */
  .rv-quote-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(78,197,193,0.09);
    border: 1px solid rgba(78,197,193,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    position: relative; z-index: 1;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }
  .review-card:hover .rv-quote-icon {
    background: rgba(78,197,193,0.16);
    border-color: rgba(78,197,193,0.28);
    transform: scale(1.08);
  }
  .rv-quote-icon svg {
    width: 14px; height: 14px;
    fill: var(--teal);
  }

  /* Stars */
  .rv-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  .rv-star {
    font-size: 0.88rem;
    color: var(--teal);
    line-height: 1;
  }

  /* Service tag */
  .rv-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(78,197,193,0.08);
    border: 1px solid rgba(78,197,193,0.14);
    border-radius: 2px;
    padding: 4px 11px;
    font-family: var(--font-head);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    width: fit-content;
    position: relative; z-index: 1;
    transition: background 0.3s, border-color 0.3s;
  }
  .review-card:hover .rv-service-tag {
    background: rgba(78,197,193,0.13);
    border-color: rgba(78,197,193,0.25);
  }
  .rv-service-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
  }

  /* Review text */
  .rv-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.82;
    color: rgba(255,255,255,0.60);
    flex: 1;
    margin-bottom: 22px;
    position: relative; z-index: 1;
  }

  /* Divider */
  .rv-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 18px;
    position: relative; z-index: 1;
    transition: background 0.3s;
  }
  .review-card:hover .rv-divider { background: rgba(78,197,193,0.18); }

  /* Author row */
  .rv-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative; z-index: 1;
  }

  .rv-photo-wrap {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(78,197,193,0.2);
    transition: border-color 0.3s, transform 0.3s;
  }
  .review-card:hover .rv-photo-wrap {
    border-color: rgba(78,197,193,0.45);
    transform: scale(1.06);
  }
  .rv-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) saturate(0.75);
    transition: filter 0.4s ease;
  }
  .review-card:hover .rv-photo-wrap img {
    filter: brightness(0.96) saturate(0.85);
  }

  .rv-author-info { flex: 1; min-width: 0; }
  .rv-name {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rv-date {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.32);
    letter-spacing: 0.02em;
  }

  /* Verified badge */
  .rv-verified {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(78,197,193,0.09);
    border: 1px solid rgba(78,197,193,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
  }
  .review-card:hover .rv-verified {
    background: rgba(78,197,193,0.18);
    border-color: rgba(78,197,193,0.35);
  }
  .rv-verified svg {
    width: 12px; height: 12px;
    stroke: var(--teal);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── Trust Rating Block ───────────────────────────── */
  .reviews-trust {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reviews-trust.rv-vis { opacity: 1; transform: translateY(0); }

  .reviews-trust-inner {
    background: rgba(255,255,255,0.026);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  /* Glow overlay inside trust block */
  .reviews-trust-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(78,197,193,0.08) 0%, transparent 55%),
      radial-gradient(ellipse at 80% 50%, rgba(78,197,193,0.04) 0%, transparent 55%);
    pointer-events: none;
  }

  /* Top teal shimmer line */
  .reviews-trust-inner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1.5px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(78,197,193,0.55) 30%,
      var(--teal) 50%,
      rgba(78,197,193,0.55) 70%,
      transparent 100%
    );
  }

  .trust-rating-left {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative; z-index: 1;
    flex-wrap: wrap;
  }

  .trust-score-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .trust-score-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .trust-score-num em {
    font-style: normal;
    color: var(--teal);
  }

  .trust-score-max {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
  }

  .trust-divider-v {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }

  .trust-stars-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .trust-stars-row {
    display: flex;
    gap: 5px;
  }
  .trust-star-lg {
    font-size: 1.45rem;
    color: var(--teal);
    line-height: 1;
  }

  .trust-stars-label {
    font-family: var(--font-head);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
  }

  /* Center: count + text */
  .trust-count-center {
    position: relative; z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 200px;
  }

  .trust-count-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .trust-count-num em {
    font-style: normal;
    color: var(--teal);
  }

  .trust-count-label {
    font-family: var(--font-head);
    font-size: clamp(0.62rem, 1.1vw, 0.72rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
  }

  /* Right: Google + verification pills */
  .trust-badges-right {
    position: relative; z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 10px 18px;
    white-space: nowrap;
    transition: border-color 0.3s, background 0.3s;
  }
  .trust-badge-pill:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(78,197,193,0.22);
  }

  .badge-pill-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .badge-pill-icon svg {
    width: 18px; height: 18px;
    stroke: var(--teal);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .badge-pill-text {
    font-family: var(--font-head);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }

  .badge-pill-check {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(78,197,193,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .badge-pill-check svg {
    width: 9px; height: 9px;
    stroke: var(--teal);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 900px) {
    .reviews-trust-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .trust-rating-left { justify-content: center; }
    .trust-count-center { min-width: unset; }
    .trust-badges-right { align-items: center; }
    .trust-divider-v { display: none; }
  }

/* ============================================= */

  /* ── FAQ SECTION ────────────────────────────────── */
  .faq {
    background: #f2f5f8;
    padding: clamp(80px, 11vw, 140px) clamp(24px, 6vw, 80px);
    position: relative;
    overflow: hidden;
  }

  /* Subtle ambient glow top-right */
  .faq::before {
    content: '';
    position: absolute;
    top: -120px; right: -100px;
    width: 580px; height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,197,193,0.07) 0%, transparent 68%);
    pointer-events: none;
  }
  .faq::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,27,42,0.04) 0%, transparent 65%);
    pointer-events: none;
  }

  /* ── Header ─────────────────────────────────────── */
  .faq-header {
    max-width: 620px;
    margin: 0 auto clamp(52px, 7vw, 80px);
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    position: relative;
    z-index: 1;
  }
  .faq-header.fq-vis { opacity: 1; transform: translateY(0); }

  .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.1rem;
  }
  .faq-eyebrow::before,
  .faq-eyebrow::after {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--teal);
    opacity: 0.55;
  }

  .faq-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.6vw, 2.9rem);
    line-height: 1.14;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .faq-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
  }

  /* ── Layout: two-column on desktop ──────────────── */
  .faq-body {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 1.6vw, 20px) clamp(20px, 3vw, 52px);
    position: relative;
    z-index: 1;
  }
  @media (max-width: 820px) {
    .faq-body { grid-template-columns: 1fr; }
  }

  /* ── FAQ Item ────────────────────────────────────── */
  .faq-item {
    background: #ffffff;
    border: 1px solid rgba(13,27,42,0.07);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.65s ease,
      transform 0.65s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
    align-self: start;
  }
  .faq-item.fq-vis { opacity: 1; transform: translateY(0); }

  .faq-item:hover {
    border-color: rgba(78,197,193,0.28);
    box-shadow: 0 12px 36px rgba(13,27,42,0.09);
  }

  .faq-item.is-open {
    border-color: rgba(78,197,193,0.32);
    box-shadow: 0 16px 48px rgba(13,27,42,0.11), 0 0 0 1px rgba(78,197,193,0.06) inset;
  }

  /* ── Question button ─────────────────────────────── */
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(18px, 2.4vw, 24px) clamp(20px, 2.6vw, 28px);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
  }

  /* Teal left accent bar */
  .faq-q::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--teal);
    border-radius: 0;
    transition: width 0.3s ease;
  }
  .faq-item.is-open .faq-q::before { width: 3px; }

  .faq-q-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
  }

  /* Numbered index circle */
  .faq-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(13,27,42,0.05);
    border: 1px solid rgba(13,27,42,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
  }
  .faq-item.is-open .faq-num,
  .faq-item:hover .faq-num {
    background: rgba(78,197,193,0.1);
    border-color: rgba(78,197,193,0.22);
    color: var(--teal);
  }

  .faq-question-text {
    font-family: var(--font-head);
    font-size: clamp(0.88rem, 1.3vw, 0.97rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    flex: 1;
    min-width: 0;
    transition: color 0.25s;
  }
  .faq-item.is-open .faq-question-text { color: var(--navy); }

  /* Plus/Minus icon */
  .faq-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(13,27,42,0.05);
    border: 1px solid rgba(13,27,42,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.4s ease;
  }
  .faq-item.is-open .faq-icon {
    background: var(--teal);
    border-color: var(--teal);
    transform: rotate(45deg);
    box-shadow: 0 4px 16px rgba(78,197,193,0.40);
  }
  .faq-item:not(.is-open):hover .faq-icon {
    background: rgba(78,197,193,0.1);
    border-color: rgba(78,197,193,0.22);
  }

  .faq-icon svg {
    width: 13px; height: 13px;
    stroke: var(--text-muted);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    transition: stroke 0.25s;
  }
  .faq-item.is-open .faq-icon svg { stroke: #ffffff; }
  .faq-item:not(.is-open):hover .faq-icon svg { stroke: var(--teal); }

  /* ── Answer panel ────────────────────────────────── */
  .faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-panel-inner {
    padding: 0 clamp(20px, 2.6vw, 28px) clamp(18px, 2.4vw, 24px);
    padding-left: calc(clamp(20px, 2.6vw, 28px) + 14px + 30px);
  }

  /* Divider between Q and A */
  .faq-panel-inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(13,27,42,0.07);
    margin-bottom: clamp(14px, 2vw, 18px);
  }

  .faq-answer {
    font-family: var(--font-body);
    font-size: clamp(0.86rem, 1.3vw, 0.94rem);
    font-weight: 400;
    line-height: 1.84;
    color: var(--text-muted);
  }

  /* Highlighted inline keyword */
  .faq-answer strong {
    font-weight: 500;
    color: var(--text-dark);
  }

  /* Teal highlight text */
  .faq-answer em {
    font-style: normal;
    color: #0a8f8b;
    font-weight: 500;
  }

  /* ── Bottom CTA strip ────────────────────────────── */
  .faq-cta {
    max-width: 1160px;
    margin: clamp(44px, 6vw, 72px) auto 0;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .faq-cta.fq-vis { opacity: 1; transform: translateY(0); }

  .faq-cta-inner {
    background: var(--navy);
    border-radius: 6px;
    padding: clamp(32px, 4.5vw, 48px) clamp(28px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  .faq-cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,197,193,0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  .faq-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,197,193,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .faq-cta-left {
    position: relative;
    z-index: 1;
  }
  .faq-cta-label {
    font-family: var(--font-head);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
  }
  .faq-cta-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.01em;
  }
  .faq-cta-title em {
    font-style: italic;
    color: var(--teal-soft);
  }

  .faq-cta-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .faq-btn-primary {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--teal);
    border: none;
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  }
  .faq-btn-primary:hover {
    background: var(--teal-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(78,197,193,0.4);
  }
  .faq-btn-primary:active { transform: translateY(0); }

  .faq-btn-ghost {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 14px 28px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
  }
  .faq-btn-ghost:hover {
    border-color: rgba(78,197,193,0.5);
    color: var(--teal-soft);
    transform: translateY(-2px);
  }
  .faq-btn-ghost:active { transform: translateY(0); }

  @media (max-width: 640px) {
    .faq-cta-inner { flex-direction: column; align-items: flex-start; }
    .faq-cta-right { width: 100%; }
    .faq-btn-primary, .faq-btn-ghost { flex: 1; text-align: center; }
    .faq-panel-inner {
      padding-left: clamp(20px, 2.6vw, 28px);
    }
  }

/* ============================================= */

/* ── CONTACT SECTION ─────────────────────────────── */
.contact {
  background: linear-gradient(160deg,#0b1c2e 0%,#0d1b2a 50%,#0f2137 100%);
  padding: clamp(80px,11vw,140px) clamp(24px,6vw,80px) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content:'';
  position:absolute;
  top:-140px;right:-100px;
  width:600px;height:600px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(78,197,193,.07) 0%,transparent 65%);
  pointer-events:none;
}
.contact::after {
  content:'';
  position:absolute;
  bottom:200px;left:-80px;
  width:440px;height:440px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(78,197,193,.05) 0%,transparent 65%);
  pointer-events:none;
}

/* ── Header ─────────────────────────────────────── */
.contact-header {
  max-width:640px;
  margin:0 auto clamp(52px,7vw,80px);
  text-align:center;
  opacity:0;
  transform:translateY(28px);
  transition:opacity .85s ease,transform .85s ease;
  position:relative;z-index:1;
}
.contact-header.ct-vis{opacity:1;transform:translateY(0);}

.contact-eyebrow {
  display:inline-flex;align-items:center;gap:12px;
  font-family:var(--font-head);font-size:.72rem;font-weight:500;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--teal);margin-bottom:1.4rem;
}
.contact-eyebrow::before,.contact-eyebrow::after {
  content:'';display:block;width:28px;height:1px;
  background:var(--teal);opacity:.7;
}
.contact-title {
  font-family:var(--font-display);font-weight:300;
  font-size:clamp(2rem,4.5vw,3.6rem);line-height:1.14;
  letter-spacing:-.01em;color:var(--white);margin-bottom:1.1rem;
}
.contact-title em{font-style:italic;color:var(--teal-soft);}
.contact-subtitle {
  font-family:var(--font-body);font-size:clamp(.92rem,1.6vw,1.05rem);
  font-weight:300;line-height:1.8;
  color:rgba(255,255,255,.52);max-width:480px;margin:0 auto;
}

/* ── Two-column layout ───────────────────────────── */
.contact-body {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(28px,4vw,56px);
  max-width:1160px;
  margin:0 auto;
  position:relative;z-index:1;
  opacity:0;transform:translateY(28px);
  transition:opacity .85s ease .1s,transform .85s ease .1s;
}
.contact-body.ct-vis{opacity:1;transform:translateY(0);}
@media(max-width:860px){
  .contact-body{grid-template-columns:1fr;}
}

/* ══ LEFT — FORM ═════════════════════════════════ */
.contact-form-wrap {
  background:rgba(255,255,255,.038);
  border:1px solid rgba(255,255,255,.08);
  border-radius:6px;
  padding:clamp(28px,3.6vw,44px);
  position:relative;overflow:hidden;
}
.contact-form-wrap::before {
  content:'';position:absolute;
  top:0;left:0;right:0;height:1.5px;
  background:linear-gradient(to right,transparent 0%,rgba(78,197,193,.55) 30%,var(--teal) 50%,rgba(78,197,193,.55) 70%,transparent 100%);
}

.cf-form-title {
  font-family:var(--font-head);font-weight:600;
  font-size:clamp(1.05rem,1.8vw,1.25rem);
  color:var(--white);letter-spacing:-.01em;
  margin-bottom:clamp(22px,3vw,32px);
}

/* Row helpers */
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
.cf-row-full{margin-bottom:14px;}
@media(max-width:580px){.cf-row{grid-template-columns:1fr;}}

/* Field wrapper */
.cf-field{display:flex;flex-direction:column;gap:6px;}

.cf-label {
  font-family:var(--font-head);font-size:.62rem;font-weight:600;
  letter-spacing:.13em;text-transform:uppercase;
  color:rgba(255,255,255,.38);
  transition:color .25s;
}
.cf-field:focus-within .cf-label{color:var(--teal);}

/* Inputs & select & textarea */
.cf-input, .cf-select, .cf-textarea {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:4px;
  padding:13px 16px;
  font-family:var(--font-body);font-size:.92rem;font-weight:300;
  color:var(--white);
  outline:none;
  transition:border-color .25s,background .25s,box-shadow .25s;
  width:100%;
  -webkit-appearance:none;
}
.cf-input::placeholder,.cf-textarea::placeholder{color:rgba(255,255,255,.22);}

.cf-input:hover,.cf-select:hover,.cf-textarea:hover{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.07);
}
.cf-input:focus,.cf-select:focus,.cf-textarea:focus{
  border-color:rgba(78,197,193,.55);
  background:rgba(78,197,193,.05);
  box-shadow:0 0 0 3px rgba(78,197,193,.12);
}

/* Error state */
.cf-input.cf-error,.cf-select.cf-error,.cf-textarea.cf-error{
  border-color:rgba(220,80,80,.6);
  box-shadow:0 0 0 3px rgba(220,80,80,.1);
}
.cf-error-msg {
  font-family:var(--font-body);font-size:.72rem;font-weight:400;
  color:#e26b6b;margin-top:2px;display:none;
}
.cf-field.has-error .cf-error-msg{display:block;}

/* Select arrow */
.cf-select-wrap{position:relative;}
.cf-select-wrap::after {
  content:'';
  position:absolute;right:14px;top:50%;
  transform:translateY(-50%);
  width:0;height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:5px solid rgba(255,255,255,.35);
  pointer-events:none;
  transition:border-top-color .25s;
}
.cf-select-wrap:focus-within::after{border-top-color:var(--teal);}
.cf-select{cursor:pointer;padding-right:36px;}
.cf-select option{background:#0d1b2a;color:#fff;}

/* Textarea */
.cf-textarea{resize:vertical;min-height:100px;line-height:1.65;}

/* Submit button */
.cf-submit {
  width:100%;
  margin-top:22px;
  font-family:var(--font-head);font-size:.75rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--navy);background:var(--teal);
  border:none;border-radius:4px;
  padding:17px 32px;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:background .25s,transform .2s,box-shadow .25s;
  position:relative;overflow:hidden;
}
.cf-submit::before {
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.18) 50%,transparent 70%);
  transform:translateX(-100%);
  transition:transform .5s ease;
}
.cf-submit:hover{
  background:var(--teal-soft);
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(78,197,193,.45);
}
.cf-submit:hover::before{transform:translateX(100%);}
.cf-submit:active{transform:translateY(0);}
.cf-submit svg{width:16px;height:16px;stroke:var(--navy);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

/* Success message */
.cf-success {
  display:none;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:40px 20px;gap:16px;
  min-height:340px;
}
.cf-success.show{display:flex;}
.cf-success-icon {
  width:64px;height:64px;border-radius:50%;
  background:rgba(78,197,193,.12);border:1.5px solid rgba(78,197,193,.3);
  display:flex;align-items:center;justify-content:center;
  animation:cf-pop .4s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes cf-pop{from{transform:scale(0);opacity:0;}to{transform:scale(1);opacity:1;}}
.cf-success-icon svg{width:28px;height:28px;stroke:var(--teal);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.cf-success-title{font-family:var(--font-head);font-weight:600;font-size:1.15rem;color:var(--white);}
.cf-success-sub{font-family:var(--font-body);font-size:.9rem;font-weight:300;line-height:1.75;color:rgba(255,255,255,.5);max-width:320px;}

/* ══ RIGHT — CONTACTS ════════════════════════════ */
.contact-info-wrap{
  display:flex;flex-direction:column;gap:clamp(20px,2.8vw,28px);
}

.ci-block {
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.075);
  border-radius:6px;
  padding:clamp(20px,2.8vw,28px);
  display:flex;align-items:flex-start;gap:16px;
  position:relative;overflow:hidden;
  transition:border-color .3s,box-shadow .3s,background .3s;
}
.ci-block::before {
  content:'';position:absolute;
  left:0;top:0;bottom:0;width:0;
  background:var(--teal);
  transition:width .3s ease;
}
.ci-block:hover {
  border-color:rgba(78,197,193,.25);
  background:rgba(255,255,255,.058);
  box-shadow:0 12px 36px rgba(0,0,0,.3);
}
.ci-block:hover::before{width:2.5px;}

.ci-icon-wrap {
  width:44px;height:44px;flex-shrink:0;
  border-radius:10px;
  background:rgba(78,197,193,.09);
  border:1px solid rgba(78,197,193,.16);
  display:flex;align-items:center;justify-content:center;
  transition:background .3s,border-color .3s,transform .3s;
  position:relative;z-index:1;
}
.ci-block:hover .ci-icon-wrap {
  background:rgba(78,197,193,.16);
  border-color:rgba(78,197,193,.3);
  transform:scale(1.07);
}
.ci-icon-wrap svg {
  width:20px;height:20px;stroke:var(--teal);
  stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round;
}

.ci-text{position:relative;z-index:1;min-width:0;}
.ci-label {
  font-family:var(--font-head);font-size:.58rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;
  color:rgba(255,255,255,.3);margin-bottom:5px;
}
.ci-value {
  font-family:var(--font-body);font-size:clamp(.9rem,1.4vw,.97rem);
  font-weight:400;line-height:1.65;color:rgba(255,255,255,.82);
}
.ci-value a {
  color:rgba(255,255,255,.82);text-decoration:none;
  transition:color .2s;
}
.ci-value a:hover{color:var(--teal);}

/* Schedule grid */
.ci-schedule{display:grid;grid-template-columns:auto 1fr;gap:3px 16px;}
.ci-sch-day{font-size:.82rem;color:rgba(255,255,255,.45);font-weight:300;}
.ci-sch-time{font-size:.82rem;color:rgba(255,255,255,.72);font-weight:400;}

/* ── MAP ─────────────────────────────────────────── */
.contact-map-wrap {
  max-width:1160px;
  margin:clamp(44px,6vw,72px) auto 0;
  position:relative;z-index:1;
  border-radius:6px;overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  opacity:0;transform:translateY(24px);
  transition:opacity .9s ease,transform .9s ease;
}
.contact-map-wrap.ct-vis{opacity:1;transform:translateY(0);}

/* Map iframe */
.contact-map-wrap iframe {
  width:100%;height:380px;display:block;
  border:none;filter:grayscale(30%) brightness(.85) contrast(1.05);
  transition:filter .4s ease;
}
.contact-map-wrap:hover iframe{filter:grayscale(0%) brightness(.95) contrast(1.05);}

/* Map overlay pin badge */
.map-pin-badge {
  position:absolute;top:20px;left:20px;z-index:2;
  background:var(--navy);
  border:1px solid rgba(78,197,193,.3);
  border-radius:4px;
  padding:10px 16px;
  display:flex;align-items:center;gap:10px;
  box-shadow:0 8px 28px rgba(0,0,0,.5);
  pointer-events:none;
}
.map-pin-badge svg{width:16px;height:16px;stroke:var(--teal);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.map-pin-badge span{font-family:var(--font-head);font-size:.68rem;font-weight:600;letter-spacing:.08em;color:rgba(255,255,255,.85);}

/* ── FOOTER STRIP ────────────────────────────────── */
.contact-footer {
  margin-top:0;
  border-top:1px solid rgba(255,255,255,.06);
  padding:clamp(28px,4vw,40px) clamp(24px,6vw,80px);
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:16px;
}
.cf-footer-copy {
  font-family:var(--font-body);font-size:.78rem;font-weight:300;
  color:rgba(255,255,255,.28);letter-spacing:.02em;
}
.cf-footer-copy em{color:var(--teal);font-style:normal;}
.cf-footer-socials{display:flex;gap:12px;}
.cf-social-btn {
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .25s,border-color .25s,transform .2s;
}
.cf-social-btn:hover{
  background:rgba(78,197,193,.12);
  border-color:rgba(78,197,193,.3);
  transform:translateY(-2px);
}
.cf-social-btn svg{width:15px;height:15px;stroke:rgba(255,255,255,.5);stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .25s;}
.cf-social-btn:hover svg{stroke:var(--teal);}
