    :root {
      --primary: #613379;
      --primary-dark: #4a2360;
      --primary-deeper: #3a1a4d;
      --primary-light: #7b4a94;
      --primary-soft: #f3eaf8;
      --primary-glow: rgba(97, 51, 121, 0.15);

      /* All accents map to purple tones */
      --accent: #7b4a94;
      --accent-soft: #f3eaf8;

      --gold: #613379;
      --gold-soft: #f3eaf8;

      --teal: #7b4a94;
      --teal-soft: #f3eaf8;

      --rose: #8b5ca0;
      --rose-soft: #f5edf9;

      --sky: #613379;
      --sky-soft: #f3eaf8;

      --sage: #7b4a94;
      --sage-soft: #f3eaf8;

      --warm: #9b59b6;
      --warm-soft: #f5eef8;

      --text: #1a1a2e;
      --text-mid: #4a4a5a;
      --text-light: #7a7a8e;
      --bg: #ffffff;
      --bg-soft: #f9f7fb;
      --bg-warm: #fdfbfe;
      --border: #e8e2ee;
      --border-light: #f2eef6;

      --shadow-xs: 0 1px 2px rgba(97, 51, 121, 0.04);
      --shadow-sm: 0 2px 8px rgba(97, 51, 121, 0.06);
      --shadow-md: 0 4px 24px rgba(97, 51, 121, 0.08);
      --shadow-lg: 0 8px 40px rgba(97, 51, 121, 0.10);
      --shadow-xl: 0 20px 60px rgba(97, 51, 121, 0.14);

      --radius: 16px;
      --radius-sm: 10px;
      --radius-xs: 6px;
      --radius-full: 9999px;

      --gradient: linear-gradient(135deg, #613379 0%, #7b4a94 50%, #613379 100%);
      --gradient-dark: linear-gradient(135deg, #3a1a4d 0%, #613379 50%, #4a2360 100%);
      --gradient-hero: linear-gradient(135deg, #613379 0%, #7b4a94 40%, #9b59b6 100%);
      --gradient-warm: linear-gradient(135deg, #613379 0%, #7b4a94 100%);
      --gradient-gold: linear-gradient(135deg, #613379 0%, #7b4a94 100%);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', Georgia, serif;
      line-height: 1.2;
    }

    .container {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 28px;
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    /* ─── Utility ─── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--gradient);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--primary-dark);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .section-subtitle {
      font-size: 1.08rem;
      color: var(--text-light);
      max-width: 620px;
      line-height: 1.8;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 34px;
      border-radius: var(--radius-full);
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.35s ease;
      text-decoration: none;
      letter-spacing: 0.01em;
    }

    .btn-primary {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 4px 16px rgba(97, 51, 121, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(97, 51, 121, 0.35);
    }

    .btn-white {
      background: #fff;
      color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.35);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
    }

    /* ─── Navbar ─── */
    .navbar {
      background: transparent;
      padding: 18px 0;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      position: fixed;
      background: #613379;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 4px 30px rgba(97, 51, 121, 0.08);
      padding: 10px 0;
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      height: 50px;
      width: auto;
      transition: all 0.3s;
      filter: brightness(0) invert(1);
    }

    .navbar.scrolled .logo img {
      height: 42px;
      filter: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
      padding: 4px 0;
    }

    .navbar.scrolled .nav-links a {
      color: #fff;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .navbar.scrolled .nav-links a:hover {
      color: rgba(255, 255, 255, 0.85) !important;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-light);
      border-radius: 2px;
      transition: width 0.3s;
    }

    .navbar.scrolled .nav-links a::after {
      background: var(--gradient);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9rem;
    }

    .navbar.scrolled .nav-phone {
      color: var(--primary);
    }

    .nav-phone-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.78rem;
      transition: all 0.3s;
    }

    .navbar.scrolled .nav-phone-icon {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .nav-book {
      padding: 10px 24px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 600;
      backdrop-filter: blur(8px);
      transition: all 0.3s;
    }

    .nav-book:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-1px);
    }

    .navbar.scrolled .nav-book {
      background: var(--gradient);
      border: none;
      color: #fff;
      box-shadow: 0 2px 12px rgba(97, 51, 121, 0.2);
    }

    .navbar.scrolled .nav-book:hover {
      box-shadow: 0 4px 20px rgba(97, 51, 121, 0.35);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.4rem;
      color: #fff;
      cursor: pointer;
    }

    .navbar.scrolled .mobile-toggle {
      color: #fff;
    }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--primary-deeper);
      overflow: hidden;
    }

    /* Full background image with overlay */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg,
          rgba(58, 26, 77, 0.92) 0%,
          rgba(97, 51, 121, 0.82) 35%,
          rgba(74, 35, 96, 0.75) 60%,
          rgba(97, 51, 121, 0.65) 100%);
    }

    /* Animated particles / decorative elements */
    .hero-decor {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      animation: orbFloat 8s ease-in-out infinite;
    }

    .hero-orb-1 {
      width: 500px;
      height: 500px;
      top: -100px;
      right: -80px;
      background: radial-gradient(circle, rgba(123, 74, 148, 0.15) 0%, transparent 70%);
      animation-delay: 0s;
    }

    .hero-orb-2 {
      width: 350px;
      height: 350px;
      bottom: -80px;
      left: -60px;
      background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 70%);
      animation-delay: -3s;
    }

    .hero-orb-3 {
      width: 200px;
      height: 200px;
      top: 30%;
      left: 45%;
      background: radial-gradient(circle, rgba(97, 51, 121, 0.1) 0%, transparent 70%);
      animation-delay: -5s;
    }

    .hero-line {
      position: absolute;
      top: 20%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    }

    .hero-line-2 {
      top: 60%;
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(15px, -20px) scale(1.03);
      }

      66% {
        transform: translate(-10px, 15px) scale(0.97);
      }
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
      padding-top: 60px;
      padding-bottom: 40px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 10px 22px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 28px;
      backdrop-filter: blur(12px);
      animation: fadeSlideUp 0.8s ease-out 0.2s both;
    }

    .hero-badge i {
      color: var(--primary-light);
      font-size: 0.7rem;
    }

    .hero-badge .badge-dot {
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 3.6rem);
      color: #fff;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
      line-height: 1.15;
      animation: fadeSlideUp 0.8s ease-out 0.35s both;
    }

    .hero h1 .highlight {
      position: relative;
      display: inline;
      color: #e0d4f0;
    }

    .hero-text {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.85;
      margin-bottom: 36px;
      max-width: 530px;
      animation: fadeSlideUp 0.8s ease-out 0.5s both;
    }

    .hero-stats {
      display: flex;
      gap: 0;
      margin-bottom: 36px;
      animation: fadeSlideUp 0.8s ease-out 0.65s both;
    }

    .hero-stat {
      position: relative;
      padding: 0 32px;
      text-align: center;
    }

    .hero-stat:first-child {
      padding-left: 0;
    }

    .hero-stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 6px;
      bottom: 6px;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }

    .hero-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 4px;
      font-weight: 500;
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      animation: fadeSlideUp 0.8s ease-out 0.8s both;
    }

    .hero-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: #fff;
      color: var(--primary);
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.35s;
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
      font-family: 'Inter', sans-serif;
    }

    .hero-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 255, 255, 0.35);
      background: #f3eaf8;
    }

    .hero-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
      font-size: 0.92rem;
      cursor: pointer;
      transition: color 0.3s;
    }

    .hero-cta-secondary:hover {
      color: #fff;
    }

    .hero-cta-secondary i {
      width: 44px;
      height: 44px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      transition: all 0.3s;
    }

    .hero-cta-secondary:hover i {
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeSlideUp 0.8s ease-out 0.95s both;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.76rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.06);
      padding: 7px 16px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .trust-badge i {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.68rem;
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── Hero Form ─── */
    .hero-form-card {
      background: rgba(255, 255, 255, 0.97);
      border-radius: 24px;
      padding: 36px 30px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      animation: fadeSlideUp 0.8s ease-out 0.5s both;
      backdrop-filter: blur(20px);
    }

    .hero-form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient);
    }

    .form-header {
      text-align: center;
      margin-bottom: 26px;
    }

    .form-header h3 {
      font-size: 1.3rem;
      color: var(--primary-dark);
      margin-bottom: 6px;
    }

    .form-header p {
      font-size: 0.86rem;
      color: var(--text-light);
    }

    .hero-form .form-group {
      margin-bottom: 14px;
    }

    .hero-form label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: 5px;
    }

    .hero-form input,
    .hero-form select,
    .hero-form textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xs);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--bg-soft);
      transition: all 0.25s;
      outline: none;
    }

    .hero-form input:focus,
    .hero-form select:focus,
    .hero-form textarea:focus {
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 3px var(--primary-glow);
    }

    .hero-form input::placeholder,
    .hero-form textarea::placeholder {
      color: #b0a8b8;
    }

    .hero-form textarea {
      resize: vertical;
      min-height: 64px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--gradient);
      color: #fff;
      border: none;
      border-radius: var(--radius-xs);
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.35s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 6px;
      box-shadow: 0 4px 16px rgba(97, 51, 121, 0.25);
      letter-spacing: 0.01em;
    }

    .form-submit:hover {
      box-shadow: 0 6px 24px rgba(97, 51, 121, 0.35);
      transform: translateY(-1px);
    }

    .form-footer {
      text-align: center;
      margin-top: 14px;
      font-size: 0.76rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .form-footer i {
      color: var(--teal);
    }

    /* ─── Insurance ─── */
    .insurance-bar {
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border-light);
      padding: 28px 0;
    }

    .insurance-bar .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .insurance-bar-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .insurance-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .insurance-logo-img {
      height: 36px;
      width: auto;
      object-fit: contain;
      opacity: 0.55;
      transition: all 0.35s ease;
      filter: grayscale(30%);
    }

    .insurance-logo-img:hover {
      opacity: 1;
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .insurance-logo-img.tall {
      height: 32px;
    }

    .insurance-logo-img.short {
      height: 28px;
    }

    /* ─── About ─── */
    .about-section {
      padding: 70px 0;
      background: var(--bg);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image-main {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      position: relative;
    }

    .about-image-main img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }

    .about-image-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(97, 51, 121, 0.08) 100%);
    }

    .about-float-card {
      position: absolute;
      bottom: -28px;
      right: -20px;
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 22px 28px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 16px;
      border-left: 4px solid var(--primary);
    }

    .about-float-icon {
      width: 54px;
      height: 54px;
      background: var(--primary-soft);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.3rem;
    }

    .about-float-text strong {
      display: block;
      font-size: 1.5rem;
      color: var(--primary-dark);
      font-family: 'Playfair Display', serif;
    }

    .about-float-text span {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 32px;
    }

    .about-feature {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px;
      border-radius: var(--radius-sm);
      transition: background 0.3s;
    }

    .about-feature:hover {
      background: var(--bg-soft);
    }

    .about-feature-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .about-feature-icon.purple {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .about-feature-icon.gold {
      background: var(--gold-soft);
      color: var(--primary-light);
    }

    .about-feature-icon.teal {
      background: var(--teal-soft);
      color: var(--teal);
    }

    .about-feature-icon.rose {
      background: var(--rose-soft);
      color: var(--rose);
    }

    .about-feature h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2px;
    }

    .about-feature p {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.55;
    }

    /* ─── Conditions ─── */
    .conditions-section {
      padding: 70px 0;
      background: var(--bg-soft);
      position: relative;
    }

    .conditions-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(97, 51, 121, 0.04) 0%, transparent 70%);
      border-radius: 50%;
    }

    .conditions-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .conditions-header .section-subtitle {
      margin: 0 auto;
    }

    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .condition-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px 24px 28px;
      border: 1px solid var(--border-light);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .condition-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      transition: height 0.35s;
    }

    .condition-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(97, 51, 121, 0.12);
      border-color: transparent;
    }

    .condition-card:hover::before {
      height: 4px;
    }

    .condition-card.purple::before {
      background: var(--gradient);
    }

    .condition-card.rose::before {
      background: var(--gradient-warm);
    }

    .condition-card.teal::before {
      background: linear-gradient(90deg, var(--primary), var(--teal));
    }

    .condition-card.gold::before {
      background: var(--gradient-gold);
    }

    .condition-card.sky::before {
      background: linear-gradient(90deg, var(--primary), var(--sky));
    }

    .condition-card.sage::before {
      background: linear-gradient(90deg, var(--primary), var(--sage));
    }

    .condition-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    .condition-icon.purple {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .condition-icon.rose {
      background: var(--rose-soft);
      color: var(--rose);
    }

    .condition-icon.teal {
      background: var(--teal-soft);
      color: var(--teal);
    }

    .condition-icon.gold {
      background: var(--gold-soft);
      color: var(--primary-light);
    }

    .condition-icon.sky {
      background: var(--sky-soft);
      color: var(--sky);
    }

    .condition-icon.sage {
      background: var(--sage-soft);
      color: var(--sage);
    }

    .condition-card h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .condition-card>p {
      font-size: 0.84rem;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .condition-symptoms {
      list-style: none;
    }

    .condition-symptoms li {
      font-size: 0.79rem;
      color: var(--text-mid);
      padding: 3.5px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .condition-symptoms li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--primary-light);
    }

    /* ─── Services ─── */
    .services-section {
      padding: 70px 0;
      background: var(--bg);
    }

    .services-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .services-header .section-subtitle {
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--bg-soft);
      border-radius: var(--radius);
      padding: 40px 30px;
      border: 1px solid var(--border-light);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      background: #fff;
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .service-card:hover::after {
      opacity: 1;
    }

    .service-icon-wrap {
      width: 68px;
      height: 68px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 24px;
    }

    .service-card h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }

    .service-card>p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.76rem;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: var(--primary-soft);
      color: var(--primary);
    }

    /* ─── TMS Section ─── */
    .tms-section {
      padding: 70px 0;
      background: var(--gradient-dark);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .tms-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(123, 74, 148, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .tms-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(155, 89, 182, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }

    .tms-header {
      text-align: center;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }

    .tms-header .section-label {
      color: var(--primary-light);
    }

    .tms-header .section-label::before {
      background: var(--primary-light);
    }

    .tms-header .section-title {
      color: #fff;
    }

    .tms-header .section-subtitle {
      color: rgba(255, 255, 255, 0.65);
      margin: 0 auto;
    }

    .tms-image-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }

    .tms-image-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .tms-image-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }

    .tms-image-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(58, 26, 77, 0.4) 100%);
    }

    .tms-image-label {
      position: absolute;
      bottom: 16px;
      left: 20px;
      z-index: 2;
      font-size: 0.88rem;
      font-weight: 600;
      color: #fff;
    }

    .tms-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .tms-step {
      text-align: center;
    }

    .tms-step-number {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 auto 16px;
      transition: all 0.3s;
    }

    .tms-step:hover .tms-step-number {
      background: rgba(123, 74, 148, 0.15);
      border-color: var(--primary-light);
      color: var(--primary-light);
    }

    .tms-step h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .tms-step p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    .tms-facts {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
      position: relative;
      z-index: 1;
    }

    .tms-fact {
      text-align: center;
      padding: 28px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      transition: all 0.3s;
    }

    .tms-fact:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .tms-fact-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.1rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1;
      margin-bottom: 6px;
    }

    .tms-fact-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ─── Doctor ─── */
    .doctor-section {
      padding: 70px 0;
      background: var(--bg-warm);
    }

    .doctor-grid {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 48px;
      align-items: center;
    }

    .doctor-image {
      position: relative;
    }

    .doctor-image-frame {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .doctor-image-frame img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
    }

    .doctor-credentials-float {
      position: absolute;
      bottom: -24px;
      left: -16px;
      background: var(--gradient);
      color: #fff;
      padding: 20px 28px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-lg);
    }

    .doctor-credentials-float strong {
      display: block;
      font-size: 1.1rem;
    }

    .doctor-credentials-float span {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .doctor-name {
      font-size: 2.1rem;
      color: var(--primary-dark);
      margin-bottom: 6px;
    }

    .doctor-title {
      font-size: 1rem;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 22px;
    }

    .doctor-bio {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 24px;
    }

    .doctor-credentials {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 32px;
    }

    .doctor-credential {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: #fff;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-light);
      transition: all 0.3s;
    }

    .doctor-credential:hover {
      box-shadow: var(--shadow-sm);
    }

    .doctor-credential i {
      width: 38px;
      height: 38px;
      background: var(--primary-soft);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 0.85rem;
    }

    .doctor-credential span {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-mid);
    }

    /* ─── Testimonials ─── */
    .testimonials-section {
      padding: 70px 0;
      background: var(--bg);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .testimonials-header .section-subtitle {
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: var(--bg-soft);
      border-radius: var(--radius);
      padding: 36px 28px;
      border: 1px solid var(--border-light);
      transition: all 0.35s;
      position: relative;
    }

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--primary-soft);
      line-height: 1;
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
      background: #fff;
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 18px;
    }

    .testimonial-stars i {
      color: var(--primary-light);
      font-size: 0.85rem;
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      color: #fff;
      background: var(--gradient);
    }

    .testimonial-author-info strong {
      display: block;
      font-size: 0.9rem;
      color: var(--text);
    }

    .testimonial-author-info span {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    /* ─── Locations ─── */
    .locations-section {
      padding: 70px 0;
      background: var(--bg-soft);
    }

    .locations-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .locations-header .section-subtitle {
      margin: 0 auto;
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .location-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: all 0.35s;
    }

    .location-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .location-card-image {
      height: 170px;
      overflow: hidden;
    }

    .location-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .location-card-image-placeholder {
      width: 100%;
      height: 100%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.25);
      font-size: 3rem;
    }

    .location-card-body {
      padding: 28px 24px;
    }

    .location-card h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 14px;
    }

    .location-card-detail {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 0.86rem;
      color: var(--text-mid);
    }

    .location-card-detail i {
      color: var(--primary);
      width: 16px;
      text-align: center;
      margin-top: 3px;
      font-size: 0.8rem;
    }

    .location-card-actions {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .location-card-actions a {
      flex: 1;
      text-align: center;
      padding: 10px;
      border-radius: var(--radius-xs);
      font-size: 0.82rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .loc-btn-primary {
      background: var(--gradient);
      color: #fff;
    }

    .loc-btn-primary:hover {
      box-shadow: 0 4px 16px rgba(97, 51, 121, 0.3);
    }

    .loc-btn-outline {
      border: 1.5px solid var(--border);
      color: var(--text-mid);
    }

    .loc-btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    /* ─── FAQ ─── */
    .faq-section {
      padding: 70px 0;
      background: var(--bg);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 48px;
      align-items: start;
    }

    .faq-sidebar .section-title {
      margin-bottom: 16px;
    }

    .faq-sidebar p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--bg-soft);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-item.active {
      background: #fff;
      box-shadow: var(--shadow-sm);
      border-color: var(--primary);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 22px;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      gap: 12px;
    }

    .faq-question i {
      color: var(--primary);
      font-size: 0.82rem;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 0 22px 20px;
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.8;
    }

    /* ─── CTA ─── */
    .cta-section {
      padding: 64px 0;
      background: var(--gradient-dark);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(123, 74, 148, 0.08) 0%, transparent 60%);
      border-radius: 50%;
    }

    .cta-content {
      text-align: center;
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      color: #fff;
      margin-bottom: 16px;
    }

    .cta-content p {
      font-size: 1.08rem;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 40px;
      line-height: 1.85;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--primary-deeper);
      color: rgba(255, 255, 255, 0.7);
      padding: 56px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-logo {
      margin-bottom: 16px;
    }

    .footer-logo img {
      height: 40px;
      filter: brightness(10);
    }

    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.8;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-brand p+p {
      margin-top: 0;
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 22px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-col a:hover {
      color: var(--primary-light);
    }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: rgba(255, 255, 255, 0.35);
    }

    .footer-legal a:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    /* ─── Video Journey ─── */
    .journey-section {
      padding: 70px 0;
      background: linear-gradient(160deg, #f9f5fc 0%, #f3eaf8 50%, #fdf8ee 100%);
      position: relative;
      overflow: hidden;
    }

    .journey-section::before {
      content: '';
      position: absolute;
      top: -150px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(97, 51, 121, 0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .journey-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(123, 74, 148, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .journey-header {
      text-align: center;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }

    .journey-header .section-subtitle {
      margin: 0 auto;
    }

    .journey-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    .journey-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(97, 51, 121, 0.08);
      border: 1px solid rgba(97, 51, 121, 0.06);
      transition: all 0.4s ease;
    }

    .journey-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(97, 51, 121, 0.16);
    }

    .journey-video-wrap {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #0a0a0a;
      overflow: hidden;
    }

    .journey-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .journey-video-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .journey-card:hover .journey-video-wrap::after {
      opacity: 1;
    }

    .journey-card-info {
      padding: 24px 24px 28px;
      text-align: center;
    }

    .journey-quote-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      margin-bottom: 12px;
      transition: transform 0.3s;
    }

    .journey-card:hover .journey-quote-icon {
      transform: scale(1.1);
    }

    .journey-quote-icon.purple {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .journey-quote-icon.gold {
      background: var(--gold-soft);
      color: var(--primary-light);
    }

    .journey-card-info h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .journey-card-info p {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
    }

    /* Mobile scroll for journey */
    .journey-scroll-controls {
      display: none;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
      position: relative;
      z-index: 1;
    }

    .journey-scroll-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: var(--shadow-sm);
    }

    .journey-scroll-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-form-card {
        max-width: 500px;
      }

      .hero-cta-row {
        flex-wrap: wrap;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

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

      .doctor-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

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

      .tms-image-row {
        grid-template-columns: 1fr;
      }

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

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

    @media (max-width: 768px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hero .container {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .mobile-toggle {
        display: block;
      }

      .hero {
        min-height: auto;
        padding: 120px 0 48px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero-stats {
        gap: 0;
        flex-wrap: wrap;
      }

      .hero-stat {
        padding: 0 20px;
      }

      .hero-stat-number {
        font-size: 1.5rem;
      }

      .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
      }

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

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

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

      .journey-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
      }

      .journey-scroll-controls {
        display: none;
      }

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

      .tms-steps {
        grid-template-columns: 1fr;
      }

      .tms-facts {
        grid-template-columns: 1fr 1fr;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .doctor-credentials {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .section-title {
        font-size: 1.75rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .about-float-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
      }
    }

    /* ─── Animations ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up:nth-child(2) {
      transition-delay: 0.08s;
    }

    .fade-up:nth-child(3) {
      transition-delay: 0.16s;
    }

    .fade-up:nth-child(4) {
      transition-delay: 0.24s;
    }

    .fade-up:nth-child(5) {
      transition-delay: 0.32s;
    }

    .fade-up:nth-child(6) {
      transition-delay: 0.4s;
    }

    .fade-up:nth-child(7) {
      transition-delay: 0.48s;
    }

    .fade-up:nth-child(8) {
      transition-delay: 0.56s;
    }

    /* ─── Mobile Nav ─── */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(58, 26, 77, 0.96);
      backdrop-filter: blur(24px);
      z-index: 9999;
      padding: 80px 32px 32px;
    }

    .mobile-nav.active {
      display: flex;
      flex-direction: column;
    }

    .mobile-nav-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.6rem;
      cursor: pointer;
    }

    .mobile-nav a {
      display: block;
      padding: 16px 0;
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-weight: 500;
    }

    .mobile-nav a:hover {
      color: var(--primary-light);
    }

    .mobile-nav-cta {
      margin-top: auto;
      padding: 20px 0;
    }

    .mobile-nav-cta a {
      display: block;
      text-align: center;
      padding: 16px;
      background: var(--gradient);
      color: #fff;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 1rem;
      border-bottom: none;
    }