
  :root {
    --green:        #395C39;
    --green-mid:    #4e7a4e;
    --green-light:  #6b9a6b;
    --green-badge:  #c8d8c0;
    --green-badge-text: #2e4e2e;
    --bg-sage:      #edf0e8;
    --bg-sage-deep: #e2e8da;
    --bg-white:     #ffffff;
    --bg-card:      #f7f9f4;
    --dark:         #1c2e1c;
    --mid:          #4a5e4a;
    --light-text:   #7a8f7a;
    --border:       #d5e0d0;
    --shadow:       rgba(57,92,57,0.08);
    --shadow-md:    rgba(57,92,57,0.14);
  }

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

  body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--dark);
    background: var(--bg-sage);
    line-height: 1.6;
  }

  /* TOP BAR */
  .top-bar {
    background: var(--green);
    color: rgba(255,255,255,0.90);
    text-align: center;
    padding: 11px 20px;
    font-family: 'Arial', sans-serif;
    font-size: 0.87rem;
    letter-spacing: 0.01em;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .top-bar a { color: #c8d8c0; text-decoration: underline; }

  /* NAV */
  nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 15px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 41px;
    z-index: 999;
    box-shadow: 0 2px 12px var(--shadow);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-mark {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(27%) sepia(18%) saturate(700%) hue-rotate(76deg) brightness(90%) contrast(92%);
  }
  .logo-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    font-family: 'Georgia', serif;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.87rem;
  }
  .nav-links a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green);
    color: white;
    padding: 10px 22px;
    border-radius: 22px;
    font-family: 'Arial', sans-serif;
    font-size: 0.87rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--green-mid); }

  /* HERO */
  .hero {
    background: var(--green);
    color: white;
    padding: 96px 48px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 360px; height: 360px;
    background: rgba(200,216,192,0.10);
    border-radius: 50%;
  }
  .hero-pill {
    display: inline-block;
    background: rgba(200,216,192,0.20);
    border: 1px solid rgba(200,216,192,0.35);
    color: rgba(255,255,255,0.85);
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 0.77rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 22px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--green-badge);
  }
  .hero p {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    opacity: 0.80;
    max-width: 490px;
    margin: 0 auto 38px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
  .btn-primary {
    background: var(--bg-white);
    color: var(--green);
    padding: 14px 32px;
    border-radius: 28px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .btn-primary:hover { background: var(--bg-sage); transform: translateY(-2px); }
  .btn-ghost {
    background: rgba(255,255,255,0.10);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.30);
    padding: 13px 30px;
    border-radius: 28px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.18); }
  .hero-footnote {
    font-family: 'Arial', sans-serif;
    font-size: 0.79rem;
    opacity: 0.52;
    position: relative;
    z-index: 1;
    margin-top: 10px;
  }

  /* STORE BADGES */
  .store-badges {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 44px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .store-badge {
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    font-family: 'Arial', sans-serif;
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 150px;
  }
  .store-badge:hover { background: rgba(255,255,255,0.18); }
  .badge-icon {
    width: 28px; height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  .badge-copy small { display: block; font-size: 0.67rem; opacity: 0.65; }
  .badge-copy strong { font-size: 0.92rem; }

  /* TRUST STRIP */
  .trust-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 26px 48px;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
  }
  .trust-item { text-align: center; font-family: 'Arial', sans-serif; }
  .trust-num { display: block; font-size: 1.65rem; font-weight: 700; color: var(--green); }
  .trust-label { font-size: 0.76rem; color: var(--light-text); text-transform: uppercase; letter-spacing: 0.08em; }

  /* GENERIC SECTION */
  section { padding: 80px 48px; }
  .label {
    font-family: 'Arial', sans-serif;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--green-light);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.22;
    text-align: center;
    color: var(--dark);
    margin-bottom: 14px;
  }
  .sub {
    font-family: 'Arial', sans-serif;
    color: var(--light-text);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 50px;
    font-size: 0.97rem;
    line-height: 1.65;
  }

  /* HOW IT WORKS */
  .how { background: var(--bg-white); }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    max-width: 840px;
    margin: 0 auto;
  }
  .step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 22px;
    text-align: center;
  }
  .step-num {
    width: 44px; height: 44px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 16px;
  }
  .step h3 { font-size: 1rem; color: var(--green); margin-bottom: 9px; }
  .step p { font-family: 'Arial', sans-serif; font-size: 0.87rem; color: var(--mid); line-height: 1.65; }

  /* FEATURES */
  .features { background: var(--bg-sage); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
  }
  .feat {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow-md); }
  .feat-icon { font-size: 1.9rem; margin-bottom: 13px; display: block; }
  .feat h3 { font-size: 0.98rem; color: var(--green); margin-bottom: 8px; }
  .feat p { font-family: 'Arial', sans-serif; font-size: 0.86rem; color: var(--mid); line-height: 1.65; }

  /* CONTENT PREVIEW */
  .preview { background: var(--bg-white); }
  .preview-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    max-width: 860px;
    margin: 0 auto;
    align-items: center;
  }
  .phone-mock {
    background: var(--green);
    border-radius: 26px;
    padding: 28px 22px;
    color: white;
    box-shadow: 0 20px 56px var(--shadow-md);
  }
  .mock-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.70rem;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 16px;
  }
  .mock-row {
    background: rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 11px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 0.87rem;
  }
  .mock-locked { opacity: 0.35; }
  .lock-tag {
    margin-left: auto;
    background: rgba(200,216,192,0.35);
    color: rgba(255,255,255,0.9);
    font-size: 0.61rem;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
  }
  .mock-foot {
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.72rem;
    opacity: 0.45;
    margin-top: 13px;
  }
  .preview-copy h3 {
    font-size: 1.45rem;
    color: var(--green);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .preview-copy p {
    font-family: 'Arial', sans-serif;
    color: var(--mid);
    font-size: 0.91rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .upgrade-box {
    background: var(--bg-sage);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    font-family: 'Arial', sans-serif;
    font-size: 0.86rem;
    color: var(--green);
    font-weight: 500;
    line-height: 1.55;
  }

  /* PLANS */
  .plans { background: var(--bg-sage); }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
  }
  .plan {
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 32px 22px;
    text-align: center;
    background: var(--bg-white);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .plan:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow-md); }
  .plan.featured {
    border-color: var(--green);
    box-shadow: 0 8px 28px var(--shadow-md);
    transform: scale(1.03);
  }
  .plan.featured:hover { transform: scale(1.03) translateY(-4px); }
  .plan-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .plan-tag.value { background: var(--green-mid); }
  .plan-tier {
    font-family: 'Arial', sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--light-text);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
  }
  .plan-price sup { font-size: 0.98rem; vertical-align: super; }
  .plan-per {
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    color: var(--light-text);
    margin-bottom: 8px;
  }
  .plan-saving {
    display: inline-block;
    background: var(--green-badge);
    color: var(--green-badge-text);
    font-family: 'Arial', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .plan hr { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
  .plan ul { list-style: none; text-align: left; margin-bottom: 24px; }
  .plan ul li {
    font-family: 'Arial', sans-serif;
    font-size: 0.86rem;
    color: var(--mid);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .plan ul li .y { color: var(--green); font-size: 0.92rem; flex-shrink: 0; margin-top: 2px; }
  .plan ul li .n { color: #ccc; font-size: 0.92rem; flex-shrink: 0; margin-top: 2px; }
  .plan ul li.dim { color: #bbb; }
  .btn-plan {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 22px;
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }
  .btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--mid);
  }
  .btn-outline:hover { border-color: var(--green); color: var(--green); }
  .btn-green {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 14px var(--shadow-md);
  }
  .btn-green:hover { background: var(--green-mid); }
  .plan-note {
    font-family: 'Arial', sans-serif;
    font-size: 0.74rem;
    color: var(--light-text);
    margin-top: 10px;
    text-align: center;
  }
  .plans-footer {
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* COMPARISON */
  .comparison { background: var(--bg-white); }
  .compare-wrap {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px var(--shadow);
  }
  .compare-wrap table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Arial', sans-serif;
  }
  .compare-wrap thead tr { background: var(--green); color: white; }
  .compare-wrap th { padding: 16px 20px; text-align: center; font-size: 0.87rem; font-weight: 700; }
  .compare-wrap th:first-child { text-align: left; }
  .compare-wrap td { padding: 13px 20px; border-top: 1px solid var(--border); font-size: 0.86rem; color: var(--mid); text-align: center; }
  .compare-wrap td:first-child { text-align: left; color: var(--dark); font-weight: 500; }
  .compare-wrap tr:hover td { background: var(--bg-sage); }
  .tc { color: var(--green); font-size: 1.05rem; }
  .tx { color: #ccc; font-size: 1.05rem; }
  .tp { color: var(--green-light); font-size: 0.82rem; font-weight: 600; }

  /* KITS — COMING SOON */
  .kits { background: var(--bg-sage); }
  .kits-coming {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1.5px dashed var(--border);
    border-radius: 22px;
    padding: 56px 40px;
    text-align: center;
  }
  .coming-icon {
    width: 72px; height: 72px;
    background: var(--bg-sage);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
  }
  .kits-coming h3 {
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 12px;
  }
  .kits-coming p {
    font-family: 'Arial', sans-serif;
    font-size: 0.92rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 28px;
  }
  .coming-badge {
    display: inline-block;
    background: var(--green-badge);
    color: var(--green-badge-text);
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* TESTIMONIALS */
  .testimonials { background: var(--bg-white); }
  .t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
  }
  .t-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 22px;
  }
  .stars { color: #6b9a6b; font-size: 0.92rem; margin-bottom: 13px; }
  .t-text { font-style: italic; font-size: 0.91rem; color: var(--mid); line-height: 1.7; margin-bottom: 15px; }
  .t-name { font-family: 'Arial', sans-serif; font-size: 0.84rem; font-weight: 700; color: var(--dark); }
  .t-place { font-family: 'Arial', sans-serif; font-size: 0.77rem; color: var(--light-text); }

  /* FAQ */
  .faq { background: var(--bg-sage); }
  .faq-list { max-width: 640px; margin: 0 auto; }
  details {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 10px;
  }
  details summary {
    font-family: 'Arial', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
  }
  details summary::-webkit-details-marker { display: none; }
  .ti { color: var(--green); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; display: inline-block; }
  details[open] .ti { transform: rotate(45deg); }
  .faq-body {
    font-family: 'Arial', sans-serif;
    font-size: 0.89rem;
    color: var(--mid);
    line-height: 1.7;
    padding-top: 12px;
  }

  /* FINAL CTA */
  .cta-final {
    background: var(--green);
    color: white;
    text-align: center;
    padding: 96px 48px;
  }
  .cta-final h2 { color: white; font-size: 2.2rem; }
  .cta-final p {
    font-family: 'Arial', sans-serif;
    opacity: 0.78;
    font-size: 1rem;
    max-width: 440px;
    margin: 16px auto 36px;
    line-height: 1.65;
  }
  .cta-foot {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    opacity: 0.48;
    margin-top: 16px;
  }

  /* FOOTER */
  footer {
    background: #152015;
    color: rgba(255,255,255,0.60);
    padding: 50px 48px 30px;
    font-family: 'Arial', sans-serif;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 52px;
    max-width: 860px;
    margin: 0 auto 38px;
  }
  .f-brand-header { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
  .footer-logo { height: 38px; width: auto; object-fit: contain; flex-shrink: 0; }
  .f-brand p { font-size: 0.84rem; line-height: 1.7; margin-top: 10px; }
  .f-brand strong { color: white; font-size: 1.02rem; font-family: 'Georgia', serif; }
  .f-col h4 { color: white; font-size: 0.80rem; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 14px; }
  .f-col ul { list-style: none; }
  .f-col ul li { margin-bottom: 8px; }
  .f-col ul li a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
  .f-col ul li a:hover { color: white; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 22px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.32);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* RESPONSIVE */
  @media (max-width: 800px) {
    .hero h1 { font-size: 2rem; }
    nav { padding: 13px 20px; top: 37px; }
    .nav-links { display: none; }
    section { padding: 60px 20px; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan.featured { transform: none; }
    .preview-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .trust-strip { gap: 28px; padding: 20px; }
    .top-bar { font-size: 0.76rem; }
    nav { top: 36px; }
  }
