/* ============================================================
   VIZONIC COMPLEX – Main Stylesheet
   Design Direction: Refined Luxury / Organic Premium
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg:         #0b1118;
  --bg-2:       #111922;
  --bg-3:       #162030;
  --surface:    #1a2535;
  --border:     rgba(180, 150, 80, 0.18);
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark:  #8c6a20;
  --accent:     #4fa3b8;
  --text:       #e8e0d0;
  --text-muted: #8a9bb0;
  --white:      #ffffff;
  --danger:     #e05555;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.25);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);

  --section-py: 90px;
  --transition: 0.3s ease;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
address { font-style: normal; }
ul { list-style: none; }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--gold-light); }
strong { font-weight: 600; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section ---- */
.section { padding: var(--section-py) 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header.center { text-align: center; margin-bottom: 56px; }
.section-header.center h2 { max-width: 580px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11,17,24,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo:hover { color: var(--white); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.logo-text em { color: var(--gold-light); display: block; font-size: 0.75rem; letter-spacing: 0.12em; }
.site-nav ul { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  color: var(--gold);
}
.site-nav .nav-cta:hover { background: var(--gold); color: var(--bg); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11,17,24,0.88) 0%,
    rgba(11,17,24,0.60) 60%,
    rgba(11,17,24,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(232,224,208,0.82);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badges span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  margin: 0 auto;
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.intro-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 48px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 4px; }
.sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images { position: relative; }
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.img-card img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.img-card:hover img { transform: scale(1.03); }
.img-card--top { margin-right: 40px; }
.img-card--bot {
  margin-top: -60px;
  margin-left: 40px;
  border: 3px solid var(--bg-3);
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.check-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.check-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 4px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  animation: fadeUp 0.6s ease both;
}
.benefit-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 52px; height: 52px; }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--white); }
.benefit-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PRODUCT OVERVIEW
   ============================================================ */
.product-overview { background: var(--bg-3); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.product-img-wrap { position: relative; display: flex; justify-content: center; }
.product-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.product-img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  animation: floatPulse 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.product-details h2 { margin-bottom: 4px; }
.product-tagline { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; letter-spacing: 0.06em; }
.ingredient-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.ingredient-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pill {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.price-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.08em; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 600;
}
.price-note { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   LIFESTYLE CARDS
   ============================================================ */
.lifestyle { background: var(--bg-2); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.lf-card:hover { transform: translateY(-4px); border-color: var(--gold-dark); box-shadow: var(--shadow-md); }
.lf-card--featured { border-color: var(--gold-dark); }
.lf-img { overflow: hidden; }
.lf-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.lf-card:hover .lf-img img { transform: scale(1.05); }
.lf-body { padding: 24px 28px; }
.lf-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--white); }
.lf-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testi-card--featured { border-color: var(--gold-dark); background: linear-gradient(135deg, var(--surface), rgba(201,168,76,0.05)); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-family: var(--font-body); font-size: 0.88rem; color: var(--white); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   ORDER FORM
   ============================================================ */
.order { background: var(--bg-3); }
.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.order-info h2 { margin-bottom: 16px; }
.order-info > p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.order-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.order-perks li { font-size: 0.9rem; color: var(--text-muted); }
.order-price-display { display: flex; flex-direction: column; gap: 4px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.big-price { font-family: var(--font-display); font-size: 3rem; color: var(--gold-light); line-height: 1; }
.big-price small { font-size: 1.4rem; }
.price-desc { font-size: 0.82rem; color: var(--text-muted); }

.order-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.order-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--white);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,155,176,0.5); }
.form-group textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; line-height: 1.5; }
.form-check a { color: var(--gold); }
.form-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--gold-dark); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.footer-disclaimer { font-size: 0.76rem !important; color: rgba(138,155,176,0.6) !important; font-style: italic; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.86rem; color: var(--text-muted); }
.footer-col li a:hover { color: var(--gold); }
.footer-col address p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-col address a { color: var(--text-muted); }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(138,155,176,0.5); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  animation: slideUp 0.5s ease both;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}
.cookie-text svg { flex-shrink: 0; margin-top: 2px; }
.cookie-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.cookie-text a { color: var(--gold); }
.cookie-date { font-size: 0.76rem; color: rgba(138,155,176,0.5); display: inline-block; margin-left: 6px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatPulse {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.8; transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.6); }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Intersection observer animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --section-py: 64px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-img-wrap { margin-bottom: 40px; }
  .order-wrap { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--bg-2);
    z-index: 899;
    padding: 40px 24px;
  }
  .site-nav.open ul { flex-direction: column; gap: 24px; }
  .site-nav.open a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sep { display: none; }
  .intro-strip-inner { gap: 8px; }
  .stat { padding: 10px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .order-form-wrap { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}
