:root {
  --ink: #071d35;
  --ink-soft: #415063;
  --green-950: #032f28;
  --green-900: #064638;
  --green-800: #075b48;
  --green-600: #159a4a;
  --lime: #72c900;
  --lime-soft: #eaf7d9;
  --ivory: #fcfbf7;
  --paper: #ffffff;
  --tone: #f3f6ef;
  --line: #dfe6dd;
  --danger: #a52a2a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 22px 70px rgba(7, 29, 53, .12);
  --shadow-soft: 0 10px 36px rgba(7, 29, 53, .08);
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 68px;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(circle at 1px 1px, rgba(7, 29, 53, .16) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 620px);
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.5em; height: 1.5em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: 1.06; }
h1 { margin-bottom: 22px; font-size: clamp(2.45rem, 12vw, 4rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 9vw, 3rem); }
h3 { margin-bottom: 10px; line-height: 1.25; }
p { color: var(--ink-soft); }
:focus-visible { outline: 3px solid rgba(114, 201, 0, .7); outline-offset: 3px; }
.wrap { width: min(100% - 36px, 1200px); margin-inline: auto; }
.section { padding: 72px 0; }
.tone { background: var(--tone); }
.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 16px; color: white; background: var(--green-950); z-index: 1000; border-radius: 8px; }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: 14px; color: var(--green-800); font-size: .78rem; font-weight: 850; letter-spacing: .14em; line-height: 1.3; }
.eyebrow.light { color: #b9ee74; }
.lead { max-width: 700px; margin-bottom: 26px; font-size: 1.08rem; line-height: 1.6; }
.large-copy { font-size: 1.08rem; line-height: 1.75; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid var(--green-900);
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), #00603f);
  box-shadow: 0 8px 22px rgba(3, 62, 49, .17);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(3, 62, 49, .22); }
