:root {
    /* Brand palette: #FCFCF0 base, #FCB8B8 primary, #9EC480 nutrition, #B7E2F7 accent. */
    --olive: #FCB8B8;
    --olive-dark: #D9868B;
    --olive-light: #FFD9D9;
    --gold: #FCB8B8;
    --pink: #FCB8B8;
    --pink-dark: #D9868B;
    --pink-light: #FFD9D9;
    --pink-rgb: 252, 184, 184;
    --green: #9EC480;
    --green-dark: #7BA15F;
    --green-light: #DDEBCE;
    --green-rgb: 158, 196, 128;
    --blue: #B7E2F7;
    --blue-dark: #74BFE6;
    --blue-light: #E7F6FD;
    --blue-rgb: 183, 226, 247;
    --cream: #FCFCF0;
    --sand: #FFF2F2;
    --charcoal: #2A2A2A;
    --slate: #5A5A5A;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  nav.scrolled {
    background: rgba(252, 252, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
    padding: 12px 0;
  }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    position: relative;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--olive-dark);
    text-decoration: none;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(252, 184, 184,0.24);
    box-shadow: 0 10px 28px rgba(42,42,42,0.06);
    transition: transform 0.28s, background 0.28s, border-color 0.28s, box-shadow 0.28s;
  }

  .logo:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.84);
    border-color: rgba(252, 184, 184,0.42);
    box-shadow: 0 14px 34px rgba(252, 184, 184,0.14);
  }

  .logo span {
    color: var(--olive-light);
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(252, 184, 184,0.18);
    box-shadow: 0 8px 22px rgba(42,42,42,0.045);
    transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--olive-dark);
    background: linear-gradient(135deg, rgba(252, 184, 184,0.28), rgba(183, 226, 247,0.22));
    border-color: rgba(252, 184, 184,0.38);
    box-shadow: 0 12px 28px rgba(252, 184, 184,0.16);
    transform: translateY(-1px);
  }

  .nav-cta {
    background: var(--olive) !important;
    color: var(--white) !important;
    border-color: rgba(252, 184, 184,0.68) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.8px;
    transition: all 0.3s !important;
    box-shadow: 0 12px 28px rgba(252, 184, 184,0.28);
  }

  .nav-cta:hover {
    background: var(--olive-dark) !important;
    transform: translateY(-1px);
  }

  .nav-cta::after { display: none !important; }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 6px 0;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 46%, var(--blue-light) 100%);
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 184, 184, 0.16) 0%, transparent 70%);
    top: -100px;
    right: -100px;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 226, 247, 0.24) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-content { max-width: 560px; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 184, 184, 0.1);
    border: 1px solid rgba(252, 184, 184, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--olive-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out both;
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--olive);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--olive);
  }

  .hero p {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--olive);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(252, 184, 184, 0.3);
  }

  .btn-primary:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 184, 184, 0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid rgba(42, 42, 42, 0.2);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .btn-secondary:hover {
    border-color: var(--olive);
    color: var(--olive);
    transform: translateY(-2px);
  }

  /* DNA Helix Visual */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .dna-container {
    width: 400px;
    height: 520px;
    position: relative;
  }

  .dna-canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Glow backdrop behind canvas */
  .dna-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(252, 184, 184, 0.08) 0%, rgba(252, 184, 184, 0.04) 40%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
  }

  @keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  }

  /* ── FLOAT CARDS ── */
  .hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.6);
    animation: float 5s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 3;
  }

  .hero-float-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(252, 184, 184, 0.15), 0 2px 4px rgba(0,0,0,0.05);
  }

  .hero-float-card.card-1 {
    top: 30px;
    right: -30px;
    animation-delay: 0s;
    animation-duration: 5s;
  }

  .hero-float-card.card-2 {
    bottom: 50px;
    left: -40px;
    animation-delay: -2.5s;
    animation-duration: 5.5s;
  }

  .float-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .float-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .float-card-icon.icon-dna {
    background: linear-gradient(135deg, rgba(252, 184, 184, 0.12), rgba(252, 184, 184, 0.18));
  }

  .float-card-icon.icon-time {
    background: linear-gradient(135deg, rgba(252, 184, 184, 0.12), rgba(252, 184, 184, 0.2));
  }

  .float-card-text { display: flex; flex-direction: column; }

  .float-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.2px;
    line-height: 1.2;
  }

  .float-card-value {
    font-size: 12px;
    color: var(--slate);
    margin-top: 2px;
    font-weight: 500;
  }

  .float-card-bar {
    height: 4px;
    border-radius: 4px;
    background: var(--sand);
    overflow: hidden;
  }

  .float-card-bar-fill {
    height: 100%;
    border-radius: 4px;
    animation: bar-fill 2s ease-out 1s both;
  }

  .float-card-bar-fill.fill-green {
    width: 82%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
  }

  .float-card-bar-fill.fill-gold {
    width: 65%;
    background: linear-gradient(90deg, var(--pink), var(--blue));
  }

  @keyframes bar-fill {
    from { width: 0%; }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 40px 0;
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .stat-item {
    text-align: center;
    position: relative;
  }

  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--olive);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--slate);
    font-weight: 500;
  }

  /* ── SECTION STYLES ── */
  .section {
    padding: 100px 0;
  }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
  }

  /* ── PACKAGES ── */
  .packages-section {
    background: var(--white);
  }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .package-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
  }

  .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
    opacity: 0;
    transition: opacity 0.4s;
  }

  .package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(252, 184, 184, 0.15);
  }

  .package-card:hover::before { opacity: 1; }

  .package-card.featured {
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 62%, #F7C8C8 100%);
    color: var(--white);
  }

  .package-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--blue), var(--pink-light));
  }

  .package-card.featured .package-desc,
  .package-card.featured .package-feature,
  .package-card.featured .package-price-note {
    color: rgba(255,255,255,0.75);
  }

  .package-card.featured .package-price {
    color: var(--white);
  }

  .package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .package-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: rgba(252, 184, 184, 0.1);
  }

  .package-card.featured .package-icon {
    background: rgba(255,255,255,0.12);
  }

  .package-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .package-desc {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .package-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
  }

  .package-feature svg {
    flex-shrink: 0;
    margin-top: 3px;
  }

  .package-card.featured .package-feature svg circle {
    fill: rgba(255,255,255,0.2);
  }

  .package-card.featured .package-feature svg path {
    stroke: var(--white);
  }

  .package-divider {
    height: 1px;
    background: rgba(0,0,0,0.07);
    margin-bottom: 24px;
  }

  .package-card.featured .package-divider {
    background: rgba(255,255,255,0.15);
  }

  .package-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

  .package-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--olive-dark);
  }

  .package-currency {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.7;
  }

  .package-price-note {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 24px;
  }

  .package-sub-prices {
    display: flex;
    gap: 16px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

  .sub-price-tag {
    background: rgba(252, 184, 184, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--olive-dark);
  }

  .package-card.featured .sub-price-tag {
    background: rgba(255,255,255,0.12);
    color: var(--white);
  }

  .package-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    background: var(--olive);
    color: var(--white);
  }

  .package-btn:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(252, 184, 184, 0.3);
  }

  .package-card.featured .package-btn {
    background: var(--white);
    color: var(--olive-dark);
  }

  .package-card.featured .package-btn:hover {
    background: var(--sand);
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 184, 184, 0.04) 0%, transparent 70%);
    top: -80px;
    left: -80px;
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }

  /* Connecting line between rows */
  .how-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(252, 184, 184, 0.15), rgba(252, 184, 184, 0.15), transparent);
    z-index: 0;
  }

  .how-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
  }

  .how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(252, 184, 184, 0.12);
    border-color: rgba(252, 184, 184, 0.12);
  }

  .how-step-top {
    padding: 28px 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .how-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--olive);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(252, 184, 184, 0.25);
  }

  .how-step:hover .how-step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(252, 184, 184, 0.35);
  }

  .how-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(252, 184, 184, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
  }

  .how-step:hover .how-step-icon {
    background: rgba(252, 184, 184, 0.1);
    transform: scale(1.05);
  }

  .how-step-body {
    padding: 0 28px 28px;
  }

  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
    transition: color 0.3s;
  }

  .how-step:hover h3 {
    color: var(--olive-dark);
  }

  .how-step p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.75;
  }

  .how-step-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .how-step:hover .how-step-bar {
    transform: scaleX(1);
  }

  /* ── ABOUT ── */
  .about-section {
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image-area {
    position: relative;
  }

  .about-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--sand), var(--cream));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(252, 184, 184, 0.05), transparent);
  }

  .about-dna-icon {
    font-size: 120px;
    opacity: 0.15;
    filter: grayscale(0.3);
  }

  .about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    background: var(--olive);
    opacity: 0.06;
  }

  .about-content { max-width: 520px; }

  .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
  }

  .credential-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(252, 184, 184, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ── EPIGENETICS BANNER ── */
  .epi-banner {
    background: linear-gradient(135deg, #C9787C 0%, var(--pink-dark) 58%, #8EB874 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .epi-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    top: -200px;
    right: -100px;
  }

  .epi-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .epi-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .epi-banner p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 12px;
  }

  .epi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    margin-top: 32px;
    opacity: 0.95;
  }

  /* ── FAQ ── */
  .faq-section {
    background: var(--cream);
    position: relative;
  }

  .faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
  }

  .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--olive), var(--olive-light));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .faq-item:hover {
    box-shadow: 0 6px 24px rgba(252, 184, 184, 0.08);
    border-color: rgba(252, 184, 184, 0.08);
    transform: translateX(2px);
  }

  .faq-item.open::before { opacity: 1; }

  .faq-item.open {
    box-shadow: 0 8px 32px rgba(252, 184, 184, 0.1);
    border-color: rgba(252, 184, 184, 0.12);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    gap: 20px;
    transition: color 0.3s;
  }

  .faq-item:hover .faq-question,
  .faq-item.open .faq-question {
    color: var(--olive-dark);
  }

  .faq-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--olive);
    opacity: 0.5;
    margin-right: 14px;
    flex-shrink: 0;
    width: 24px;
    transition: opacity 0.3s;
  }

  .faq-item.open .faq-num,
  .faq-item:hover .faq-num {
    opacity: 1;
  }

  .faq-q-text {
    flex: 1;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(252, 184, 184, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-icon svg {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-item:hover .faq-icon {
    background: rgba(252, 184, 184, 0.12);
  }

  .faq-item.open .faq-icon {
    background: var(--olive);
    border-radius: 10px;
    transform: rotate(0deg);
  }

  .faq-item.open .faq-icon svg {
    transform: rotate(45deg);
  }

  .faq-item.open .faq-icon svg line {
    stroke: var(--white);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-answer-inner {
    padding: 0 28px 28px 70px;
    font-size: 14.5px;
    color: var(--slate);
    line-height: 1.8;
    position: relative;
  }

  .faq-answer-inner::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    width: 1px;
    height: calc(100% - 28px);
    background: rgba(252, 184, 184, 0.12);
  }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .contact-info > p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
  }

  .contact-card:hover { transform: translateX(4px); }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(252, 184, 184, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-card-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
  }

  .contact-card-text p {
    font-size: 14px;
    color: var(--slate);
  }

  .contact-card-text a {
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
  }

  .contact-form-area {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
  }

  .contact-form-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(0,0,0,0.08);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    transition: border-color 0.3s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--olive);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  [data-request-fields].hidden {
    display: none;
  }

  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(252, 184, 184, 0.3);
  }

  /* ── PACKAGE FINDER, REPORT, TRUST ── */
  .finder-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 58%, var(--blue-light) 100%);
    position: relative;
    overflow: hidden;
  }

  .finder-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(252, 184, 184,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(252, 184, 184,0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at 68% 42%, black 0%, transparent 68%);
    pointer-events: none;
  }

  .finder-shell {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(252, 184, 184,0.18);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(42,42,42,0.09);
    backdrop-filter: blur(18px);
  }

  .finder-grid,
  .report-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.08fr 0.9fr;
    gap: 24px;
    align-items: center;
  }

  .finder-copy h2,
  .report-copy h2,
  .appointment-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--charcoal);
  }

  .finder-copy p,
  .report-copy p,
  .appointment-band p {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .finder-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
  }

  .finder-mini-stats div {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 14px 12px;
  }

  .finder-mini-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1;
    color: var(--olive-dark);
    margin-bottom: 5px;
  }

  .finder-mini-stats span {
    color: var(--slate);
    font-size: 12px;
    font-weight: 700;
  }

  .finder-tool {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .finder-question {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 14px;
  }

  .finder-question span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
  }

  .finder-question small {
    max-width: 190px;
    color: var(--slate);
    font-size: 12px;
    line-height: 1.45;
    text-align: right;
  }

  .finder-options {
    display: grid;
    gap: 12px;
  }

  .finder-option {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 15px 16px 15px 15px;
    background: rgba(255,255,255,0.72);
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
  }

  .finder-option:hover {
    border-color: rgba(252, 184, 184,0.45);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(42,42,42,0.07);
  }

  .finder-option:has(input:checked) {
    border-color: rgba(224, 138, 138,0.5);
    background: linear-gradient(135deg, rgba(252, 184, 184,0.16), rgba(255,255,255,0.9));
    box-shadow: inset 0 0 0 1px rgba(252, 184, 184,0.18), 0 16px 36px rgba(252, 184, 184,0.14);
  }

  .finder-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }

  .finder-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .finder-option-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .finder-option-copy strong {
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.25;
  }

  .finder-option-copy small {
    color: var(--slate);
    font-size: 12px;
    line-height: 1.45;
  }

  .finder-option input {
    accent-color: var(--olive);
    flex-shrink: 0;
  }

  .finder-result {
    margin-top: 0;
    min-height: 100%;
    padding: 26px;
    border-radius: 16px;
    background: #2d2d2d;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 50px rgba(42,42,42,0.18);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .finder-result::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(252, 184, 184,0.14);
    right: -74px;
    top: -76px;
  }

  .finder-result-top {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
  }

  .finder-result-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
  }

  .finder-result-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.46);
    margin-bottom: 8px;
  }

  .finder-result h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 0;
  }

  .finder-result p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .finder-result-meta {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .finder-result-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 700;
  }

  .finder-result a,
  .comparison-card a,
  .info-card {
    color: var(--olive-dark);
    text-decoration: none;
    font-weight: 700;
  }

  .finder-result-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .finder-result-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    text-align: center;
    padding: 10px 14px;
  }

  #finderResultLink {
    background: var(--olive);
    color: var(--white);
  }

  .finder-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .comparison-section {
    background: var(--white);
    position: relative;
  }

  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .comparison-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .comparison-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(252, 184, 184,0.28);
  }

  .comparison-card:hover::before,
  .comparison-card.featured::before {
    opacity: 1;
  }

  .comparison-card.featured {
    background: #2d2d2d;
    color: var(--white);
    box-shadow: 0 22px 60px rgba(42,42,42,0.18);
  }

  .comparison-card-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
  }

  .comparison-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    flex-shrink: 0;
  }

  .comparison-card.featured .comparison-icon {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .comparison-badge {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .comparison-card.featured .comparison-badge {
    color: rgba(255,255,255,0.5);
  }

  .comparison-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.18;
    margin: 0;
    color: var(--charcoal);
  }

  .comparison-card.featured h3 {
    color: var(--white);
  }

  .comparison-price {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 22px;
  }

  .comparison-card.featured .comparison-price {
    color: var(--white);
  }

  .comparison-rows {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    flex: 1;
  }

  .comparison-rows div {
    padding: 13px 0;
    border-top: 1px solid rgba(0,0,0,0.07);
  }

  .comparison-card.featured .comparison-rows div {
    border-top-color: rgba(255,255,255,0.1);
  }

  .comparison-rows span {
    display: block;
    color: var(--slate);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .comparison-card.featured .comparison-rows span {
    color: rgba(255,255,255,0.42);
  }

  .comparison-rows strong {
    display: block;
    color: var(--charcoal);
    font-size: 14px;
    line-height: 1.45;
  }

  .comparison-card.featured .comparison-rows strong {
    color: rgba(255,255,255,0.76);
  }

  .comparison-card > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    border-radius: 999px;
    background: var(--olive);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    transition: background 0.25s, transform 0.25s;
  }

  .comparison-card > a:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
  }

  .report-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 58%, var(--blue-light) 100%);
    position: relative;
    overflow: hidden;
  }

  .report-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 184, 184,0.11), transparent 68%);
    left: -180px;
    top: 80px;
    pointer-events: none;
  }

  .report-preview {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .report-dashboard {
    position: relative;
    width: min(620px, 100%);
    padding: 18px 18px 86px;
  }

  .report-window {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(42,42,42,0.16);
    overflow: hidden;
    backdrop-filter: blur(18px);
  }

  .report-window-top {
    height: 56px;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    background: #2d2d2d;
    color: var(--white);
  }

  .report-dots {
    display: flex;
    gap: 6px;
  }

  .report-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
  }

  .report-dots span:first-child { background: var(--olive-light); }
  .report-dots span:nth-child(2) { background: var(--olive); }

  .report-window-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .report-window-status {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .report-window-body {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 18px;
    padding: 20px;
    align-items: stretch;
  }

  .report-page {
    width: 100%;
    min-height: 398px;
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 34px rgba(42,42,42,0.08);
    transform: none;
    border: 1px solid rgba(0,0,0,0.06);
  }

  .report-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .report-head > span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--olive-dark);
  }

  .report-head > span span {
    color: var(--olive-light);
    font-weight: 400;
  }

  .report-head small {
    color: var(--slate);
    font-size: 11px;
    text-align: right;
    white-space: nowrap;
  }

  .report-score {
    margin: 26px 0;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
  }

  .report-score strong,
  .report-score span {
    display: block;
    color: var(--charcoal);
    font-weight: 700;
  }

  .report-score small {
    display: block;
    color: var(--slate);
    font-size: 12px;
    margin-top: 4px;
  }

  .report-score span {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--olive-dark);
  }

  .report-bars {
    display: grid;
    gap: 12px;
    margin: 28px 0;
  }

  .report-bars div {
    height: 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 100px;
    overflow: hidden;
  }

  .report-bars span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
  }

  .report-list {
    display: grid;
    gap: 10px;
  }

  .report-list p {
    display: grid;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    color: var(--slate);
    font-size: 13px;
    margin: 0;
  }

  .report-list p strong {
    color: var(--charcoal);
    font-size: 13px;
  }

  .report-list p span {
    color: var(--slate);
    font-size: 12px;
    line-height: 1.35;
  }

  .report-side {
    display: grid;
    gap: 12px;
  }

  .report-side-card {
    border-radius: 14px;
    padding: 16px;
    background: #2d2d2d;
    color: var(--white);
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(42,42,42,0.12);
  }

  .report-side-card.muted {
    background: linear-gradient(135deg, rgba(252, 184, 184,0.18), rgba(255,255,255,0.85));
    color: var(--charcoal);
    border: 1px solid rgba(252, 184, 184,0.22);
    box-shadow: none;
  }

  .report-side-card span {
    color: rgba(255,255,255,0.52);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .report-side-card.muted span {
    color: var(--olive-dark);
  }

  .report-side-card strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.1;
  }

  .kit-mockup {
    position: absolute;
    right: 46px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: end;
    gap: 14px;
  }

  .kit-box {
    width: 168px;
    height: 126px;
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.95), rgba(239,232,214,0.95)),
      linear-gradient(90deg, transparent 0 48%, rgba(252, 184, 184,0.18) 48% 52%, transparent 52%);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 44px rgba(42,42,42,0.16);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .kit-box span {
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--slate);
  }

  .kit-box strong {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--olive-dark);
  }

  .swab-stick {
    width: 110px;
    height: 8px;
    border-radius: 100px;
    background: linear-gradient(90deg, #f7f7f7 0 72%, var(--olive-light) 72% 100%);
    transform: rotate(-15deg);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    margin-bottom: 18px;
  }

  .report-points {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
  }

  .report-points div {
    color: var(--slate);
    font-size: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-sm);
  }

  .report-points strong {
    color: var(--charcoal);
  }

  .trust-layout {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 26px;
    align-items: stretch;
  }

  .trust-assurances {
    display: grid;
    gap: 14px;
  }

  .trust-vault {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #2d2d2d;
    color: var(--white);
    padding: 30px;
    box-shadow: 0 24px 70px rgba(42,42,42,0.18);
  }

  .trust-vault::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -100px;
    top: -96px;
    background: rgba(252, 184, 184,0.14);
  }

  .trust-vault-top {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
  }

  .vault-lock {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
    flex-shrink: 0;
  }

  .trust-vault-top span {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .trust-vault-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.15;
    margin: 0;
    color: var(--white);
  }

  .vault-flow {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .vault-flow div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 4px 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .vault-flow span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(252, 184, 184,0.18);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
  }

  .vault-flow strong {
    color: var(--white);
    font-size: 15px;
    line-height: 1.2;
  }

  .vault-flow small {
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.45;
  }

  .vault-note {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    padding: 15px;
    background: rgba(252, 184, 184,0.12);
    border: 1px solid rgba(252, 184, 184,0.16);
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.6;
  }

  .vault-note strong {
    color: var(--white);
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .trust-card,
  .info-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .trust-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 142px;
  }

  .trust-card:hover,
  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(252, 184, 184,0.12);
    color: var(--olive-dark);
    font-weight: 800;
    margin-bottom: 0;
  }

  .trust-card h3,
  .info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--charcoal);
  }

  .trust-card p,
  .info-card p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
  }

  .trust-actions {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .appointment-section {
    padding-top: 0;
  }

  .appointment-band {
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius);
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    box-shadow: var(--shadow-heavy);
  }

  .appointment-band .section-tag {
    color: var(--olive-light);
  }

  .appointment-band h2,
  .appointment-band p {
    color: var(--white);
  }

  .appointment-band p {
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin-bottom: 0;
  }

  .appointment-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .info-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--sand) 100%);
  }

  .info-hub {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: stretch;
  }

  .info-feature,
  .info-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .info-feature {
    min-height: 430px;
    border-radius: 18px;
    padding: 32px;
    background:
      linear-gradient(135deg, rgba(45,45,45,0.96), rgba(45,45,45,0.88)),
      radial-gradient(circle at 70% 15%, rgba(252, 184, 184,0.3), transparent 36%);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(42,42,42,0.16);
    justify-content: space-between;
    overflow: hidden;
    position: relative;
  }

  .info-feature::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    right: -96px;
    top: -92px;
    background: rgba(252, 184, 184,0.14);
  }

  .info-feature:hover,
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(252, 184, 184,0.28);
  }

  .info-feature-top,
  .info-feature-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
  }

  .info-feature-top span,
  .info-feature-top small {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.68);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .info-feature h3 {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
    color: var(--white);
    margin: 54px 0 18px;
    max-width: 520px;
  }

  .info-feature p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 0 30px;
  }

  .info-feature-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
  }

  .info-feature-footer strong {
    color: var(--white);
  }

  .info-feature-footer span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-list {
    display: grid;
    gap: 14px;
  }

  .info-card span {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--olive-dark);
  }

  .info-card {
    min-height: 134px;
    background: rgba(255,255,255,0.82);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
  }

  .info-card h3 {
    font-size: 22px;
  }

  .info-tags {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 2px;
  }

  .info-tags span {
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
  }

  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 100px;
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 14px 36px rgba(123, 161, 95,0.28);
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(123, 161, 95,0.34);
  }

  /* ── CONTENT PAGES ── */
  .content-page {
    padding: 130px 0 80px;
    background: var(--cream);
  }

  .content-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .content-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--olive-dark);
    margin-bottom: 14px;
  }

  .content-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .content-lead {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.8;
    max-width: 760px;
    margin-bottom: 34px;
  }

  .content-panel {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
  }

  .content-panel h2,
  .content-panel h3 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .content-panel h2 { font-size: 26px; }
  .content-panel h3 { font-size: 22px; margin-top: 24px; }

  .content-panel p,
  .content-panel li {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.8;
  }

  .content-panel p { margin-bottom: 12px; }
  .content-panel ul,
  .content-panel ol { padding-left: 20px; margin-bottom: 14px; }
  .content-panel a { color: var(--olive-dark); font-weight: 700; }

  .content-note {
    background: rgba(252, 184, 184,0.10);
    border-left: 4px solid var(--olive);
    padding: 16px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--slate);
    margin: 18px 0;
  }

  .article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .knowledge-feature {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 22px;
    padding: 34px;
    border-radius: 18px;
    background: #2d2d2d;
    color: var(--white);
    box-shadow: 0 24px 70px rgba(42,42,42,0.16);
    position: relative;
    overflow: hidden;
  }

  .knowledge-feature::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -110px;
    top: -110px;
    background: rgba(252, 184, 184,0.14);
  }

  .knowledge-feature span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.52);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .knowledge-feature h2 {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    margin: 0 0 14px;
    max-width: 680px;
  }

  .knowledge-feature p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
  }

  .knowledge-feature a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--olive);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
  }

  .article-card {
    display: block;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 26px;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
  }

  .knowledge-grid .article-card {
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .knowledge-grid .article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(252, 184, 184,0.28);
  }

  .article-card span {
    display: inline-block;
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .article-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .article-card p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
  }

  .sample-report-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sample-report-full .content-panel {
    margin-bottom: 0;
  }

  .pd-trust-strip {
    background: #2d2d2d;
    color: var(--white);
    padding: 0;
  }

  .pd-trust-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .pd-trust-strip-inner div {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .pd-trust-strip-inner strong,
  .pd-trust-strip-inner span {
    display: block;
  }

  .pd-trust-strip-inner strong {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 5px;
  }

  .pd-trust-strip-inner span {
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.45;
  }

  /* ── SITE-WIDE POLISH OVERRIDES ── */
  .stats-bar {
    background: #2d2d2d;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 34px 0;
    box-shadow: 0 18px 48px rgba(42,42,42,0.16);
  }
  .stats-inner { gap: 18px; }
  .stat-item {
    text-align: left;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-number { color: var(--white); }
  .stat-label { color: rgba(255,255,255,0.55); font-weight: 700; }

  .packages-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  }
  .packages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .package-card {
    background: rgba(255,255,255,0.86);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-soft);
    min-height: 520px;
    display: flex;
    flex-direction: column;
  }
  .package-card.featured { background: linear-gradient(135deg, #2d2d2d 0%, #4C3A3B 54%, #6F4B4E 100%); }
  .package-icon {
    margin-bottom: 18px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(42,42,42,0.07);
  }
  .package-name { font-size: 22px; }
  .package-desc { margin-bottom: 18px; }
  .package-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
    padding: 13px 0;
    margin-bottom: 18px;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .package-meta span {
    color: var(--slate);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .package-meta strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--olive-dark);
    white-space: nowrap;
  }
  .package-card.featured .package-meta { border-color: rgba(255,255,255,0.12); }
  .package-card.featured .package-meta span { color: rgba(255,255,255,0.45); }
  .package-card.featured .package-meta strong { color: var(--white); }
  .package-features { flex: 1; }

  .how-section {
    background: linear-gradient(135deg, var(--sand) 0%, var(--blue-light) 100%);
  }
  .how-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }
  .how-grid::before {
    top: 50px;
    left: 50px;
    right: 50px;
  }
  .how-step {
    background: rgba(255,255,255,0.82);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
  }
  .how-step-top {
    padding: 22px 18px 0;
    display: grid;
    gap: 12px;
    justify-items: start;
    margin-bottom: 16px;
  }
  .how-step-body { padding: 0 18px 22px; }
  .how-step h3 { font-size: 18px; }

  .about-image-frame { background: #2d2d2d; }
  .about-image-frame::before {
    background:
      radial-gradient(circle at 70% 20%, rgba(252, 184, 184,0.18), transparent 36%),
      linear-gradient(145deg, rgba(255,255,255,0.05), transparent);
  }
  .about-panel {
    position: relative;
    z-index: 1;
    width: min(360px, 82%);
    min-height: 420px;
    border-radius: 18px;
    padding: 26px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 22px 60px rgba(0,0,0,0.18);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(16px);
  }
  .about-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
  }
  .about-panel-top span {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .about-panel-top strong {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
  }
  .about-panel-ring {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    margin: 26px auto;
    border: 1px solid rgba(252, 184, 184,0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 184, 184,0.08);
  }
  .about-panel .about-dna-icon {
    font-size: 76px;
    opacity: 0.9;
    filter: grayscale(0.1);
  }
  .about-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .about-panel-grid div {
    border-radius: 12px;
    padding: 12px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .about-panel-grid span,
  .about-panel-grid strong { display: block; }
  .about-panel-grid span {
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .about-panel-grid strong {
    color: var(--white);
    font-size: 15px;
  }

  .contact-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--sand) 100%);
  }
  .contact-grid {
    gap: 28px;
    align-items: stretch;
  }
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .contact-card {
    padding: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
  }
  .contact-form-area {
    background: #2d2d2d;
    color: var(--white);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 24px 70px rgba(42,42,42,0.16);
  }
  .contact-form-area h3,
  .contact-form-area label { color: var(--white); }

  @media (max-width: 1200px) {
    .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .how-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px;
  }

  .footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
  }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 320px;
  }
  .footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
  }
  .footer-social {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .footer-social:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(252, 184, 184,0.35);
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.mobile-open {
      display: flex !important;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(252, 252, 240,0.98);
      backdrop-filter: blur(20px);
      padding: 24px 20px;
      gap: 10px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    .nav-links.mobile-open li,
    .nav-links.mobile-open a {
      width: 100%;
    }
    .nav-links.mobile-open a {
      justify-content: center;
      min-height: 42px;
    }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .finder-grid,
    .report-grid { grid-template-columns: 1fr; }
    .finder-shell { padding: 28px; }
    .finder-result { min-height: auto; }
    .report-dashboard { width: 100%; }
    .trust-layout { grid-template-columns: 1fr; }
    .trust-vault { order: -1; }
    .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .appointment-band { grid-template-columns: 1fr; }
    .appointment-actions { justify-content: flex-start; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-area { order: -1; }
    .about-image-frame { aspect-ratio: 16/9; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .packages-grid { grid-template-columns: 1fr; }
    .finder-tool,
    .report-page,
    .appointment-band { padding: 24px; }
    .finder-tool { padding: 0; }
    .finder-shell { padding: 20px; border-radius: 14px; }
    .finder-mini-stats { grid-template-columns: 1fr; }
    .finder-question {
      display: grid;
      gap: 6px;
      align-items: start;
    }
    .finder-question small {
      max-width: none;
      text-align: left;
    }
    .finder-option {
      min-height: 78px;
      padding: 13px;
    }
    .finder-option-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      font-size: 22px;
    }
    .finder-result {
      padding: 22px;
    }
    .finder-result-actions {
      grid-template-columns: 1fr;
    }
    .report-preview { min-height: 660px; align-items: flex-start; }
    .report-dashboard { padding: 0 0 118px; }
    .report-window-top {
      grid-template-columns: 48px 1fr;
      height: auto;
      min-height: 58px;
    }
    .report-window-status { display: none; }
    .report-window-body { grid-template-columns: 1fr; padding: 14px; }
    .report-side { grid-template-columns: 1fr; }
    .report-side-card { min-height: 82px; }
    .kit-mockup { left: 14px; right: auto; bottom: 0; }
    .kit-box { width: 150px; height: 112px; }
    .swab-stick { width: 86px; }
    .trust-layout,
    .comparison-grid,
    .info-hub,
    .info-list,
    .info-grid,
    .article-grid,
    .sample-report-full { grid-template-columns: 1fr; }
    .info-feature { min-height: auto; padding: 24px; }
    .info-feature h3 { margin-top: 42px; }
    .knowledge-feature {
      grid-template-columns: 1fr;
      padding: 24px;
    }
    .knowledge-feature a {
      justify-self: start;
    }
    .trust-card {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .trust-vault {
      padding: 22px;
    }
    .trust-vault-top {
      align-items: flex-start;
    }
    .trust-vault-top h3 {
      font-size: 24px;
    }
    .trust-actions {
      display: grid;
    }
    .comparison-card {
      min-height: auto;
      padding: 22px;
    }
    .comparison-price {
      font-size: 30px;
    }
    .content-inner { padding: 0 20px; }
    .content-panel { padding: 24px; }
    .whatsapp-float {
      right: 16px;
      bottom: 16px;
      padding: 13px;
    }
    .whatsapp-float span { display: none; }
    .how-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item:not(:last-child)::after { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .pd-trust-strip-inner {
      grid-template-columns: 1fr;
      padding: 18px 20px;
    }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section-inner, .nav-inner { padding: 0 20px; }
    .hero-inner { padding: 0 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ── TOAST NOTIFICATION ── */
  .toast {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 420px;
    box-shadow: var(--shadow-heavy);
    animation: toastIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .toast.success {
    background: var(--green-light);
    border: 1px solid rgba(158, 196, 128, 0.34);
    color: var(--green-dark);
  }

  .toast.error {
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #991b1b;
  }

  .toast-icon { font-size: 22px; flex-shrink: 0; margin-top: -2px; }

  .toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    transition: opacity 0.2s;
  }

  .toast-close:hover { opacity: 1; }

  .toast a { color: var(--olive); font-weight: 600; }

  @keyframes toastIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
  }

  /* ── FORM LOADING ── */
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .form-submit .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Honeypot */
  .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

  /* ── CART NOTIFICATION ── */
  .cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(252, 184, 184,0.15);
    font-size: 14px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── GENETIC COUNSELING / NUTRITION SPLIT ── */
  .dna-pathways-section {
    position: relative;
    background:
      radial-gradient(circle at 16% 20%, rgba(252, 184, 184,0.13), transparent 30%),
      radial-gradient(circle at 86% 24%, rgba(183, 226, 247,0.24), transparent 28%),
      linear-gradient(135deg, var(--cream) 0%, var(--sand) 58%, var(--blue-light) 100%);
    overflow: hidden;
  }

  .dna-pathways-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background-image:
      linear-gradient(rgba(224, 138, 138,0.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(224, 138, 138,0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at 50% 48%, black 0%, transparent 72%);
    pointer-events: none;
  }

  .pathway-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  .pathway-panel {
    min-width: 0;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 24px 70px rgba(42,42,42,0.09);
    overflow: hidden;
    position: relative;
  }

  .pathway-genetics {
    background: rgba(255,255,255,0.84);
  }

  .pathway-nutrition {
    background: linear-gradient(135deg, #2d2d2d 0%, #344233 56%, #3f5238 100%);
    color: var(--white);
  }

  .pathway-nutrition::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    top: -130px;
    border-radius: 50%;
    background: rgba(158, 196, 128, 0.22);
  }

  .pathway-panel-head {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }

  .pathway-panel-head > span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .pathway-nutrition .pathway-panel-head > span {
    color: var(--green);
  }

  .pathway-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
    margin-bottom: 12px;
    color: var(--charcoal);
    text-wrap: balance;
  }

  .pathway-nutrition h3 {
    color: var(--white);
  }

  .pathway-panel p {
    color: var(--slate);
    line-height: 1.75;
    margin: 0;
  }

  .pathway-nutrition p {
    color: rgba(255,255,255,0.68);
  }

  .pathway-bubbles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
  }

  .pathway-bubble {
    min-width: 0;
    padding: 18px 14px;
    border-radius: 16px;
    background: rgba(252, 252, 240,0.88);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.35s, box-shadow 0.35s;
  }

  .pathway-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(42,42,42,0.10);
  }

  .pathway-visual {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.8px;
    background:
      linear-gradient(135deg, rgba(42,42,42,0.18), rgba(42,42,42,0.08)),
      radial-gradient(circle at 35% 24%, #f7fbff, var(--blue) 36%, var(--blue-dark) 70%, #55718a);
    box-shadow: inset 0 0 0 6px rgba(255,255,255,0.42), 0 14px 28px rgba(42,42,42,0.12);
    animation: pathwayFloat 5.5s ease-in-out infinite;
  }

  .pathway-bubble:nth-child(2) .pathway-visual {
    animation-delay: -1.8s;
    background:
      linear-gradient(135deg, rgba(123, 161, 95, 0.14), rgba(42,42,42,0.08)),
      radial-gradient(circle at 35% 24%, #f4faec, var(--green-light) 38%, var(--green-dark) 74%);
  }

  .pathway-bubble:nth-child(3) .pathway-visual {
    animation-delay: -3.2s;
    background:
      linear-gradient(135deg, rgba(252, 184, 184,0.16), rgba(42,42,42,0.08)),
      radial-gradient(circle at 35% 24%, #fff5f6, var(--pink) 38%, #9b7074 74%);
  }

  @keyframes pathwayFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .pathway-bubble strong {
    display: block;
    color: var(--charcoal);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .pathway-bubble small {
    display: block;
    color: var(--slate);
    font-size: 12px;
    line-height: 1.55;
  }

  .pathway-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
  }

  .pathway-list li {
    position: relative;
    padding-left: 24px;
    color: var(--slate);
    font-size: 13px;
    font-weight: 700;
  }

  .pathway-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--olive);
    box-shadow: 0 0 0 5px rgba(252, 184, 184,0.13);
  }

  .pathway-bridge {
    display: grid;
    place-items: center;
    color: var(--olive-dark);
    opacity: 0.82;
  }

  .pathway-bridge span {
    width: 1px;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(transparent, rgba(224, 138, 138,0.35), transparent);
  }

  .pathway-bridge svg {
    width: 52px;
    height: 52px;
    padding: 12px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(42,42,42,0.12);
    animation: bridgePulse 2.8s ease-in-out infinite;
  }

  @keyframes bridgePulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }

  .nutrition-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
  }

  .nutrition-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 6px 14px;
    padding: 16px;
    border-radius: 15px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    transition: transform 0.3s, background 0.3s;
  }

  .nutrition-card:hover,
  .nutrition-card.active {
    transform: translateX(4px);
    background: rgba(158, 196, 128, 0.18);
    border-color: rgba(158, 196, 128, 0.35);
  }

  .nutrition-card span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(158, 196, 128, 0.22);
    color: var(--green-light);
    font-size: 12px;
    font-weight: 900;
  }

  .nutrition-card strong {
    color: var(--white);
    line-height: 1.25;
  }

  .nutrition-card small {
    color: rgba(255,255,255,0.62);
    line-height: 1.55;
  }

  .nutrition-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nutrition-tags span {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(158, 196, 128, 0.14);
    border: 1px solid rgba(158, 196, 128, 0.3);
    color: var(--green-light);
    font-size: 12px;
    font-weight: 800;
    transition: background 0.25s, color 0.25s;
  }
  .nutrition-tags span:hover {
    background: rgba(158, 196, 128, 0.28);
    color: var(--white);
  }

  @media (max-width: 1120px) {
    .pathway-split {
      grid-template-columns: 1fr;
    }

    .pathway-bridge {
      height: 54px;
    }

    .pathway-bridge span {
      display: none;
    }

    .pathway-bridge svg {
      transform: rotate(90deg);
    }
  }

  @media (max-width: 768px) {
    .dna-pathways-section .section-header {
      text-align: left;
    }

    .pathway-panel {
      padding: 20px;
      border-radius: 14px;
    }

    .pathway-bubbles,
    .pathway-list {
      grid-template-columns: 1fr;
    }

    .pathway-bubble {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 8px 14px;
      text-align: left;
      align-items: center;
    }

    .pathway-visual {
      grid-row: span 2;
      width: 68px;
      height: 68px;
      margin: 0;
    }

    .pathway-bubble strong,
    .pathway-bubble small {
      margin: 0;
    }

    .nutrition-card {
      grid-template-columns: 38px 1fr;
      padding: 14px;
    }
  }

  /* ── HOMEPAGE VISUAL REPAIR ── */
  main a,
  .section a,
  .footer-col a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .packages-section,
  .finder-section,
  .comparison-section,
  .report-section,
  .trust-section,
  .info-section,
  .faq-section,
  .contact-section {
    isolation: isolate;
  }

  .section-header {
    margin-bottom: clamp(34px, 5vw, 58px);
  }

  .section-title {
    text-wrap: balance;
  }

  .section-subtitle {
    max-width: 720px;
    margin-inline: auto;
  }

  .finder-section a,
  .comparison-section a,
  .report-section a,
  .trust-section a,
  .appointment-section a,
  .info-section a,
  .contact-section a {
    text-decoration: none;
  }

  .finder-shell,
  .comparison-card,
  .report-window,
  .trust-card,
  .trust-vault,
  .info-feature,
  .info-card,
  .faq-item,
  .contact-card,
  .contact-form-area {
    border-radius: 14px;
  }

  .packages-grid,
  .comparison-grid,
  .how-grid,
  .info-hub,
  .contact-grid {
    align-items: stretch;
  }

  .package-card {
    min-height: auto;
  }

  .package-btn,
  .comparison-card > a,
  .finder-result a,
  .info-feature-footer span,
  .form-submit {
    min-height: 42px;
  }

  .finder-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr) minmax(300px, 0.86fr);
  }

  .finder-copy,
  .finder-tool,
  .finder-result {
    min-width: 0;
  }

  .finder-result p,
  .comparison-rows strong,
  .trust-card p,
  .info-card p,
  .report-points div {
    overflow-wrap: anywhere;
  }

  .comparison-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .comparison-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .comparison-card-top {
    min-height: 74px;
  }

  .comparison-rows {
    flex: 1;
  }

  .comparison-card > a {
    margin-top: 18px;
  }

  .report-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 5vw, 56px);
  }

  .report-preview,
  .report-copy {
    min-width: 0;
  }

  .report-copy {
    align-self: center;
  }

  .report-copy .btn-primary {
    width: fit-content;
  }

  .trust-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 55%, var(--blue-light) 100%);
  }

  .trust-card {
    box-shadow: 0 12px 34px rgba(42,42,42,0.055);
  }

  .trust-card p {
    margin: 0;
  }

  .info-card {
    min-width: 0;
  }

  .faq-grid {
    max-width: 760px;
    margin-inline: auto;
  }

  .contact-card-text p,
  .contact-card-text a {
    word-break: break-word;
  }

  @media (max-width: 1180px) {
    .finder-grid,
    .report-grid,
    .trust-layout,
    .info-hub,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .comparison-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .finder-result {
      min-height: auto;
    }
  }

  @media (max-width: 768px) {
    body {
      line-height: 1.62;
    }

    .hero {
      min-height: auto;
      padding: 118px 0 70px;
    }

    .hero h1 {
      font-size: clamp(38px, 12vw, 52px);
    }

    .hero p {
      font-size: 15px;
      margin-bottom: 28px;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
    }

    .hero-buttons a {
      justify-content: center;
    }

    .stats-bar {
      padding: 18px 0;
    }

    .stats-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .stat-item {
      padding: 14px;
      text-align: center;
    }

    .stat-number {
      font-size: 28px;
    }

    .section {
      padding: 58px 0;
    }

    .section-header {
      text-align: left;
      margin-bottom: 28px;
    }

    .section-subtitle {
      margin-inline: 0;
      font-size: 14px;
    }

    .packages-grid,
    .comparison-grid,
    .how-grid,
    .trust-layout,
    .info-hub,
    .info-list,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .package-card,
    .comparison-card,
    .trust-card,
    .info-card,
    .contact-card {
      padding: 20px;
      border-radius: 12px;
    }

    .package-card.featured {
      box-shadow: 0 16px 42px rgba(42,42,42,0.16);
    }

    .package-name,
    .comparison-card h3,
    .info-card h3 {
      font-size: 20px;
    }

    .package-desc,
    .package-feature,
    .comparison-rows strong,
    .trust-card p,
    .info-card p {
      font-size: 13px;
      line-height: 1.55;
    }

    .package-meta {
      align-items: center;
      margin-bottom: 14px;
    }

    .package-meta strong {
      font-size: 21px;
    }

    .finder-shell {
      padding: 18px;
      border-radius: 14px;
      background: rgba(255,255,255,0.9);
    }

    .finder-copy h2,
    .report-copy h2,
    .appointment-band h2 {
      font-size: 30px;
    }

    .finder-mini-stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin: 20px 0;
    }

    .finder-mini-stats div {
      padding: 12px 8px;
      text-align: center;
    }

    .finder-question {
      margin-top: 8px;
    }

    .finder-option {
      min-height: auto;
      align-items: flex-start;
    }

    .finder-option-copy small {
      display: block;
    }

    .finder-result {
      padding: 20px;
      border-radius: 14px;
    }

    .comparison-card-top {
      min-height: auto;
    }

    .comparison-rows {
      gap: 8px;
    }

    .comparison-rows div {
      padding: 11px 0;
    }

    .how-grid::before {
      display: none;
    }

    .how-step-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .report-section {
      background: var(--sand);
    }

    .report-preview {
      min-height: auto;
    }

    .report-dashboard {
      padding: 0;
    }

    .report-window {
      border-radius: 14px;
    }

    .report-window-body {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .report-page {
      min-height: auto;
      padding: 16px;
    }

    .report-side {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .report-side-card {
      min-height: 82px;
      padding: 12px;
    }

    .report-side-card strong {
      font-size: 16px;
    }

    .kit-mockup {
      display: none;
    }

    .report-points div {
      padding: 13px;
    }

    .trust-card {
      grid-template-columns: 44px 1fr;
      gap: 12px;
    }

    .trust-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
    }

    .trust-vault {
      padding: 20px;
      border-radius: 14px;
    }

    .vault-flow div {
      grid-template-columns: 34px 1fr;
      padding: 12px;
    }

    .appointment-section {
      padding-top: 40px;
    }

    .appointment-band {
      padding: 24px;
      border-radius: 14px;
    }

    .appointment-actions {
      display: grid;
    }

    .info-feature {
      min-height: auto;
      padding: 22px;
      border-radius: 14px;
    }

    .info-feature h3 {
      font-size: 29px;
      margin-top: 36px;
    }

    .info-tags {
      gap: 8px;
    }

    .faq-question {
      gap: 12px;
      padding: 18px;
    }

    .faq-q-text {
      font-size: 14px;
    }

    .contact-form-area {
      padding: 24px;
      border-radius: 14px;
    }
  }

  /* ─────────────────────────────────────────────
     DYNAMIC LAYER — modern motion, depth & flow
     ───────────────────────────────────────────── */

  /* Scroll progress bar */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--olive) 0%, var(--olive-light) 50%, var(--olive) 100%);
    background-size: 200% 100%;
    z-index: 10000;
    box-shadow: 0 0 14px rgba(252, 184, 184,0.55);
    transition: width 0.12s ease-out;
    animation: progressShimmer 3s linear infinite;
  }
  @keyframes progressShimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
  }

  /* Floating decorative orbs (hero) */
  .hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
    animation: orbDrift 18s ease-in-out infinite;
  }
  .hero-orb.orb-1 {
    width: 420px; height: 420px;
    top: -80px; left: -100px;
    background: radial-gradient(circle, rgba(252, 184, 184, 0.6) 0%, transparent 70%);
  }
  .hero-orb.orb-2 {
    width: 360px; height: 360px;
    bottom: -120px; right: 10%;
    background: radial-gradient(circle, rgba(158, 196, 128, 0.5) 0%, transparent 70%);
    animation-duration: 22s;
    animation-delay: -6s;
  }
  .hero-orb.orb-3 {
    width: 280px; height: 280px;
    top: 30%; right: 35%;
    background: radial-gradient(circle, rgba(183, 226, 247, 0.55) 0%, transparent 70%);
    animation-duration: 28s;
    animation-delay: -12s;
    opacity: 0.5;
  }
  @keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(40px, -30px) scale(1.08); }
    50%      { transform: translate(-30px, 40px) scale(0.95); }
    75%      { transform: translate(20px, 20px) scale(1.05); }
  }

  /* Marquee ticker */
  .marquee {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    border-top: 1px solid rgba(224, 138, 138,0.08);
    border-bottom: 1px solid rgba(224, 138, 138,0.08);
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track {
    display: inline-flex;
    gap: 48px;
    white-space: nowrap;
    animation: marqueeMove 38s linear infinite;
    will-change: transform;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--olive-dark);
    letter-spacing: 0.3px;
  }
  .marquee-item::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--olive);
    margin-left: 48px;
    box-shadow: 0 0 12px rgba(252, 184, 184,0.7);
  }
  @keyframes marqueeMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Animated section title underline */
  .section-title {
    position: relative;
    display: inline-block;
  }
  .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--olive) 50%, transparent);
    transform: translateX(-50%);
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  }
  .reveal.visible .section-title::after { width: 120px; }

  /* Reveal variants — directional & scale */
  .reveal-left  { opacity: 0; transform: translateX(-50px); transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .reveal-right { opacity: 0; transform: translateX(50px);  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .reveal-scale { opacity: 0; transform: scale(0.92);       transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .reveal-left.visible,
  .reveal-right.visible,
  .reveal-scale.visible { opacity: 1; transform: none; }

  /* Stagger children when parent becomes visible */
  .stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .stagger.visible > * { opacity: 1; transform: translateY(0); }
  .stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
  .stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
  .stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
  .stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
  .stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
  .stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

  /* Stat counter pop */
  .stat-number {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 60%, var(--olive-light) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .stat-item:hover .stat-number { transform: scale(1.08); }

  /* Shimmer sweep on package cards */
  .package-card {
    overflow: hidden;
  }
  .package-card::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.45) 50%,
      transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
  }
  .package-card:hover::after { left: 130%; }

  /* Magnetic primary buttons — extra glow follow */
  .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      120px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255,255,255,0.35),
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .btn-primary:hover::before { opacity: 1; }

  /* Smoother card lift on hover where relevant */
  .package-card:hover,
  .comparison-card:hover,
  .how-step:hover,
  .info-card:hover,
  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(42,42,42,0.13);
  }

  /* Floating chevron scroll indicator */
  .scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    z-index: 3;
    pointer-events: none;
    animation: cueBounce 2.4s ease-in-out infinite;
  }
  .scroll-cue span {
    width: 22px; height: 34px;
    border: 1.5px solid rgba(224, 138, 138,0.5);
    border-radius: 12px;
    position: relative;
  }
  .scroll-cue span::before {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    width: 3px; height: 7px;
    border-radius: 2px;
    background: var(--olive);
    transform: translateX(-50%);
    animation: cueDot 1.6s ease-in-out infinite;
  }
  @keyframes cueBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-6px); }
  }
  @keyframes cueDot {
    0%   { opacity: 1; transform: translate(-50%, 0); }
    80%  { opacity: 0; transform: translate(-50%, 12px); }
    100% { opacity: 0; transform: translate(-50%, 0); }
  }

  /* Parallax fade for sections (light) */
  .section { will-change: transform; }

  /* Reduce / disable motion when user prefers it */
  @media (prefers-reduced-motion: reduce) {
    .hero-orb,
    .marquee-track,
    .scroll-cue,
    .scroll-progress {
      animation: none !important;
    }
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .stagger > * {
      transition: opacity 0.3s ease !important;
      transform: none !important;
    }
    .package-card::after { display: none; }
  }

  /* Mobile tweaks for new layer */
  @media (max-width: 768px) {
    .hero-orb { filter: blur(48px); opacity: 0.4; }
    .hero-orb.orb-1 { width: 280px; height: 280px; }
    .hero-orb.orb-2 { width: 240px; height: 240px; }
    .hero-orb.orb-3 { display: none; }
    .marquee-item { font-size: 14px; gap: 10px; }
    .marquee-item::after { margin-left: 28px; }
    .scroll-cue { display: none; }
  }

  /* Layout stabilization for live/admin-edited homepage */
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .marquee,
  .stats-bar,
  .section,
  footer {
    position: relative;
    width: 100%;
    clear: both;
  }

  .marquee {
    min-height: 58px;
    display: flex;
    align-items: center;
  }

  .marquee-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    min-width: max-content;
  }

  .marquee-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-content,
  .hero-tag,
  .hero h1,
  .hero p,
  .hero-buttons {
    opacity: 1 !important;
  }

  .hero h1 {
    color: var(--charcoal);
  }

  .hero h1 em {
    color: var(--pink-dark);
  }

  .hero p {
    color: var(--slate);
  }

  .hero-tag {
    color: var(--pink-dark);
    background: rgba(255,255,255,0.48);
    border-color: rgba(224, 138, 138,0.18);
  }

  .hero .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
    box-shadow: 0 14px 34px rgba(232, 143, 150,0.26);
  }

  .hero .btn-secondary {
    color: var(--charcoal);
    background: rgba(255,255,255,0.62);
    border-color: rgba(42,42,42,0.12);
  }

  .section-inner,
  .hero-inner,
  .stats-inner {
    width: min(100%, 1280px);
  }

  .section-inner > :is(.finder-shell, .packages-grid, .comparison-grid, .how-grid, .report-grid, .trust-layout, .info-hub, .faq-grid, .contact-grid),
  .dna-pathways-section .pathway-split {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .finder-shell,
  .pathway-panel,
  .package-card,
  .comparison-card,
  .how-step,
  .report-window,
  .trust-card,
  .trust-vault,
  .info-feature,
  .info-card,
  .faq-item,
  .contact-card,
  .contact-form-area {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .packages-grid,
  .comparison-grid,
  .how-grid,
  .info-list,
  .contact-grid {
    display: grid;
  }

  .package-features,
  .pathway-list {
    padding-left: 0;
  }

  .package-feature,
  .pathway-list li,
  .pd-feature {
    list-style: none;
  }

  .stats-bar {
    background: rgba(255,255,255,0.86);
    border-top: 1px solid rgba(224, 138, 138,0.08);
    border-bottom: 1px solid rgba(224, 138, 138,0.08);
    box-shadow: none;
  }

  .stat-item {
    text-align: center;
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(252, 252, 240,0.72);
    border: 1px solid rgba(224, 138, 138,0.08);
  }

  .stat-number {
    color: var(--olive-dark);
  }

  .stat-label {
    color: var(--slate);
  }

  .dna-pathways-section .section-header {
    position: relative;
    z-index: 1;
  }

  .pathway-split {
    align-items: stretch;
  }

  @media (min-width: 720px) and (max-width: 1120px) {
    .pathway-split {
      grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
      gap: 12px;
    }

    .pathway-panel {
      padding: 22px;
    }

    .pathway-panel h3 {
      font-size: 24px;
    }

    .pathway-panel p {
      font-size: 13px;
      line-height: 1.6;
    }

    .pathway-bubbles,
    .pathway-list {
      grid-template-columns: 1fr;
    }

    .pathway-bubble {
      display: grid;
      grid-template-columns: 62px 1fr;
      gap: 6px 12px;
      text-align: left;
      align-items: center;
      padding: 14px;
    }

    .pathway-visual {
      grid-row: span 2;
      width: 58px;
      height: 58px;
      margin: 0;
      font-size: 11px;
    }

    .pathway-bubble strong,
    .pathway-bubble small {
      margin: 0;
    }

    .pathway-bridge {
      height: auto;
    }

    .pathway-bridge span {
      display: block;
    }

    .pathway-bridge svg {
      width: 44px;
      height: 44px;
      transform: none;
    }
  }

  @media (max-width: 719px) {
    .section-inner,
    .hero-inner,
    .stats-inner {
      padding-left: 20px;
      padding-right: 20px;
    }

    .pathway-split {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .pathway-bridge {
      height: 48px;
    }

    .pathway-bridge span {
      display: none;
    }

    .pathway-bridge svg {
      transform: rotate(90deg);
    }
  }

/* ===================== NAV ACCOUNT LINK ===================== */
.nav-account {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 74, 44, 0.15);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  color: var(--ink, #1f1d1a);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.25s ease;
}
.nav-account:hover {
  background: linear-gradient(135deg, rgba(252,184,184,0.2), rgba(232,177,74,0.15));
  border-color: rgba(252,184,184,0.5);
}
.nav-account::before {
  content: '◐';
  color: #d9868b;
  font-size: 14px;
}

/* ===================== LANGUAGE SWITCHER ===================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(252,184,184,0.25);
  backdrop-filter: blur(8px);
}
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(74,74,44,0.55);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.lang-btn:hover {
  color: var(--ink, #1f1d1a);
}
.lang-btn.active {
  background: linear-gradient(135deg, #FCB8B8, #E8B14A);
  color: #1a1d2e;
  box-shadow: 0 2px 8px rgba(252,184,184,0.4);
}
.lang-divider {
  color: rgba(74,74,44,0.25);
  font-size: 11px;
  font-weight: 300;
}

/* ============================================================ */
/* ===================== PREMIUM LAYER ======================== */
/* ============================================================ */

/* Premium tokens */
:root {
  --champagne: #E8B14A;
  --champagne-light: #F5D896;
  --champagne-dark: #B5832A;
  --midnight: #1a1d2e;
  --midnight-2: #2a2e45;
  --rose: #FCB8B8;
  --rose-deep: #D9868B;
  --pearl: #FAF7F2;
  --ink: #1f1d1a;
  --shadow-luxe: 0 30px 80px -20px rgba(26,29,46,0.18), 0 8px 24px -8px rgba(232,177,74,0.12);
  --shadow-luxe-hover: 0 40px 100px -25px rgba(26,29,46,0.28), 0 14px 36px -10px rgba(232,177,74,0.22);
  --gradient-luxe: linear-gradient(135deg, #FCB8B8 0%, #f99fb0 35%, #E8B14A 100%);
  --gradient-luxe-dark: linear-gradient(135deg, #2a2e45 0%, #1a1d2e 100%);
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Premium grain overlay (suttle film texture) */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Reveal-on-scroll polish (mevcut .reveal class destekleniyor) */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.9s var(--ease-luxe), transform 0.9s var(--ease-luxe);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* Letter-by-letter title reveal */
.luxe-title {
  display: inline-block;
}
.luxe-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotateX(60deg);
  transition: opacity 0.7s var(--ease-luxe), transform 0.9s var(--ease-luxe);
}
.luxe-title.is-visible .char {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Premium section dividers */
.luxe-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 0;
  max-width: 240px;
  opacity: 0.7;
}
.luxe-divider::before,
.luxe-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,177,74,0.5), transparent);
}
.luxe-divider svg {
  width: 18px;
  height: 18px;
  color: var(--champagne);
  flex-shrink: 0;
}

/* Premium button base */
.btn-primary,
.btn-secondary,
.nav-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-luxe), box-shadow 0.4s ease, filter 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4), transparent 70%);
  transform: translateX(-150%);
  transition: transform 0.8s var(--ease-luxe);
  pointer-events: none;
}
.btn-primary:hover::before {
  transform: translateX(150%);
}

