:root {
  --green-950: #032617;
  --green-900: #063b24;
  --green-800: #075b34;
  --green-700: #0b7a40;
  --green-600: #159447;
  --green-500: #22c55e;
  --lime: #b7f34b;
  --mint: #eaf8ef;
  --mint-2: #f5fbf7;
  --ink: #0c1712;
  --text: #405047;
  --muted: #6f7c74;
  --line: #dbe9df;
  --white: #fff;
  --danger: #b42318;
  --focus: #1769e0;
  --shadow: 0 24px 70px rgba(3, 38, 23, .12);
  --shadow-sm: 0 12px 34px rgba(3, 38, 23, .08);
  --radius: 26px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.modal-open, body.callback-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.045em; }
p { color: var(--text); }
ul { padding-left: 1.15rem; }
::selection { color: var(--green-950); background: var(--lime); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px; color: #fff; background: var(--green-950); border-radius: 10px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--green-700); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-500); border-radius: 2px; }
.section { padding: clamp(72px, 9vw, 118px) 0; }
.section-soft { background: var(--mint-2); }
.section-dark { color: #fff; background: var(--green-950); }
.section-dark p { color: rgba(255, 255, 255, .72); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 5vw, 4rem); }
.section-head p { margin-bottom: 0; font-size: clamp(1rem, 1.8vw, 1.18rem); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 500; padding: 14px 0; background: rgba(255,255,255,.82); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: .2s ease; }
.site-header.scrolled { border-color: rgba(3,38,23,.08); box-shadow: 0 8px 30px rgba(3,38,23,.06); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 58px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: var(--lime); background: linear-gradient(140deg, var(--green-950), var(--green-800)); border-radius: 13px; font-size: 1.05rem; font-weight: 900; letter-spacing: -.1em; box-shadow: 0 10px 24px rgba(3,38,23,.18); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-name { font-size: 1.18rem; font-weight: 900; letter-spacing: -.045em; }
.brand-name span { color: var(--green-600); }
.brand-tag { margin-top: 4px; color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-links a { display: flex; align-items: center; min-height: 42px; padding: 0 12px; border-radius: 999px; font-size: .89rem; font-weight: 750; transition: .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-800); background: var(--mint); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; color: #fff; background: var(--green-900); border-radius: 999px; font-size: .88rem; font-weight: 850; white-space: nowrap; box-shadow: 0 10px 24px rgba(3,38,23,.15); transition: .2s ease; }
.nav-cta:hover { background: var(--green-800); transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; background: var(--green-950); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; position: relative; width: 19px; height: 2px; margin: auto; background: #fff; border-radius: 4px; transition: .22s ease; content: ""; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; line-height: 1; transition: .22s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #fff; background: var(--green-800); box-shadow: 0 14px 30px rgba(7,91,52,.2); }
.btn-primary:hover { background: var(--green-950); }
.btn-light { color: var(--green-950); background: #fff; }
.btn-outline { color: var(--green-900); background: transparent; border-color: rgba(6,59,36,.22); }
.btn-outline:hover { background: var(--mint); border-color: var(--green-600); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.08); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(68px, 7vw, 100px) 0 clamp(100px, 11vw, 148px); background: radial-gradient(circle at 90% 12%, rgba(183,243,75,.25), transparent 27rem), radial-gradient(circle at 4% 70%, rgba(34,197,94,.13), transparent 23rem), linear-gradient(180deg, #fbfefc 0%, #f3faf6 100%); }
.hero::after { content: ""; position: absolute; right: -140px; bottom: -270px; width: 520px; height: 520px; border: 1px solid rgba(11,122,64,.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(11,122,64,.03), 0 0 0 110px rgba(11,122,64,.02); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr); gap: clamp(44px, 6vw, 82px); align-items: center; }
.hero h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3rem, 6.2vw, 5.65rem); }
.hero h1 span { color: var(--green-700); }
.hero-lead { max-width: 670px; margin-bottom: 30px; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 28px 0 0; padding: 0; color: var(--text); list-style: none; font-size: .9rem; font-weight: 750; }
.hero-trust li::before { content: "✓"; display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 7px; color: #fff; background: var(--green-600); border-radius: 50%; font-size: .72rem; }
.hero-media { position: relative; min-height: 570px; isolation: isolate; }
.hero-image-frame { position: absolute; inset: 18px 0 20px 24px; overflow: hidden; background: var(--green-950); border: 7px solid rgba(255,255,255,.85); border-radius: 38px; box-shadow: 0 34px 90px rgba(3,38,23,.24); transform: rotate(1.5deg); }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 31px; pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .metric { z-index: 2; transform: rotate(-2deg); }
.hero-media .metric.one { left: 0; bottom: 48px; }
.hero-media .metric.two { right: -14px; top: 0; transform: rotate(2.5deg); }
.visual-badge { position: absolute; z-index: 2; right: 18px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; color: #fff; background: rgba(3,38,23,.88); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: .78rem; font-weight: 850; }
.visual-badge span { color: var(--lime); }
.trust-strip { position: relative; z-index: 5; margin-top: -56px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 22px 62px rgba(3,38,23,.12); }
.trust-item { position: relative; display: grid; gap: 1px; min-height: 108px; padding: 24px 24px 22px 60px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item > span { position: absolute; top: 25px; left: 22px; display: grid; place-items: center; width: 27px; height: 27px; color: var(--green-800); background: var(--mint); border-radius: 9px; font-size: .67rem; font-weight: 900; }
.trust-item strong { font-size: .96rem; line-height: 1.3; }
.trust-item small { color: var(--muted); font-size: .75rem; }
.showcase { position: relative; min-height: 520px; }
.showcase-card { position: absolute; inset: 22px 0 0 28px; overflow: hidden; background: #fff; border: 1px solid rgba(3,38,23,.1); border-radius: 30px; box-shadow: var(--shadow); transform: rotate(2.2deg); }
.browser-top { display: flex; align-items: center; gap: 6px; height: 40px; padding: 0 15px; background: #f1f6f3; border-bottom: 1px solid var(--line); }
.browser-top i { width: 8px; height: 8px; background: #c1d3c7; border-radius: 50%; }
.mock-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; }
.mock-logo { width: 98px; height: 12px; background: var(--green-900); border-radius: 99px; }
.mock-links { width: 160px; height: 8px; background: #d7e5db; border-radius: 99px; }
.mock-body { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 24px; padding: 42px 25px 50px; background: linear-gradient(135deg, #f5fbf7, #e8f7ed); }
.mock-copy strong { display: block; width: 92%; height: 22px; margin-bottom: 11px; background: var(--green-950); border-radius: 7px; }
.mock-copy strong:nth-child(2) { width: 72%; }
.mock-copy span { display: block; width: 88%; height: 8px; margin-top: 10px; background: #a9c8b4; border-radius: 8px; }
.mock-copy b { display: block; width: 116px; height: 34px; margin-top: 25px; background: var(--green-600); border-radius: 99px; }
.mock-visual { position: relative; aspect-ratio: 1; background: linear-gradient(145deg, var(--green-800), var(--green-950)); border-radius: 48% 52% 42% 58%; }
.mock-visual::before { content: "W"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--lime); font-size: 5rem; font-weight: 950; letter-spacing: -.12em; }
.metric { position: absolute; display: grid; gap: 2px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); transform: rotate(-2.2deg); }
.metric.one { left: 0; bottom: 68px; }
.metric.two { right: -18px; top: 0; }
.metric strong { color: var(--green-800); font-size: 1.22rem; line-height: 1; }
.metric span { color: var(--muted); font-size: .73rem; font-weight: 700; }

/* Interior hero */
.page-hero { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 112px) 0 clamp(68px, 8vw, 100px); background: radial-gradient(circle at 88% 0, rgba(183,243,75,.21), transparent 24rem), var(--mint-2); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 70px; align-items: end; }
.page-hero h1 { max-width: 800px; margin-bottom: 20px; font-size: clamp(2.8rem, 6.5vw, 5.7rem); }
.page-hero p { max-width: 670px; margin-bottom: 0; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.page-note { padding: 28px; color: #fff; background: var(--green-950); border-radius: 24px; box-shadow: var(--shadow); }
.page-note strong { display: block; margin-bottom: 8px; color: var(--lime); font-size: 1.3rem; }
.page-note p { color: rgba(255,255,255,.74); font-size: .95rem; }

/* Cards and content */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-number { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; color: var(--green-950); background: var(--lime); border-radius: 14px; font-size: .9rem; font-weight: 900; }
.card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.card p:last-child { margin-bottom: 0; }
.service-card { position: relative; min-height: 280px; overflow: hidden; transition: .22s ease; }
.service-card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 3px; background: linear-gradient(90deg, var(--green-600), var(--lime)); border-radius: 0 0 99px 99px; opacity: .7; }
.service-card:hover { transform: translateY(-6px); border-color: #b6d7c1; }
.service-card::after { content: ""; position: absolute; right: -34px; bottom: -38px; width: 110px; height: 110px; background: var(--mint); border-radius: 50%; transition: .22s ease; }
.service-card:hover::after { transform: scale(1.15); }
.service-symbol { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 30px; color: #fff; background: var(--green-800); border-radius: 16px; font-weight: 900; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.promise-card { position: relative; min-height: 275px; padding: 30px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.promise-card::after { content: ""; position: absolute; right: -46px; bottom: -46px; width: 126px; height: 126px; background: var(--mint); border-radius: 50%; }
.promise-card > span { display: inline-flex; margin-bottom: 42px; color: var(--green-700); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.promise-card h3 { position: relative; z-index: 1; margin-bottom: 12px; font-size: 1.3rem; }
.promise-card p { position: relative; z-index: 1; margin-bottom: 0; font-size: .93rem; }
.assurance-bar { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 50px; align-items: center; margin-top: 24px; padding: clamp(30px, 5vw, 48px); color: #fff; background: var(--green-950); border-radius: 28px; box-shadow: var(--shadow); }
.assurance-bar h3 { margin-bottom: 10px; font-size: clamp(1.65rem, 3.2vw, 2.45rem); }
.assurance-bar p { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.assurance-actions { display: grid; gap: 14px; justify-items: stretch; min-width: 220px; }
.contact-link { display: grid; padding: 3px 8px; text-align: center; }
.contact-link small { color: rgba(255,255,255,.62); }
.contact-link strong { color: var(--lime); font-size: 1.2rem; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr); gap: clamp(48px, 7vw, 90px); align-items: center; }
.feature-panel { padding: clamp(32px, 5vw, 56px); color: #fff; background: linear-gradient(145deg, var(--green-800), var(--green-950)); border-radius: 34px; box-shadow: var(--shadow); }
.feature-panel p { color: rgba(255,255,255,.75); }
.media-card { position: relative; min-height: 480px; overflow: hidden; background: var(--green-950); border: 7px solid #fff; border-radius: 34px; box-shadow: var(--shadow); isolation: isolate; }
.media-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 42%, rgba(2,22,12,.9) 100%); pointer-events: none; }
.media-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; transition: transform .6s ease; }
.media-card:hover img { transform: scale(1.025); }
.media-card figcaption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; display: grid; gap: 3px; color: #fff; }
.media-card figcaption strong { font-size: clamp(1.45rem, 3vw, 2.1rem); letter-spacing: -.045em; line-height: 1.15; }
.media-card figcaption small { color: rgba(255,255,255,.72); font-size: .82rem; }
.media-kicker { color: var(--lime); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.media-card-dark { border-color: rgba(255,255,255,.92); }
.check-list { display: grid; gap: 15px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; color: var(--text); }
.section-dark .check-list li, .feature-panel .check-list li { color: rgba(255,255,255,.86); }
.check-list li::before { content: "✓"; flex: 0 0 24px; display: grid; place-items: center; width: 24px; height: 24px; color: var(--green-950); background: var(--lime); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 42px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; }
.stat { padding: 26px; background: var(--green-950); }
.stat strong { display: block; color: var(--lime); font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1; }
.stat span { color: rgba(255,255,255,.62); font-size: .82rem; }
.landing-focus .stat strong { font-size: clamp(1.45rem, 2.4vw, 2.05rem); letter-spacing: -.035em; }

/* Process */
.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; padding: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: 24px; }
.process-step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 46px; color: var(--lime); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.process-step h3 { font-size: 1.2rem; }
.process-step p { margin-bottom: 0; font-size: .92rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-grid-top { margin-top: 54px; }
.price-card { display: flex; flex-direction: column; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-sm); }
.price-card.featured { position: relative; color: #fff; background: var(--green-950); border-color: var(--green-950); transform: translateY(-12px); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.75); }
.price-badge { align-self: flex-start; margin-bottom: 22px; padding: 7px 11px; color: var(--green-950); background: var(--lime); border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.price-card h2, .price-card h3 { margin-bottom: 10px; font-size: 1.5rem; }
.price { margin: 16px 0 6px; font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 950; letter-spacing: -.07em; line-height: 1; }
.price small { font-size: .85rem; font-weight: 700; letter-spacing: 0; }
.price-old { margin: 0 0 4px; color: var(--muted); font-size: .86rem; font-weight: 750; text-decoration: line-through; }
.price-card ul { display: grid; gap: 10px; margin: 24px 0 30px; padding: 0; list-style: none; }
.price-card li { display: flex; gap: 9px; color: var(--text); font-size: .93rem; }
.price-card li::before { content: "✓"; color: var(--green-600); font-weight: 900; }
.price-card.featured li::before { color: var(--lime); }
.price-card .btn { margin-top: auto; }
.price-info { margin-top: 24px; padding: 22px 25px; color: var(--text); background: var(--mint); border: 1px solid #cde6d5; border-radius: 20px; font-size: .92rem; }
.package-details { margin: 0 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.featured .package-details { border-color: rgba(255,255,255,.16); }
.package-details summary { position: relative; padding: 15px 30px 15px 0; color: var(--green-800); cursor: pointer; list-style: none; font-size: .84rem; font-weight: 850; }
.featured .package-details summary { color: var(--lime); }
.package-details summary::-webkit-details-marker { display: none; }
.package-details summary::after { content: "+"; position: absolute; top: 12px; right: 0; font-size: 1.2rem; }
.package-details[open] summary::after { content: "−"; }
.package-details ul { margin: 0 0 18px; }
.package-ideal { min-height: 76px; margin-bottom: 26px; font-size: .88rem; font-weight: 700; }
.included-box { margin-top: 38px; padding: 30px; color: #fff; background: var(--green-950); border-radius: 24px; box-shadow: var(--shadow-sm); }
.included-box h3 { margin-bottom: 20px; font-size: 1.35rem; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 22px; }
.included-grid span { color: rgba(255,255,255,.78); font-size: .88rem; }
.addon-card { min-height: 310px; }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.addon-price { margin: 18px 0 14px; color: var(--green-800); font-size: 2.2rem; font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.addon-price small { color: var(--muted); font-size: .82rem; font-weight: 750; letter-spacing: 0; }
.optional-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.optional-grid span { padding: 17px 18px; color: var(--text); background: var(--mint-2); border: 1px solid var(--line); border-radius: 15px; font-size: .86rem; font-weight: 750; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 22px rgba(3,38,23,.04); }
.faq summary { position: relative; padding: 22px 60px 22px 24px; cursor: pointer; list-style: none; font-weight: 850; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 18px; right: 20px; display: grid; place-items: center; width: 30px; height: 30px; color: var(--green-800); background: var(--mint); border-radius: 50%; font-size: 1.25rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 24px 22px; margin: 0; }
.section-dark .faq details { background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.16); box-shadow: none; }
.section-dark .faq details[open] { background: rgba(255,255,255,.105); border-color: rgba(183,243,75,.34); }
.section-dark .faq summary { color: #fff; }
.section-dark .faq details p { color: rgba(255,255,255,.78); }
.section-dark .faq summary::after { color: var(--green-950); background: var(--lime); }

/* CTA */
.cta { overflow: hidden; position: relative; padding: clamp(42px, 7vw, 72px); color: #fff; background: linear-gradient(135deg, var(--green-800), var(--green-950)); border-radius: 36px; box-shadow: var(--shadow); }
.cta::after { content: ""; position: absolute; right: -100px; top: -100px; width: 300px; height: 300px; border: 46px solid rgba(183,243,75,.12); border-radius: 50%; }
.cta-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta h2 { max-width: 700px; margin-bottom: 12px; font-size: clamp(2.1rem, 5vw, 4rem); }
.cta p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.75); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(38px, 7vw, 82px); align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-item { display: block; padding: 20px 22px; background: var(--mint-2); border: 1px solid var(--line); border-radius: 18px; }
.contact-item span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-item strong { color: var(--green-900); }
.contact-item[href]:hover { background: var(--mint); border-color: #b9dac4; }
.form-card { padding: clamp(26px, 5vw, 46px); background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #fbfdfb; border: 1px solid #cbdcd1; border-radius: 12px; transition: .15s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.field .hint { color: var(--muted); font-size: .78rem; }
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin-top: 2px; color: var(--text); font-size: .84rem; }
.consent input { width: 19px; height: 19px; margin: 3px 0 0; accent-color: var(--green-700); }
.consent a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; margin-top: 4px; }
.form-status { display: none; padding: 14px 16px; margin: 18px 0 0; border-radius: 12px; font-size: .9rem; }
.form-status.show { display: block; }
.form-status.success { color: #0b5f32; background: #e8f8ee; border: 1px solid #b8e3c7; }
.form-status.error { color: var(--danger); background: #fff1f0; border: 1px solid #f3c2bd; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Live chat launcher */
.chat-launcher { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; gap: 1px; min-width: 150px; padding: 13px 18px 12px; color: #fff; text-align: left; background: linear-gradient(145deg,#f43f5e,#be123c); border: 1px solid rgba(255,255,255,.24); border-radius: 18px; box-shadow: 0 18px 48px rgba(190,18,60,.34); transition: transform .2s ease, opacity .2s ease; }
.chat-launcher:hover { transform: translateY(-3px); }
.chat-launcher.widget-ready { opacity: 0; visibility: hidden; pointer-events: none; }
.chat-online { display: flex; align-items: center; gap: 7px; color: #ffe4e6; font-size: .68rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.chat-online i { width: 8px; height: 8px; background: #fff; border: 2px solid rgba(255,255,255,.32); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,255,255,.14); animation: chat-pulse 2s ease-out infinite; }
.chat-launcher strong { font-size: .92rem; letter-spacing: -.01em; }
@keyframes chat-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,255,255,.14); } 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }

/* Callback */
.callback-overlay { position: fixed; z-index: 1050; inset: 0; display: none; place-items: center; padding: 16px; background: rgba(2,14,8,.7); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }
.callback-overlay.show { display: grid; }
.callback-modal { position: relative; display: grid; grid-template-columns: minmax(280px,.82fr) minmax(430px,1.18fr); width: min(940px,100%); max-height: calc(100vh - 32px); overflow-y: auto; background: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; box-shadow: 0 32px 110px rgba(0,0,0,.38); animation: callback-in .28s ease-out; }
.callback-close { position: absolute; z-index: 3; top: 14px; right: 14px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; color: var(--green-950); background: rgba(255,255,255,.92); border: 1px solid rgba(3,38,23,.1); border-radius: 50%; font-size: 1.55rem; line-height: 1; box-shadow: 0 8px 22px rgba(3,38,23,.12); }
.callback-close:hover { background: var(--lime); }
.callback-intro { position: relative; overflow: hidden; padding: clamp(38px,5vw,58px); color: #fff; background: radial-gradient(circle at 10% 100%, rgba(183,243,75,.18), transparent 18rem), linear-gradient(145deg,var(--green-800),var(--green-950)); }
.callback-intro::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 230px; height: 230px; border: 35px solid rgba(183,243,75,.09); border-radius: 50%; }
.callback-kicker { position: relative; z-index: 1; display: inline-flex; margin-bottom: 22px; color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.callback-intro h2 { position: relative; z-index: 1; margin-bottom: 18px; font-size: clamp(2.25rem,4.8vw,3.7rem); }
.callback-intro h2 span { color: var(--lime); }
.callback-intro p { position: relative; z-index: 1; color: rgba(255,255,255,.74); }
.callback-intro ul { position: relative; z-index: 1; display: grid; gap: 10px; margin: 28px 0; padding: 0; list-style: none; }
.callback-intro li { display: flex; gap: 9px; color: rgba(255,255,255,.88); font-size: .9rem; }
.callback-intro li::before { content: "✓"; color: var(--lime); font-weight: 900; }
.callback-intro > a { position: relative; z-index: 1; display: inline-flex; padding-bottom: 3px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.42); font-size: .9rem; font-weight: 850; }
.callback-form-wrap { padding: clamp(34px,5vw,54px); }
.callback-heading { display: grid; gap: 3px; margin-bottom: 24px; padding-right: 36px; }
.callback-heading span { color: var(--green-700); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.callback-heading strong { font-size: clamp(1.45rem,3vw,2rem); letter-spacing: -.035em; }
.callback-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.callback-form .field { gap: 5px; }
.callback-form .field label { font-size: .82rem; }
.callback-form .field label span { color: var(--muted); font-size: .75rem; font-weight: 650; }
.callback-form .field input, .callback-form .field textarea { min-height: 48px; padding: 10px 12px; }
.callback-form .field textarea { min-height: 100px; }
.callback-form .consent { margin-top: 2px; font-size: .74rem; line-height: 1.45; }
.callback-submit { grid-column: 1 / -1; width: 100%; margin-top: 3px; }
.callback-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.callback-status { margin: 0 0 18px; }
.callback-success { padding: clamp(42px,6vw,74px) 0; text-align: center; }
.callback-success > span { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 22px; color: var(--green-950); background: var(--lime); border-radius: 50%; font-size: 1.7rem; font-weight: 950; }
.callback-success h3 { margin-bottom: 10px; font-size: clamp(1.8rem,4vw,2.7rem); }
.callback-success p { max-width: 440px; margin: 0 auto 25px; }
@keyframes callback-in { from { opacity: 0; transform: translateY(18px) scale(.975); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 70px; align-items: start; min-width: 0; }
.legal-nav { position: sticky; top: 105px; padding: 22px; background: var(--mint-2); border: 1px solid var(--line); border-radius: 20px; }
.legal-nav strong { display: block; margin-bottom: 12px; }
.legal-nav a { display: block; padding: 7px 0; color: var(--text); font-size: .86rem; }
.legal-nav a:hover { color: var(--green-700); }
.legal-content { min-width: 0; max-width: 100%; }
.legal-content h2 { padding-top: 22px; margin: 0 0 12px; font-size: 1.65rem; letter-spacing: -.035em; }
.legal-content h3 { margin: 26px 0 8px; font-size: 1.12rem; letter-spacing: -.02em; }
.legal-content a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .88rem; }
.legal-content th, .legal-content td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-content th { background: var(--mint-2); }
.legal-notice { padding: 18px 20px; margin-bottom: 26px; color: var(--text); background: #fff9e9; border: 1px solid #edddaa; border-radius: 15px; font-size: .88rem; }

/* Footer */
.site-footer { padding: 72px 0 30px; color: rgba(255,255,255,.72); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 44px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: rgba(255,255,255,.53); }
.site-footer .brand-mark { border: 1px solid rgba(255,255,255,.14); }
.footer-intro { max-width: 340px; margin-top: 20px; color: rgba(255,255,255,.62); font-size: .9rem; }
.footer-col strong { display: block; margin-bottom: 14px; color: #fff; }
.footer-col a { display: block; padding: 4px 0; font-size: .88rem; transition: .15s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* Cookies */
.cookie-banner { position: fixed; z-index: 1000; left: 18px; right: 18px; bottom: 18px; display: none; max-width: 1120px; margin-inline: auto; padding: 22px; color: #fff; background: #07140d; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.cookie-banner.show { display: block; }
.cookie-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cookie-banner strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.cookie-banner p { max-width: 710px; margin: 0; color: rgba(255,255,255,.68); font-size: .82rem; }
.cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-actions button { min-height: 42px; padding: 0 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; background: transparent; font-size: .78rem; font-weight: 800; }
.cookie-actions [data-cookie="reject"] { color: var(--green-950); background: #fff; border-color: #fff; }
.cookie-actions .accept { color: var(--green-950); background: var(--lime); border-color: var(--lime); }
.cookie-actions button:hover { border-color: #fff; }
.cookie-settings { position: fixed; z-index: 1100; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(2,14,8,.66); }
.cookie-settings.show { display: grid; }
.cookie-modal { width: min(600px, 100%); max-height: 90vh; overflow-y: auto; padding: 28px; background: #fff; border-radius: 26px; box-shadow: var(--shadow); }
.cookie-modal-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.cookie-modal h2 { margin-bottom: 6px; font-size: 1.65rem; }
.modal-close { display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; color: #fff; background: var(--green-950); }
.cookie-option { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-option:first-of-type { margin-top: 18px; }
.cookie-option strong { display: block; margin-bottom: 3px; }
.cookie-option p { margin: 0; font-size: .8rem; }
.switch { position: relative; width: 46px; height: 26px; }
.switch input { position: absolute; opacity: 0; }
.switch span { position: absolute; inset: 0; background: #cbd5ce; border-radius: 99px; transition: .2s; }
.switch span::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,.15); transition: .2s; }
.switch input:checked + span { background: var(--green-600); }
.switch input:checked + span::before { transform: translateX(20px); }
.switch input:disabled + span { opacity: .65; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cookie-link-button { padding: 0; color: inherit; background: none; border: 0; font: inherit; text-decoration: underline; text-underline-offset: 3px; }
.site-footer .cookie-link-button:hover { color: var(--lime); }

/* Utility / thank-you */
.center-screen { min-height: 68vh; display: grid; place-items: center; padding: 70px 0; text-align: center; }
.center-card { max-width: 680px; padding: clamp(32px, 6vw, 58px); background: var(--mint-2); border: 1px solid var(--line); border-radius: 32px; }
.center-card .success-mark { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 24px; color: #fff; background: var(--green-700); border-radius: 50%; font-size: 1.8rem; }

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: 86px; left: 20px; right: 20px; display: grid; gap: 4px; max-height: calc(100vh - 106px); overflow-y: auto; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .2s ease; }
  .menu-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { justify-content: space-between; min-height: 48px; padding-inline: 15px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-media { width: min(760px, 100%); min-height: 590px; margin-inline: auto; }
  .showcase { width: min(650px, 95%); min-height: 490px; margin-inline: auto; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-note { max-width: 620px; }
  .grid-3, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: 1 / -1; }
  .pricing-grid-top .price-card:last-child { grid-column: auto; }
  .price-card.featured { transform: none; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .optional-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, var(--container)); }
  .site-header { padding: 10px 0; }
  .brand-tag { display: none; }
  .brand-mark { width: 39px; height: 39px; }
  .hero { padding-top: 56px; padding-bottom: 104px; }
  .hero h1, .page-hero h1 { letter-spacing: -.055em; }
  .hero-media { min-height: 430px; }
  .hero-image-frame { inset: 14px 2px 18px 10px; border-width: 5px; border-radius: 27px; }
  .hero-media .metric { padding: 11px 13px; }
  .hero-media .metric.one { left: -4px; bottom: 22px; }
  .hero-media .metric.two { right: -2px; top: 0; }
  .visual-badge { right: 8px; bottom: 2px; }
  .trust-strip { margin-top: -48px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 98px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(n+3) { border-bottom: 0; }
  .showcase { min-height: 395px; width: 100%; }
  .showcase-card { inset: 14px 4px 0 8px; border-radius: 22px; }
  .mock-body { padding: 34px 17px 40px; }
  .metric { padding: 11px 13px; }
  .metric.one { left: -5px; bottom: 36px; }
  .metric.two { right: -4px; }
  .grid-3, .grid-2, .pricing-grid, .process, .split, .contact-grid, .promise-grid, .assurance-bar { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: auto; }
  .card, .price-card { padding: 26px; }
  .service-card { min-height: auto; }
  .media-card, .media-card img { min-height: 400px; }
  .stats { grid-template-columns: 1fr; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .consent, .form-submit { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .cookie-inner { grid-template-columns: 1fr; gap: 18px; }
  .cookie-actions { justify-content: flex-start; }
  .cookie-actions button { flex: 1 1 auto; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 18px; border-radius: 18px; }
  .legal-content { overflow-wrap: anywhere; }
  .legal-content table { display: block; width: 100%; max-width: 100%; overflow: visible; border: 0; border-collapse: separate; border-spacing: 0; white-space: normal; }
  .legal-content table thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .legal-content table tbody { display: grid; gap: 14px; width: 100%; }
  .legal-content table tr { display: block; width: 100%; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 7px 20px rgba(3,38,23,.045); }
  .legal-content table td { display: block; width: 100%; padding: 13px 14px; overflow-wrap: anywhere; white-space: normal; border: 0; border-bottom: 1px solid var(--line); }
  .legal-content table td:last-child { border-bottom: 0; }
  .legal-content table td::before { content: attr(data-label); display: block; margin-bottom: 4px; color: var(--green-700); font-size: .68rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
  .legal-content code { overflow-wrap: anywhere; word-break: break-word; }
  .legal-nav { padding: 18px; }
  .included-grid, .optional-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .package-ideal { min-height: 0; }
  .promise-card { min-height: 0; }
  .assurance-actions { justify-items: start; min-width: 0; }
  .callback-overlay { padding: 8px; }
  .callback-modal { grid-template-columns: 1fr; max-height: calc(100vh - 16px); border-radius: 23px; }
  .callback-intro { padding: 34px 28px 28px; }
  .callback-intro h2 { max-width: 520px; margin-bottom: 12px; font-size: 2.35rem; }
  .callback-intro p { margin-bottom: 0; font-size: .9rem; }
  .callback-intro ul { display: none; }
  .callback-intro > a { margin-top: 17px; }
  .callback-form-wrap { padding: 28px; }
  .callback-fields { grid-template-columns: 1fr; }
  .callback-form .field.full, .callback-form .consent, .callback-submit { grid-column: auto; }
  .chat-launcher { right: 14px; bottom: 14px; min-width: 136px; padding: 11px 15px 10px; border-radius: 16px; }
}

@media (max-width: 430px) {
  body { font-size: 15px; }
  .brand-name { font-size: 1.05rem; }
  .hero h1 { font-size: 2.65rem; }
  .page-hero h1 { font-size: 2.5rem; }
  .button-row .btn { width: 100%; }
  .hero-media { min-height: 340px; }
  .hero-image-frame { inset: 10px 0 14px 2px; border-radius: 22px; }
  .hero-media .metric.one { bottom: 8px; }
  .hero-media .metric.two, .visual-badge { display: none; }
  .trust-item { min-height: 90px; padding: 20px 14px 18px 50px; }
  .trust-item > span { top: 21px; left: 14px; }
  .trust-item strong { font-size: .86rem; }
  .trust-item small { font-size: .68rem; }
  .media-card, .media-card img { min-height: 330px; }
  .media-card figcaption { left: 20px; right: 20px; bottom: 18px; }
  .mock-links { width: 95px; }
  .showcase { min-height: 345px; }
  .metric.two { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: auto; }
  .callback-intro { padding: 30px 22px 24px; }
  .callback-intro h2 { padding-right: 36px; font-size: 2rem; }
  .callback-intro p { font-size: .82rem; }
  .callback-form-wrap { padding: 24px 20px; }
  .callback-heading { margin-bottom: 18px; }
  .callback-heading strong { font-size: 1.35rem; }
  .callback-form .field textarea { min-height: 88px; }
}

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

@media print {
  .site-header, .site-footer, .cookie-banner, .cookie-settings, .callback-overlay, .chat-launcher, .button-row, .legal-nav { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .section, .page-hero { padding: 20px 0; }
  a { text-decoration: underline; }
}
