/* ==========================================================================
   Corvanta — Marketingové poradenství
   Palette: Opera Red #8D3946 | Ivory White #F8F5EF | Piano Black #26272C
            Satin Gold #C9A04A | Steel Gray #7C848E
   ========================================================================== */

:root {
  --opera-red: #8D3946;
  --opera-red-dark: #6f2c37;
  --ivory: #F8F5EF;
  --ivory-2: #efe9df;
  --piano: #26272C;
  --piano-2: #303138;
  --gold: #C9A04A;
  --gold-soft: #E4C578;
  --steel: #7C848E;
  --steel-light: #aab0b7;
  --line: rgba(38, 39, 44, 0.12);
  --shadow-lg: 0 30px 70px -30px rgba(38, 39, 44, 0.45);
  --shadow-md: 0 16px 40px -20px rgba(38, 39, 44, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--piano);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.2px;
  margin: 0 0 0.4em;
  color: var(--piano);
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

a { color: var(--opera-red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--opera-red-dark); }

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow.on-dark { color: var(--gold-soft); }

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}

.section-head p { color: var(--steel); font-size: 1.08rem; }

.text-muted { color: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--opera-red), var(--opera-red-dark));
  color: var(--ivory);
  box-shadow: 0 14px 30px -14px rgba(141, 57, 70, 0.75);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(141, 57, 70, 0.9); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--piano);
  box-shadow: 0 14px 30px -14px rgba(201, 160, 74, 0.75);
}
.btn-gold:hover { color: var(--piano); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(248, 245, 239, 0.55);
  color: var(--ivory);
}
.btn-outline:hover { background: rgba(248, 245, 239, 0.1); color: #fff; }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--piano);
}
.btn-ghost:hover { border-color: var(--opera-red); color: var(--opera-red); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(38, 39, 44, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.6);
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand img { width: 40px; height: 40px; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--ivory);
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  padding: 140px 0 90px;
  background:
    linear-gradient(120deg, rgba(38,39,44,0.92) 0%, rgba(38,39,44,0.72) 45%, rgba(141,57,70,0.55) 100%),
    linear-gradient(135deg, #2a2b31, #3a2b30);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; }
.hero h1 { color: var(--ivory); }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero-lead {
  font-size: 1.22rem;
  color: rgba(248, 245, 239, 0.86);
  max-width: 600px;
  margin-bottom: 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 2.6rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(248, 245, 239, 0.18);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--gold-soft);
  line-height: 1;
}
.hero-stats .stat span { font-size: 0.85rem; color: var(--steel-light); letter-spacing: 0.03em; }

/* ---------- Trust bar ---------- */
.trust {
  background: var(--piano);
  color: var(--steel-light);
  padding: 26px 0;
  text-align: center;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 46px;
}
.trust span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel-light);
  opacity: 0.85;
}

/* ---------- Services ---------- */
.services { background: var(--ivory); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute; left: 0; top: 0;
  height: 4px; width: 0;
  background: linear-gradient(90deg, var(--opera-red), var(--gold));
  transition: width .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { width: 100%; }
.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(141,57,70,0.12), rgba(201,160,74,0.16));
  margin-bottom: 22px;
  color: var(--opera-red);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.5em; }
.card p { color: var(--steel); font-size: 0.98rem; margin-bottom: 0; }