/* Premium card stack hover */
.package-card,
.testimonial-card,
.report-card,
.contact-card,
.info-card,
.faq-item,
.trust-stat {
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s ease, border-color 0.4s ease;
}
.package-card:hover,
.testimonial-card:hover,
.report-card:hover,
.info-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-luxe-hover);
}

/* Tilt effect via perspective on parent grids */
.packages-grid,
.testimonials-grid,
.report-grid,
.info-grid {
  perspective: 1400px;
}

/* Section heading with serif accent */
.section-title {
  position: relative;
  letter-spacing: -0.02em;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--champagne), transparent);
  margin: 18px auto 0;
}

/* Premium quote marks on testimonial */
.testimonial-text {
  position: relative;
  padding-left: 24px;
}
.testimonial-text::before {
  content: '"';
  position: absolute;
  left: -4px;
  top: -16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.4;
  font-style: normal;
}

/* Hero — premium upgrade */
.hero h1 {
  letter-spacing: -0.035em;
}
.hero h1 em {
  position: relative;
  display: inline-block;
  font-style: italic;
  background: linear-gradient(135deg, #FCB8B8 0%, #f99fb0 40%, #E8B14A 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(252,184,184,0.35));
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineSweep 1.4s var(--ease-luxe) 0.8s forwards;
}
@keyframes underlineSweep {
  to { transform: scaleX(1); }
}

/* Premium tag (section-tag) — gold edged */
.section-tag {
  position: relative;
  background: linear-gradient(135deg, rgba(252,184,184,0.18), rgba(232,177,74,0.12)) !important;
  border: 1px solid transparent !important;
  background-clip: padding-box;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  font-size: 11px !important;
  font-weight: 600 !important;
}
.section-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(252,184,184,0.6), rgba(232,177,74,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Number marker - rune-style */
.luxe-rune {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--rose) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}

/* Marquee modernized */
.marquee {
  background: var(--gradient-luxe-dark) !important;
  color: #fff;
  border-top: 1px solid rgba(232,177,74,0.25);
  border-bottom: 1px solid rgba(232,177,74,0.25);
}
.marquee-item {
  color: #fff !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase;
  font-size: 12px !important;
  position: relative;
}
.marquee-item::after {
  content: '✦';
  margin-left: 32px;
  color: var(--champagne);
}

/* WhatsApp glow upgrade */
.whatsapp-float {
  border: 2px solid rgba(255,255,255,0.25) !important;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,0.25);
  animation: ringPulse 2.4s ease-out infinite;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,0.18);
  animation: ringPulse 2.4s ease-out 0.8s infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Reduced motion respects */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .luxe-title .char { opacity: 1 !important; transform: none !important; }
  .aurora-layer, .marquee-item, .whatsapp-float::before, .whatsapp-float::after { animation: none !important; }
  .star-field .star, .star-field .shooting-star { animation: none !important; }
}

