/* Fazall Marketing — design system alinhado ao app */
:root {
  --bg: #0a0e13;
  --bg-elevated: #0f1419;
  --surface: #1a2332;
  --surface2: #243044;
  --surface3: #2a3850;
  --text: #e8edf4;
  --text-soft: #c5d0de;
  --muted: #8b9cb3;
  --accent: #3d9a5c;
  --accent-hover: #4db36e;
  --accent-soft: rgba(61, 154, 92, 0.14);
  --accent-border: rgba(61, 154, 92, 0.35);
  --danger: #e05c5c;
  --border: #2d3a4f;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.28);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 19, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 14, 19, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(61, 154, 92, 0.35);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 1.05rem;
}

.nav-mobile a:hover {
  background: var(--surface);
  color: var(--text);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  justify-content: center;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.8rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(61, 154, 92, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(61, 154, 92, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding-inline: 0.85rem;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 60% at 70% 20%, rgba(61, 154, 92, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 40%, rgba(74, 144, 217, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-hover), #8fd4a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta strong {
  color: var(--text-soft);
  font-weight: 600;
}

/* Product mockup */
.hero-visual {
  position: relative;
}

.mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dot:nth-child(1) { background: #e05c5c; }
.mockup-dot:nth-child(2) { background: #e8b86d; }
.mockup-dot:nth-child(3) { background: #3d9a5c; }

.mockup-title {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.mockup-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 340px;
}

.mockup-side {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.mockup-side-item {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--surface2);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.7rem;
}

.mockup-side-item.active {
  background: var(--accent-soft);
  color: var(--accent-hover);
  outline: 1px solid var(--accent-border);
}

.mockup-map {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15, 20, 25, 0.2), rgba(15, 20, 25, 0.55)),
    radial-gradient(circle at 30% 40%, #2a4a35 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, #243844 0%, transparent 40%),
    linear-gradient(135deg, #1a2a22, #152028 50%, #1a2332);
  overflow: hidden;
}

.paddock {
  position: absolute;
  border: 1.5px solid rgba(143, 212, 168, 0.55);
  background: rgba(61, 154, 92, 0.12);
  border-radius: 8px;
}

.paddock-1 { top: 12%; left: 10%; width: 42%; height: 38%; }
.paddock-2 { top: 18%; right: 8%; width: 34%; height: 32%; border-color: rgba(138, 180, 240, 0.5); background: rgba(74, 144, 217, 0.1); }
.paddock-3 { bottom: 14%; left: 18%; width: 50%; height: 30%; border-color: rgba(232, 184, 109, 0.45); background: rgba(232, 184, 109, 0.08); }

.paddock-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #8fd4a8;
  background: rgba(15, 20, 25, 0.75);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.paddock-2 .paddock-label { color: #8ab4f0; }
.paddock-3 .paddock-label { color: #e8b86d; }

.cattle-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4a90d9;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.cattle-dot.f { background: #d94a8a; }

.mockup-float {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(26, 35, 50, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  min-width: 150px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.mockup-float .label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.mockup-float .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-hover);
}

.mockup-float .sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ——— Sections common ——— */
section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* ——— Logo strip / trust ——— */
.trust {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ——— Feature blocks (AgriWebb-style alternating) ——— */
.features-alt {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--accent-hover);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.feature-copy h3 {
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.feature-copy p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(61, 154, 92, 0.15);
}

.feature-media {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(61, 154, 92, 0.1), transparent 60%);
  pointer-events: none;
}

/* Print real do produto */
.feature-media--shot {
  padding: 0;
  min-height: 0;
  background: var(--bg-elevated);
}

.feature-media--shot::before {
  display: none;
}

.feature-shot {
  margin: 0;
  position: relative;
  line-height: 0;
}

.feature-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top left;
}

/* Print menor (ex.: painel lateral de lotação) — sem moldura */
.feature-media--shot-sm {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* colado no lado do texto */
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.feature-media--shot-sm .feature-shot {
  width: 33.333%;
  max-width: 220px;
  min-width: 140px;
}

.feature-media--shot-sm .feature-shot img {
  width: 100%;
  border-radius: 10px;
  box-shadow: none;
  object-fit: contain;
}

/* Aproxima a imagem pequena do texto */
.feature-row:has(.feature-media--shot-sm) {
  gap: 1.75rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.media-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.media-card + .media-card {
  margin-top: 0.75rem;
}

.media-card .k {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.media-card .v {
  font-size: 1.25rem;
  font-weight: 700;
}

.media-card .tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.media-rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.media-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
}

.media-row .id {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.media-row .meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-ok {
  background: rgba(61, 154, 92, 0.2);
  color: #8fd4a8;
}

.badge-soon {
  background: rgba(232, 184, 109, 0.15);
  color: #e8b86d;
}

.badge-info {
  background: rgba(74, 144, 217, 0.2);
  color: #8ab4f0;
}

/* ——— Grid features ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s var(--ease);
}

.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 0.85rem 0 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface2);
  display: grid;
  place-items: center;
  color: var(--accent-hover);
}

.feature-card .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* ——— Platforms ——— */
.platforms {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.platform-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.platform-card .emoji {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.platform-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.platform-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.platform-card .platform-cta {
  margin-top: auto;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.65rem 0.9rem;
}

.platform-note {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.55;
}

.platform-note a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-list code,
.feature-card code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  background: var(--surface2);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: var(--text-soft);
}

/* ——— Why / pillars ——— */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
}

.pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— CTA band ——— */
.cta-band {
  padding: 5rem 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(61, 154, 92, 0.25), transparent 60%),
    var(--surface);
  border: 1px solid var(--accent-border);
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.cta-box .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

/* ——— Pricing (na landing) ——— */
.pricing-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 0.5rem 0 1.5rem;
  align-items: stretch;
  max-width: 820px;
  margin-inline: auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm);
  background: linear-gradient(180deg, rgba(61, 154, 92, 0.08), var(--surface) 40%);
}

.price-card .popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.price-card .desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  min-height: 2.6rem;
}

.price-card .amount {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.price-card .amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card .period {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Calculadora — plano Padrão */
.price-calc {
  margin: -0.35rem 0 1.35rem;
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Pill deslizante */
.calc-toggle-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: linear-gradient(180deg, #4db36e 0%, #3d9a5c 100%);
  box-shadow:
    0 2px 8px rgba(61, 154, 92, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.calc-toggle[data-period="year"] .calc-toggle-thumb {
  transform: translateX(100%);
}

.calc-period {
  position: relative;
  z-index: 1;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  transition: color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.calc-period:hover {
  color: var(--text-soft);
}

.calc-period.is-active {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.calc-period:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 2px;
}

.calc-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.calc-input-row {
  display: flex;
}

.calc-input {
  width: 100%;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.15s ease;
  -moz-appearance: textfield;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input:focus {
  border-color: var(--accent);
}

.calc-result {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-result-value {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-hover);
  line-height: 1.2;
}

.calc-result-unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.15rem;
}

.calc-result-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.price-card li svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 4rem;
  max-width: 40rem;
  margin-inline: auto;
}

.pricing-note a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 16rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--accent-hover);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media {
    order: unset;
  }

  .feature-grid,
  .pillars,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 560px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-side {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: center;
  }
}
