@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap");

:root {
  --green: #1a6b3a;
  --green-dark: #0d4326;
  --green-bright: #22c55e;
  --mint: #e7f7ee;
  --dark: #06130c;
  --dark-2: #0b2014;
  --ink: #102019;
  --muted: #617166;
  --muted-light: #b7c5bd;
  --line: rgba(26, 107, 58, 0.16);
  --line-dark: rgba(255, 255, 255, 0.12);
  --surface: #ffffff;
  --soft: #f4fbf7;
  --warning: #f6bd4b;
  --shadow: 0 28px 80px rgba(5, 30, 14, 0.15);
  --shadow-strong: 0 36px 110px rgba(3, 22, 10, 0.28);
  --container: min(100% - 40px, 1720px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(34, 197, 94, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(26, 107, 58, 0.13), transparent 30rem),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 38%, #f2faf5 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 78px;
  content: "";
  background: rgba(250, 253, 251, 0.83);
  border-bottom: 1px solid rgba(26, 107, 58, 0.11);
  backdrop-filter: blur(20px);
}

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

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(26, 107, 58, 0.24);
}

.brand span {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #526258;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover {
  color: var(--green);
  background: rgba(26, 107, 58, 0.08);
  transform: translateY(-1px);
}

.site-nav .nav-login {
  color: var(--ink);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0c512c);
  box-shadow: 0 18px 44px rgba(26, 107, 58, 0.24);
}

.menu-button {
  display: none;
}

.hero,
.section,
.proof-strip,
.final-cta,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.82fr) minmax(700px, 1.18fr);
  align-items: center;
  gap: clamp(36px, 5vw, 100px);
  min-height: calc(100svh - 78px);
  padding: clamp(70px, 7vw, 132px) 0 clamp(58px, 6vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--warning), var(--green-bright));
}

.hero h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(4.3rem, 7.3vw, 8.7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 24px;
  color: #415248;
  font-size: clamp(1.08rem, 1.18vw, 1.38rem);
  font-weight: 650;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), #0b4f2a 58%, #082d19);
  box-shadow: 0 24px 54px rgba(26, 107, 58, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(11, 47, 25, 0.08);
}

.button.plan-button {
  width: 100%;
  margin-top: 18px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #10833f, #07642f);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-trust span {
  padding: 10px 13px;
  border: 1px solid rgba(26, 107, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #4e5d53;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(9, 42, 21, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  perspective: 1200px;
}

.glow {
  position: absolute;
  inset: 6% 0 0 14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.26), transparent 62%);
  filter: blur(12px);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid rgba(26, 107, 58, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(rgba(26, 107, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 58, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.9);
  background-size: 36px 36px;
  box-shadow: var(--shadow-strong);
  transform: rotateX(1deg) rotateY(-4deg);
  transform-origin: center;
}

.dashboard-top,
.card-head,
.movement-table div,
.stock-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top span,
.kpi-row span,
.card-head span,
.movement-table span,
.float-card span {
  color: #607166;
  font-size: 0.84rem;
  font-weight: 800;
}

.dashboard-top strong {
  display: block;
  margin-top: 5px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.dashboard-top b {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--green);
  background: #dff6e9;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.kpi-row article,
.chart-card,
.stock-card,
.movement-table,
.pain-card,
.resource-card,
.step-card,
.testimonial-card,
.plan-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(9, 39, 19, 0.08);
}

.kpi-row article {
  padding: 18px;
}

.kpi-row strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(1.85rem, 2vw, 2.45rem);
  letter-spacing: -0.05em;
}

.kpi-row small {
  color: var(--green);
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  gap: 16px;
  margin-top: 16px;
}

.chart-card,
.stock-card,
.movement-table {
  padding: 20px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 230px;
  padding-top: 22px;
}

.bar-chart i {
  flex: 1;
  min-width: 24px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #1a9e55, rgba(26, 158, 85, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.stock-card p {
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 107, 58, 0.12);
  font-weight: 800;
}

.stock-card p:last-child {
  border-bottom: 0;
}