/* ===================== MODERN LOGO ===================== */
.logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(252,184,184,0.15), rgba(232,177,74,0.15));
  box-shadow: 0 0 0 1px rgba(252,184,184,0.25), 0 4px 18px rgba(252,184,184,0.25);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.logo:hover .logo-mark {
  transform: rotate(-12deg) scale(1.06);
  box-shadow: 0 0 0 1px rgba(252,184,184,0.4), 0 8px 28px rgba(252,184,184,0.45);
}
.logo-mark svg {
  animation: logoSpin 14s linear infinite;
}
@keyframes logoSpin {
  to { transform: rotate(360deg); }
}
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: inherit;
}
footer .logo-mark {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 4px 18px rgba(252,184,184,0.18);
}
@media (prefers-reduced-motion: reduce) {
  .logo-mark svg { animation: none; }
}

/* ===================== STARGLOW EFFECTS ===================== */
@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
@keyframes starDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(20px, -30px); }
}
@keyframes starGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,184,184,0.0), 0 0 0 0 rgba(232,177,74,0.0); }
  50%      { box-shadow: 0 0 24px 6px rgba(252,184,184,0.35), 0 0 60px 12px rgba(232,177,74,0.18); }
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.star-field .star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(252,184,184,0.9) 35%, rgba(252,184,184,0) 70%);
  filter: drop-shadow(0 0 6px rgba(252,184,184,0.9)) drop-shadow(0 0 12px rgba(232,177,74,0.5));
  animation: starTwinkle 3.6s ease-in-out infinite;
}
.star-field .star.large {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #fff 0%, #FCB8B8 35%, rgba(232,177,74,0.4) 70%, transparent 100%);
  filter: drop-shadow(0 0 10px #FCB8B8) drop-shadow(0 0 22px rgba(232,177,74,0.7));
}
.star-field .star.gold {
  background: radial-gradient(circle, #fff 0%, #E8B14A 35%, rgba(232,177,74,0) 70%);
  filter: drop-shadow(0 0 8px #E8B14A) drop-shadow(0 0 16px rgba(232,177,74,0.6));
}

.star-field .shooting-star {
  position: absolute;
  width: 120px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #fff, #FCB8B8, transparent);
  filter: drop-shadow(0 0 6px #fff);
  opacity: 0;
  animation: shoot 6s ease-in-out infinite;
}
@keyframes shoot {
  0%   { opacity: 0; transform: translate(-200px, 200px) rotate(-25deg); }
  10%  { opacity: 1; }
  20%  { opacity: 0; transform: translate(800px, -200px) rotate(-25deg); }
  100% { opacity: 0; transform: translate(800px, -200px) rotate(-25deg); }
}

/* Sparkle decoration on key cards/buttons */
.btn-primary,
.package-card,
.testimonial-card,
.contact-card,
.faq-item,
.section-tag {
  position: relative;
}
.btn-primary::after,
.section-tag::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5), transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn-primary:hover::after,
.section-tag:hover::after {
  animation: shimmer 1.4s ease-in-out;
  opacity: 1;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.glow-pulse {
  animation: starGlowPulse 4s ease-in-out infinite;
}

/* Sparkle dust on background of major sections */
.section::before,
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(252,184,184,0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 88% 32%, rgba(232,177,74,0.5), transparent 60%),
    radial-gradient(2.5px 2.5px at 24% 78%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 72% 88%, rgba(252,184,184,0.45), transparent 60%),
    radial-gradient(2px 2px at 50% 50%, rgba(232,177,74,0.35), transparent 60%);
  filter: drop-shadow(0 0 6px rgba(252,184,184,0.5));
  opacity: 0.55;
  animation: starTwinkle 5s ease-in-out infinite;
  z-index: 0;
}
.hero { position: relative; }
.section { position: relative; }
.section > *,
.hero > * { position: relative; z-index: 1; }

/* Footer admin link */
.footer-admin-link {
  font-size: 11px;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.footer-admin-link:hover {
  color: rgba(252,184,184,0.9) !important;
}

/* Hover lift for cards (modern micro-animation) */
.package-card,
.testimonial-card,
.contact-card,
.faq-item,
.report-card,
.info-card,
.trust-stat {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.3s ease;
}

/* Gradient border accent on package/testimonial cards */
.testimonial-card::before,
.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(252,184,184,0.5), rgba(232,177,74,0.4), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.testimonial-card:hover::before,
.package-card:hover::before {
  opacity: 1;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--cream, #FAF7F2) 0%, #fff 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 26px;
  border: 1px solid rgba(74, 74, 44, 0.08);
  box-shadow: 0 4px 24px rgba(74, 74, 44, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 74, 44, 0.1);
}
.testimonial-stars {
  color: #E8B14A;
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a2c;
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(74, 74, 44, 0.08);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FCB8B8 0%, #f99fb0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: #2a2a1a;
  font-size: 15px;
}
.testimonial-role {
  font-size: 12px;
  color: #8a8a6c;
  margin-top: 2px;
}
.testimonials-trust {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 32px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(252, 184, 184, 0.3);
  text-align: center;
}
.trust-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: #FCB8B8;
  line-height: 1.1;
}
.trust-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: #6a6a4c;
  letter-spacing: 0.3px;
}

/* ===================== CONTACT MAP ===================== */
.contact-map {
  margin-top: 8px;
}
.contact-map iframe {
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  transition: filter 0.3s ease;
}
.contact-map iframe:hover {
  filter: grayscale(0) contrast(1);
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(74, 74, 44, 0.18);
  padding: 22px 24px;
  z-index: 9998;
  border: 1px solid rgba(252, 184, 184, 0.4);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner h4 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: #2a2a1a;
}
.cookie-banner p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #4a4a2c;
}
.cookie-banner p a {
  color: #c98a8a;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 100px;
  padding: 11px 16px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-btn-accept {
  background: #4a4a2c;
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #2a2a1a;
}
.cookie-btn-reject {
  background: transparent;
  color: #4a4a2c;
  border: 1.5px solid rgba(74, 74, 44, 0.2);
}
.cookie-btn-reject:hover {
  border-color: #4a4a2c;
}
.cookie-btn-customize {
  background: #FCB8B8;
  color: #4a4a2c;
}
.cookie-btn-customize:hover {
  background: #f99fb0;
}
.cookie-prefs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 74, 44, 0.1);
  display: none;
}
.cookie-prefs.show {
  display: block;
}
.cookie-pref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13.5px;
  color: #4a4a2c;
}
.cookie-pref-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
}
.cookie-pref-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #4a4a2c;
}
.cookie-pref-row input[type="checkbox"]:disabled {
  opacity: 0.5;
}

