  :root {
    --navy: #0B1F3A;
    --teal: #0E7C7B;
    --teal-light: #12A19F;
    --gold: #C8A45A;
    --gold-light: #E2C47E;
    --cream: #F5F0E8;
    --white: #FDFCFA;
    --text: #1A2E44;
    --muted: #6B7E94;
    --border: rgba(200,164,90,0.25);
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 5vw;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.3s cubic-bezier(0.4,0,0.2,1), backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  }

  nav.scrolled {
    background: var(--white);
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: 0 2px 12px rgba(11, 31, 58, 0.06);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  .nav-logo span { 
    color: rgba(255,255,255,0.85); 
    transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  nav.scrolled .nav-logo { color: var(--navy); }
  nav.scrolled .nav-logo span { color: var(--teal); }

  .nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  .nav-links a:hover { color: var(--white); }

  nav.scrolled .nav-links a { color: var(--muted); }
  nav.scrolled .nav-links a:hover { color: var(--teal); }

  .nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
  }

  .nav-cta:hover { background: var(--teal-light); color: var(--white) !important; }

  /* ── HERO: FULL-BLEED IMAGE STACK ── */
  .hero {
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5vw 5rem;
    overflow: hidden;
  }

  /* The living image background */
  .hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }

  .hero-bg-img.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 7s ease-out forwards;
  }

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

  /* Dark overlay so text is readable */
  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,31,58,0.82) 0%, rgba(11,31,58,0.65) 40%, rgba(11,31,58,0.75) 100%);
    z-index: 3;
  }

  /* Content sits on top */
  .hero-content {
    position: relative;
    z-index: 4;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200,164,90,0.4);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.6rem;
    animation: fadeUp 0.8s 0.1s ease both;
    text-shadow: 0 2px 20px rgba(11,31,58,0.3);
  }

  .hero-title em {
    font-style: italic;
    color: var(--teal-light);
  }

  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(253,252,250,0.85);
    max-width: 520px;
    margin: 0 auto 2.8rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.2s ease both;
    text-shadow: 0 1px 10px rgba(11,31,58,0.2);
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 0.95rem 2.4rem;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.95rem 2.4rem;
    border: 1.5px solid rgba(253,252,250,0.5);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s;
    display: inline-block;
  }

  .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

  /* ── SECTION BASE ── */
  section { padding: 7rem 5vw; }

  .section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    max-width: 520px;
    margin-bottom: 1.4rem;
  }

  .section-title em { font-style: italic; color: var(--teal); }

  .section-sub {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 520px;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  .services-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .services-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,124,123,0.15) 0%, transparent 70%);
  }

  .services-section .section-label { color: var(--gold); }

  .services-section .section-title { color: var(--white); max-width: none; }

  .services-section .section-sub { color: rgba(253,252,250,0.55); }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.06);
  }

  .service-card {
    background: var(--navy);
    padding: 3rem 2.4rem;
    border: 1px solid rgba(200,164,90,0.12);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
  }

  .service-card:hover {
    background: rgba(14,124,123,0.12);
    border-color: rgba(14,124,123,0.4);
    transform: translateY(-3px);
  }

  .service-icon {
    width: 48px; height: 48px;
    border-radius: 4px;
    background: rgba(200,164,90,0.1);
    border: 1px solid rgba(200,164,90,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.7rem;
  }

  .service-desc {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(253,252,250,0.5);
    font-weight: 300;
  }

  /* ── HOW IT WORKS ── */
  .how-section { background: var(--cream); }

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

  .step {
    position: relative;
    padding-top: 1rem;
  }

  .step::before {
    content: '';
    position: absolute;
    top: 22px; left: calc(2.2rem + 16px);
    right: -2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .step:last-child::before { display: none; }

  .step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--muted);
    font-weight: 300;
  }

  /* ── WHY ── */
  .why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 7rem 5vw;
  }

  .why-list {
    list-style: none;
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .why-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .why-check {
    width: 32px; height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(14,124,123,0.08);
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.8rem;
    margin-top: 1px;
  }

  .why-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .why-text span {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .why-visual {
    position: relative;
  }

  .quote-block {
    background: var(--navy);
    border-radius: 4px;
    padding: 3rem 2.8rem;
    position: relative;
    overflow: hidden;
  }

  .quote-block::after {
    content: '"';
    position: absolute;
    top: -20px; right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: rgba(200,164,90,0.08);
    line-height: 1;
    pointer-events: none;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .quote-author {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .credential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
  }

  .tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(14,124,123,0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    background: rgba(14,124,123,0.06);
  }

  /* ── CONSULT FORM ── */
  .consult-section {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 7rem 5vw;
    align-items: start;
  }

  .form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(11,31,58,0.07);
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }

  .form-sub {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid rgba(11,31,58,0.12);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    outline: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14,124,123,0.1);
    background: var(--white);
  }

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

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

  .form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--teal); transform: translateY(-1px); }

  .consult-info { padding-top: 0.5rem; }

  .info-block {
    margin-bottom: 2.4rem;
  }

  .info-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }

  .info-block-text {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  .contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--text);
  }

  .contact-icon {
    width: 36px; height: 36px;
    border-radius: 4px;
    background: rgba(14,124,123,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 4rem 5vw 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-top: 1px solid rgba(200,164,90,0.15);
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
  }

  .footer-brand span { color: var(--teal-light); }

  .footer-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(253,252,250,0.4);
    font-weight: 300;
  }

  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-links a {
    font-size: 0.84rem;
    color: rgba(253,252,250,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: rgba(253,252,250,0.3);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── PAYMENT FLOW ── */
  .payment-flow {
    background: var(--navy);
    border-radius: 4px;
    padding: 1.8rem 2rem;
    margin: 1.8rem 0 1.8rem;
    border: 1px solid rgba(200,164,90,0.15);
  }

  .payment-flow-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
  }

  .payment-steps {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .pay-step {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .pay-step-num {
    width: 24px; height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(14,124,123,0.25);
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal-light);
    margin-top: 1px;
  }

  .pay-step-text {
    font-size: 0.83rem;
    color: rgba(253,252,250,0.6);
    line-height: 1.55;
    font-weight: 300;
  }

  .pay-step-text strong { color: var(--white); font-weight: 500; }

  .mpesa-badge {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,164,90,0.2);
    border-radius: 3px;
    padding: 0.75rem 1rem;
  }

  .mpesa-logo {
    background: #4CAF50;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    white-space: nowrap;
  }

  .mpesa-details {
    font-size: 0.78rem;
    color: rgba(253,252,250,0.55);
    font-weight: 300;
  }

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

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  nav.scrolled .hamburger span { background: var(--navy); }

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

  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5vw;
    flex-direction: column;
    gap: 0;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(11,31,58,0.08);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
    color: var(--teal);
    font-weight: 600;
    padding-top: 1.2rem;
  }

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

  @media (max-width: 900px) {
    .hamburger { display: flex; }
  }

  /* ── FEEDBACK ── */
  .feedback-section { background: var(--navy); padding: 7rem 5vw; }
  .feedback-inner { max-width: 680px; margin: 0 auto; }
  .feedback-section .section-label { color: var(--gold); }
  .feedback-section .section-title { color: var(--white); }
  .feedback-section .section-title em { color: var(--teal-light); }
  .feedback-section .section-sub { color: rgba(253,252,250,0.5); margin-bottom: 2.5rem; }
  .feedback-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,164,90,0.15); border-radius: 4px; padding: 2.5rem; }
  .feedback-form-wrap .form-label { color: rgba(253,252,250,0.6); }
  .feedback-form-wrap .form-textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: var(--white); }
  .feedback-form-wrap .form-textarea::placeholder { color: rgba(253,252,250,0.3); }
  .feedback-options { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; margin-bottom: 0.5rem; }
  .feedback-option { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: rgba(253,252,250,0.65); cursor: pointer; font-weight: 300; }
  .feedback-option input { accent-color: var(--teal); width: 16px; height: 16px; cursor: pointer; }
  .feedback-option:hover { color: var(--white); }
  .feedback-form-wrap .form-submit { background: var(--teal); margin-top: 1.5rem; }
  .feedback-form-wrap .form-submit:hover { background: var(--teal-light); }

  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.4rem 0.75rem 1rem;
    border-radius: 100px;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
  .wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

  /* ── TOAST ── */
  .toast {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 998;
    background: var(--navy);
    color: var(--white);
    padding: 0.9rem 1.4rem;
    border-radius: 4px;
    font-size: 0.82rem;
    box-shadow: 0 8px 24px rgba(11,31,58,0.2);
    border-left: 3px solid var(--teal);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    max-width: 280px;
  }
  .toast.show { opacity: 1; transform: translateY(0); }

  /* ── PRICING ── */
  .pricing-section {
    background: var(--white);
    padding: 7rem 5vw;
  }

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

  .pricing-header .section-title { margin: 0 auto 1rem; text-align: center; }
  .pricing-header .section-sub { margin: 0 auto; text-align: center; }

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

  .pricing-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.8rem 2.2rem;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
  }

  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(11,31,58,0.1);
  }

  .pricing-card.featured {
    background: var(--navy);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(11,31,58,0.18);
  }

  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1.1rem;
    border-radius: 100px;
    white-space: nowrap;
  }

  .pricing-tier {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
  }

  .pricing-card.featured .pricing-tier { color: var(--gold); }

  .pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.2rem;
  }

  .pricing-card.featured .pricing-name { color: var(--white); }

  .pricing-amount {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
  }

  .pricing-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .pricing-card.featured .pricing-currency { color: rgba(253,252,250,0.5); }

  .pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--navy);
  }

  .pricing-card.featured .pricing-price { color: var(--white); }

  .pricing-period {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .pricing-card.featured .pricing-period { color: rgba(253,252,250,0.45); }

  .pricing-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-weight: 300;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--border);
  }

  .pricing-card.featured .pricing-desc {
    color: rgba(253,252,250,0.45);
    border-bottom-color: rgba(255,255,255,0.08);
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
  }

  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.84rem;
    color: var(--text);
    font-weight: 300;
  }

  .pricing-card.featured .pricing-feature { color: rgba(253,252,250,0.75); }

  .pricing-feature::before {
    content: '✓';
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(14,124,123,0.1);
    border: 1px solid rgba(14,124,123,0.25);
    width: 18px; height: 18px;
    min-width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .pricing-card.featured .pricing-feature::before {
    color: var(--gold);
    background: rgba(200,164,90,0.1);
    border-color: rgba(200,164,90,0.3);
  }

  .pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: transparent;
    cursor: pointer;
  }

  .pricing-btn:hover { background: var(--navy); color: var(--white); }

  .pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-color: transparent;
    color: var(--navy);
    font-weight: 600;
  }

  .pricing-card.featured .pricing-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
  }

  .pricing-note span { color: var(--teal); font-weight: 500; }

  /* ── MANIFESTO ── */
  .manifesto-section {
    background: var(--cream);
    padding: 7rem 5vw;
    position: relative;
    overflow: hidden;
  }

  .manifesto-section::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,90,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .manifesto-section::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,124,123,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .manifesto-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }

  .manifesto-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
  }

  .manifesto-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 2.8rem;
  }

  .manifesto-heading em { font-style: italic; color: var(--teal); }

  .manifesto-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.75;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 1.4rem;
  }

  .manifesto-body p em {
    font-style: italic;
    color: var(--muted);
  }

  .manifesto-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2.4rem auto;
  }

  .manifesto-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem) !important;
    font-style: italic;
    color: var(--navy) !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
  }

  .manifesto-closing strong {
    color: var(--teal);
    font-weight: 600;
    font-style: normal;
  }

  .manifesto-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.4rem;
    padding: 0.85rem 1.8rem;
    border: 1.5px solid var(--navy);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.2s, letter-spacing 0.25s;
  }

  .manifesto-link:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
    letter-spacing: 0.1em;
  }

  .manifesto-link span { transition: transform 0.25s; }
  .manifesto-link:hover span { transform: translateX(4px); }

  /* ── WHO THIS IS FOR ── */
  .audience-section {
    padding: 7rem 5vw;
    background: var(--white);
    position: relative;
  }

  .audience-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
  }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .audience-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--teal);
    padding: 1.8rem 1.8rem;
    border-radius: 2px;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    transition: transform 0.25s, box-shadow 0.25s, border-left-color 0.25s;
  }

  .audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11,31,58,0.08);
    border-left-color: var(--gold);
  }

  .audience-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(14,124,123,0.08);
    border: 1px solid rgba(14,124,123,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .audience-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }

  .audience-text span {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  .audience-closing {
    text-align: center;
    margin-top: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 400;
  }

  .audience-closing em { color: var(--teal); font-weight: 500; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { padding-top: 6rem; }
    .hero-title { font-size: 2.6rem; }
    .hero-desc { font-size: 0.95rem; }
    .services-header { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .step::before { display: none; }
    .why-section { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .consult-section { grid-template-columns: 1fr; }
    footer {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem 2rem;
    }
    footer > div:first-child {
      grid-column: 1 / -1;
    }
    .nav-links { display: none; }
  }

  @media (max-width: 600px) {
    nav { padding: 1rem 4vw; }
    section { padding: 4rem 5vw; }
    .hero { padding: 5rem 5vw 3rem; min-height: 75dvh; }
    .hero-badge { margin-top: 1rem; }
    .hero-title { font-size: 2.2rem; margin-top: 1rem; }
    .hero-desc { font-size: 0.9rem; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.8rem; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 0.75rem 1rem; }
    .services-section { padding: 4rem 5vw; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.8rem 1.5rem; }
    .how-section { padding: 4rem 5vw; }
    .steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-section { padding: 4rem 5vw; gap: 2rem; }
    .quote-block { padding: 2rem 1.5rem; }
    .quote-text { font-size: 1.2rem; }
    .manifesto-section { padding: 4rem 5vw; }
    .manifesto-body p { font-size: 1rem; }
    .audience-section { padding: 4rem 5vw; }
    .audience-card { padding: 1.4rem 1.3rem; }
    .pricing-section { padding: 4rem 5vw; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-price { font-size: 2.2rem; }
    .consult-section { padding: 4rem 5vw; gap: 3rem; }
    .form-wrap { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .payment-flow { padding: 1.4rem 1.2rem; }
    footer { padding: 3rem 5vw 6rem; gap: 2rem 1.4rem; }
    .feedback-section { padding: 4rem 5vw; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .section-title { font-size: 1.8rem; }
    .wa-float { padding: 0.65rem 1rem; font-size: 0.75rem; }
    .toast { right: 1rem; left: 1rem; max-width: 100%; }
  }

  /* ── SERVICES.HTML PAGE ── */

  .page-header {
    padding: 9rem 5vw 4rem;
    background: var(--cream);
    text-align: center;
  }

  .page-header-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .page-header .section-label {
    margin-bottom: 1rem;
  }

  .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--navy);
    margin: 0 0 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .page-title em {
    font-style: italic;
    color: var(--teal);
  }

  .page-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
  }

  .service-detail {
    padding: 5rem 5vw;
    background: var(--white);
  }

  .service-detail-alt {
    background: var(--cream);
  }

  .service-detail-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .service-detail-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
  }

  .service-detail h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--navy);
    margin: 0 0 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .service-detail > .service-detail-inner > p:first-of-type {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 2rem;
  }

  .service-detail h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 500;
    margin: 0 0 1rem;
  }

  .service-detail ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
  }

  .service-detail ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text);
    font-size: 0.98rem;
  }

  .service-detail ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  .service-detail .best-for {
    background: rgba(14,124,123,0.06);
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--teal);
    font-size: 0.95rem;
    margin: 0 0 2rem;
    color: var(--text);
  }

  .service-detail .best-for strong {
    color: var(--navy);
  }

  .service-detail .btn-primary {
    display: inline-block;
    text-decoration: none;
  }

  nav.scrolled .nav-links a.active { 
    color: var(--teal); 
    font-weight: 600; 
  }

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

  @media (max-width: 600px) {
    .page-header { padding: 7rem 5vw 3rem; }
    .page-title { font-size: 2.1rem; }
    .page-intro { font-size: 1rem; }
    .service-detail { padding: 3.5rem 5vw; }
    .service-detail h2 { font-size: 1.8rem; }
    .service-detail > .service-detail-inner > p:first-of-type { font-size: 1rem; }
    .service-detail ul li { font-size: 0.95rem; }
  }

  /* ── STAGE 4: SERVICE CARDS AS LINKS ── */
  
  /* Card was <div>, now <a> — keep it looking the same */
  a.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  
  /* "Learn more ›" cue inside each card */
  .service-card-link {
    margin-top: auto;
    padding-top: 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-light);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: inline-block;
  }
  
  .service-card:hover .service-card-link {
    transform: translateX(4px);
  }

  /* ── HERO ROTATING WORD (vertical slide) ── */
  
  /* Viewport: only ever shows ONE word's worth of vertical space — the rest of the track is hidden */
  .word-rotate {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.08;
  }
  
  /* Invisible longest-word copy that locks the container's width to "personally" width */
  .word-rotate-spacer {
    visibility: hidden;
  }
  
  /* The "filmstrip" — all words stacked vertically inside. JS translates this up to switch words. */
  .word-rotate-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Each word occupies one full line in the track */
  .word-rotate-item {
    display: block;
    text-align: left;
    line-height: 1.08;
  }
