:root {
  --bg: #f7fff9;
  --bg-alt: #ebfff1;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(22, 156, 94, 0.14);
  --text: #102116;
  --muted: #5d7464;
  --primary: #40e889;
  --secondary: #169c5e;
  --success: #169c5e;
  --danger: #ff96b6;
  --shadow: 0 20px 50px rgba(28, 64, 42, 0.12);
  --glow: 0 0 24px rgba(64, 232, 137, 0.22);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --nav-height: 82px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top center, rgba(64, 232, 137, 0.16), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(64, 232, 137, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fff9 45%, #effbf3 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.46;
  animation: floatOrb 14s ease-in-out infinite;
}

.orb-one {
  top: 6%;
  left: -4%;
  width: 320px;
  height: 320px;
  background: rgba(64, 232, 137, 0.14);
}

.orb-two {
  top: 24%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: rgba(22, 156, 94, 0.12);
  animation-delay: -5s;
}

.orb-three {
  bottom: 8%;
  left: 28%;
  width: 260px;
  height: 260px;
  background: rgba(64, 232, 137, 0.1);
  animation-delay: -8s;
}

.promo-bar {
  border-bottom: 1px solid rgba(22, 156, 94, 0.08);
  background: linear-gradient(90deg, rgba(64, 232, 137, 0.12), rgba(64, 232, 137, 0.06));
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 46px;
  font-size: 0.95rem;
}

.promo-inner p {
  margin: 0;
  color: var(--text);
}

.promo-inner a {
  color: var(--primary);
  font-weight: 700;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(22, 156, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 156, 94, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(22, 156, 94, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 30%, rgba(22, 156, 94, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(22, 156, 94, 0.4) 0 1px, transparent 1px);
  background-size: 180px 180px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(22, 156, 94, 0.08);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  filter: drop-shadow(0 0 14px rgba(64, 232, 137, 0.24));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  text-shadow: 0 0 16px rgba(64, 232, 137, 0.3);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
}

.glass {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 255, 245, 0.92)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 156, 94, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.spotlight-card {
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(260px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(64, 232, 137, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: 74px;
}

.hero-grid,
.tech-grid,
.contact-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.legal-card h1,
.contact-hero h1 {
  margin: 0;
  line-height: 1.03;
  font-size: clamp(2.5rem, 5.6vw, 5.1rem);
}

.hero-copy h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(1.1rem, 2.3vw, 1.65rem);
  color: var(--primary);
  font-weight: 600;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(64, 232, 137, 0.18);
  border-radius: 999px;
  background: rgba(64, 232, 137, 0.1);
  color: var(--primary);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.legal-card p,
.legal-card li,
.contact-list li,
.mini-info-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.88rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #169c5e, #40e889 100%);
  box-shadow: 0 0 32px rgba(64, 232, 137, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(64, 232, 137, 0.48);
}

.btn-secondary {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(22, 156, 94, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(64, 232, 137, 0.4);
  box-shadow: var(--glow);
}

.btn-sm {
  min-height: 40px;
  padding-inline: 1rem;
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row span {
  position: relative;
  padding-left: 1rem;
}

.trust-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--success);
  box-shadow: 0 0 12px rgba(97, 243, 177, 0.65);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-chips span {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(64, 232, 137, 0.14);
  border-radius: 999px;
  background: rgba(64, 232, 137, 0.08);
  color: var(--secondary);
  font-size: 0.88rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.metric-card,
.hero-panel,
.floating-signal,
.timeline,
.dashboard,
.contact-card,
.legal-card,
.cta-panel,
.info-card,
.contact-hero-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.metric-card strong,
.stats-strip strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.metric-card span,
.stats-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.hero-panel {
  position: relative;
  z-index: 2;
}

.floating-signal {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: 3;
  width: min(240px, 55%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 255, 243, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.ring-meter {
  width: 120px;
  height: 120px;
  margin: 0.6rem 0 0.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 56%, transparent 57%),
    conic-gradient(var(--primary) 0 78%, var(--secondary) 78% 98%, rgba(22, 156, 94, 0.08) 98% 100%);
  box-shadow: inset 0 0 20px rgba(22, 156, 94, 0.06), 0 0 24px rgba(64, 232, 137, 0.14);
}

.ring-meter span {
  font-size: 1.45rem;
  font-weight: 800;
}

.mini-copy {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.hero-panel-header,
.signal-card,
.feed-item,
.dashboard-top,
.dashboard-stats,
.progress-meta,
.footer-inner,
.stats-strip,
.cta-panel,
.cookie-banner {
  display: flex;
  align-items: center;
}

.hero-panel-header {
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.status-dot,
.feed-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(97, 243, 177, 0.65);
}

.signal-card {
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-label,
.dashboard-label,
.plan-name,
.stat-box span,
.form-status,
.widget-trend {
  color: var(--muted);
}

.signal-value {
  margin: 0.2rem 0 0;
  font-size: 2rem;
  font-weight: 800;
}

.signal-pill,
.shield-badge {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 156, 94, 0.14);
  background: rgba(64, 232, 137, 0.1);
  color: var(--secondary);
  font-weight: 700;
}

.threat-feed,
.timeline,
.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.feed-item,
.mini-info-card,
.side-widget,
.timeline-step {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(248, 255, 250, 0.95);
  border: 1px solid rgba(22, 156, 94, 0.08);
}

.feed-item {
  gap: 0.9rem;
  align-items: flex-start;
}

.feed-item p,
.timeline-step p,
.price-card li,
.footer p,
.side-widget span {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.stats-strip-section {
  padding-top: 0;
}

.stats-strip {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
}

.stats-strip > div {
  flex: 1 1 180px;
}

.coverage-grid,
.confidence-grid,
.faq-grid {
  display: grid;
  gap: 1.25rem;
}

.coverage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coverage-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.faq-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.coverage-kicker {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-card h3,
.confidence-card h2 {
  margin: 0 0 0.8rem;
}

.coverage-card p,
.faq-card p,
.confidence-card p {
  margin: 0;
  color: var(--muted);
}

.faq-card h3 {
  margin: 0 0 0.75rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.cards-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.price-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.price-card:hover,
.contact-card:hover,
.dashboard:hover,
.info-card:hover,
.cta-panel:hover,
.contact-hero-panel:hover,
.coverage-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(64, 232, 137, 0.28);
  box-shadow: 0 0 35px rgba(64, 232, 137, 0.12), var(--shadow);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(64, 232, 137, 0.85), transparent 60%),
    linear-gradient(135deg, rgba(22, 156, 94, 0.85), rgba(64, 232, 137, 0.22));
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.09), 0 0 18px rgba(64, 232, 137, 0.22);
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.timeline-step span:first-child {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(64, 232, 137, 0.08);
  color: var(--primary);
  font-weight: 800;
}

.dashboard {
  overflow: hidden;
}

.dashboard-top,
.dashboard-stats,
.progress-meta,
.cta-panel {
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-status {
  margin: 0.25rem 0 0;
  font-size: 2.2rem;
  color: var(--success);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.95fr;
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.dashboard-stats {
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 180px;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(248, 255, 250, 0.96);
  border: 1px solid rgba(22, 156, 94, 0.08);
}

.stat-box strong,
.side-widget strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.dashboard-side {
  display: grid;
  gap: 1rem;
}

.widget-trend.success {
  color: var(--success);
}

.scan-panel {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(64, 232, 137, 0.18);
  background: linear-gradient(180deg, rgba(64, 232, 137, 0.08), rgba(255, 255, 255, 0.9));
}

.scan-copy h4 {
  margin: 0.35rem 0 1rem;
}

.progress-wrapper {
  width: 100%;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(22, 156, 94, 0.08);
  border-radius: 999px;
  background: rgba(22, 156, 94, 0.06);
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 18px rgba(64, 232, 137, 0.35);
  transition: width 0.25s linear;
}

.progress-meta {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.price-card h3 {
  margin: 0.4rem 0 1rem;
  font-size: 2.35rem;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul,
.legal-card ul,
.contact-list {
  padding-left: 1.2rem;
}

.price-card li + li,
.legal-card li + li,
.contact-list li + li {
  margin-top: 0.55rem;
}

.featured {
  position: relative;
  border-color: rgba(64, 232, 137, 0.32);
  box-shadow: 0 0 42px rgba(64, 232, 137, 0.14), var(--shadow);
}

.featured::after {
  content: "Most Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(64, 232, 137, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-panel {
  padding: 2rem;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-copy p {
  max-width: 680px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.confidence-grid {
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
}

.confidence-list {
  display: grid;
  gap: 1rem;
}

.contact-page .section,
.legal-page .section {
  padding-top: 120px;
}

.contact-hero {
  padding-bottom: 48px;
}

.contact-hero-panel {
  align-self: stretch;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-info-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 156, 94, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #7f8db1;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(64, 232, 137, 0.5);
  box-shadow: 0 0 0 4px rgba(64, 232, 137, 0.1);
}

.form-row.invalid input,
.form-row.invalid textarea,
.form-row.invalid select {
  border-color: rgba(255, 150, 182, 0.72);
}

.error-message {
  min-height: 1rem;
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(22, 156, 94, 0.08);
}

.footer-inner {
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-brand .brand-logo {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 70;
  width: min(calc(100% - 2rem), 900px);
  transform: translateX(-50%);
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
}

.cookie-banner p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.8rem;
}

.hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -24px, 0) scale(1.08);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .tech-grid,
  .contact-grid,
  .contact-hero-grid,
  .dashboard-grid,
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .pricing-grid,
  .coverage-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .floating-signal {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-visual {
    padding: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 74px;
  }

  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(22, 156, 94, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cards-grid,
  .pricing-grid,
  .form-grid,
  .contact-mini-grid,
  .coverage-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-hero h1,
  .cta-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .stats-strip,
  .dashboard-stats,
  .footer-inner,
  .cookie-banner,
  .progress-meta,
  .cta-panel,
  .promo-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
