:root {
  --bg: #f4fcf7;
  --bg-soft: #eef8f2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(9, 93, 64, 0.1);
  --line-strong: rgba(9, 93, 64, 0.18);
  --text: #11271e;
  --text-soft: #3d5a4d;
  --text-muted: #6a8478;
  --green-1: #dcfff0;
  --green-2: #a8f0cf;
  --green-3: #39d496;
  --green-4: #0a8c62;
  --green-5: #066347;
  --green-6: #043e2d;
  --red-1: #fff2ef;
  --red-2: #d96855;
  --amber-1: #fff9e9;
  --amber-2: #c88b14;
  --cyan-1: #eefbff;
  --cyan-2: #1784a1;
  --shadow-soft: 0 24px 70px rgba(7, 52, 36, 0.1);
  --shadow-strong: 0 26px 90px rgba(7, 52, 36, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(57, 212, 150, 0.18), transparent 26%),
    radial-gradient(circle at 85% 6%, rgba(10, 140, 98, 0.14), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(168, 240, 207, 0.18), transparent 24%),
    linear-gradient(180deg, #f8fffb 0%, var(--bg) 36%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(10, 140, 98, 0.16);
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.noise,
.grid-light,
.radial,
#particle-canvas {
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: -2;
}

.grid-light {
  position: fixed;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(10, 140, 98, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 140, 98, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 82%);
  z-index: -4;
}

.radial {
  position: fixed;
  border-radius: 999px;
  filter: blur(42px);
  z-index: -3;
}

.radial-a {
  top: -170px;
  left: -90px;
  width: 420px;
  height: 420px;
  background: rgba(10, 140, 98, 0.18);
}

.radial-b {
  top: 12%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgba(57, 212, 150, 0.15);
}

.radial-c {
  bottom: 5%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: rgba(168, 240, 207, 0.24);
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(6, 99, 71, 0.06);
  z-index: 60;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-3), var(--green-6));
  box-shadow: 0 0 18px rgba(57, 212, 150, 0.45);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: var(--container);
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(6, 54, 37, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-4), var(--green-6));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.52rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(10, 140, 98, 0.24);
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.footer-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-copy small,
.footer-brand small {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.topnav a,
.topbar-cta,
.footer-column a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
}

.topnav a:hover,
.topbar-cta:hover,
.footer-column a:hover {
  color: var(--green-5);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
  overflow: hidden;
}

.topbar-cta::before,
.button::before,
.store-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0.7;
  pointer-events: none;
}

.topbar-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-4), var(--green-6));
  box-shadow: 0 16px 34px rgba(10, 140, 98, 0.22);
}

.button:hover,
.topbar-cta:hover,
.store-badge:hover,
.back-to-top:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--green-5);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(10, 140, 98, 0.16);
  box-shadow: 0 12px 24px rgba(9, 72, 48, 0.08);
}

.hero-actions .button-primary {
  color: var(--green-5);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(10, 140, 98, 0.16);
  box-shadow: 0 12px 24px rgba(9, 72, 48, 0.08);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 120px);
  padding-top: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green-5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-3);
  box-shadow: 0 0 0 0 rgba(57, 212, 150, 0.8);
  animation: pulse 2s infinite;
}

.hero h1,
.section-heading h2,
.chart-copy h2,
.contact-copy h2,
.final-cta-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

.hero h1 span {
  color: var(--green-4);
}

.lead,
.section-heading p,
.chart-copy p,
.contact-copy p,
.final-cta-panel p,
.problem-card li,
.timeline-step p,
.feature-card p,
.plan-card p,
.trial-banner p,
.roi-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.68;
}

.hero .lead {
  max-width: 72ch;
  margin: 20px 0 0;
  font-size: 0.88rem;
}

.hero-actions,
.final-cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
  padding: 10px 12px;
  border: 1px solid rgba(10, 140, 98, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(9, 72, 48, 0.08);
}

.store-badge.official {
  min-width: 258px;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #0a0a0a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 32px rgba(6, 54, 37, 0.16);
  color: #fff;
}

.store-glyph,
.footer-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(10, 140, 98, 0.1), rgba(10, 140, 98, 0.22));
  color: var(--green-5);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.store-glyph svg,
.back-to-top svg,
.footer-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.store-glyph.store-play svg,
.store-glyph.store-apple svg {
  width: 18px;
  height: 18px;
}

.store-badge small {
  display: block;
  color: var(--text-muted);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.store-badge strong {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
}

.simple-store {
  min-width: 220px;
  min-height: 46px;
  padding: 0 18px;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-4), var(--green-6));
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(10, 140, 98, 0.2);
}