.button-outline { color: var(--green-900); background: transparent; box-shadow: none; }
.button-outline:hover { color: white; background: var(--green-900); }
.button-light { color: var(--green-950); background: white; border-color: white; }
.text-button, .text-link { display: inline-flex; min-height: 48px; align-items: center; gap: 9px; color: var(--ink); font-weight: 800; }
.text-button svg, .text-link svg { color: var(--green-700, #087157); }
.text-link { min-height: 40px; color: var(--green-800); }
.text-link svg { width: 20px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.actions { display: grid; gap: 10px; }
.actions .button, .actions .text-button { width: 100%; }
.center-action { margin-top: 28px; text-align: center; }
.centered-actions { justify-content: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(7, 29, 53, .09); background: rgba(252, 251, 247, .95); backdrop-filter: blur(16px); }
.header-inner { display: flex; width: min(100% - 28px, 1400px); height: 70px; align-items: center; justify-content: space-between; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }
.brand-mark { position: relative; display: block; width: 34px; height: 34px; transform: rotate(45deg); }
.brand-mark i { position: absolute; display: block; width: 23px; height: 12px; border-radius: 3px 1px 1px 3px; transform: skewX(-24deg); }
.brand-mark i:first-child { top: 4px; left: 1px; background: linear-gradient(90deg, #0c5d47, #66c76a); }
.brand-mark i:last-child { right: 1px; bottom: 4px; background: linear-gradient(90deg, #a4df54, #267f4c); }
.brand-name { color: var(--ink); font-size: 1.26rem; font-weight: 800; letter-spacing: -.04em; white-space: nowrap; }
.brand-name em { color: var(--lime); font-style: italic; }
.menu-toggle { display: grid; grid-template-columns: 22px auto; grid-template-rows: repeat(3, 3px); gap: 4px 8px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: white; cursor: pointer; }
.menu-toggle span { grid-column: 1; display: block; width: 21px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-toggle b { grid-column: 2; grid-row: 1 / 4; font-size: .82rem; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
#main-nav { position: fixed; top: 70px; left: 0; right: 0; display: none; max-height: calc(100vh - 70px); overflow: auto; padding: 16px 18px 24px; border-bottom: 1px solid var(--line); background: var(--ivory); box-shadow: var(--shadow-soft); }
#main-nav.open { display: grid; }
#main-nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
#main-nav a[aria-current="page"] { color: var(--green-800); }
.button-header { margin-top: 12px; }

/* Heroes */
.hero { overflow: hidden; }
.home-hero { padding: 54px 0 42px; }
.hero-grid, .inner-hero-grid { display: grid; gap: 40px; align-items: center; }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.trust { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 22px 0 0; padding: 0; color: var(--ink-soft); font-size: .86rem; list-style: none; }
.trust li { display: flex; align-items: center; gap: 6px; }
.trust li:not(:first-child)::before { content: "✓"; color: var(--green-600); font-weight: 900; }
.hero-product { position: relative; min-width: 0; padding: 8px 0 28px; }
.app-frame { position: relative; overflow: hidden; border: 1px solid #c8d2d3; border-radius: 14px; background: white; box-shadow: var(--shadow); }
.app-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.app-bar { display: flex; height: 38px; align-items: center; justify-content: space-between; gap: 10px; padding: 0 12px; color: #26333d; background: #f6f8f7; border-bottom: 1px solid #dfe4e5; font-size: .66rem; }
.app-bar > span { display: flex; gap: 4px; }
.app-bar i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #cbd3d2; }
.app-bar small { color: #62717a; }
.app-frame > button { display: block; width: 100%; padding: 0; border: 0; background: white; cursor: zoom-in; }
.app-frame img { width: 100%; aspect-ratio: 1.53 / 1; object-fit: cover; object-position: top; }
.floating-proof { position: absolute; display: none; padding: 10px 13px; border: 1px solid rgba(7,29,53,.08); border-radius: 11px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-soft); }
.floating-proof b, .floating-proof span { display: block; }
.floating-proof b { font-size: .78rem; }
.floating-proof span { color: var(--ink-soft); font-size: .68rem; }
.inner-hero { padding: 50px 0 64px; background: linear-gradient(145deg, transparent 55%, rgba(114,201,0,.07)); }
.inner-hero h1 { max-width: 820px; }
.inner-visual { display: grid; min-height: 260px; place-content: center; justify-items: center; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, white, var(--tone)); box-shadow: var(--shadow-soft); }
.inner-visual > span { display: grid; width: 90px; height: 90px; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--lime-soft); }
.inner-visual svg { width: 48px; height: 48px; }
.inner-visual b { font-family: var(--serif); font-size: 1.7rem; }
.inner-visual small { color: var(--ink-soft); }
.app-frame.compact .product-shot { border: 0; border-radius: 0; box-shadow: none; }

/* Product proof and journey */
.proof-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,.72); }
.proof-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.proof-grid::-webkit-scrollbar { display: none; }
.proof-grid > div { display: flex; flex: 0 0 230px; align-items: center; gap: 12px; padding: 20px 14px; border-right: 1px solid var(--line); scroll-snap-align: start; }
.proof-grid svg { flex: none; width: 28px; height: 28px; color: var(--green-800); }
.proof-grid b, .proof-grid small { display: block; }
.proof-grid b { font-size: .86rem; }
.proof-grid small { color: var(--ink-soft); font-size: .74rem; }
.section-heading { margin-bottom: 34px; }
.section-heading > p:last-child { max-width: 680px; }
.section-heading.centered { max-width: 820px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.journey { background: white; }
.journey-grid { display: grid; gap: 14px; }
.journey-grid article { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 10px 28px rgba(7,29,53,.05); }
.step-number { color: #b4c79c; font-family: var(--serif); font-size: 2.2rem; }
.step-icon { display: grid; width: 64px; height: 64px; place-items: center; margin: 12px 0 20px; border-radius: 50%; color: var(--green-900); background: var(--lime-soft); }
.step-icon svg { width: 32px; height: 32px; }
.journey-grid h3 { font-family: var(--serif); font-size: 1.7rem; }
.journey-grid p { margin-bottom: 0; }
.split-layout { display: grid; gap: 42px; align-items: center; }
.story-copy .check-list { margin: 26px 0 30px; }
.shot-stack { position: relative; min-height: 410px; }
.product-shot { position: relative; display: block; width: 100%; overflow: hidden; padding: 0; border: 1px solid #cbd5d3; border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); cursor: zoom-in; }
.product-shot img { width: 100%; }
.product-shot > span { position: absolute; right: 10px; bottom: 10px; padding: 6px 10px; border-radius: 7px; color: white; background: rgba(3,47,40,.87); font-size: .7rem; font-weight: 800; }
.shot-stack .product-shot { position: absolute; width: 82%; }
.shot-stack .shot-back { top: 0; right: 0; }
.shot-stack .shot-front { left: 0; bottom: 0; }
.dark-feature { color: white; background: var(--green-950); }
.dark-feature p { color: #d5e2de; }
.dark-shot .product-shot { border-color: rgba(255,255,255,.15); box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.mini-features { display: grid; gap: 12px; margin: 28px 0; }
.mini-features > div { display: flex; align-items: center; gap: 13px; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.04); }
.mini-features svg { flex: none; color: #b9ee74; }
.mini-features b, .mini-features small { display: block; }
.mini-features small { color: #bbcdc7; }
.video-layout { display: grid; gap: 34px; align-items: center; }
.video-frame { position: relative; overflow: hidden; aspect-ratio: 16/9; border-radius: var(--radius); background: var(--green-950); box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reach-section { padding-top: 0; }
.reach-grid { display: grid; gap: 16px; }
.reach-card { display: grid; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.reach-card > span { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: white; background: var(--green-900); }
.reach-card svg { width: 30px; height: 30px; }
.reach-card p:first-child { margin-bottom: 5px; color: var(--green-800); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.reach-card h2 { margin-bottom: 10px; font-size: 1.75rem; }
.reach-card p:last-child { margin-bottom: 0; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg, var(--tone), #fff); }
.pricing-grid { display: grid; gap: 18px; max-width: 920px; margin-inline: auto; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.price-card.recommended { border-color: var(--green-600); }
.ribbon { align-self: flex-start; margin: -12px 0 18px; padding: 6px 10px; border-radius: 999px; color: var(--green-950); background: var(--lime-soft); font-size: .7rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.price-top { display: flex; align-items: center; gap: 13px; }
.price-top p { margin: 0; color: var(--green-800); font-size: .7rem; font-weight: 850; letter-spacing: .1em; }
.price-top h3 { margin: 0; font-family: var(--serif); font-size: 1.8rem; }
.plan-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--lime-soft); }
.plan-scope { min-height: 52px; margin: 20px 0 8px; }
.price { padding-bottom: 22px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 2.7rem; font-weight: 800; letter-spacing: -.04em; }
.price small { display: block; color: var(--ink-soft); font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: 0; }
.check-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05em; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: white; background: var(--green-600); font-size: .7rem; font-weight: 900; }
.price-card .check-list { flex: 1; margin: 24px 0 28px; }
.payment-note { max-width: 720px; margin: 22px auto 0; text-align: center; font-size: .82rem; }
.compare-wrap { max-width: 900px; }
.compare-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.compare-row { display: grid; grid-template-columns: 1.7fr .65fr .8fr; align-items: center; min-width: 0; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > * { min-width: 0; padding: 15px 10px; font-size: .76rem; text-align: center; overflow-wrap: anywhere; }
.compare-row > *:first-child { text-align: left; }
.compare-head { color: white; background: var(--green-950); }

/* FAQ */
.faq-preview { background: white; }
.faq-layout, .faq-page-grid { display: grid; gap: 34px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 13px; background: white; }
.faq-list summary { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 18px; font-weight: 800; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: none; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--lime-soft); font-size: 1.25rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 18px 20px; }
.faq-page-grid aside { position: sticky; top: 98px; }

/* Inner content */
.content-sections { display: grid; gap: 70px; }
.content-row { display: grid; gap: 28px; align-items: center; }
.section-index { display: block; margin-bottom: 12px; color: #b5c99d; font-family: var(--serif); font-size: 2.2rem; }
.capability-grid { display: grid; gap: 14px; }
.capability-grid article { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.capability-grid svg { width: 34px; height: 34px; margin-bottom: 20px; color: var(--green-800); }
.capability-grid p { margin-bottom: 0; }
.process-list { display: grid; gap: 44px; }
.process-list article { display: grid; gap: 22px; align-items: center; }
.process-copy { display: flex; align-items: flex-start; gap: 18px; }
.process-copy > span { display: grid; flex: 0 0 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--green-950); background: var(--lime-soft); font-family: var(--serif); font-size: 1.2rem; font-weight: 800; }
.process-copy p { margin-bottom: 0; }
.download-panel { display: grid; gap: 34px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-soft); }
.download-copy { display: grid; gap: 20px; }
.download-icon { display: grid; width: 76px; height: 76px; place-items: center; border-radius: 20px; color: white; background: var(--green-900); }
.download-icon svg { width: 42px; height: 42px; }
.download-copy ol { margin: 24px 0; padding-left: 22px; color: var(--ink-soft); }
.download-copy small { display: block; margin-top: 14px; color: var(--ink-soft); }
.download-copy small a { text-decoration: underline; }
.testimonial-grid { display: grid; gap: 16px; }
.testimonial-grid figure { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.quote-mark { height: 38px; color: var(--lime); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.testimonial-grid blockquote { margin: 8px 0 24px; font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; }
.testimonial-grid figcaption { color: var(--ink-soft); font-size: .85rem; }
.review-values { display: grid; gap: 16px; }
.review-values > div { padding: 26px; text-align: center; }
.review-values span { display: grid; width: 64px; height: 64px; place-items: center; margin: 0 auto 18px; border-radius: 50%; color: var(--green-900); background: var(--lime-soft); }
.contact-layout { display: grid; gap: 28px; align-items: start; }
.contact-info { padding-top: 12px; }
.contact-form, .checkout-form { display: grid; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 750; }
input, textarea { width: 100%; padding: 13px 14px; border: 1px solid #bdc9c5; border-radius: 9px; color: var(--ink); background: #fff; }
input:focus, textarea:focus { border-color: var(--green-600); outline: 3px solid rgba(21,154,74,.13); }
textarea { resize: vertical; }
.contact-form small { color: var(--ink-soft); }
.consent-check { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px; font-size: .85rem; font-weight: 600; }
.consent-check input { flex: none; width: 18px; height: 18px; margin-top: 3px; }
.consent-check a { color: var(--green-800); text-decoration: underline; }
.legal-content { max-width: 860px; }
.legal-content article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content article:first-child { padding-top: 0; }
.legal-content h2 { font-family: var(--sans); font-size: 1.35rem; letter-spacing: -.02em; }
.legal-content p:last-child { margin-bottom: 0; }
.archive-grid { display: grid; gap: 14px; }
.archive-grid a { display: grid; gap: 4px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.archive-grid a:hover { border-color: var(--green-600); }
.archive-grid span { color: var(--ink-soft); }
.final-cta { text-align: center; background: linear-gradient(145deg, var(--lime-soft), #fff); }
.final-cta p { max-width: 650px; margin-right: auto; margin-left: auto; }

/* Checkout and admin */
.checkout-shell, .admin-shell { min-height: 100vh; padding: 28px 0 70px; background: var(--tone); }
.checkout-wrap { width: min(100% - 28px, 1080px); margin-inline: auto; }
.checkout-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.checkout-head > a:not(.brand) { color: var(--green-800); font-weight: 800; }
.checkout-grid { display: grid; gap: 22px; align-items: start; }
.checkout-form { padding: 24px; }
.checkout-form h1 { margin-bottom: 0; font-size: clamp(2rem, 9vw, 3rem); }
.checkout-form > p { margin-bottom: 0; }
.checkout-form fieldset { padding: 15px; border: 1px solid var(--line); border-radius: 10px; }
.checkout-form legend { padding: 0 7px; font-weight: 800; }
.payment-choice { display: grid; gap: 10px; }
.payment-choice label { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 9px; }
.payment-choice input { width: auto; }
.field-grid { display: grid; gap: 16px; }
.order-summary { padding: 25px; border-radius: var(--radius); color: white; background: var(--green-950); box-shadow: var(--shadow-soft); }
.order-summary p { color: #d4e3de; }
.order-summary ul { padding-left: 20px; color: #e9f0ed; }
.summary-price { margin: 22px 0 5px; font-family: var(--serif); font-size: 2.4rem; font-weight: 800; }
.debug-button { padding: 12px 16px; border: 1px dashed #997500; border-radius: 9px; color: #664f00; background: #fff6ca; font-weight: 800; cursor: pointer; }
.notice { padding: 14px 16px; border-radius: 10px; color: #604b00; background: #fff4c2; }
.notice.success { color: #07502c; background: #dcf5e6; }
.admin-card { width: min(100% - 28px, 850px); margin: 5vh auto; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.admin-card h1 { font-size: clamp(2rem, 9vw, 3rem); }
.log-list { display: grid; gap: 8px; }
.log-list a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; color: var(--green-800); font-weight: 700; }

/* Footer, modal, mobile CTA */
.site-footer { padding: 62px 0 92px; color: #eef6f3; background: var(--green-950); }
.footer-grid { display: grid; gap: 34px; }
.footer-grid > div:not(.footer-intro) { display: grid; align-content: start; gap: 8px; }
.footer-grid a { color: #d1dfda; }
.footer-grid a:hover { color: white; }
.footer-grid b { margin-bottom: 5px; color: white; }
.brand-footer .brand-name { color: white; }
.footer-intro p, .footer-intro small { display: block; max-width: 360px; color: #b8cbc4; }
.footer-intro p { margin: 16px 0 8px; }
.legal { display: grid; gap: 8px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #9fb7ae; font-size: .75rem; }
.mobile-cta { position: fixed; right: 12px; bottom: 10px; left: 12px; z-index: 90; display: flex; min-height: 50px; align-items: center; justify-content: center; border-radius: 12px; color: white; background: var(--green-900); box-shadow: 0 10px 30px rgba(3,47,40,.32); font-weight: 850; }
.lightbox { width: min(96vw, 1240px); max-width: none; padding: 42px 10px 10px; border: 0; border-radius: 14px; background: #101c25; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(1, 14, 20, .82); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 5px; right: 9px; width: 34px; height: 34px; border: 0; color: white; background: transparent; font-size: 1.8rem; cursor: pointer; }

@media (min-width: 560px) {
  .actions { display: flex; flex-wrap: wrap; }
  .actions .button, .actions .text-button { width: auto; }
  .field-grid, .payment-choice { grid-template-columns: 1fr 1fr; }
  .capability-grid, .review-values { grid-template-columns: 1fr 1fr; }
  .reach-card { grid-template-columns: auto 1fr; }
  .legal { grid-template-columns: 1fr 1fr; }
  .legal span:last-child { text-align: right; }
}

@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .wrap { width: min(100% - 64px, 1200px); }
  .section { padding: 96px 0; }
  .home-hero { padding: 86px 0 72px; }
  .inner-hero { padding: 84px 0 92px; }
  .hero-grid, .inner-hero-grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 48px; }
  .home-hero h1 { font-size: clamp(2.6rem, 4.2vw, 3.75rem); }
  .inner-hero h1 { font-size: clamp(2.4rem, 3.8vw, 3.5rem); }
  .floating-proof { display: block; }
  .proof-one { top: -15px; right: 12px; }
  .proof-two { bottom: 2px; left: 12px; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); }
  .split-layout, .video-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: 70px; }
  .split-layout.reverse .dark-shot { order: 2; }
  .split-layout.reverse .story-copy { order: 1; }
  .reach-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: .75fr 1.25fr; gap: 70px; }
  .content-row { grid-template-columns: .85fr 1.15fr; gap: 70px; }
  .content-row.reverse .content-copy { order: 2; }
  .content-row.reverse .product-shot { order: 1; }
  .capability-grid { grid-template-columns: repeat(4, 1fr); }
  .process-list article { grid-template-columns: .8fr 1.2fr; gap: 60px; }
  .process-list article:nth-child(even) .process-copy { order: 2; }
  .process-list article:nth-child(even) .product-shot { order: 1; }
  .download-panel { grid-template-columns: .95fr 1.05fr; padding: 46px; }
  .download-copy { grid-template-columns: auto 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .review-values { grid-template-columns: repeat(3, 1fr); }
  .faq-page-grid { grid-template-columns: .7fr 1.3fr; gap: 70px; }
  .contact-layout { grid-template-columns: .8fr 1.2fr; gap: 70px; }
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); }
  .site-footer { padding-bottom: 34px; }
  .mobile-cta { display: none; }
  .checkout-grid { grid-template-columns: 1.25fr .75fr; }
  .order-summary { position: sticky; top: 28px; }
}

@media (min-width: 1020px) {
  .header-inner { height: 76px; }
  .brand-name { font-size: 1.55rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark i { width: 28px; height: 14px; }
  .menu-toggle { display: none; }
  #main-nav { position: static; display: flex; max-height: none; align-items: center; gap: 30px; overflow: visible; padding: 0; border: 0; background: transparent; box-shadow: none; }
  #main-nav > a:not(.button) { padding: 14px 0; border: 0; font-size: .92rem; font-weight: 650; }
  #main-nav > a:not(.button)::after { content: ""; display: block; width: 0; height: 2px; margin-top: 4px; background: var(--lime); transition: width .2s; }
  #main-nav > a:hover::after, #main-nav > a[aria-current="page"]::after { width: 100%; }
  .button-header { min-height: 44px; margin-top: 0; padding: 10px 17px; font-size: .86rem; }
  .proof-grid { justify-content: center; overflow: visible; }
  .proof-grid > div { flex: 1 1 0; min-width: 0; }
  .mini-features { grid-template-columns: repeat(3, 1fr); }
}

/* Editorial refinement: email collection, restrained human imagery, stable grid. */
.hero-grid > *, .inner-hero-grid > *, .split-layout > *, .content-row > *, .mini-features > *, .download-panel > *, .download-copy > * { min-width: 0; }
h1, h2, h3 { overflow-wrap: anywhere; }
.home-hero h1 { text-wrap: balance; }
.headline-accent { color: var(--green-900); }
.hero-buy-link { display: inline-block; margin-top: 15px; color: var(--green-800); font-size: .88rem; text-decoration: underline; text-underline-offset: 4px; }
.human-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.human-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.human-photo figcaption { padding: 12px 17px; color: var(--ink-soft); font-size: .83rem; line-height: 1.5; }
.business-impact { background: #f4f6ef; }
.business-impact .story-copy { order: -1; }
.acquisition-grid { display: grid; gap: 16px; margin-top: 40px; }
.acquisition-grid article { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.acquisition-grid h3 { font-family: var(--serif); font-size: 1.45rem; }
.acquisition-grid article p:last-child { margin-bottom: 0; }
.acquisition-grid .acquisition-featured { border-color: #88b560; background: #edf5e6; }
.acquisition-note { margin-top: 18px; margin-bottom: 0; font-size: .82rem; }
.secondary-note { font-size: .9rem; }
.dark-feature .human-photo { border-color: #416157; background: #0d483b; }
.dark-feature .human-photo figcaption { color: #d5e2de; }
.dark-feature .mini-features { grid-template-columns: 1fr; }
.app-frame.compact img { height: auto; aspect-ratio: auto; object-fit: contain; }
@media (max-width: 759px) {
  .home-hero { padding-top: 32px; }
  .home-hero h1 { font-size: clamp(2.15rem, 9.4vw, 3.5rem); }
  .inner-hero h1 { font-size: clamp(2.1rem, 9vw, 3.3rem); }
  .home-hero .lead { font-size: 1rem; }
  .home-hero .hero-grid { gap: 24px; }
  .home-hero .trust { margin-top: 16px; }
  .shot-stack { display: grid; gap: 20px; min-height: 0; }
  .shot-stack .product-shot { position: relative; width: 100%; inset: auto; }
  .app-bar { font-size: .6rem; }
  .app-bar small { display: none; }
  .proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .proof-grid > div { padding: 15px 8px; gap: 7px; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { grid-column: 1 / -1; }
  .proof-grid svg { width: 23px; height: 23px; }
  .proof-grid b { font-size: .8rem; }
  .proof-grid small { font-size: .75rem; }
  .checkout-head { flex-wrap: wrap; gap: 8px; }
}
@media (min-width: 760px) {
  .business-impact .story-copy { order: initial; }
  .acquisition-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dark-feature .human-photo { order: 2; }
  .dark-feature .story-copy { order: 1; }
}
@media (min-width: 760px) and (max-width: 1019px) {
  .hero-grid, .inner-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 720px; }
  .hero-product { max-width: 700px; margin-inline: auto; }
  .home-hero h1 { font-size: 3.3rem; }
  .home-hero { padding-top: 54px; }
  .download-panel { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Réassurance et exemples métiers */
.trial-reassurance { color: #073e32; font-size: .95rem; font-weight: 650; margin-top: 16px; }
.trust-links { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: .85rem; color: var(--ink-soft); margin-top: 16px; }
.trust-links a { color: #073e32; text-underline-offset: 4px; }
.customer-proof { background: #f3f5ee; }
.customer-proof .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.customer-proof .actions { margin-top: 26px; gap: 20px; flex-wrap: wrap; }
.use-case-grid, .facts-grid { display: grid; gap: 22px; }
.use-case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.use-case-grid article { min-width: 0; border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 28px; }
.use-case-grid h3 { font-size: 1.55rem; margin: 18px 0 14px; }
.use-case-grid strong { font-size: .94rem; display: block; color: #073e32; margin-top: 18px; }
.case-number { color: #467749; font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.case-note { text-align: center; font-size: .85rem; color: var(--ink-soft); margin-top: 18px; }
.product-facts { padding: 34px 0; border-block: 1px solid var(--line); }
.facts-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.facts-grid b, .facts-grid span { display: block; }
.facts-grid b { color: #073e32; font-size: 1.5rem; }
.facts-grid span { font-size: .88rem; margin-top: 6px; color: var(--ink-soft); }
@media (max-width: 759px) {
 .customer-proof .testimonial-grid, .use-case-grid { grid-template-columns: minmax(0,1fr); }
 .facts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
 .customer-proof .section-heading h2 { font-size: 2rem; }
 .use-case-grid article { padding: 22px; }
}
