/* ============================================================
   Grovega Homepage — Stylesheet
   Design tokens + components. No framework dependencies.
   Fonts: Outfit (display) + Inter (body) via Google Fonts.
   ============================================================ */

:root {
  /* Core palette */
  --ink:    #101A2E; /* all text — friendly deep navy, never pure black */
  --coral:  #FF6A3D; /* primary accent / signature */
  --coral-dark: #E85A2E; /* primary hover */
  --grape:  #FF8259; /* secondary */
  --sun:    #FF8259; /* tertiary / highlights */
  --teal:   #FF6A3D; /* success / data */

  /* Section tints */
  --cream:  #FBF9F5;
  --mint:   #FFEFE9;
  --sky:    #F6F4F0;

  /* Support */
  --muted:  #5B6779; /* secondary text */
  --line:   #E7E2DA; /* hairline borders */
  --white:  #ffffff;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-pill: 999px;

  /* Elevation */
  --sh-rest:  0 10px 30px -20px rgba(22,33,58,0.25);
  --sh-lift:  0 24px 44px -24px rgba(22,33,58,0.4);
  --sh-float: 0 40px 80px -30px rgba(22,33,58,0.35);
  --sh-card:  0 18px 36px -12px rgba(22,33,58,0.3);

  /* Type */
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.025em; }
p { margin: 0; }
a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-dark); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-weight: 600; font-size: 17px;
  padding: 16px 30px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--sm { font-size: 15px; padding: 11px 22px; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 12px 26px -8px rgba(255,106,61,0.6); }
.btn--primary.btn--sm { box-shadow: 0 8px 20px -6px rgba(255,106,61,0.6); }
.btn--primary:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: #E6E0D6; }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn--play span { width: 30px; height: 30px; border-radius: 50%; background: var(--sky); display: inline-flex; align-items: center; justify-content: center; color: var(--grape); }

