/* ============================================================
       PALETTE
       ============================================================ */
    :root {
      --dark-green:    #1f4332;
      --dark-green-2:  #173529;
      --mint-accent:   #4ea674;
      --mint-accent-2: #6cc394;
      --cream-bg:      #e8f1e8;
      --cream-bg-2:    #f3f8f3;
      --icon-disc:     #cfe4d2;
      --ink:           #1f4332;
      --ink-muted:     #4d6358;
      --white:         #ffffff;
      --border-dark:   rgba(255,255,255,0.12);
      --border-light:  #cfe0d2;
      --space-1: 8px;
      --space-2: 16px;
      --space-3: 24px;
      --space-4: 32px;
      --space-6: 48px;
      --space-8: 64px;
      --space-10: 80px;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 18px;
      --shadow-sm: 0 2px 8px rgba(20, 50, 35, 0.08);
      --shadow-md: 0 8px 24px rgba(20, 50, 35, 0.12);
      --shadow-lg: 0 16px 40px rgba(20, 50, 35, 0.20);
      --container: 1180px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: 0; background: none; }
    .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }

    /* ---------- A11Y: visible focus, skip link, reduced motion ---------- */
    :focus-visible { outline: 3px solid var(--mint-accent-2); outline-offset: 2px; border-radius: 3px; }
    .skip-link {
      position: absolute; left: 8px; top: -60px; z-index: 10000;
      background: var(--dark-green); color: #fff; padding: 12px 18px;
      border-radius: 8px; font-weight: 700; transition: top 0.15s;
    }
    .skip-link:focus { top: 8px; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    }

    /* ---------- DEMO BANNER ---------- */
    .demo-banner {
      position: sticky;
      top: 0;
      z-index: 9999;
      background: linear-gradient(135deg, #c64a1f 0%, #e85d2a 100%);
      color: #fff;
      padding: 10px 16px;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      line-height: 1.4;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .demo-banner strong { font-weight: 800; letter-spacing: 0.04em; }
    .demo-banner a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 2px;
      margin-left: 6px;
      font-weight: 700;
    }
    .demo-banner a:hover { color: #fff8e7; }
    @media (max-width: 640px) {
      .demo-banner { font-size: 12.5px; padding: 8px 12px; }
    }

    /* ---------- HEADER ---------- */
    .header {
      position: sticky; top: 42px; z-index: 50;
      background: var(--dark-green);
      color: var(--white);
      border-bottom: 1px solid var(--border-dark);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; gap: var(--space-3);
    }
    .logo {
      display: flex; align-items: baseline; gap: 6px;
      color: var(--white);
      font-weight: 800;
      font-size: clamp(22px, 3.2vw, 28px);
      letter-spacing: -0.02em;
      line-height: 1;
      padding-left: var(--space-2);
    }
    .logo .logo-accent { color: var(--mint-accent); font-weight: 800; }
    .nav { display: none; gap: var(--space-4); font-weight: 500; font-size: 15px; }
    .nav a { color: rgba(255,255,255,0.85); }
    .nav a:hover { color: var(--mint-accent-2); }
    .header-phone {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--mint-accent);
      color: var(--dark-green);
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 700; font-size: 15px; white-space: nowrap;
    }
    .header-phone svg { width: 16px; height: 16px; }
    .header-phone:hover { background: var(--mint-accent-2); }
    @media (min-width: 900px) { .nav { display: flex; } }

    /* ---------- HERO ---------- */
    .hero {
      background: var(--dark-green);
      color: var(--white);
      padding: var(--space-6) 0 var(--space-10);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -30%; right: -15%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(108,195,148,0.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid { display: grid; gap: var(--space-6); position: relative; }
    .pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--mint-accent);
      color: var(--white);
      padding: 8px 18px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      width: fit-content;
    }
    .hero h1 {
      font-size: clamp(38px, 7.5vw, 68px);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: -0.025em;
      margin: var(--space-3) 0 var(--space-2);
      color: var(--white);
    }
    .hero h1 .accent { color: var(--mint-accent); display: block; }
    .hero-sub {
      font-size: clamp(16px, 2.2vw, 19px);
      color: rgba(255,255,255,0.80);
      max-width: 560px;
      margin-bottom: var(--space-4);
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      padding: 16px 24px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 16px;
      transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
      min-height: 56px;
    }
    .btn-primary {
      background: var(--mint-accent);
      color: var(--dark-green);
      box-shadow: var(--shadow-md);
    }
    .btn-primary:hover { transform: translateY(-2px); background: var(--mint-accent-2); box-shadow: var(--shadow-lg); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.35);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
    .btn svg { width: 18px; height: 18px; }
    .hero-trust {
      display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-4);
      color: rgba(255,255,255,0.85); font-size: 14px;
    }
    .hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
    .hero-trust .check { color: var(--mint-accent); font-weight: 800; }

    /* Hero form card */
    .hero-form-card {
      background: var(--white);
      color: var(--ink);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .hero-form-card h2 {
      font-size: 22px; margin-bottom: 6px;
      color: var(--dark-green); font-weight: 800;
    }
    .form-sub { color: var(--ink-muted); font-size: 14px; margin-bottom: var(--space-3); }
    .form-field { margin-bottom: var(--space-2); }
    .form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-green); margin-bottom: 6px; }
    .form-field input,
    .form-field select {
      width: 100%; padding: 14px;
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-md);
      font-size: 16px; font-family: inherit;
      background: var(--cream-bg-2);
      transition: border-color 0.15s, background 0.15s;
      min-height: 50px;
      color: var(--ink);
    }
    .form-field input:focus,
    .form-field select:focus {
      outline: none; border-color: var(--mint-accent); background: var(--white);
    }
    .form-submit {
      width: 100%;
      background: var(--dark-green);
      color: var(--white);
      padding: 16px;
      border-radius: var(--radius-md);
      font-weight: 700; font-size: 16px;
      margin-top: var(--space-1);
      transition: background 0.2s;
      min-height: 56px;
    }
    .form-submit:hover { background: var(--dark-green-2); }
    .form-foot { text-align: center; font-size: 12px; color: var(--ink-muted); margin-top: var(--space-2); }
    .hp { position: absolute; left: -9999px; top: -9999px; }
    .field-error { color: #c00; font-size: 13px; margin-top: 4px; display: block; min-height: 18px; }
    .success-msg { display: none; text-align: center; padding: var(--space-3) 0; }
    .success-msg .success-icon { font-size: 40px; margin-bottom: var(--space-2); }
    .success-msg h3 { font-size: 20px; font-weight: 800; color: var(--dark-green); margin-bottom: 8px; }
    .success-msg p { font-size: 15px; color: var(--ink-muted); }
    @media (min-width: 900px) {
      .hero-grid { grid-template-columns: 1.2fr 1fr; align-items: center; gap: var(--space-8); }
    }

    /* ---------- TRUST BAR ---------- */
    .trust-bar { background: var(--cream-bg); padding: var(--space-4) 0; }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-3);
      text-align: center;
    }
    .trust-item .num {
      font-size: 32px; font-weight: 900;
      color: var(--dark-green);
      line-height: 1; letter-spacing: -0.02em;
    }
    .trust-item .lbl { font-size: 13px; color: var(--ink-muted); margin-top: 4px; font-weight: 500; }
    @media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

    /* ---------- PRICING STRIP ---------- */
    .pricing-strip {
      background: var(--white);
      padding: var(--space-8) 0;
      border-bottom: 1px solid var(--border-light);
    }
    .pricing-h {
      font-size: clamp(24px, 4vw, 32px);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--dark-green);
      text-align: center;
      margin-bottom: 6px;
    }
    .pricing-sub {
      text-align: center;
      color: var(--ink-muted);
      font-size: 16px;
      margin-bottom: var(--space-4);
      max-width: 600px;
      margin-left: auto; margin-right: auto;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-3);
      margin-bottom: var(--space-3);
    }
    @media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
    .pricing-card {
      background: var(--cream-bg);
      border-radius: var(--radius-lg);
      padding: var(--space-3);
      text-align: center;
      border-top: 4px solid var(--mint-accent);
    }
    .pricing-label {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-muted);
      margin-bottom: 8px;
    }
    .pricing-amount {
      font-size: 26px;
      font-weight: 900;
      color: var(--dark-green);
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
    .pricing-note { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
    .pricing-foot { text-align: center; color: var(--ink-muted); font-size: 14px; }
    .pricing-foot a { color: var(--dark-green); font-weight: 700; border-bottom: 2px solid var(--mint-accent); }

    /* ---------- GENERIC SECTIONS ---------- */
    section.block { padding: var(--space-8) 0; }
    section.block-cream { background: var(--cream-bg); }
    section.block-dark { background: var(--dark-green); color: var(--white); }
    .eyebrow {
      display: inline-block;
      color: var(--mint-accent);
      font-weight: 700; font-size: 13px;
      letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: var(--space-2);
    }
    .eyebrow-on-dark { color: var(--mint-accent); }
    .section-h2 {
      font-size: clamp(28px, 5vw, 44px);
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--dark-green);
      margin-bottom: var(--space-2);
      max-width: 760px;
    }
    .section-h2-on-dark { color: var(--white); }
    .section-sub {
      font-size: 17px; color: var(--ink-muted);
      max-width: 640px; margin-bottom: var(--space-6);
    }
    .section-sub-on-dark { color: rgba(255,255,255,0.78); }

    /* ---------- SERVICES ---------- */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-3);
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      border-top: 4px solid var(--dark-green);
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: var(--shadow-sm);
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .service-icon {
      width: 72px; height: 72px;
      background: var(--icon-disc);
      color: var(--dark-green);
      border-radius: 50%;
      display: grid; place-items: center;
      margin: 0 auto var(--space-3);
    }
    .service-icon svg { width: 36px; height: 36px; }
    .service-card h3 { font-size: 20px; font-weight: 800; color: var(--dark-green); margin-bottom: 10px; }
    .service-card p { font-size: 15px; color: var(--ink-muted); line-height: 1.55; }
    @media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

    /* ---------- WHY CHOOSE US ---------- */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-3);
    }
    .why-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
    }
    .why-card .why-icon {
      width: 48px; height: 48px;
      background: var(--mint-accent);
      color: var(--dark-green);
      border-radius: 12px;
      display: grid; place-items: center;
      margin-bottom: var(--space-2);
    }
    .why-card .why-icon svg { width: 24px; height: 24px; }
    .why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--white); }
    .why-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.55; }
    @media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 980px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

    /* ---------- HOW IT WORKS ---------- */
    .steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-4);
    }
    .step {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      position: relative;
      box-shadow: var(--shadow-sm);
    }
    .step .step-num {
      width: 44px; height: 44px;
      background: var(--mint-accent);
      color: var(--white);
      border-radius: 50%;
      display: grid; place-items: center;
      font-weight: 900; font-size: 18px;
      margin-bottom: var(--space-2);
    }
    .step h3 { font-size: 19px; font-weight: 800; color: var(--dark-green); margin-bottom: 6px; }
    .step p { font-size: 15px; color: var(--ink-muted); }
    @media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }

    /* ---------- AREAS SERVED ---------- */
    .areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-3); }
    .area-tag {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      color: var(--dark-green);
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-3);
    }
    .testimonial {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .stars { color: #f7b500; font-size: 16px; margin-bottom: var(--space-2); letter-spacing: 2px; }
    .testimonial p { font-size: 15px; line-height: 1.6; color: var(--ink); margin-bottom: var(--space-2); }
    .testimonial-author {
      font-weight: 700; color: var(--dark-green); font-size: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .testimonial-author::before {
      content: ''; width: 8px; height: 8px; background: var(--mint-accent); border-radius: 50%;
    }
    .reviews-note {
      font-size: 13px; color: var(--ink-muted); margin-top: var(--space-4);
      padding: var(--space-3); background: var(--cream-bg-2); border-radius: var(--radius-md);
      border-left: 3px solid var(--mint-accent);
    }
    @media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

    /* ---------- FAQ ---------- */
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%; text-align: left;
      padding: 18px 20px;
      font-size: 16px; font-weight: 700;
      color: var(--dark-green);
      display: flex; justify-content: space-between; align-items: center;
      gap: var(--space-2);
    }
    .faq-question::after {
      content: '+'; font-size: 24px; font-weight: 400;
      color: var(--mint-accent); transition: transform 0.2s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-question::after { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 20px;
      font-size: 15px; color: var(--ink-muted); line-height: 1.6;
    }
    .faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }

    /* ---------- FINAL CTA ---------- */
    .final-cta { text-align: center; }
    .final-cta h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; line-height: 1.1; margin-bottom: var(--space-2); }
    .final-cta p { font-size: 18px; color: rgba(255,255,255,0.80); margin-bottom: var(--space-4); }
    .final-cta .hero-ctas { justify-content: center; }

    /* ---------- FOOTER ---------- */
    .footer {
      background: var(--dark-green-2);
      color: rgba(255,255,255,0.75);
      padding: var(--space-6) 0 var(--space-3);
      font-size: 14px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1fr; gap: var(--space-4);
      margin-bottom: var(--space-4);
    }
    .footer h3 { color: var(--white); font-size: 16px; font-weight: 800; margin-bottom: 12px; }
    .footer a { color: rgba(255,255,255,0.75); display: block; padding: 4px 0; }
    .footer a:hover { color: var(--mint-accent); }
    .footer-bottom {
      border-top: 1px solid var(--border-dark);
      padding-top: var(--space-3);
      text-align: center;
      font-size: 13px;
    }
    @media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

    /* ---------- STICKY CALL BUTTON ---------- */
    .sticky-call {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--mint-accent);
      color: var(--dark-green);
      display: flex; align-items: center; justify-content: center; gap: 10px;
      padding: 16px;
      font-size: 16px; font-weight: 800;
      z-index: 100;
      box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
      min-height: 60px;
      transition: opacity 0.2s, transform 0.2s;
    }
    .sticky-call:hover { background: var(--mint-accent-2); }
    .sticky-call svg { width: 20px; height: 20px; }
    @media (min-width: 900px) { .sticky-call { display: none; } }
    body.kb-open .sticky-call { opacity: 0; pointer-events: none; }
    @media (max-width: 899px) { body { padding-bottom: 70px; } }

    /* ---------- MODAL ---------- */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(20, 50, 35, 0.65);
      display: none;
      align-items: center; justify-content: center;
      padding: var(--space-2);
      z-index: 200;
      animation: fadeIn 0.2s ease;
    }
    .modal-overlay.active { display: flex; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    .modal-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 480px; width: 100%;
      padding: var(--space-4);
      position: relative;
      max-height: 90vh; overflow-y: auto;
      animation: slideUp 0.25s ease;
    }
    @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    .modal-close {
      position: absolute; top: 12px; right: 12px;
      width: 36px; height: 36px;
      background: var(--cream-bg);
      border-radius: 50%;
      font-size: 22px; color: var(--dark-green);
      display: grid; place-items: center;
      font-weight: 600;
    }
    .modal-close:hover { background: var(--icon-disc); }

    /* ---------- AI RECEPTIONIST BUTTON ---------- */
    @keyframes ai-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.55); }
      50%       { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    }
    @keyframes bar1 { 0%,100%{height:6px}50%{height:18px} }
    @keyframes bar2 { 0%,100%{height:14px}50%{height:6px} }
    @keyframes bar3 { 0%,100%{height:10px}33%{height:20px}66%{height:4px} }
    @keyframes bar4 { 0%,100%{height:6px}40%{height:16px}80%{height:8px} }
    @keyframes bar5 { 0%,100%{height:14px}50%{height:6px} }
    .btn-ai-receptionist {
      background: #ff6b00;
      color: #fff;
      border: none;
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 800; font-size: 15px;
      min-height: 56px;
      animation: ai-pulse 2s ease-in-out infinite;
      transition: background 0.2s, transform 0.15s;
      position: relative;
      overflow: hidden;
    }
    .btn-ai-receptionist:hover { background: #e05e00; transform: translateY(-2px); }
    .btn-ai-receptionist.playing { background: #cc5500; animation: none; }
    .ai-wave { display: none; align-items: flex-end; gap: 3px; height: 22px; }
    .btn-ai-receptionist.playing .ai-wave { display: flex; }
    .btn-ai-receptionist.playing .ai-mic  { display: none; }
    .ai-wave span {
      display: block; width: 4px; border-radius: 2px;
      background: rgba(255,255,255,0.9);
    }
    .ai-wave span:nth-child(1){height:6px;animation:bar1 0.7s ease-in-out infinite;}
    .ai-wave span:nth-child(2){height:14px;animation:bar2 0.6s ease-in-out infinite 0.1s;}
    .ai-wave span:nth-child(3){height:10px;animation:bar3 0.8s ease-in-out infinite 0.05s;}
    .ai-wave span:nth-child(4){height:6px;animation:bar4 0.65s ease-in-out infinite 0.15s;}
    .ai-wave span:nth-child(5){height:14px;animation:bar5 0.75s ease-in-out infinite 0.2s;}

/* ============================================================
   INTERIOR PAGES (about / services / privacy)
   ============================================================ */
.page-hero { background: var(--dark-green); color: var(--white); padding: var(--space-8) 0 var(--space-6); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; top:-30%; right:-15%; width:600px; height:600px; background: radial-gradient(circle, rgba(108,195,148,0.15) 0%, transparent 60%); pointer-events:none; }
.page-hero h1 { font-size: clamp(30px, 5.5vw, 50px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; color: var(--white); position:relative; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: clamp(16px,2.2vw,19px); max-width: 640px; margin-top: var(--space-2); position:relative; }
.breadcrumb { font-size: 13px; margin-bottom: var(--space-2); display: flex; gap: 8px; flex-wrap: wrap; align-items:center; position:relative; }
.breadcrumb a { color: var(--mint-accent-2); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.45); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(20px,3vw,26px); font-weight: 800; color: var(--dark-green); margin: var(--space-4) 0 var(--space-1); }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--dark-green); margin: var(--space-3) 0 6px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-muted); line-height: 1.7; margin-bottom: var(--space-2); }
.prose ul { padding-left: 22px; margin-bottom: var(--space-3); }
.prose a { color: var(--dark-green); font-weight: 600; border-bottom: 2px solid var(--mint-accent); }
.prose .meta { font-size: 14px; color: var(--ink-muted); margin-bottom: var(--space-3); }

.about-grid { display: grid; gap: var(--space-4); }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.25fr 1fr; align-items: start; } }
.about-card { background: var(--cream-bg); border-radius: var(--radius-lg); padding: var(--space-4); border-top: 4px solid var(--mint-accent); }
.about-card h3 { color: var(--dark-green); font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.about-card ul { list-style: none; display: grid; gap: 10px; }
.about-card li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-muted); align-items: flex-start; }
.about-card li::before { content: '✓'; color: var(--mint-accent); font-weight: 800; flex-shrink: 0; }
.center-cta { text-align: center; margin-top: var(--space-6); }

