/* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --olive:         #91C75E;
      --olive-dark:    #6A9A3E;
      --olive-light:   #E8F5D6;
      --olive-pale:    #F4FAEd;
      --purple:        #7A6880;
      --purple-dark:   #4A3F54;
      --purple-mid:    #60506E;
      --purple-light:  #EDE8F0;
      --purple-pale:   #F7F4F9;
      --bg:            #F5F5F5;
      --white:         #FFFFFF;
      --dark:          #2C2A35;
      --muted:         #7A7585;
      --border:        rgba(122, 104, 128, 0.14);
      --border-mid:    rgba(122, 104, 128, 0.25);

      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --t:    all 0.3s var(--ease);
      --shadow-xs: 0 1px 6px rgba(74,63,84,0.07);
      --shadow-sm: 0 4px 16px rgba(74,63,84,0.10);
      --shadow-md: 0 8px 32px rgba(74,63,84,0.14);
      --shadow-lg: 0 20px 60px rgba(74,63,84,0.18);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5 { font-family: var(--serif); line-height: 1.25; color: var(--purple-dark); }
    p { color: var(--muted); }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { font-family: var(--sans); }

    /* ============================================================
       UTILITY
    ============================================================ */
    .label-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--olive-dark); margin-bottom: 1rem;
    }
    .label-tag::before {
      content: ''; display: block;
      width: 32px; height: 2px; background: var(--olive); border-radius: 2px;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      color: var(--purple-dark); margin-bottom: 1rem; line-height: 1.2;
    }
    .section-sub {
      font-size: 1rem; color: var(--muted);
      max-width: 540px; line-height: 1.8;
    }
    .sec { padding: 96px 0; }

    /* BUTTONS */
    .btn-moss {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--olive); color: #fff;
      border: none; padding: 14px 30px;
      border-radius: 50px; font-size: 0.92rem; font-weight: 600;
      cursor: pointer; transition: var(--t); letter-spacing: 0.01em;
      white-space: nowrap;
    }
    .btn-moss:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: var(--purple-dark);
      border: 1.5px solid var(--purple-dark);
      padding: 13px 28px; border-radius: 50px;
      font-size: 0.9rem; font-weight: 500;
      cursor: pointer; transition: var(--t); white-space: nowrap;
    }
    .btn-ghost:hover { background: var(--purple-dark); color: #fff; transform: translateY(-2px); }

    .btn-ghost-white {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.85);
      border: 1.5px solid rgba(255,255,255,0.28);
      padding: 13px 28px; border-radius: 50px;
      font-size: 0.9rem; font-weight: 500;
      cursor: pointer; transition: var(--t); white-space: nowrap;
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

    /* Arrow icon for buttons */
    .arrow-icon { transition: transform 0.25s var(--ease); }
    a:hover .arrow-icon, button:hover .arrow-icon { transform: translateX(4px); }

    /* NAVBAR */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 22px 0;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
#mainNav.scrolled {
  background: rgba(245,245,245,0.96);
  backdrop-filter: blur(14px);
  padding: 13px 0;
  box-shadow: 0 1px 20px rgba(74,63,84,.09);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 700; color: var(--purple-dark); flex-shrink: 0;
}
.brand-gem {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  display: flex; align-items: center; justify-content: center;
}

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: .25rem; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  font-size: .88rem; font-weight: 500; color: var(--purple-dark);
  padding: 8px 14px; border-radius: 6px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a {
  color: var(--olive-dark); background: var(--olive-pale);
}
.nav-links > li > a .chevron {
  width: 10px; height: 10px; stroke: currentColor;
  transition: transform .25s var(--ease);
}
.nav-links > li.has-dropdown:hover > a .chevron { transform: rotate(180deg); }

/* CTA pill */
.nav-pill > a {
  background: var(--purple-dark) !important;
  color: #fff !important;
  padding: 9px 22px !important; border-radius: 50px !important;
  font-size: .84rem !important; font-weight: 600 !important;
}
.nav-pill > a:hover { background: var(--olive) !important; transform: translateY(-1px); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 220px; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; pointer-events: none; list-style: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}
.nav-links > li.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; font-weight: 500; color: var(--purple-dark);
  padding: 10px 14px; border-radius: 8px;
  transition: background .18s, color .18s; white-space: nowrap;
}
.dropdown li a:hover { background: var(--olive-pale); color: var(--olive-dark); }
.dd-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--olive-light); flex-shrink: 0; font-size: 14px;
}
.dropdown li a:hover .dd-icon { background: var(--olive); }
.dd-text { display: flex; flex-direction: column; gap: 1px; }
.dd-label { font-size: .88rem; font-weight: 600; color: var(--purple-dark); line-height: 1.2; }
.dd-sub   { font-size: .74rem; font-weight: 400; color: var(--muted); }

/* Hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.ham span {
  display: block; width: 24px; height: 2px;
  background: var(--purple-dark); border-radius: 2px; transition: var(--t);
}
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; flex-direction: column;
  overflow-y: auto; padding: 100px 32px 48px;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-drawer.open { opacity: 1; pointer-events: all; transform: none; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 0;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--purple-dark); background: none; border: none;
  cursor: pointer; text-align: left;
}
.mobile-nav-toggle a { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: inherit; }
.mobile-nav-toggle .m-chevron {
  width: 18px; height: 18px; stroke: currentColor;
  transition: transform .25s var(--ease);
}
.mobile-nav-toggle.open .m-chevron { transform: rotate(180deg); }
.mobile-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); padding-left: 8px; }
.mobile-submenu.open { max-height: 500px; }
.mobile-submenu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0 12px 8px; font-size: .95rem; font-weight: 500;
  color: var(--purple-mid); border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-submenu li:last-child a { border-bottom: none; }
.mobile-submenu li a:hover { color: var(--olive-dark); }
.mobile-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--olive); color: #fff;
  padding: 14px 30px; border-radius: 50px;
  font-size: .92rem; font-weight: 600; width: fit-content;
  transition: var(--t);
}
.mobile-cta:hover { background: var(--olive-dark); transform: translateY(-2px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .ham { display: flex; }
}
    
    /* ============================================================
       NAVBAR
    ============================================================ */
   /* #mainNav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000; padding: 22px 0;
      transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
    }
    #mainNav.scrolled {
      background: rgba(245,245,245,0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 13px 0;
      box-shadow: 0 1px 20px rgba(74,63,84,0.09);
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 1rem;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--serif); font-size: 1.25rem;
      font-weight: 700; color: var(--purple-dark);
    }
    .brand-gem {
      width: 28px; height: 28px; border-radius: 8px;
      background: linear-gradient(135deg, var(--olive), var(--olive-dark));
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .brand-gem svg { display: block; }

    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500;
      color: var(--purple-dark); transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--olive-dark); }
    .nav-pill {
      background: var(--purple-dark); color: #fff !important;
      padding: 9px 22px; border-radius: 50px;
      font-size: 0.84rem !important; font-weight: 600 !important;
      transition: background 0.25s, transform 0.2s !important;
    }
    .nav-pill:hover { background: var(--olive) !important; transform: translateY(-1px); }*/

    /* Hamburger */
    /*.ham {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none;
      border: none; z-index: 1001;
    }
    .ham span {
      display: block; width: 24px; height: 2px;
      background: var(--purple-dark); border-radius: 2px;
      transition: var(--t);
    }
    .ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .ham.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
    .ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }*/

    /* Mobile drawer */
   /* .mobile-drawer {
      position: fixed; inset: 0; z-index: 999;
      background: var(--bg); display: flex;
      flex-direction: column; align-items: center;
      justify-content: center; gap: 2.25rem;
      opacity: 0; pointer-events: none;
      transform: translateY(-12px);
      transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    }
    .mobile-drawer.open { opacity: 1; pointer-events: all; transform: none; }
    .mobile-drawer a {
      font-family: var(--serif); font-size: 2rem;
      font-weight: 600; color: var(--purple-dark);
      transition: color 0.2s;
    }
    .mobile-drawer a:hover { color: var(--olive-dark); }*/

    /* ============================================================
       HERO — DOODLE ART REDESIGN
    ============================================================ */
    #hero {
      min-height: 100vh;
      background: #FDFAF4;
      position: relative;
      overflow: hidden;
      display: flex; align-items: center;
      padding: 130px 0 80px;
    }

    /* Subtle graph-paper / dot grid texture */
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(145,199,94,0.18) 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0;
    }

    /* Wavy doodle shape behind the illustration */
    .hero-doodle-bg {
      position: absolute;
      top: 0; right: -2%;
      width: 54%; height: 100%;
      z-index: 0;
    }

    .hero-content { position: relative; z-index: 1; }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 1.5rem; animation: fadeUp 0.8s var(--ease) both;
    }
    .hero-eyebrow-line { width: 38px; height: 1.5px; background: var(--olive); }
    .hero-eyebrow-copy {
      font-size: 0.74rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-dark);
    }

    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--purple-dark); line-height: 1.18;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s var(--ease) 0.1s both;
    }
    .hero-h1 em { font-style: italic; color: var(--purple); }
    .hero-h1 .doodle-underline {
      position: relative; display: inline-block;
    }
    .hero-h1 .doodle-underline::after {
      content: '';
      position: absolute; left: 0; bottom: -6px;
      width: 100%; height: 12px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2 9 Q25 2 50 8 Q75 14 100 7 Q125 1 150 8 Q175 14 198 6' stroke='%2391C75E' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
    }

    .hero-desc {
      font-size: 1.05rem; color: var(--muted);
      max-width: 460px; line-height: 1.8; margin-bottom: 2.5rem;
      animation: fadeUp 0.8s var(--ease) 0.2s both;
    }

    .hero-ctas {
      display: flex; align-items: center; gap: 14px;
      flex-wrap: wrap; margin-bottom: 2.75rem;
      animation: fadeUp 0.8s var(--ease) 0.3s both;
    }

    .hero-social-proof {
      display: flex; align-items: center; gap: 14px;
      animation: fadeUp 0.8s var(--ease) 0.4s both;
    }
    .proof-avatars { display: flex; }
    .proof-avatar {
      width: 34px; height: 34px; border-radius: 50%;
      border: 2.5px solid #FDFAF4;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.68rem; font-weight: 700; color: #fff;
      margin-left: -9px;
    }
    .proof-avatar:first-child { margin-left: 0; }
    .proof-text { font-size: 0.82rem; color: var(--muted); }
    .proof-text strong { color: var(--purple-dark); font-weight: 600; }

    /* Hero right: doodle illustration */
    .hero-art { position: relative; z-index: 1; }
    .hero-art svg { width: 100%; height: auto; max-width: 560px; display: block; margin: 0 auto; }

    /* Floating doodle note cards */
    .float-card {
      position: absolute; background: var(--white);
      border-radius: 14px; padding: 11px 16px;
      box-shadow: var(--shadow-md);
      display: flex; align-items: center; gap: 11px;
      animation: floatAnim 3.5s ease-in-out infinite;
      z-index: 2;
      border: 1.5px solid rgba(145,199,94,0.2);
    }
    .float-card.card-b { animation-delay: 1.75s; }

    @keyframes floatAnim {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-9px) rotate(1deg); }
    }

    .float-icon {
      width: 38px; height: 38px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .float-title { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
    .float-sub { font-size: 0.73rem; color: var(--muted); }
    .card-top { top: 5%; left: -2%; }
    .card-bot { bottom: 8%; right: -1%; }

    /* Wave separator */
    .wave { overflow: hidden; line-height: 0; margin-top: -1px; }
    .wave svg { display: block; width: 100%; }

    /* ============================================================
       STRUGGLES SECTION
    ============================================================ */
    #struggles { background: var(--white); }

    .struggle-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 2rem 1.75rem;
      height: 100%; position: relative; overflow: hidden;
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
    }
    .struggle-card::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--olive), var(--purple));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s var(--ease);
    }
    .struggle-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); background: var(--white); }
    .struggle-card:hover::after { transform: scaleX(1); }

    .struggle-ico {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.2rem;
    }
    .struggle-card h3 { font-size: 1.1rem; color: var(--purple-dark); margin-bottom: 0.5rem; }
    .struggle-card p { font-size: 0.9rem; line-height: 1.65; }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services { background: var(--bg); }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 22px;
    }

    .svc-card {
      background: var(--white); border-radius: 24px;
      padding: 2.2rem; border: 1px solid var(--border);
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
      display: flex; flex-direction: column;
    }
    .svc-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
    .svc-card.featured { background: var(--purple-dark); border-color: transparent; }

    .svc-num {
      font-family: var(--serif); font-size: 3rem;
      font-weight: 700; color: var(--olive-light); line-height: 1;
      margin-bottom: 0.7rem;
    }
    .svc-card.featured .svc-num { color: rgba(145,199,94,0.22); }

    .svc-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.73rem; font-weight: 600; color: var(--olive-dark);
      background: var(--olive-light); padding: 4px 11px;
      border-radius: 20px; margin-bottom: 1rem; width: fit-content;
    }
    .svc-card.featured .svc-badge {
      background: rgba(145,199,94,0.14); color: var(--olive);
    }

    .svc-card h3 { font-size: 1.25rem; color: var(--purple-dark); margin-bottom: 0.65rem; }
    .svc-card.featured h3 { color: #fff; }
    .svc-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
    .svc-card.featured p { color: rgba(255,255,255,0.62); }

    .learn-btn {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.87rem; font-weight: 600;
      color: var(--purple); background: none;
      border: none; cursor: pointer; padding: 0;
      transition: var(--t); margin-top: auto;
    }
    .learn-btn:hover { color: var(--purple-dark); }
    .svc-card.featured .learn-btn { color: var(--olive); }
    .svc-card.featured .learn-btn:hover { color: #fff; }

    /* ============================================================
       JOURNEY — COMPACT DOODLE PROCESS
    ============================================================ */
    #journey {
      background: var(--purple-dark);
      position: relative; overflow: hidden;
      padding: 64px 0;
    }
    #journey .label-tag { color: var(--olive); }
    #journey .label-tag::before { background: var(--olive); }
    #journey .section-title { color: #fff; }
    #journey .section-sub { color: rgba(255,255,255,0.55); }

    #journey::before {
      content: ''; position: absolute;
      top: -15%; left: -8%; width: 38%; height: 55%;
      background: radial-gradient(ellipse, rgba(145,199,94,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Compact horizontal step cards */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      align-items: start;
    }

    .process-arrow-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      margin-bottom: 6px;
    }
    .process-arrow-svg {
      grid-column: 1 / -1;
      width: 100%;
      overflow: visible;
    }

    .proc-step {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      padding: 1.4rem 1.2rem;
      margin: 0 8px;
      position: relative;
      transition: background 0.3s;
    }
    .proc-step:hover { background: rgba(255,255,255,0.09); }

    .proc-num {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--olive);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-family: var(--serif);
      font-weight: 700; font-size: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 0 0 5px rgba(145,199,94,0.15);
      flex-shrink: 0;
    }
    .proc-step h3 { font-size: 0.95rem; color: #fff; margin-bottom: 0.35rem; line-height: 1.3; }
    .proc-step p { font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.6; margin: 0; }

    /* Doodle icon per step */
    .proc-doodle {
      position: absolute; top: -18px; right: 12px;
      width: 36px; height: 36px; opacity: 0.55;
    }

    @media (max-width: 991px) {
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .process-arrow-row { display: none; }
      .proc-step { margin: 0; }
      .proc-step:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
    }
    @media (max-width: 575px) {
      .process-grid { grid-template-columns: 1fr; }
      .proc-step:last-child { max-width: 100%; }
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    #about { background: var(--white); }

    .about-frame {
      position: relative; border-radius: 28px;
      overflow: visible;
    }
    .about-img-area {
      width: 100%; aspect-ratio: 3/4; max-width: 400px;
      background: var(--purple-light);
      border-radius: 28px; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .about-img-area svg { width: 75%; opacity: 0.35; }
    .about-founder-label {
      position: absolute; bottom: 16px; left: 0; right: 0;
      text-align: center; font-size: 0.8rem;
      font-weight: 600; color: var(--purple-mid);
    }

    .about-cred {
      position: absolute; bottom: -18px; right: -18px;
      background: var(--olive); border-radius: 18px;
      padding: 16px 20px; box-shadow: var(--shadow-md);
    }
    .about-cred-num {
      font-family: var(--serif); font-size: 2.4rem;
      font-weight: 700; color: #fff; line-height: 1;
    }
    .about-cred-lbl { font-size: 0.76rem; color: rgba(255,255,255,0.85); font-weight: 500; }

    #about h2 { font-size: clamp(1.75rem, 3.5vw, 2.7rem); margin-bottom: 1.25rem; }
    #about h2 em { font-style: italic; color: var(--purple); }
    #about p { margin-bottom: 1.15rem; line-height: 1.8; }

    .spec-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.25rem 0 1.75rem; }
    .spec-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--olive-light); color: var(--olive-dark);
      padding: 6px 13px; border-radius: 20px;
      font-size: 0.8rem; font-weight: 500;
    }

    /* ============================================================
       TESTIMONIALS — STAGGERED WALL DESIGN
    ============================================================ */
    #testimonials { background: var(--white); overflow: hidden; }

    .testi-wall {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 880px;
      margin: 0 auto;
    }

    .tw-card {
      border-radius: 24px;
      padding: 2rem 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }
    .tw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

    /* Color variants */
    .tw-card.c-green  { background: var(--olive-pale); }
    .tw-card.c-purple { background: var(--purple-pale); }
    .tw-card.c-light  { background: #FFF8F0; }
    .tw-card.c-white  { background: var(--bg); border: 1px solid var(--border); }

    /* Shift second card down for stagger effect */
    .tw-card:nth-child(2) { margin-top: 32px; }
    .tw-card:nth-child(4) { margin-top: -32px; }

    /* Decorative doodle quote mark */
    .tw-quote-doodle {
      position: absolute; top: 16px; right: 18px;
      opacity: 0.12;
    }

    .tw-stars {
      display: flex; gap: 3px; margin-bottom: 1rem;
    }
    .tw-star {
      width: 14px; height: 14px;
    }

    .tw-text {
      font-family: var(--serif); font-style: italic;
      font-size: 1rem; color: var(--purple-dark);
      line-height: 1.78; margin-bottom: 1.4rem;
    }

    .tw-author {
      display: flex; align-items: center; gap: 10px;
      border-top: 1px solid rgba(122,104,128,0.12);
      padding-top: 1rem;
    }
    .tw-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .tw-author-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
    .tw-author-loc { font-size: 0.75rem; color: var(--muted); }

    /* Central doodle accent between columns */
    .testi-center-doodle {
      display: flex; align-items: center; justify-content: center;
      margin: 1.5rem 0 0;
    }

    @media (max-width: 640px) {
      .testi-wall { grid-template-columns: 1fr; }
      .tw-card:nth-child(2),
      .tw-card:nth-child(4) { margin-top: 0; }
    }

    /* ============================================================
       FAQ
    ============================================================ */
    #faq { background: var(--white); }
    .faq-wrap { max-width: 760px; margin: 0 auto; }

    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; align-items: center;
      justify-content: space-between; gap: 1rem;
      padding: 1.5rem 0; cursor: pointer;
    }
    .faq-q h3 {
      font-family: var(--serif); font-size: 1.05rem;
      color: var(--purple-dark); font-weight: 600; flex: 1;
    }
    .faq-ico {
      width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
      background: var(--bg); display: flex; align-items: center;
      justify-content: center; transition: var(--t);
    }
    .faq-item.open .faq-ico { background: var(--olive); transform: rotate(45deg); }
    .faq-item.open .faq-ico svg { stroke: #fff; }

    .faq-ans {
      max-height: 0; overflow: hidden;
      transition: max-height 0.42s var(--ease);
    }
    .faq-ans-inner {
      padding: 0 0 1.5rem; font-size: 0.95rem;
      color: var(--muted); line-height: 1.8;
    }
    .faq-item.open .faq-ans { max-height: 500px; }

    /* ============================================================
       CTA BAND
    ============================================================ */
    #cta { background: var(--olive-pale); padding: 80px 0; }
    .cta-box {
      background: var(--purple-dark); border-radius: 28px;
      padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: ''; position: absolute;
      top: -30%; right: -6%; width: 280px; height: 280px;
      background: rgba(145,199,94,0.1); border-radius: 50%;
      pointer-events: none;
    }
    .cta-box::after {
      content: ''; position: absolute;
      bottom: -20%; left: -4%; width: 200px; height: 200px;
      background: rgba(145,199,94,0.07); border-radius: 50%;
      pointer-events: none;
    }
    .cta-box .label-tag { color: var(--olive); justify-content: center; }
    .cta-box .label-tag::before { background: var(--olive); }
    .cta-box h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3.8vw, 3rem);
      color: #fff; margin-bottom: 1rem;
    }
    .cta-box h2 em { font-style: italic; color: var(--olive); }
    .cta-box p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 2.25rem; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .cta-note { margin-top: 1.25rem; font-size: 0.79rem; color: rgba(255,255,255,0.35); }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer { background: var(--dark); padding: 64px 0 32px; }

    .foot-brand {
      font-family: var(--serif); font-size: 1.35rem;
      color: #fff; font-weight: 700; margin-bottom: 0.6rem;
    }
    .foot-tag { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 280px; }
    .foot-head { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); margin-bottom: 1.15rem; }
    .foot-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .foot-list a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .foot-list a:hover { color: var(--olive); }

    .foot-rule { border-color: rgba(255,255,255,0.07); margin: 40px 0 22px; }
    .foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .foot-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

    .social-bar { display: flex; gap: 10px; }
    .soc-btn {
      width: 34px; height: 34px; border-radius: 8px;
      background: rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); transition: var(--t);
    }
    .soc-btn:hover { background: var(--olive); color: #fff; }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: none; }

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

    /* ============================================================
       RESPONSIVE BREAKPOINTS
    ============================================================ */
    @media (max-width: 991px) {

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .ham { display: flex; }

      #hero { padding-top: 100px; padding-bottom: 60px; }
      .hero-art { margin-top: 3rem; }
      .float-card { display: none; }

      .sec { padding: 70px 0; }
      #struggles, #services, #about, #testimonials, #faq { padding: 70px 0; }
      #journey { padding: 70px 0; }
      #cta { padding: 60px 0; }

      .cta-box { padding: 2.5rem 1.5rem; }
      .about-cred { right: 8px; bottom: -14px; }
      .svc-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .hero-h1 { font-size: 2.1rem; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
    }