/* ---------- Eyebrow chip ---------- */
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--r-pill);
}
.eyebrow--grape { color: var(--grape); background: #fff; }
.eyebrow--teal  { color: var(--teal);  background: #fff; }
.eyebrow--sun   { color: var(--sun); letter-spacing: 0.08em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.brand__mark { width: 28px; height: 28px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 32px; font-size: 15px; font-weight: 500; }
.nav__links a { color: var(--muted); }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__login { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; border: none; background: transparent; border-radius: var(--r-sm); padding: 0;
}
.nav__toggle:hover { background: var(--cream); }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #FBF9F5 0%, #ffffff 78%); padding: 72px 0 88px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.pill-note {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--line); padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--muted); box-shadow: 0 4px 12px -6px rgba(22,33,58,0.15);
}
.pill-note__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero h1 { font-weight: 800; font-size: 60px; line-height: 1.04; letter-spacing: -0.03em; margin-top: 22px; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero__sub { font-size: 19px; color: var(--muted); margin-top: 22px; max-width: 520px; }
.hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.reassure { display: flex; align-items: center; gap: 20px; margin-top: 26px; font-size: 14px; color: var(--muted); font-weight: 500; flex-wrap: wrap; }
.reassure span { display: inline-flex; align-items: center; gap: 7px; }
.check { color: var(--teal); font-weight: 700; }

/* Hero product visual */
.hero__visual { position: relative; }
.mock {
  background: #fff; border-radius: 24px; box-shadow: var(--sh-float);
  border: 1px solid var(--line); overflow: hidden;
}
.mock__bar { height: 44px; background: #FBF7F0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 16px; }
.mock__dot { width: 11px; height: 11px; border-radius: 50%; }
.mock__title { margin-left: 12px; font-size: 12px; color: var(--muted); font-weight: 600; }
.mock__body { padding: 22px; }
.mock__stats { display: flex; gap: 12px; margin-bottom: 18px; }
.mock__stat { flex: 1; border-radius: 14px; padding: 14px; }
.mock__stat span { font-size: 12px; color: var(--muted); font-weight: 600; display: block; }
.mock__stat strong { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.mock__chart { background: #FCFAF6; border: 1px solid var(--line); border-radius: 14px; padding: 16px 16px 12px; height: 172px; display: flex; align-items: flex-end; gap: 10px; }
.mock__chart i { flex: 1; border-radius: 8px 8px 3px 3px; transform-origin: bottom; animation: barGrow .9s ease both; }

/* Floating cards */
.floaty {
  position: absolute; background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--sh-card); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 11px;
}
.floaty--a { top: -22px; right: -18px; animation: floatA 5s ease-in-out infinite; }
.floaty--b { bottom: 44px; left: -30px; animation: floatB 6s ease-in-out infinite; }
.floaty--c { bottom: -20px; right: 36px; background: var(--grape); color: #fff; border: none; box-shadow: 0 18px 36px -12px rgba(124,92,255,0.5); animation: floatC 4.6s ease-in-out infinite; }
.floaty__icon { width: 34px; height: 34px; border-radius: 11px; background: var(--mint); display: inline-flex; align-items: center; justify-content: center; color: var(--teal); font-weight: 800; }
.floaty__k { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.floaty__v { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.floaty__pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,106,61,0.16); }

/* ---------- Logo strip ---------- */
.logostrip { padding: 40px 0; border-bottom: 1px solid #F5F1EA; text-align: center; }
.logostrip__label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.logostrip__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 44px; margin-top: 24px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #B4AEA3; }

/* ---------- Section shell ---------- */
.section { padding: 88px 0; }
.section--sky { background: var(--sky); }
.section--mint { background: var(--mint); }
.section--cream { background: var(--cream); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto; }
.section__head h2 { font-weight: 800; font-size: 42px; }
.section__head p { font-size: 18px; color: var(--muted); margin-top: 16px; }

/* ---------- Segmented tabs ---------- */
.tabs { display: flex; justify-content: center; margin: 34px 0 40px; }
.tabs__track { display: inline-flex; background: var(--cream); padding: 6px; border-radius: var(--r-pill); gap: 4px; }
.tab { border: none; background: transparent; color: var(--muted); font-weight: 600; font-size: 15px; padding: 11px 22px; border-radius: var(--r-pill); transition: background .2s, color .2s, box-shadow .2s; }
.tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 6px 16px -8px rgba(22,33,58,0.35); }

/* ---------- Tool cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
/* Industry template (single-solution) */
.industry-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.industry-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: 0 10px 30px -20px rgba(22,33,58,0.25); transition: transform .2s, box-shadow .2s; color: var(--ink); }
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -24px rgba(22,33,58,0.4); }
@media (max-width: 900px) {
  .industry-grid-3, .industry-grid-4 { grid-template-columns: 1fr; }
  .industry-hero__grid { grid-template-columns: 1fr !important; }
}
/* Legal docs: two-column (sticky TOC + content) collapses on small screens */
@media (max-width: 820px) {
  .legal-doc__grid { grid-template-columns: 1fr !important; }
  .legal-doc__toc { position: static !important; }
}
.indcard { display: block; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: 0 10px 30px -22px rgba(22,33,58,0.25); transition: transform .2s, box-shadow .2s; }
.indcard:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -24px rgba(22,33,58,0.4); }
.indcard__icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.indcard__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-top: 14px; color: var(--ink); }
.indcard__desc { font-size: 13px; color: var(--muted); line-height: 1.45; margin-top: 5px; }
.toolcard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--sh-rest); transition: transform .2s, box-shadow .2s; }
.toolcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); }
.toolcard__soon { position: absolute; top: 18px; right: 18px; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--grape); background: var(--sky); padding: 5px 11px; border-radius: var(--r-pill); }
.toolcard__icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.toolcard h3 { font-weight: 700; font-size: 20px; margin: 18px 0 8px; }
.toolcard p { font-size: 15px; color: var(--muted); }