.simple-store::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.65;
}

.simple-store span {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.store-badge.official .store-glyph {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.store-badge.official .store-glyph svg {
  width: 38px;
  height: 38px;
}

.store-badge.official small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.store-badge.official strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.05;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-3), var(--green-6));
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--surface);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.hero-frame::before,
.hero-frame::after,
.final-cta-panel::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
}

.hero-frame::before {
  top: -120px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(57, 212, 150, 0.18);
}

.hero-frame::after {
  bottom: -110px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: rgba(10, 140, 98, 0.14);
}

.hero-frame-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 14px;
}

.hero-screen-main,
.hero-side-card,
.roi-card,
.problem-card,
.timeline-step,
.feature-card,
.plan-card,
.trial-banner,
.chart-wrap,
.impact-note,
.contact-form,
.contact-assurance,
.product-shot,
.final-cta-panel {
  border-radius: var(--radius-lg);
}

.hero-screen-main,
.hero-side-card {
  border: 1px solid rgba(10, 88, 60, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.hero-screen-main {
  grid-row: span 2;
  padding: 18px;
}

.hero-copy,
.hero-visual,
.roi-card,
.problem-card,
.timeline-step,
.feature-card,
.product-shot,
.plan-card,
.contact-copy,
.contact-form,
.final-cta-panel {
  transition-delay: var(--delay, 0ms);
}

.hero-side-card {
  padding: 18px;
}

.hero-side-card.success {
  background: linear-gradient(180deg, rgba(219, 255, 240, 0.96), rgba(255, 255, 255, 0.88));
}

.hero-side-card strong,
.roi-card strong {
  display: block;
}

.hero-side-card strong {
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.28;
}

.hero-side-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.58;
}

.screen-top,
.chart-topline,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.status-pill,
.chart-badge {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(10, 140, 98, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-5);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.executive-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.executive-card.full {
  grid-column: 1 / -1;
}

.executive-card,
.executive-table {
  padding: 16px;
  border: 1px solid rgba(10, 88, 60, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.executive-card.emphasis {
  background: linear-gradient(180deg, rgba(219, 255, 240, 0.96), rgba(255, 255, 255, 0.88));
}

.executive-card small,
.executive-table span {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.executive-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
  line-height: 1.04;
}

.executive-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.executive-card.compact strong {
  font-size: 1.08rem;
}

.executive-table {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.executive-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 88, 60, 0.08);
}

.executive-table div:last-child {
  border-bottom: 0;
}

.executive-table b {
  color: var(--green-6);
  font-size: 0.88rem;
}

.roi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.roi-card {
  padding: 20px;
}

.roi-card strong {
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.26rem;
  line-height: 1.04;
}

.roi-card p {
  margin: 12px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.chart-copy h2,
.contact-copy h2,
.final-cta-panel h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
}

.section-heading p,
.chart-copy p,
.contact-copy p {
  margin: 16px 0 0;
}

.problem-grid,
.feature-grid,
.plans-grid,
.product-gallery {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-card,
.timeline-step,
.feature-card,
.plan-card {
  padding: 24px;
}

.problem-card h3,
.timeline-step h3,
.feature-card h3,
.plan-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
}

.problem-card ul {
  margin: 0;
  padding-left: 18px;
}

.problem-card li + li {
  margin-top: 8px;
}

.chart-section,
.contact-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 28px;
}

.chart-wrap {
  padding: 22px;
}

#line-chart {
  width: 100%;
  height: auto;
  margin-top: 18px;
}

.chart-summary {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.56;
}

.impact-note {
  margin-top: 22px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(219, 255, 240, 0.88));
}

.impact-note span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.62;
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: start;
}

.step-index,
.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green-4), var(--green-6));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(10, 140, 98, 0.2);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card p,
.plan-card p {
  margin: 12px 0 0;
}

.product-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-shot {
  padding: 20px;
}

.product-shot.wide {
  grid-column: 1 / -1;
}

