/* ============================================================
   VIVIV Marketing — styles.css
   Palette: violet → magenta → amber gradient
   ============================================================ */

:root {
  --bg: #0b0a12;
  --bg-alt: #11101c;
  --surface: #181625;
  --surface-2: #1f1d30;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f3fb;
  --text-dim: #a8a4c0;
  --text-mute: #76728e;

  --violet: #7c3aed;
  --magenta: #db2777;
  --amber: #f59e0b;
  --cyan: #0ea5e9;

  --grad: linear-gradient(115deg, #7c3aed 0%, #db2777 55%, #f59e0b 110%);
  --grad-soft: linear-gradient(115deg, rgba(124, 58, 237, 0.18), rgba(219, 39, 119, 0.16));

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 18px 50px -12px rgba(124, 58, 237, 0.45);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Space Grotesk", "Manrope", sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, opacity 0.25s;
  white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 56px -10px rgba(219, 39, 119, 0.6); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 14px;
}
.eyebrow--light { color: #ffd9ec; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(11, 10, 18, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.logo__mark--sm { width: 36px; height: 36px; border-radius: 10px; }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__text { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: 0.02em; }
.logo__dot { color: var(--magenta); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 0.95rem; font-weight: 600; color: var(--text-dim); transition: color 0.2s; }
.nav__link:hover { color: var(--text); }
.nav__cta { color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(50% 50% at 18% 12%, rgba(124, 58, 237, 0.32), transparent 70%),
    radial-gradient(45% 45% at 85% 20%, rgba(219, 39, 119, 0.26), transparent 70%),
    radial-gradient(40% 40% at 70% 90%, rgba(245, 158, 11, 0.16), transparent 70%);
  filter: blur(8px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__title { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; margin-bottom: 22px; }
.hero__subtitle { font-size: 1.16rem; color: var(--text-dim); max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.9rem; color: var(--text-mute); }

/* Hero dashboard card */
.hero__card { position: relative; }
.dash {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.dash__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash__title { font-weight: 700; font-size: 0.95rem; }
.dash__live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; color: #34d399; font-weight: 600; }
.dash__live i { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); } 70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
.dash__metric { display: flex; flex-direction: column; margin-bottom: 18px; }
.dash__label { font-size: 0.82rem; color: var(--text-mute); }
.dash__value { font-family: "Space Grotesk", sans-serif; font-size: 2.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dash__chart { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-bottom: 22px; }
.dash__chart span { flex: 1; height: var(--h); background: var(--grad); border-radius: 6px 6px 0 0; opacity: 0.85; transform-origin: bottom; animation: grow 1.1s var(--ease) both; }
.dash__chart span:nth-child(2){animation-delay:.08s}.dash__chart span:nth-child(3){animation-delay:.16s}.dash__chart span:nth-child(4){animation-delay:.24s}.dash__chart span:nth-child(5){animation-delay:.32s}.dash__chart span:nth-child(6){animation-delay:.4s}.dash__chart span:nth-child(7){animation-delay:.48s}
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.dash__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash__grid div { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; }
.dash__grid b { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.dash__grid small { font-size: 0.72rem; color: var(--text-mute); }

/* ---------- Clients ---------- */
.clients { padding: 30px 0 10px; border-top: 1px solid var(--border); }
.clients__caption { text-align: center; color: var(--text-mute); font-size: 0.9rem; margin-bottom: 22px; }
.clients__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; }
.clients__row span { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--text-mute); opacity: 0.7; transition: opacity 0.25s, color 0.25s; }
.clients__row span:hover { opacity: 1; color: var(--text); }

/* ---------- Stats ---------- */
.stats { padding: 60px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 28px 16px; background: var(--grad-soft); border: 1px solid var(--border); border-radius: var(--radius); }
.stat__num { font-family: "Space Grotesk", sans-serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; }
.stat__suffix { font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--magenta); }
.stat__label { color: var(--text-dim); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
.section__lead { color: var(--text-dim); font-size: 1.08rem; margin-top: 16px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.7rem; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 18px; }
.card__title { font-size: 1.25rem; margin-bottom: 10px; }
.card__text { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 16px; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.card__list li { position: relative; padding-left: 24px; color: var(--text-dim); font-size: 0.9rem; }
.card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--magenta); font-weight: 700; }
.services__note { text-align: center; color: var(--text-mute); font-size: 0.78rem; margin-top: 28px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.3s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step__num { font-family: "Space Grotesk", sans-serif; font-size: 2.4rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step__title { font-size: 1.2rem; margin: 8px 0 8px; }
.step__text { color: var(--text-dim); font-size: 0.93rem; }

/* ---------- Cases ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case { padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case__tag { display: inline-block; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); background: rgba(14, 165, 233, 0.12); border: 1px solid rgba(14, 165, 233, 0.25); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.case__title { font-size: 1.2rem; margin-bottom: 8px; }
.case__text { color: var(--text-dim); font-size: 0.93rem; margin-bottom: 20px; }
.case__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border-top: 1px solid var(--border); padding-top: 18px; }
.case__metrics b { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case__metrics small { font-size: 0.72rem; color: var(--text-mute); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 34px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.3s var(--ease); }
.plan:hover { transform: translateY(-6px); }
.plan--featured { border-color: transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; box-shadow: var(--shadow-glow); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 6px 16px; border-radius: 999px; }
.plan__name { font-size: 1.4rem; }
.plan__desc { color: var(--text-dim); font-size: 0.92rem; margin: 8px 0 20px; min-height: 42px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.plan__amount { font-family: "Space Grotesk", sans-serif; font-size: 2.1rem; font-weight: 700; }
.plan__period { color: var(--text-mute); font-size: 0.95rem; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan__features li { position: relative; padding-left: 26px; color: var(--text-dim); font-size: 0.93rem; }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--magenta); font-weight: 700; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review { padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.3s var(--ease); }
.review:hover { transform: translateY(-4px); }
.review__stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; }
.review blockquote { font-size: 1.05rem; color: var(--text); margin-bottom: 20px; }
.review figcaption { display: flex; align-items: center; gap: 14px; }
.review__avatar, .member__avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; font-family: "Space Grotesk", sans-serif; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--c1), var(--c2)); flex-shrink: 0; }
.review figcaption b { display: block; font-size: 0.98rem; }
.review figcaption small { color: var(--text-mute); font-size: 0.84rem; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; padding: 30px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.3s var(--ease); }
.member:hover { transform: translateY(-6px); }
.member__avatar { width: 76px; height: 76px; font-size: 1.5rem; margin: 0 auto 16px; }
.member__name { font-size: 1.12rem; }
.member__role { color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 24px; transition: border-color 0.25s; }
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 1.05rem; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--magenta); transition: transform 0.3s; flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--text-dim); padding: 0 0 20px; font-size: 0.97rem; }

/* ---------- Contact ---------- */
.section--cta { background: var(--bg-alt); position: relative; overflow: hidden; }
.section--cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 20% 30%, rgba(124, 58, 237, 0.22), transparent 70%), radial-gradient(50% 60% at 90% 80%, rgba(219, 39, 119, 0.18), transparent 70%); z-index: 0; }
.contact { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.contact__lead { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 28px; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); }
.contact__list a:hover { color: var(--text); }
.contact__list span { font-size: 1.2rem; }

/* ---------- Form ---------- */
.form { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form__field span { font-size: 0.85rem; font-weight: 600; color: var(--text-dim); }
.form__field input, .form__field select, .form__field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: var(--text-mute); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25); }
.form__field textarea { resize: vertical; }
.form__field select { cursor: pointer; }
.form__field select option { background: var(--surface); }
.form__check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-mute); margin-bottom: 20px; }
.form__check input { margin-top: 3px; accent-color: var(--violet); width: 16px; height: 16px; }
.form__check a { color: var(--text-dim); text-decoration: underline; }
.form__status { text-align: center; margin-top: 14px; font-size: 0.92rem; font-weight: 600; min-height: 20px; }
.form__status.ok { color: #34d399; }
.form__status.err { color: #f87171; }
.form .invalid { border-color: #f87171 !important; }

/* ---------- Footer ---------- */
.footer { background: #08070e; padding: 64px 0 28px; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.logo--footer { margin-bottom: 16px; }
.footer__tagline { color: var(--text-mute); font-size: 0.92rem; margin-bottom: 18px; max-width: 280px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); font-size: 0.9rem; font-weight: 700; color: var(--text-dim); transition: all 0.25s; }
.footer__socials a svg { flex-shrink: 0; }
.footer__socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
.footer__col h4 { font-size: 1rem; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: var(--text-mute); font-size: 0.92rem; margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-mute); font-size: 0.84rem; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--text); }

/* ---------- To top ---------- */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-glow); opacity: 0; visibility: hidden; transform: translateY(16px); transition: all 0.3s var(--ease); z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 420px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .cards, .steps, .cases, .pricing, .team { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(11, 10, 18, 0.97);
    backdrop-filter: blur(16px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    align-items: stretch;
    text-align: center;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 12px; }
  .nav__cta { margin-top: 8px; }
  .burger { display: flex; }
  .hero { padding: 120px 0 70px; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

@media (max-width: 560px) {
  .stats__grid, .cards, .steps, .cases, .pricing, .team, .footer__inner { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
