:root {
  --green-950: #052e1b;
  --green-900: #074426;
  --green-800: #0a6634;
  --green-700: #0f8f43;
  --green-600: #159447;
  --green-500: #22b95e;
  --green-100: #e7f7ed;
  --green-50: #f3fbf6;
  --navy-950: #07111f;
  --navy-900: #0f172a;
  --navy-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --gold: #f4c75b;
  --gold-soft: #fff4d6;
  --white: #ffffff;
  --surface: #f8fbf9;
  --border: #e5eee8;
  --shadow-sm: 0 8px 24px rgba(8, 40, 24, 0.06);
  --shadow-md: 0 18px 50px rgba(8, 40, 24, 0.10);
  --shadow-lg: 0 30px 80px rgba(7, 17, 31, 0.15);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1200px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
code { padding: 0.15rem 0.45rem; border-radius: 8px; background: #eef4f0; color: var(--green-800); font-size: 0.9em; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-space { padding: 112px 0; }
.section-space-sm { padding: 68px 0; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 9999; padding: 12px 18px; background: var(--navy-950); color: white; border-radius: 10px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 238, 232, 0.9);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 205px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { font-size: 0.92rem; font-weight: 700; color: var(--navy-700); position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--green-600); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a:hover { color: var(--green-800); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.trial-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--gold-soft); color: #6c4a05; font-size: 0.84rem; font-weight: 800; white-space: nowrap; border: 1px solid rgba(244,199,91,.35); }
.trial-pill span { color: #d99a00; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; border-radius: 12px; padding: 9px; }
.menu-toggle span { width: 100%; height: 2px; background: var(--navy-900); display: block; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; padding: 18px 20px 24px; background: white; box-shadow: 0 16px 30px rgba(7,17,31,.1); border-bottom: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 14px 4px; font-weight: 700; color: var(--navy-700); border-bottom: 1px solid var(--slate-100); }
.mobile-nav .mobile-install { margin-top: 14px; padding: 14px 18px; text-align: center; color: white; background: var(--green-700); border-radius: 14px; border-bottom: 0; }
.mobile-nav.open { display: block; }

/* Buttons */
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border-radius: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--green-600), var(--green-800)); box-shadow: 0 14px 28px rgba(21,148,71,.23); }
.btn-primary:hover { box-shadow: 0 18px 35px rgba(21,148,71,.28); }
.btn-secondary { color: var(--green-800); background: white; border: 1.5px solid #8dccaa; }
.btn-secondary:hover { background: var(--green-50); }
.btn-gold { color: var(--navy-950); background: linear-gradient(135deg, #ffdc77, var(--gold)); box-shadow: 0 16px 30px rgba(244,199,91,.22); }
.btn-full { width: 100%; margin-top: 26px; }

/* Hero */
.hero { position: relative; isolation: isolate; padding-top: 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 72%; background: radial-gradient(circle at 88% 30%, rgba(21,148,71,.11), transparent 35%), linear-gradient(180deg, #fff 0%, #fbfefc 100%); z-index: -2; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(30px); z-index: -1; opacity: .55; }
.hero-glow-one { width: 260px; height: 260px; right: -80px; top: 120px; background: rgba(21,148,71,.18); }
.hero-glow-two { width: 180px; height: 180px; left: -70px; bottom: 20px; background: rgba(244,199,91,.18); }
.hero-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; align-items: center; gap: 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 0.84rem; font-weight: 800; color: var(--green-800); letter-spacing: .02em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--green-600); }
.hero h1 { margin: 0; max-width: 640px; font-size: clamp(3rem, 5.1vw, 5.6rem); line-height: 1.04; letter-spacing: -0.055em; font-weight: 800; }
.hero h1 strong { color: var(--green-600); font-weight: 800; }
.hero-text { max-width: 620px; margin: 28px 0 0; font-size: 1.08rem; line-height: 1.78; color: var(--slate-600); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.trust-item { display: flex; align-items: center; gap: 11px; }
.icon-badge { display: inline-flex; align-items: center; justify-content: center; color: var(--green-700); background: var(--green-100); border-radius: 16px; }
.icon-badge.small { width: 38px; height: 38px; }
.icon-badge svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-item b { display: block; font-size: .9rem; }
.trust-item small { display: block; margin-top: 2px; color: var(--slate-500); font-size: .73rem; }

.hero-visual { position: relative; min-height: 570px; display: flex; align-items: center; justify-content: center; }
.dots-pattern { position: absolute; top: 40px; right: 0; width: 220px; height: 160px; opacity: .6; background-image: radial-gradient(#9bd7b3 1.2px, transparent 1.2px); background-size: 14px 14px; mask-image: linear-gradient(135deg, black, transparent); }
.device-laptop { width: min(720px, 100%); position: relative; z-index: 2; filter: drop-shadow(0 28px 35px rgba(7,17,31,.20)); }
.laptop-screen { padding: 11px 11px 14px; background: #101822; border: 3px solid #0b1119; border-radius: 24px 24px 9px 9px; aspect-ratio: 1.56; overflow: hidden; }
.laptop-screen img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.laptop-camera { position: absolute; top: 5px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #39414b; z-index: 3; }
.laptop-base { width: 112%; height: 22px; margin-left: -6%; background: linear-gradient(180deg, #dce0e3, #89939e); border-radius: 0 0 70px 70px; box-shadow: inset 0 1px 0 white; }
.laptop-base span { display: block; width: 88px; height: 6px; margin: auto; border-radius: 0 0 9px 9px; background: #aab2ba; }
.device-phone { position: absolute; right: 1%; bottom: 32px; width: 178px; z-index: 4; filter: drop-shadow(0 22px 28px rgba(7,17,31,.23)); transform: rotate(1.5deg); }
.device-phone img { border-radius: 30px; }
.floating-stat { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; padding: 12px 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border: 1px solid rgba(229,238,232,.95); border-radius: 16px; box-shadow: var(--shadow-sm); }
.stat-one { top: 62px; left: 4%; }
.stat-two { left: 10%; bottom: 44px; }
.stat-icon { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--green-100); color: var(--green-700); font-weight: 900; font-size: .8rem; }
.floating-stat small { display: block; color: var(--slate-500); font-size: .7rem; }
.floating-stat b { display: block; color: var(--navy-900); font-size: .83rem; margin-top: 2px; }

/* Headings */
.section-heading { max-width: 750px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker { display: inline-block; margin-bottom: 12px; color: var(--green-700); font-weight: 800; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; }
.section-heading h2, .why-copy h2, .panel-heading h2, .cta-copy h2 { margin: 0; font-size: clamp(2.1rem, 3vw, 3.4rem); line-height: 1.12; letter-spacing: -.04em; }
.section-heading p, .why-copy > p, .pricing-panel > p, .install-panel > p { color: var(--slate-500); line-height: 1.75; }
.section-heading p { max-width: 620px; margin: 18px auto 0; }

/* Modules */
.modules { background: linear-gradient(180deg, white, #fbfefc); }
.module-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.module-card { position: relative; min-height: 245px; padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.module-card::after { content: ""; position: absolute; left: 24px; right: 75%; bottom: 0; height: 3px; border-radius: 3px; background: var(--green-600); transition: right .25s ease; }
.module-card:hover { transform: translateY(-8px); border-color: #cbe7d5; box-shadow: var(--shadow-md); }
.module-card:hover::after { right: 24px; }
.module-icon { width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; border-radius: 17px; background: var(--green-100); color: var(--green-700); }
.module-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.module-card h3 { margin: 22px 0 10px; font-size: 1.05rem; }
.module-card p { margin: 0; color: var(--slate-500); line-height: 1.65; font-size: .89rem; }

/* Why */
.why { position: relative; background: var(--surface); }
.why::after { content: ""; position: absolute; right: -160px; top: 10%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(21,148,71,.11), transparent 65%); pointer-events: none; }
.why-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy > p { margin: 24px 0 0; }
.why-highlight { display: flex; align-items: center; gap: 18px; margin-top: 32px; padding: 20px; background: linear-gradient(135deg, var(--gold-soft), #fff); border: 1px solid rgba(244,199,91,.45); border-radius: 20px; }
.why-highlight > span { width: 62px; height: 62px; flex: 0 0 62px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; color: #815d0d; background: #ffd66f; font-size: 1.55rem; font-weight: 900; }
.why-highlight b { display: block; font-size: 1rem; }
.why-highlight small { display: block; color: var(--slate-500); line-height: 1.5; margin-top: 4px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefit-card { display: flex; align-items: flex-start; gap: 16px; min-height: 160px; padding: 24px; background: white; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.benefit-icon { width: 48px; height: 48px; flex: 0 0 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 15px; color: var(--green-700); background: var(--green-100); }
.benefit-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin: 1px 0 8px; font-size: 1rem; }
.benefit-card p { margin: 0; color: var(--slate-500); font-size: .87rem; line-height: 1.6; }

/* Showcase */
.showcase { background: white; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.showcase-card { min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(160deg, #fff, #f7fbf8); box-shadow: var(--shadow-sm); }
.showcase-card.large, .showcase-card.wide { grid-column: 1 / -1; }
.showcase-card.large { display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; min-height: 500px; }
.showcase-card.wide { display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; min-height: 360px; }
.showcase-copy { padding: 42px; }
.showcase-copy span { display: inline-block; margin-bottom: 14px; color: var(--green-700); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.showcase-copy h3 { margin: 0; font-size: clamp(1.75rem, 2.6vw, 3rem); line-height: 1.14; letter-spacing: -.04em; }
.showcase-copy p { margin: 18px 0 0; color: var(--slate-500); line-height: 1.7; }
.showcase-copy.compact { padding-bottom: 22px; }
.showcase-copy.compact h3 { font-size: clamp(1.35rem, 2vw, 2.1rem); }
.showcase-image { min-width: 0; padding: 28px 28px 28px 0; }
.showcase-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; box-shadow: 0 22px 45px rgba(7,17,31,.12); }
.compact-image { padding: 0 24px 24px; }
.wide-image { padding: 24px 24px 24px 0; }

/* Pricing / Install */
.plans-install { background: linear-gradient(180deg, #fbfefc, white); }
.plans-install-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: stretch; }
.pricing-panel, .install-panel { padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: white; box-shadow: var(--shadow-md); }
.panel-heading { display: flex; align-items: flex-start; gap: 16px; }
.panel-heading > div > span { display: block; margin-bottom: 7px; color: var(--green-700); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.panel-heading h2 { font-size: clamp(1.9rem, 2.7vw, 2.8rem); }
.panel-icon { width: 52px; height: 52px; flex: 0 0 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; color: var(--green-700); background: var(--green-100); }
.panel-icon.gold { color: #936a0c; background: var(--gold-soft); }
.panel-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trial-banner { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; row-gap: 2px; align-items: center; margin-top: 24px; padding: 16px 18px; border-radius: 16px; background: var(--gold-soft); color: #78540a; }
.trial-banner > span { grid-row: 1 / 3; font-size: 1.25rem; color: #d89b00; }
.trial-banner b { font-size: .95rem; }
.trial-banner small { color: #906d1c; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.price-card { padding: 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); }
.price-card.featured { background: linear-gradient(150deg, #eaf8ef, #fff); border-color: #bfe4cd; }
.price-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: white; color: var(--green-800); font-size: .75rem; font-weight: 800; box-shadow: 0 4px 12px rgba(8,40,24,.05); }
.price-card strong { display: block; margin-top: 16px; font-size: 1.7rem; letter-spacing: -.04em; }
.price-card strong small { font-size: .72rem; color: var(--slate-500); letter-spacing: normal; }
.price-card p { margin: 6px 0 12px; color: var(--slate-500); font-size: .85rem; }
.price-card em { display: block; color: var(--green-800); font-size: .77rem; font-style: normal; font-weight: 700; line-height: 1.45; }
.payment-note { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 15px 16px; border-radius: 14px; background: #f6f8fa; color: var(--slate-600); font-size: .84rem; line-height: 1.5; }
.payment-note svg { width: 24px; height: 24px; flex: 0 0 24px; fill: none; stroke: var(--green-700); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.platform-card { min-height: 142px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 18px; text-align: center; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); }
.platform-logo { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: white; box-shadow: 0 8px 18px rgba(8,40,24,.06); }
.platform-logo svg { width: 27px; height: 27px; fill: currentColor; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.platform-logo.android { color: #3ddc84; }
.platform-logo.apple { color: #111827; }
.platform-logo.windows { color: #087cd5; }
.platform-card b { font-size: .9rem; }
.platform-card small { color: var(--slate-500); font-size: .72rem; }

/* CTA */
.final-cta { background: white; }
.cta-card { position: relative; overflow: hidden; min-height: 250px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 44px; border-radius: var(--radius-lg); color: white; background: linear-gradient(135deg, #07351f, #0c6634 60%, #0d8140); box-shadow: var(--shadow-lg); }
.cta-card::before { content: ""; position: absolute; right: -70px; top: -110px; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.03), 0 0 0 90px rgba(255,255,255,.025); }
.cta-symbol { width: 88px; height: 88px; display: flex; align-items: center; justify-content: center; border-radius: 26px; background: white; color: var(--green-700); font-size: 2.8rem; font-weight: 900; box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.cta-copy span { display: block; margin-bottom: 9px; color: #8fe2af; font-weight: 800; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.cta-copy h2 { max-width: 650px; font-size: clamp(2rem, 3vw, 3.2rem); }
.cta-copy p { margin: 14px 0 0; color: #d8e7df; line-height: 1.65; }

/* Footer */
.site-footer { color: white; background: #061923; padding: 76px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .8fr 1fr; gap: 50px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 330px; margin: 18px 0; color: #a8bbc4; line-height: 1.7; font-size: .9rem; }
.footer-domain { display: inline-flex; padding: 8px 12px; border-radius: 999px; color: #9be2b6; background: rgba(34,185,94,.12); border: 1px solid rgba(34,185,94,.2); font-size: .8rem; font-weight: 700; }
.footer-links h3, .footer-action h3 { margin: 0 0 18px; font-size: .95rem; }
.footer-links a, .footer-links span { display: block; margin: 11px 0; color: #a8bbc4; font-size: .86rem; }
.footer-links a:hover { color: #70d99a; }
.footer-action p { margin: 0 0 18px; color: #a8bbc4; font-size: .86rem; line-height: 1.65; }
.footer-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 12px; background: var(--green-500); color: white; font-weight: 800; font-size: .87rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7f969f; font-size: .76rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* Tablet */
@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions { margin-left: auto; }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1, .hero-text { margin-inline: auto; }
  .hero-buttons, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 540px; }
  .device-laptop { width: min(720px, 88%); }
  .device-phone { right: 5%; }
  .stat-one { left: 7%; }
  .stat-two { left: 9%; }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .module-card:nth-child(4), .module-card:nth-child(5) { grid-column: span 1; }
  .why-layout { grid-template-columns: 1fr; gap: 42px; }
  .why-copy { position: static; max-width: 720px; }
  .showcase-card.large { grid-template-columns: 1fr; }
  .showcase-card.wide { grid-template-columns: 1fr; }
  .showcase-image, .wide-image { padding: 0 24px 24px; }
  .plans-install-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: auto 1fr; }
  .cta-card .btn { grid-column: 1 / -1; width: max-content; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-action { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; }
  .footer-action h3, .footer-action p { grid-column: 1; }
  .footer-action .footer-button { grid-column: 2; grid-row: 1 / 3; }
}

/* Mobile */
@media (max-width: 760px) {
  :root { --radius-lg: 24px; --radius-xl: 30px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section-space { padding: 82px 0; }
  .section-space-sm { padding: 50px 0; }
  .brand img { width: 162px; }
  .trial-pill { display: none; }
  .site-header { background: rgba(255,255,255,.96); }
  .hero { padding-top: 52px; }
  .hero-grid { gap: 34px; }
  .eyebrow { font-size: .72rem; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(2.55rem, 13.5vw, 4rem); line-height: 1.03; letter-spacing: -.055em; }
  .hero-text { margin-top: 20px; font-size: .96rem; line-height: 1.7; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; width: 100%; margin-top: 28px; }
  .btn { width: 100%; min-height: 54px; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; margin-top: 24px; }
  .trust-item { display: block; text-align: center; padding: 10px 4px; border-radius: 14px; background: #f8fbf9; }
  .icon-badge.small { margin-inline: auto; width: 34px; height: 34px; }
  .trust-item b { margin-top: 7px; font-size: .75rem; }
  .trust-item small { font-size: .61rem; }
  .hero-visual { min-height: 420px; margin-top: 10px; }
  .device-laptop { width: 95%; }
  .laptop-screen { padding: 6px 6px 9px; border-radius: 16px 16px 7px 7px; }
  .laptop-base { height: 14px; }
  .device-phone { width: 112px; right: 0; bottom: 28px; }
  .floating-stat { display: none; }
  .dots-pattern { width: 130px; height: 100px; top: 15px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .why-copy h2, .panel-heading h2, .cta-copy h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .section-heading p { font-size: .9rem; }
  .module-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .module-card { min-height: 205px; padding: 20px 17px; border-radius: 18px; }
  .module-card:last-child { grid-column: 1 / -1; min-height: auto; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: center; }
  .module-card:last-child .module-icon { grid-row: 1 / 3; }
  .module-card:last-child h3 { margin: 0 0 6px; }
  .module-icon { width: 48px; height: 48px; border-radius: 14px; }
  .module-icon svg { width: 23px; height: 23px; }
  .module-card h3 { margin-top: 16px; font-size: .94rem; }
  .module-card p { font-size: .77rem; line-height: 1.55; }
  .why-layout { gap: 30px; }
  .why-highlight { padding: 16px; }
  .why-highlight > span { width: 52px; height: 52px; flex-basis: 52px; font-size: 1.3rem; }
  .why-highlight b { font-size: .88rem; }
  .why-highlight small { font-size: .72rem; }
  .benefit-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { min-height: auto; padding: 19px; border-radius: 18px; }
  .benefit-icon { width: 44px; height: 44px; flex-basis: 44px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 14px; }
  .showcase-card.large, .showcase-card.wide { grid-column: auto; display: block; min-height: 0; }
  .showcase-copy, .showcase-copy.compact { padding: 24px 22px 18px; }
  .showcase-copy h3, .showcase-copy.compact h3 { font-size: 1.45rem; }
  .showcase-copy p { font-size: .84rem; }
  .showcase-image, .compact-image, .wide-image { padding: 0 14px 14px; }
  .showcase-image img { border-radius: 16px; }
  .pricing-panel, .install-panel { padding: 24px 18px; border-radius: 22px; }
  .panel-heading { gap: 12px; }
  .panel-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .panel-heading h2 { font-size: 1.72rem; }
  .pricing-panel > p, .install-panel > p { font-size: .86rem; }
  .price-cards { grid-template-columns: 1fr; }
  .platform-grid { gap: 10px; }
  .platform-card { min-height: 126px; padding: 12px 8px; }
  .platform-logo { width: 44px; height: 44px; }
  .cta-card { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
  .cta-symbol { width: 70px; height: 70px; margin-inline: auto; font-size: 2.2rem; }
  .cta-card .btn { width: 100%; }
  .site-footer { padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand, .footer-action { grid-column: 1 / -1; }
  .footer-action { display: block; }
  .footer-action .footer-button { width: 100%; margin-top: 4px; }
  .footer-bottom { display: block; text-align: center; line-height: 1.7; }
  .footer-bottom span { display: block; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 22px); }
  .brand img { width: 148px; }
  .menu-toggle { width: 38px; height: 38px; }
  .hero h1 { font-size: 2.45rem; }
  .hero-trust { grid-template-columns: 1fr; }
  .trust-item { display: flex; text-align: left; padding: 10px 12px; }
  .icon-badge.small { margin-inline: 0; }
  .trust-item b { margin-top: 0; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card:last-child { display: block; }
  .module-card:last-child h3 { margin-top: 16px; }
  .price-card strong { font-size: 1.55rem; }
  .platform-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-column: 1; }
}

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