.product-shot-head strong {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.shot-stack,
.shot-team-list,
.shot-sector-bars,
.shot-alerts {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.shot-banner,
.shot-stat,
.shot-ring-row,
.shot-priority,
.shot-team-list div,
.shot-alert {
  border: 1px solid rgba(10, 88, 60, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.shot-banner,
.shot-priority,
.shot-team-list div,
.shot-alert {
  padding: 14px 16px;
  border-radius: 16px;
}

.shot-banner {
  color: #24313f;
  font-size: 0.92rem;
  font-weight: 700;
}

.shot-grid.four {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shot-stat {
  padding: 14px;
  border-radius: 16px;
}

.shot-stat b {
  display: block;
  font-size: 1.34rem;
  line-height: 1;
}

.shot-stat span {
  display: block;
  margin-top: 8px;
  color: #566372;
  font-size: 0.78rem;
  font-weight: 700;
}

.shot-stat.warn {
  background: var(--amber-1);
}

.shot-stat.info {
  background: var(--cyan-1);
}

.shot-stat.success {
  background: #f2fff8;
}

.shot-stat.danger {
  background: var(--red-1);
}

.shot-ring-row {
  display: grid;
  grid-template-columns: 114px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
}

.shot-ring {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, #fff 67%, transparent 68% 100%),
    conic-gradient(var(--green-4) 40%, #dce9ff 0);
}

.shot-ring b {
  display: block;
  color: #1d2431;
  font-size: 1.65rem;
  text-align: center;
}

.shot-ring span {
  display: block;
  color: #5f6a78;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shot-priority small {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shot-priority strong {
  display: block;
  margin-top: 10px;
  color: #202938;
  font-size: 0.9rem;
  line-height: 1.38;
}

.shot-team-list div b,
.shot-alert b {
  display: block;
  color: #222a38;
  font-size: 0.95rem;
}

.shot-team-list div span,
.shot-alert span {
  display: block;
  margin-top: 6px;
  color: #5f6a78;
  font-size: 0.84rem;
  line-height: 1.52;
}

.shot-sector-bars div {
  padding: 0 2px;
}

.shot-sector-bars label,
.shot-sector-bars span {
  display: inline-block;
  color: #243142;
  font-size: 0.84rem;
  font-weight: 700;
}

.shot-sector-bars span {
  float: right;
}

.shot-sector-bars i {
  display: block;
  width: 100%;
  height: 11px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbf24 var(--bar), #e9edf5 var(--bar));
}

.shot-alert.warn {
  background: var(--amber-1);
}

.plans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trial-banner {
  margin-top: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(219, 255, 240, 0.96), rgba(255, 255, 255, 0.88));
}

.trial-banner p {
  margin: 10px 0 0;
}

.contact-assurance {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
}

.contact-assurance div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10, 88, 60, 0.08);
}

.contact-assurance div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-assurance small {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-assurance strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.48;
}

.contact-form {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid span {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(10, 140, 98, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(10, 140, 98, 0.36);
  box-shadow: 0 0 0 4px rgba(10, 140, 98, 0.08);
}

.form-grid textarea {
  resize: vertical;
  min-height: 148px;
}

#form-feedback {
  margin: 0;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.56;
}

.final-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 255, 240, 0.94)),
    radial-gradient(circle at top right, rgba(57, 212, 150, 0.18), transparent 34%);
  overflow: hidden;
}

.final-proof-grid {
  display: grid;
  gap: 10px;
  align-self: stretch;
  min-width: 230px;
}

.final-proof-grid article {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(10, 140, 98, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.final-proof-grid small {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-proof-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.86rem;
  text-transform: capitalize;
}

.final-cta-panel::before {
  top: -86px;
  right: -78px;
  width: 220px;
  height: 220px;
  background: rgba(10, 140, 98, 0.14);
}

.final-cta-panel p {
  margin: 14px 0 0;
  max-width: 54ch;
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 42px;
}

.footer-inner {
  padding-top: 22px;
  border-top: 1px solid rgba(10, 88, 60, 0.1);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-icons .icon-row {
  display: flex;
  gap: 10px;
}

.footer-rights {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.footer-support {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green-4), var(--green-6));
  color: #fff;
  box-shadow: 0 22px 44px rgba(10, 140, 98, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 35;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 212, 150, 0.8);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(57, 212, 150, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(57, 212, 150, 0);
  }
}

@media (max-width: 1140px) {
  .topnav {
    display: none;
  }

  .hero,
  .chart-section,
  .contact-layout,
  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-frame-grid {
    grid-template-columns: 1fr;
  }

  .hero-screen-main {
    grid-row: auto;
  }

  .roi-strip,
  .feature-grid,
  .plans-grid,
  .product-gallery,
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 10px;
    width: min(calc(100vw - 20px), 100%);
    margin-top: 10px;
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .topbar-cta {
    display: none;
  }

  .section,
  .footer-shell {
    width: min(calc(100vw - 20px), 100%);
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .store-row {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .simple-store {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 12px;
  }

  .button,
  .store-badge {
    width: 100%;
  }

  .roi-strip,
  .feature-grid,
  .plans-grid,
  .product-gallery,
  .footer-columns,
  .executive-board,
  .shot-grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .shot-ring-row {
    grid-template-columns: 1fr;
  }

  .final-cta-panel {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}