/* ---------- Feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--piano-2), var(--opera-red-dark));
  min-height: 360px;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.split-media .badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(38, 39, 44, 0.9);
  color: var(--ivory);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(4px);
}
.split-media .badge strong { display: block; color: var(--gold-soft); font-family: var(--serif); font-size: 1.4rem; }
.split-media .badge span { font-size: 0.82rem; color: var(--steel-light); }

.approach-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.approach-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.approach-list li:last-child { border-bottom: none; }
.approach-list .num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--opera-red);
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 600;
}
.approach-list h4 { margin: 0 0 3px; font-family: var(--sans); font-size: 1.02rem; font-weight: 700; }
.approach-list p { margin: 0; color: var(--steel); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured {
  background: var(--piano);
  color: var(--ivory);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.plan.featured h3, .plan.featured .price { color: var(--ivory); }
.plan-tag {
  position: absolute; top: 22px; right: 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--piano);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 30px;
}
.plan h3 { font-family: var(--serif); margin-bottom: 6px; }
.plan .plan-desc { color: var(--steel); font-size: 0.92rem; min-height: 44px; }
.plan.featured .plan-desc { color: var(--steel-light); }
.price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  margin: 14px 0 2px;
  line-height: 1;
}
.price .cur { font-size: 1.3rem; vertical-align: super; }
.price .per { font-size: 0.9rem; font-family: var(--sans); color: var(--steel); font-weight: 500; }
.plan.featured .price .per { color: var(--steel-light); }
.plan-features { list-style: none; margin: 24px 0 30px; padding: 0; flex: 1; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(124, 132, 142, 0.22);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--gold); flex: none; margin-top: 3px; }
.plan.featured .plan-features .check { color: var(--gold-soft); }
.plan .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 34px;
  color: var(--steel);
  font-size: 0.92rem;
}

/* ---------- Metrics band ---------- */
.metrics {
  background:
    linear-gradient(120deg, rgba(38,39,44,0.94), rgba(141,57,70,0.86)),
    linear-gradient(135deg, #2a2b31, #3a2b30);
  color: var(--ivory);
  position: relative;
}
.metrics::before {
  content:"";
  position:absolute; inset:0;
  background-image:url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80");
  background-size:cover; background-position:center;
  opacity:0.14;
}
.metrics .container { position: relative; z-index: 2; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-soft);
  line-height: 1;
}
.metric span { color: var(--steel-light); font-size: 0.92rem; letter-spacing: 0.04em; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ivory); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
}
.quote .mark {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 0.6;
  height: 26px;
  display: block;
}
.quote p { font-size: 1.02rem; color: var(--piano); font-style: italic; }
.quote-author { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.quote-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote-author strong { display: block; font-size: 0.98rem; }
.quote-author span { font-size: 0.84rem; color: var(--steel); }

/* ---------- Contact ---------- */
.contact { background: var(--piano); color: var(--ivory); }
.contact h2 { color: var(--ivory); }
.contact .section-head p { color: var(--steel-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-info h3 { color: var(--ivory); font-family: var(--serif); }
.info-item {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,245,239,0.12);
}
.info-item .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(201,160,74,0.16);
  color: var(--gold-soft);
}
.info-item .ic svg { width: 22px; height: 22px; }
.info-item strong { display: block; color: var(--ivory); font-family: var(--sans); font-size: 1rem; }
.info-item span, .info-item a { color: var(--steel-light); font-size: 0.95rem; }
.info-item a:hover { color: var(--gold-soft); }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  color: var(--piano);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--piano);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--piano);
  background: var(--ivory);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--opera-red);
  box-shadow: 0 0 0 3px rgba(141,57,70,0.12);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.86rem; color: var(--steel);
  margin-bottom: 22px;
}
.consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--opera-red); }
.form-note { font-size: 0.82rem; color: var(--steel); text-align: center; margin: 16px 0 0; }
.form-success {
  display: none;
  background: rgba(201,160,74,0.14);
  border: 1px solid var(--gold);
  color: var(--opera-red-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--ivory-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none; border: none;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--piano);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { flex: none; color: var(--opera-red); font-size: 1.5rem; transition: transform .3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 26px;
  color: var(--steel);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1e1f23;
  color: var(--steel-light);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(248,245,239,0.1);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.footer-col h4 {
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--steel-light); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 26px;
  font-size: 0.84rem;
  color: var(--steel);
}
.footer-bottom a { color: var(--steel); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  max-width: 640px;
  margin: 0 auto;
  background: var(--piano);
  color: var(--ivory);
  border: 1px solid rgba(201,160,74,0.4);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-lg);
  transform: translateY(160%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { color: var(--ivory); font-family: var(--serif); margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: var(--steel-light); margin-bottom: 16px; }
.cookie-banner p a { color: var(--gold-soft); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.9rem; }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--piano);
  color: var(--ivory);
  padding: 150px 0 60px;
  text-align: center;
}
.legal-hero h1 { color: var(--ivory); font-size: clamp(2.2rem,4vw,3.2rem); }
.legal-hero p { color: var(--steel-light); }
.legal-body { padding: 60px 0 90px; background: var(--ivory); }
.legal-body .container { max-width: 860px; }
.legal-body h2 { font-size: 1.7rem; margin-top: 2.2rem; }
.legal-body h3 { font-size: 1.25rem; margin-top: 1.6rem; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; color: var(--piano); }
.legal-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.94rem; }
.legal-body th, .legal-body td { text-align: left; padding: 12px 14px; border: 1px solid var(--line); }
.legal-body th { background: var(--ivory-2); font-family: var(--sans); }
.legal-toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.legal-toc strong { display:block; margin-bottom: 10px; font-family: var(--sans); }
.legal-toc ul { list-style: none; padding: 0; margin: 0; columns: 2; }
.legal-toc li { margin-bottom: 7px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; font-weight: 600; }

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards, .pricing-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    background: var(--piano);
    border: 1px solid rgba(201,160,74,0.3);
    border-radius: var(--radius);
    padding: 22px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }
  .cards, .pricing-grid, .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero-stats { gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .legal-toc ul { columns: 1; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats .stat strong { font-size: 1.9rem; }
}