/* ===================== MODERNIZATION OVERLAY ===================== */
/* Glassmorphism navbar */
nav#navbar {
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(250,247,242,0.72) !important;
  border-bottom: 1px solid rgba(252,184,184,0.18);
}
nav#navbar.scrolled {
  background: rgba(250,247,242,0.88) !important;
  box-shadow: 0 4px 20px rgba(74,74,44,0.06);
}

/* Modernized primary button — gradient + glow */
.btn-primary {
  background: linear-gradient(135deg, #FCB8B8 0%, #f99fb0 50%, #E8B14A 130%) !important;
  box-shadow: 0 8px 24px rgba(252,184,184,0.45), 0 2px 6px rgba(232,177,74,0.25);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, filter 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(252,184,184,0.55), 0 4px 12px rgba(232,177,74,0.35);
  filter: brightness(1.05);
}

/* Glassy CTA in nav */
.nav-cta {
  background: linear-gradient(135deg, #4a4a2c 0%, #2a2a1a 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(74,74,44,0.3);
}

/* Section tag with subtle glow */
.section-tag {
  background: linear-gradient(135deg, rgba(252,184,184,0.15), rgba(232,177,74,0.1));
  border: 1px solid rgba(252,184,184,0.3);
  backdrop-filter: blur(10px);
}

/* Gradient text on h1 em */
.hero h1 em {
  background: linear-gradient(135deg, #FCB8B8 0%, #E8B14A 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(252,184,184,0.3));
}

/* Aurora background tint - applied via separate fixed layer */
.aurora-layer {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(252,184,184,0.22), transparent 60%),
    radial-gradient(800px 500px at 110% 10%, rgba(232,177,74,0.14), transparent 60%),
    radial-gradient(700px 400px at 50% 110%, rgba(252,184,184,0.12), transparent 60%);
  z-index: -1;
  animation: auroraDrift 22s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-20px, 10px) scale(1.05); }
  100% { transform: translate(15px, -8px) scale(1.02); }
}

/* WhatsApp button modernized */
.whatsapp-float {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 4px rgba(37,211,102,0.12);
  animation: starGlowPulse 3s ease-in-out infinite;
}

/* Hero float cards with glassmorphism */
.hero-float-card {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 12px 40px rgba(74,74,44,0.12);
}

/* Cookie banner glassmorphism */
.cookie-banner {
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(255,255,255,0.92) !important;
}

/* ===================== SKIP TO CONTENT (a11y) ===================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #4a4a2c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid #FCB8B8;
  outline-offset: 2px;
}

/* ===================== A11Y FOCUS ===================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #FCB8B8;
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-trust {
    padding: 24px 18px;
  }
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 18px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
}