/* ---------- Feature block ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature h2 { font-weight: 800; font-size: 38px; margin-top: 18px; line-height: 1.1; }
.feature p { font-size: 17px; color: var(--muted); margin-top: 16px; }
.statrow { display: flex; gap: 14px; margin-top: 26px; }
.statbadge { background: #fff; border-radius: 14px; padding: 14px 18px; box-shadow: 0 8px 20px -14px rgba(22,33,58,0.3); }
.statbadge b { font-family: var(--font-display); font-weight: 800; font-size: 26px; display: block; }
.statbadge span { font-size: 13px; color: var(--muted); font-weight: 600; }
.feature__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-weight: 600; font-size: 16px; }
.panel { background: #fff; border-radius: 22px; padding: 22px; box-shadow: 0 34px 70px -34px rgba(22,33,58,0.4); border: 1px solid var(--line); }
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.tag-ok { font-size: 12px; color: var(--teal); font-weight: 700; background: var(--mint); padding: 4px 10px; border-radius: var(--r-pill); }
.rowlist { display: flex; flex-direction: column; gap: 10px; }
.rowlist__item { display: flex; align-items: center; justify-content: space-between; border-radius: 12px; padding: 12px 14px; }
.rowlist__item b { font-family: var(--font-display); font-weight: 700; }
.lead-item { display: flex; align-items: center; gap: 12px; border-radius: 12px; padding: 12px 14px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; flex: none; }
.lead-item__meta { flex: 1; }
.lead-item__meta b { display: block; font-weight: 600; font-size: 14px; }
.lead-item__meta span { font-size: 12px; color: var(--muted); }
.lead-item__flag { font-size: 12px; font-weight: 700; }

/* ---------- Insight band (dark) ---------- */
.insight { padding: 96px 0; background: var(--ink); color: #fff; }
.insight__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.insight h2 { color: #fff; font-weight: 800; font-size: 44px; margin: 18px auto 0; max-width: 760px; line-height: 1.1; }
.insight h2 em { font-style: normal; color: var(--coral); }
.insight__sub { font-size: 18px; color: #A9B4C9; margin: 18px auto 0; max-width: 600px; }
.insight__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; text-align: left; }
.insight__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 26px; }
.insight__card b { font-family: var(--font-display); font-weight: 800; font-size: 40px; }
.insight__card span { font-size: 15px; color: #C4CDDD; margin-top: 6px; display: block; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--cream); border-radius: var(--r-md); padding: 26px; }
.step__n { width: 44px; height: 44px; border-radius: 13px; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.step h3 { font-weight: 700; font-size: 19px; margin: 16px 0 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border-radius: var(--r-md); padding: 28px; box-shadow: 0 12px 34px -22px rgba(22,33,58,0.3); }
.stars { color: var(--sun); font-size: 17px; letter-spacing: 2px; }
.quote p { font-size: 16px; margin: 14px 0 20px; line-height: 1.55; }
.quote__author { display: flex; align-items: center; gap: 12px; }
.quote__author .avatar { width: 42px; height: 42px; font-family: var(--font-display); }
.quote__author b { font-weight: 700; font-size: 15px; display: block; }
.quote__author span { font-size: 13px; color: var(--muted); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px; }
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.plan__desc { font-size: 14px; color: var(--muted); margin: 6px 0 18px; }
.plan__price { display: flex; align-items: baseline; gap: 5px; }
.plan__price b { font-family: var(--font-display); font-weight: 800; font-size: 44px; }
.plan__price span { color: var(--muted); font-size: 15px; }
.plan .btn { width: 100%; justify-content: center; margin-top: 22px; padding: 13px; }
.plan__feats { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--muted); }
.plan__feats .check { margin-right: 8px; }
.plan--featured { background: var(--ink); color: #fff; position: relative; box-shadow: 0 30px 60px -28px rgba(22,33,58,0.6); transform: translateY(-8px); }
.plan--featured .plan__desc, .plan--featured .plan__price span, .plan--featured .plan__feats { color: #C4CDDD; }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); }
/* Two-tier / 4-plan pricing additions */
.plans--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; max-width: 1120px; margin: 0 auto; }
.plans[hidden], .plans--4[hidden] { display: none; }
.plans--4 .plan { padding: 26px; }
.ec-levers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin: 16px 0 8px; padding: 14px 0; border-top: 1px solid #EEE9E0; border-bottom: 1px solid #EEE9E0; }
.ec-levers div { display: flex; flex-direction: column; }
.ec-levers b { font-family: Outfit, sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); line-height: 1.1; }
.ec-levers span { font-size: 12px; color: var(--muted); margin-top: 2px; }
.plan--featured .ec-levers { border-top-color: rgba(255,255,255,0.14); border-bottom-color: rgba(255,255,255,0.14); }
.plan--featured .ec-levers b { color: #fff; }
.plan--featured .ec-levers span { color: #C4CDDD; }
.plan__price-note { font-size: 12px; color: var(--muted); margin-top: 4px; min-height: 16px; }
.plan--featured .plan__price-note { color: #C4CDDD; }
.plan__save { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--teal); background: var(--mint); padding: 4px 11px; border-radius: var(--r-pill); }
.plan__save[hidden] { display: none; }
.plan--featured .plan__save { background: rgba(255,106,61,0.18); color: #6FE9CE; }
.plan__storage, .plan__seats { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.plan--featured .plan__storage, .plan--featured .plan__seats { color: #fff; border-top-color: rgba(255,255,255,0.14); }
.plan__storage-ico, .plan__seats-ico { width: 20px; height: 20px; border-radius: 6px; background: var(--sky); color: var(--grape); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex: none; }
.plan--featured .plan__storage-ico, .plan--featured .plan__seats-ico { background: rgba(124,92,255,0.28); color: #C9BCFF; }
.pricing-geo-note { font-size: 13px; color: var(--muted); margin: 16px auto 0; }
.pricing-placeholder-note { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600; color: #8A6410; background: #FFF3D6; padding: 6px 13px; border-radius: var(--r-pill); }
@media (max-width: 1000px) { .plans--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .plans--4 { grid-template-columns: 1fr; } }
.btn--soft { background: var(--cream); color: var(--ink); }
.btn--soft:hover { border-color: var(--coral); color: var(--coral); }

/* ---------- Final CTA ---------- */
.cta-wrap { padding: 40px 0 96px; }
.cta {
  max-width: 1080px; margin: 0 auto; border-radius: var(--r-lg); padding: 64px 40px;
  text-align: center; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--coral) 0%, var(--grape) 100%);
  box-shadow: 0 40px 80px -34px rgba(124,92,255,0.6);
}
.cta__blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.11); }
.cta__blob--1 { top: -40px; right: -30px; width: 180px; height: 180px; }
.cta__blob--2 { bottom: -60px; left: -20px; width: 220px; height: 220px; }
.cta h2 { color: #fff; font-weight: 800; font-size: 44px; position: relative; }
.cta__sub { font-size: 18px; margin: 16px auto 0; max-width: 500px; opacity: 0.92; position: relative; }
.cta__btns { display: flex; gap: 14px; justify-content: center; margin-top: 30px; position: relative; flex-wrap: wrap; }
.cta .btn--white { background: #fff; color: var(--coral); font-weight: 700; }
.cta .btn--white:hover { transform: translateY(-2px); color: var(--coral-dark); }
.cta .btn--glass { background: rgba(255,255,255,0.16); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.cta .btn--glass:hover { background: rgba(255,255,255,0.26); }
.cta__fine { font-size: 14px; opacity: 0.9; margin-top: 20px; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #C4CDDD; padding: 64px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer__blurb { font-size: 14px; margin-top: 16px; max-width: 260px; }
.footer__col h4 { color: #fff; font-weight: 700; font-size: 14px; margin: 0 0 14px; font-family: var(--font-display); }
.footer__col nav { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer a { color: #C4CDDD; }
.footer a:hover { color: #fff; }
.footer__bar { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer__bar .links { display: flex; gap: 22px; }

/* ---------- Animations ---------- */
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-12px) rotate(-3deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes barGrow { from { transform: scaleY(0.15); } to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) {
  .floaty, .mock__chart i { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__inner { flex-wrap: wrap; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; flex-basis: 100%; flex-direction: column; align-items: flex-start; gap: 2px;
    padding-top: 16px;
  }
  .nav__links a { width: 100%; padding: 10px 4px; }
  .nav__actions {
    display: none; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 12px;
    padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--line);
  }
  .nav__actions .btn { justify-content: center; }
  .nav--open .nav__links, .nav--open .nav__actions { display: flex; }
  .hero__grid, .feature { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { margin-top: 24px; }
  .cards-3, .steps, .insight__grid, .plans, .footer__grid { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 44px; }
  .section__head h2, .insight h2, .cta h2 { font-size: 32px; }
  .plan--featured { transform: none; }
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 60px 0; }
}
