/* ===========================================================
   SupportRMM — Global Stylesheet
   Modern premium SaaS / Tech design system
   =========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --indigo-900: #0b1030;
  --indigo-800: #131a4a;
  --indigo-700: #1e2a6b;
  --indigo-600: #2b3aa0;
  --blue-500: #3b6bff;
  --blue-400: #5b8bff;
  --teal-400: #22d3ee;
  --teal-500: #06b6d4;
  --accent: #4f7bff;
  --accent-2: #22d3ee;

  --ink-900: #0e1424;
  --ink-700: #2a3350;
  --ink-500: #4a5578;
  --ink-400: #6b7597;
  --muted: #8a93b2;

  --bg: #f6f8ff;
  --bg-soft: #eef2ff;
  --white: #ffffff;
  --border: #e4e9f5;

  --grad-primary: linear-gradient(135deg, #3b6bff 0%, #22d3ee 100%);
  --grad-dark: linear-gradient(135deg, #0b1030 0%, #1e2a6b 60%, #2b3aa0 100%);
  --grad-soft: linear-gradient(135deg, #eef2ff 0%, #e9fbff 100%);

  --shadow-sm: 0 2px 8px rgba(16, 24, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 24, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 24, 64, 0.16);
  --shadow-glow: 0 12px 40px rgba(59, 107, 255, 0.35);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1200px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--ink-500); }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.center { text-align: center; }
.max-720 { max-width: 720px; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-500);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--teal-400); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }

.section-head { margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(59,107,255,.45); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--border); color: var(--ink-900); background: var(--white); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-500); transform: translateY(-3px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.28); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink-900); }
.brand .logo {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad-primary); display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
}
.brand .logo svg { width: 22px; height: 22px; color: #fff; }
.brand b { color: var(--blue-500); }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-weight: 500; font-size: 0.97rem; color: var(--ink-700);
  padding: 9px 15px; border-radius: 100px; transition: color .2s, background .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue-500); background: var(--bg-soft); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .phone { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 0.95rem; display: flex; align-items: center; gap: 7px; }
.nav-actions .phone svg { width: 17px; height: 17px; color: var(--blue-500); }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink-900); margin: 4px auto; border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-dark);
  padding: 96px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center; opacity: 0.18; mix-blend-mode: luminosity;
}
.hero::after {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.35), transparent 60%);
  filter: blur(20px);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 span { display: inline; }
.hero-sub { font-size: 1.18rem; color: #c3cbe8; max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; color: #aeb8de; font-size: 0.92rem; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--teal-400); }

.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.hero-badge {
  position: absolute; background: #fff; color: var(--ink-900);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; font-weight: 600;
}
.hero-badge small { display: block; color: var(--muted); font-weight: 500; font-size: 0.78rem; }
.hero-badge .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); display: grid; place-items: center; }
.hero-badge .ic svg { width: 20px; height: 20px; color: var(--blue-500); }
.hero-badge.b1 { bottom: -22px; left: -22px; }
.hero-badge.b2 { top: -18px; right: -14px; }

/* ---------- Logo strip ---------- */
.logos { padding: 40px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.logos p { text-align: center; color: var(--muted); font-size: 0.85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 22px; font-family: var(--font-head); font-weight: 600; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.logos-row span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink-400); opacity: .7; }

