/* ============================
   Novabux — Stylesheet
   ============================ */

:root {
  --c-bg: #f6fbff;
  --c-surface: #ffffff;
  --c-soft: #eaf3fb;
  --c-line: #d9e6f1;
  --c-text: #1d2b3a;
  --c-muted: #5b6b7c;
  --c-primary: #1e6fbf;
  --c-primary-dark: #154e88;
  --c-accent: #4ab3f4;
  --c-accent-soft: #d4ecfb;
  --c-warning: #f4a64a;
  --shadow-sm: 0 1px 2px rgba(20, 60, 100, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 60, 100, 0.08);
  --shadow-lg: 0 18px 50px rgba(20, 60, 100, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1180px;
  --transition: 200ms ease;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-dark); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { color: var(--c-muted); }

.section {
  padding: 84px 0;
}

.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.08rem;
  color: var(--c-muted);
  max-width: 640px;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(30, 111, 191, 0.28);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(30, 111, 191, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-line);
}
.btn--ghost:hover {
  background: var(--c-soft);
  border-color: var(--c-accent);
}

/* ============================
   Header / Navigation
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--c-text);
}
.brand:hover { color: var(--c-primary); }

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(30, 111, 191, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-menu a:hover { background: var(--c-soft); color: var(--c-primary); }
.nav-menu a.active { color: var(--c-primary); }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(74, 179, 244, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(30, 111, 191, 0.10), transparent 50%),
    var(--c-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--c-primary);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
  color: var(--c-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.hero-meta div { min-width: 110px; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-primary);
  margin-bottom: 2px;
}
.hero-meta span {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--c-soft);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.hero-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}
.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(74, 179, 244, 0.25);
  flex-shrink: 0;
}
.hero-badge small {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ============================
   Section header
   ============================ */
.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   Pillars / Info cards
   ============================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--c-primary);
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--c-accent-soft);
  border-radius: 6px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; }

/* ============================
   Product showcase
   ============================ */
.product {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-soft) 100%);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.product-visual {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, #fff 0%, var(--c-accent-soft) 80%);
  border-radius: var(--radius-xl);
  padding: 40px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
}
.product-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(30, 111, 191, 0.18);
  pointer-events: none;
}
.product-visual img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(20, 60, 100, 0.18));
}
.product-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-primary);
}

.product-content h2 { margin-bottom: 18px; }
.product-features {
  list-style: none;
  margin: 26px 0 30px;
  display: grid;
  gap: 14px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--c-text);
}
.product-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}

/* ============================
   Lifestyle split
   ============================ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.lifestyle-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
}
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }

.lifestyle-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.lifestyle-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.lifestyle-list .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.lifestyle-list h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.lifestyle-list p { font-size: 0.93rem; }

/* ============================
   FAQ
   ============================ */
.faq {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
}
.faq-q .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--c-primary); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-a-inner {
  padding: 0 0 22px 0;
  color: var(--c-muted);
  font-size: 0.97rem;
  max-width: 720px;
}

/* ============================
   CTA strip
   ============================ */
.cta-strip {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,0.88); margin-bottom: 0; }
.cta-strip .btn--primary {
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.cta-strip .btn--primary:hover { background: var(--c-soft); color: var(--c-primary-dark); }

/* ============================
   Footer
   ============================ */
.site-footer {
  background: #0e2236;
  color: #c9d6e3;
  padding: 64px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand { color: #fff; }
.footer-about {
  font-size: 0.92rem;
  color: #99adc1;
  margin-top: 14px;
  max-width: 320px;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a {
  color: #c9d6e3;
  font-size: 0.92rem;
}
.footer-links a:hover { color: #fff; }
.footer-contact {
  font-size: 0.92rem;
  display: grid;
  gap: 10px;
  color: #c9d6e3;
}
.footer-contact a { color: #c9d6e3; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #7a8da0;
}

/* ============================
   Page hero (sub-pages)
   ============================ */
.page-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at 90% 30%, rgba(74, 179, 244, 0.16), transparent 50%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.page-hero h1 { max-width: 720px; }
.page-hero p { max-width: 640px; margin-top: 14px; }
.crumbs {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.crumbs a { color: var(--c-primary); }

/* ============================
   About page
   ============================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.value {
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}
.value h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 8px;
}
.value p { font-size: 0.92rem; }

.standards {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.standard {
  padding: 28px 0;
}
.standard strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-primary);
  margin-bottom: 8px;
}

/* ============================
   Contact page
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.contact-info h3 { margin-bottom: 18px; }
.contact-info ul { list-style: none; display: grid; gap: 16px; }
.contact-info li small {
  display: block;
  font-size: 0.78rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-info li strong {
  display: block;
  font-weight: 500;
  color: var(--c-text);
  font-family: var(--font-body);
}

.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--c-text);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--c-bg);
  color: var(--c-text);
  transition: var(--transition);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 111, 191, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--c-muted);
}
.field .check input { width: auto; margin-top: 4px; }
.field-error {
  color: #c4424c;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}
.field.has-error input,
.field.has-error textarea { border-color: #c4424c; }
.field.has-error .field-error { display: block; }

.map-placeholder {
  background: var(--c-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-muted);
  font-size: 0.95rem;
  padding: 20px;
  background-image:
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    repeating-linear-gradient(45deg, var(--c-accent-soft) 0 12px, transparent 12px 24px);
}

/* ============================
   Success page
   ============================ */
.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.success-card {
  max-width: 540px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

/* ============================
   Legal pages
   ============================ */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 { margin-top: 36px; margin-bottom: 12px; }
.legal h3 { margin-top: 22px; }
.legal p,
.legal li { color: var(--c-muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--c-primary); }

/* ============================
   Cookie banner
   ============================ */
.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #0e2236;
  color: #e6edf5;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 30, 60, 0.35);
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.92rem;
}
.cookie.is-visible { display: flex; }
.cookie p { color: #c9d6e3; margin: 0; flex: 1; min-width: 240px; }
.cookie a { color: #9ec9f0; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn--primary { background: #fff; color: var(--c-primary); padding: 10px 20px; font-size: 0.88rem; }
.cookie .btn--primary:hover { background: var(--c-soft); }
.cookie .btn--ghost { color: #c9d6e3; border-color: rgba(255,255,255,0.18); padding: 10px 20px; font-size: 0.88rem; }
.cookie .btn--ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ============================
   Reveal animation
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0; }
  .hero-grid,
  .product-grid,
  .lifestyle-grid,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pillars { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cta-strip { grid-template-columns: 1fr; padding: 36px 28px; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-110%);
    transition: transform 300ms ease;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a { padding: 12px 14px; }
  .nav-cta { margin-left: 0; margin-top: 10px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .product-visual { max-width: 380px; margin: 0 auto; }
  .lifestyle-img { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px; }
  .cta-strip { padding: 28px 22px; }
  .contact-form,
  .contact-info { padding: 22px; }
  .success-card { padding: 36px 24px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
}