.movement-table {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.movement-table div {
  min-height: 50px;
  border-bottom: 1px solid rgba(26, 107, 58, 0.12);
}

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

.movement-table div > * {
  flex: 1;
}

.movement-table div > :nth-child(2),
.movement-table div > :nth-child(3) {
  text-align: right;
}

.float-card {
  position: absolute;
  padding: 18px 20px;
  border: 1px solid rgba(26, 107, 58, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 64px rgba(5, 30, 14, 0.14);
  backdrop-filter: blur(18px);
}

.float-card strong {
  display: block;
  margin-top: 6px;
}

.float-alert {
  top: 76px;
  right: -6px;
}

.float-money {
  bottom: 100px;
  left: -16px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(26, 107, 58, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.proof-strip article {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f5fcf8, #ffffff);
}

.proof-strip strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: clamp(72px, 7vw, 126px) 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 58px);
}

.section-heading h2,
.final-cta h2 {
  margin-top: 14px;
  font-size: clamp(2.75rem, 5vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-heading p,
.final-cta p {
  max-width: 840px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 650;
  line-height: 1.65;
}

.pain-grid,
.resources-grid,
.steps-grid,
.audience-grid,
.testimonial-grid,
.plans-grid {
  display: grid;
  gap: 18px;
}

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

.pain-card {
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f4fbf7);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pain-card:hover,
.resource-card:hover,
.step-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(9, 39, 19, 0.13);
}

.pain-card b,
.resource-card h3,
.step-card h3 {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.pain-card p,
.resource-card p,
.step-card p,
.testimonial-card p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.split-card {
  min-height: 490px;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.split-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.split-card h2 {
  font-size: clamp(2.1rem, 3.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.split-card ul {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: #4f6056;
  font-weight: 850;
}

.split-card li::before,
.plan-card li::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #fff;
  background: var(--green);
  font-size: 0.78rem;
}

.split-card.before {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 18, 10, 0.9), rgba(13, 67, 38, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(246, 189, 75, 0.2), transparent 24rem);
}

.split-card.before span,
.split-card.before li,
.split-card.before p {
  color: #d7e7dd;
}

.split-card.before li::before {
  content: "×";
  background: rgba(246, 189, 75, 0.25);
  color: #ffcf71;
}

.split-card.after {
  background: linear-gradient(135deg, #effbf4, #ffffff);
}

.resources-grid {
  grid-template-columns: repeat(3, 1fr);
}

.resource-card {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.resource-card i {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: var(--mint);
  font-style: normal;
  font-weight: 900;
}

.how-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1720px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 197, 94, 0.24), transparent 34rem),
    linear-gradient(135deg, var(--dark), #092416 60%, #041008);
}

.how-section .section-heading p,
.how-section .eyebrow {
  color: #9fe8bc;
}

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

.step-card {
  min-height: 240px;
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
}

.step-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  color: #062113;
  background: #9ff2bd;
  font-weight: 900;
}

.step-card p {
  color: #bed2c5;
}

.audience-grid {
  grid-template-columns: repeat(6, 1fr);
}

.audience-grid span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(9, 39, 19, 0.08);
  font-weight: 900;
  text-align: center;
}

.security-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: 360px;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid rgba(26, 107, 58, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 197, 94, 0.18), transparent 24rem),
    linear-gradient(135deg, #ffffff, #f1faf5);
  box-shadow: var(--shadow);
}

.security-card h2 {
  margin-top: 12px;
  font-size: clamp(2.25rem, 3.8vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.security-card p {
  color: #526258;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 650;
  line-height: 1.7;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  min-height: 220px;
  padding: 30px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.1rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--green);
}

.plans-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1720px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.26), transparent 34rem),
    linear-gradient(180deg, #05110a 0%, #082416 100%);
}

.plans-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.plans-section .section-heading p {
  margin-inline: auto;
  color: #c1d4c8;
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 760px;
  padding: clamp(28px, 2.6vw, 46px);
  color: #eefbf3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.plan-card.featured {
  border-color: rgba(34, 197, 94, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  transform: translateY(-18px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #062113;
  background: #9ff2bd;
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-kicker {
  color: #9fe8bc;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 12px;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.plan-description {
  min-height: 58px;
  margin-top: 10px;
  color: #c5d7cc;
  font-weight: 650;
  line-height: 1.55;
}

.price {
  margin: 24px 0 20px;
  color: #b9f8cc;
  font-size: clamp(2.6rem, 3vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price small {
  color: #d5e7da;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #e6f2ea;
  font-weight: 800;
}

.plan-card li {
  display: flex;
  align-items: center;
}

.trial-box {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.trial-box strong {
  font-size: 1.25rem;
  color: #fff;
}

.trial-box span {
  color: #c2d4c8;
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(30px, 5vw, 80px);
}

.faq-section .section-heading {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  content: "+";
  color: var(--green);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

.final-cta {
  padding: clamp(64px, 8vw, 120px);
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.28), transparent 28rem),
    linear-gradient(135deg, var(--dark), var(--green-dark));
  box-shadow: var(--shadow-strong);
}

.final-cta p {
  color: #c9ddd0;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0 58px;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #526258;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--green);
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 197, 94, 0.14), transparent 28rem),
    linear-gradient(180deg, #f7fbf8, #ffffff);
}

.legal-wrap {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: clamp(38px, 7vw, 86px) 0;
}

.legal-card {
  margin-top: 26px;
  padding: clamp(30px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

.legal-card p {
  max-width: 820px;
  margin-top: 14px;
  color: #526258;
  font-weight: 650;
  line-height: 1.7;
}

.legal-card strong {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .pain-card,
  .resource-card,
  .step-card,
  .testimonial-card,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-copy {
    max-width: 1000px;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-shell {
    transform: none;
  }

  .pain-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 28px, 1720px);
  }

  .menu-button {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(9, 39, 19, 0.08);
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--green);
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

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

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

  .hero h1 {
    font-size: clamp(3.2rem, 13vw, 5.8rem);
  }

  .kpi-row,
  .dashboard-grid,
  .resources-grid,
  .testimonial-grid,
  .plans-grid,
  .faq-section,
  .security-card,
  .before-after {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .plan-card.featured {
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1720px);
  }

  .site-header::before {
    height: 72px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    gap: 34px;
    padding-bottom: 54px;
  }

  .hero-copy p,
  .section-heading p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .bar-chart {
    height: 160px;
    gap: 8px;
  }

  .float-card {
    position: static;
    margin-top: 12px;
  }

  .proof-strip,
  .pain-grid,
  .steps-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    padding: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .split-card,
  .final-cta {
    border-radius: 26px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