/* ---------- Stats ---------- */
.stats-band { background: var(--grad-dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: #fff; line-height: 1; }
.stat .num em { font-style: normal; color: var(--teal-400); }
.stat p { color: #b6c0e6; margin-top: 8px; font-size: 0.98rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cdd8f6; }
.card .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-soft); margin-bottom: 20px;
}
.card .ic svg { width: 27px; height: 27px; color: var(--blue-500); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }

/* feature card variant with image */
.feature-media {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-media:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-media img { height: 200px; width: 100%; object-fit: cover; }
.feature-media .body { padding: 26px; }
.feature-media h3 { margin-bottom: 10px; }

/* ---------- Split (alt image+text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-text { order: 2; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-text h2 { margin-bottom: 18px; }
.split-list { margin-top: 24px; display: grid; gap: 14px; }
.split-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-700); }
.split-list .chk { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-soft); display: grid; place-items: center; margin-top: 2px; }
.split-list .chk svg { width: 15px; height: 15px; color: var(--blue-500); }
.split-list b { color: var(--ink-900); }

/* ---------- Audience / solutions ---------- */
.aud-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; color: #fff; }
.aud-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.aud-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(11,16,48,.92), rgba(11,16,48,.15) 70%); }
.aud-card:hover img { transform: scale(1.07); }
.aud-card .body { position: relative; z-index: 2; padding: 28px; }
.aud-card h3 { color: #fff; margin-bottom: 8px; }
.aud-card p { color: #cdd5f0; font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.price-toggle { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 44px; font-weight: 600; color: var(--ink-500); font-family: var(--font-head); }
.switch { width: 56px; height: 30px; border-radius: 100px; background: var(--border); position: relative; transition: .3s; }
.switch::after { content:""; position:absolute; top:3px; left:3px; width:24px; height:24px; border-radius:50%; background:#fff; box-shadow: var(--shadow-sm); transition:.3s; }
.switch.on { background: var(--blue-500); }
.switch.on::after { left: 29px; }
.save-badge { background: #e6fff4; color: #0f9d64; font-size: .75rem; padding: 4px 10px; border-radius: 100px; font-weight: 700; }

.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--blue-500); box-shadow: var(--shadow-glow); position: relative; }
.price-card.featured .tag { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: var(--grad-primary); color:#fff; padding:6px 18px; border-radius:100px; font-size:.78rem; font-weight:700; font-family:var(--font-head); }
.price-card h3 { font-size: 1.3rem; }
.price-card .desc { font-size: .92rem; margin: 8px 0 20px; }
.price-amt { font-family: var(--font-head); display:flex; align-items:baseline; gap:6px; margin-bottom: 6px; }
.price-amt .cur { font-size: 1.4rem; font-weight: 700; color: var(--ink-900); }
.price-amt .val { font-size: 3rem; font-weight: 700; color: var(--ink-900); line-height:1; }
.price-amt .per { color: var(--muted); font-size: .95rem; }
.price-note { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.price-features { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-features li { display:flex; gap:11px; align-items:flex-start; font-size:.96rem; color:var(--ink-700); }
.price-features svg { flex:none; width:19px; height:19px; color: #0f9d64; margin-top:2px; }
.price-features li.off { color: var(--muted); }
.price-features li.off svg { color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.testi .stars { color: #ffb020; margin-bottom: 14px; letter-spacing: 2px; }
.testi p { color: var(--ink-700); font-size: 1.02rem; margin-bottom: 22px; }
.testi .who { display: flex; align-items: center; gap: 13px; }
.testi .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi .who b { display:block; color: var(--ink-900); font-family: var(--font-head); }
.testi .who small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 1.05rem; }
.faq-q .plus { flex:none; width: 26px; height: 26px; border-radius: 8px; background: var(--bg-soft); display: grid; place-items: center; transition: .3s; color: var(--blue-500); font-size: 1.3rem; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--blue-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-dark); color: #fff; border-radius: var(--radius-xl); padding: 64px; text-align: center; }
.cta-band::before { content:""; position:absolute; top:-40%; left:-10%; width:500px; height:500px; border-radius:50%; background: radial-gradient(circle, rgba(34,211,238,.3), transparent 60%); }
.cta-band::after { content:""; position:absolute; bottom:-50%; right:-5%; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle, rgba(59,107,255,.35), transparent 60%); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #c3cbe8; font-size: 1.12rem; max-width: 620px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-dark); color: #fff; padding: 64px 0 72px; position: relative; overflow: hidden; text-align: center; }
.page-hero::after { content:""; position:absolute; top:-30%; right:-8%; width:480px; height:480px; border-radius:50%; background: radial-gradient(circle, rgba(34,211,238,.28), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: #c3cbe8; font-size: 1.15rem; max-width: 660px; margin: 0 auto; }
.crumbs { display:flex; justify-content:center; gap:8px; color:#9aa6d6; font-size:.9rem; margin-bottom:20px; }
.crumbs a:hover { color:#fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.info-card .ic { flex:none; width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); display: grid; place-items: center; }
.info-card .ic svg { width: 22px; height: 22px; color: var(--blue-500); }
.info-card h4 { font-family: var(--font-head); color: var(--ink-900); margin-bottom: 3px; }
.info-card a, .info-card p { color: var(--ink-500); font-size: .98rem; }
.info-card a:hover { color: var(--blue-500); }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink-900); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink-900); background: #fbfcff; transition: border .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(59,107,255,.12); background: #fff; }
.field .err { color: #e0435b; font-size: .84rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #e0435b; }
.field.invalid .err { display: block; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }
.form-success { display:none; background:#e6fff4; border:1px solid #a8ecd0; color:#0f7d54; padding:16px 18px; border-radius:12px; margin-bottom:18px; font-weight:600; }
.form-success.show { display:block; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--ink-500); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--ink-500); }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--blue-500); text-decoration: underline; }
.prose .updated { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--indigo-900); color: #b6c0e6; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #939ec6; font-size: .96rem; max-width: 320px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #939ec6; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; color: #939ec6; font-size: .95rem; }
.footer-contact svg { flex:none; width: 18px; height: 18px; color: var(--teal-400); margin-top: 3px; }
.footer-contact a:hover { color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: #7c88b4; font-size: .9rem; }
.footer-bottom a:hover { color:#fff; }
.socials { display:flex; gap:10px; }
.socials a { width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.06); display:grid; place-items:center; transition:.2s; }
.socials a:hover { background: var(--blue-500); }
.socials svg { width:18px; height:18px; color:#cdd5f0; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 2000;
  max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  transform: translateY(160%); transition: transform .4s ease;
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: .9rem; color: var(--ink-500); flex: 1; min-width: 220px; margin: 0; }
.cookie a { color: var(--blue-500); text-decoration: underline; }
.cookie .actions { display: flex; gap: 10px; }
.cookie .btn { padding: 10px 20px; font-size: .9rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-text { order: 0; }
  .g-4, .price-grid, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions .phone { display: none; }
  .burger { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px; box-shadow: var(--shadow-md); gap: 4px;
  }
  .nav-menu.open a { padding: 13px 16px; }
  .section { padding: 64px 0; }
  .g-2, .g-3, .g-4, .price-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .hero-badge { display: none; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
  body { font-size: 16px; }
}
