/* =====================================================
   KINETARA – DESIGN SYSTEM
   ===================================================== */
:root {
  --bg-main:       #F7F5F1;
  --bg-alt:        #EDEAE3;
  --bg-card:       #FFFFFF;
  --primary:       #1B3060;
  --primary-deep:  #0E1E40;
  --primary-light: #2C4F92;
  --accent:        #C4922A;
  --accent-soft:   rgba(196, 146, 42, 0.12);
  --accent-strong: #9D7320;
  --secondary:     #4878C8;
  --secondary-soft:rgba(72, 120, 200, 0.1);
  --text-main:     #18182C;
  --text-muted:    #5C6880;
  --border-subtle: rgba(27, 48, 96, 0.1);
  --border-medium: rgba(27, 48, 96, 0.18);
  --error:         #C0392B;
  --success:       #1A7A4A;
  --shadow-soft:   0 2px 20px rgba(27, 48, 96, 0.07);
  --shadow-medium: 0 8px 40px rgba(27, 48, 96, 0.13);
  --shadow-lifted: 0 16px 60px rgba(27, 48, 96, 0.18);
  --radius-lg:     20px;
  --radius-md:     14px;
  --radius-pill:   999px;
  --gap-lg:        3.5rem;
  --gap-md:        2rem;
  --gap-sm:        1rem;
  --transition-fast: 0.18s ease-out;
  --transition-med:  0.32s ease-out;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  scroll-behavior: smooth;
  line-height: 1.65;
}
body { min-height: 100vh; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(27, 48, 96, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1rem;
}
.logo-placeholder { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #E8B840);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: var(--primary-deep);
}
.logo-text {
  font-weight: 700; font-size: 1rem; letter-spacing: 0.07em;
  text-transform: uppercase; color: #ffffff;
}
.ad-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.32rem 0.8rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75); font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
}
.main-nav { display: flex; align-items: center; gap: 0.3rem; justify-content: flex-end; }
.nav-link {
  position: relative; padding: 0.3rem 0.65rem; border-radius: 999px;
  font-size: 0.78rem; color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.12); font-weight: 600; }
.nav-contact { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); padding: 0.72rem 1.5rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-med), background var(--transition-med);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #E8B840 100%);
  color: var(--primary-deep); box-shadow: 0 6px 22px rgba(196,146,42,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,146,42,0.55); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-full { width: 100%; }

/* Ghost on light background */
.on-light .btn-ghost,
.studies-section .btn-ghost,
.faq-section .btn-ghost,
.order-section .btn-ghost {
  color: var(--primary); border-color: var(--border-medium);
}
.on-light .btn-ghost:hover,
.studies-section .btn-ghost:hover,
.faq-section .btn-ghost:hover,
.order-section .btn-ghost:hover {
  background: var(--secondary-soft);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.section-padding { max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.section-header { max-width: 760px; margin: 0 auto 2.8rem; text-align: left; }
.section-header h2 {
  margin: 0 0 0.8rem; font-size: 1.75rem; letter-spacing: -0.02em;
  color: var(--primary); line-height: 1.2; font-weight: 800;
}
.section-header p { margin: 0; color: var(--text-muted); font-size: 0.97rem; line-height: 1.7; }
.small-note { margin-top: 0.75rem; font-size: 0.74rem; color: var(--text-muted); line-height: 1.5; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding-top: 0;
  background: var(--primary-deep);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(72,120,200,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(196,146,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero .section-padding { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--gap-lg); align-items: center;
}
.hero-kicker {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.68rem;
  color: var(--accent); font-weight: 700; margin-bottom: 0.8rem;
}
.hero h1 {
  font-size: 3rem; margin: 0 0 1.2rem; line-height: 1.08;
  color: #ffffff; font-weight: 800; letter-spacing: -0.03em;
}
.hero-subtitle {
  margin: 0 0 1.4rem; color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.72;
}
.hero-micro-benefits { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.hero-micro-benefits span {
  padding: 0.32rem 0.85rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.74rem; font-weight: 500; color: rgba(255,255,255,0.85);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.8rem; }
.hero-media { position: relative; }
.hero-image-stack { position: relative; min-height: 290px; }
.image-placeholder {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow-lifted);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin: 0;
}
.image-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-hero-tech {
  position: absolute; inset: 8% 15% auto 0;
  height: 135px; width: auto;
  transform: rotate(-2deg); box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.image-packshot {
  position: absolute; right: 4%; top: 18%; width: 155px;
  aspect-ratio: 1/1; box-shadow: 0 20px 56px rgba(0,0,0,0.4);
}
.image-hero-main { position: relative; margin-top: 80px; height: 235px; }
.disclaimer-banner {
  margin-top: 0.8rem; padding: 0.85rem 1rem; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); font-size: 0.76rem; line-height: 1.55;
}
.disclaimer-banner strong { color: rgba(255,255,255,0.85); }

/* =====================================================
   CARDS
   ===================================================== */
.card {
  border-radius: var(--radius-lg); background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft); padding: 1.8rem 2rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lifted); }

/* =====================================================
   KPI SECTION  –  dark background
   ===================================================== */
.kpi-section {
  background: linear-gradient(150deg, var(--primary-deep) 0%, var(--primary) 60%, #1a3a80 100%);
  padding-top: 5rem; padding-bottom: 5rem;
  position: relative; overflow: hidden;
}
.kpi-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(72,120,200,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 5% 90%, rgba(196,146,42,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.kpi-section .section-header { position: relative; z-index: 1; }
.kpi-section .section-header h2 { color: #ffffff; }
.kpi-section .section-header p { color: rgba(255,255,255,0.6); }
.kpi-section .kpi-grid,
.kpi-section .kpi-footnote { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; position: relative; z-index: 1; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--gap-md); }
.kpi-card {
  padding: 1.6rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-med), background var(--transition-med);
}
.kpi-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.11); }
.kpi-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); font-weight: 700; margin: 0 0 0.5rem;
}
.kpi-value { font-size: 1.55rem; font-weight: 800; margin: 0 0 0.45rem; color: #ffffff; }
.kpi-caption { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.kpi-footnote { margin-top: 1.6rem; font-size: 0.74rem; color: rgba(255,255,255,0.35); }

/* =====================================================
   PRODUCT SECTION
   ===================================================== */
.product-section { background: var(--bg-main); }
.product-layout { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); gap: var(--gap-md); }
.product-main h3 { color: var(--primary); font-size: 1.2rem; margin-top: 0; }
.product-main p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.72; }
.bullet-list { list-style: none; padding: 0; margin: 1rem 0; }
.bullet-list li {
  position: relative; padding-left: 1.4rem; margin-bottom: 0.55rem;
  font-size: 0.91rem; line-height: 1.55;
}
.bullet-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 999px; background: var(--accent);
}
/* Carousel */
.carousel {
  margin-top: 1.8rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); background: var(--bg-alt);
  overflow: hidden; box-shadow: var(--shadow-soft);
}
.carousel-track { display: flex; transition: transform 0.55s ease-out; }
.carousel-slide { min-width: 100%; height: 285px; border-radius: 0; border: none; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); }
.carousel-dots { display: flex; justify-content: center; gap: 0.45rem; padding: 0.7rem 0.8rem 1rem; background: var(--bg-card); }
.carousel-dots button { width: 7px; height: 7px; border-radius: 999px; border: none; background: var(--border-medium); cursor: pointer; padding: 0; transition: transform var(--transition-fast), background var(--transition-fast); }
.carousel-dots button.active { background: var(--primary); transform: scale(1.4); }
/* Ingredients */
.ingredients-column h3 { margin-top: 0; color: var(--primary); font-size: 1.2rem; }
.ingredients-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.4rem; }
.ingredient-card {
  padding: 0; background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle); overflow: hidden;
  border-left: 3px solid var(--accent);
}
.accordion-header {
  width: 100%; background: none; border: none; padding: 1rem 1.3rem;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-main); cursor: pointer; font-size: 0.9rem; font-weight: 600;
  text-align: left; transition: background var(--transition-fast);
}
.accordion-header:hover { background: var(--accent-soft); }
.accordion-icon { font-size: 1.1rem; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-left: 0.5rem; transition: transform 0.3s ease-out; }
.accordion-body {
  max-height: 0; overflow: hidden; padding: 0 1.3rem;
  border-top: 1px solid var(--border-subtle);
  transition: max-height 0.3s ease-out, padding-bottom 0.3s ease-out;
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.65;
}
.accordion-body p { margin-top: 0.8rem; margin-bottom: 0.5rem; }
.accordion-item.open .accordion-body { padding-bottom: 1rem; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
/* Checklist */
.hygiene-checklist h4 { margin-bottom: 0.7rem; color: var(--primary); font-size: 1rem; }
.checklist { list-style: none; padding: 0; margin: 0 0 0.7rem; }
.checklist li { position: relative; padding-left: 1.6rem; margin-bottom: 0.4rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0.1rem; font-size: 0.78rem; color: var(--accent); font-weight: 700; }

/* =====================================================
   STUDIES
   ===================================================== */
.studies-section { background: var(--bg-alt); }
.studies-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--gap-md); }
.study-card { background: var(--bg-card); border-top: 3px solid var(--primary); }
.study-card h3 { margin: 0 0 0.5rem; font-size: 1rem; color: var(--primary); }
.study-card p { margin: 0 0 1rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   ORDER SECTION
   ===================================================== */
.order-section { background: var(--bg-main); }
.order-layout { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: var(--gap-md); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem 1.25rem; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 0.81rem; color: var(--text-muted); margin-bottom: 0.3rem; font-weight: 600; }
.form-field input, .form-field textarea {
  border-radius: 10px; border: 1.5px solid var(--border-medium);
  background: var(--bg-main); color: var(--text-main);
  padding: 0.7rem 0.9rem; font-size: 0.88rem; outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,48,96,0.1); background: #fff;
}
.form-field textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.checkbox-field label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; font-weight: 400; }
.checkbox-field input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--primary); width: 15px; height: 15px; flex-shrink: 0; }
.field-error { margin-top: 0.2rem; font-size: 0.73rem; color: var(--error); min-height: 0.9rem; }
.form-note { margin-top: 0.75rem; font-size: 0.78rem; color: var(--text-muted); }
.form-success { margin-top: 0.75rem; font-size: 0.82rem; color: var(--success); font-weight: 500; }
.price-tag { margin-top: 0.9rem; margin-bottom: 0.5rem; font-size: 1rem; color: var(--primary); font-weight: 700; }
.order-side h3 { color: var(--primary); margin-top: 0; }
.disclaimer-banner-light {
  margin-top: 2rem; padding: 0.85rem 1rem; border-radius: var(--radius-md);
  background: #FEF9EC; border: 1px solid rgba(196,146,42,0.3);
  color: #5a4010; font-size: 0.76rem; line-height: 1.55;
}

/* =====================================================
   ROADMAP
   ===================================================== */
.roadmap-section { background: var(--primary-deep); }
.roadmap-section .section-header h2 { color: #fff; }
.roadmap-section .section-header p { color: rgba(255,255,255,0.55); }
.timeline { position: relative; margin-top: 1.5rem; padding-left: 1.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 1rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), rgba(196,146,42,0.1));
}
.timeline-step { position: relative; margin-bottom: 1.5rem; }
.timeline-dot {
  position: absolute; left: -0.1rem; top: 0.65rem;
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--primary-deep); border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(196,146,42,0.2);
}
.timeline-content { margin-left: 1.6rem; }
.timeline-content h3 { color: #fff; margin-top: 0; font-size: 1.05rem; }
.timeline-content p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.roadmap-section .card {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { background: var(--bg-main); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.8rem 1.3rem; }
.faq-item {
  padding: 0; background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle); overflow: hidden;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(160deg, var(--primary-deep) 0%, var(--primary) 100%);
  padding: 2.8rem 1.5rem 1.8rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--gap-md);
}
.site-footer .logo-mark { background: linear-gradient(135deg, var(--accent), #E8B840); color: var(--primary-deep); }
.site-footer .logo-text { color: #ffffff; }
.footer-col h4 { margin: 0 0 0.8rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); font-weight: 600; }
.footer-text { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition-fast); }
.footer-links a:hover { color: #ffffff; }
.footer-legal-block {
  max-width: 1200px; margin: 2rem auto 1rem;
  padding: 1.3rem 1.5rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
}
.footer-legal-block h4 { margin: 0 0 1rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.legal-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.8rem 1.5rem; }
.legal-info-item { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.legal-info-item strong { display: block; margin-bottom: 0.15rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-bottom {
  max-width: 1200px; margin: 1.3rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.9rem; font-size: 0.74rem; color: rgba(255,255,255,0.3);
}
.site-footer .logo-placeholder { margin-bottom: 0.75rem; }

/* =====================================================
   SECONDARY PAGES
   ===================================================== */
.secondary-page { background: var(--bg-main); }
.secondary-page .section-header h1 { font-size: 2.1rem; color: var(--primary); }
.legal-page-content { max-width: 900px; }
.legal-section { margin-bottom: 1rem; }
.legal-section h2 { margin: 0 0 0.6rem; font-size: 1.1rem; color: var(--primary); }
.legal-section p, .legal-section li { color: var(--text-muted); font-size: 0.92rem; line-height: 1.72; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: var(--gap-md); }
.contact-aside h2 { color: var(--primary); font-size: 1.2rem; margin-top: 0; }
.contact-info-item { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 1rem; }
.contact-info-item strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; }
.contact-info-item a, .contact-info-item span { font-size: 0.9rem; color: var(--text-main); text-decoration: none; }
.contact-info-item a:hover { color: var(--primary); text-decoration: underline; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal-on-scroll { opacity: 0; transform: translateY(14px); transition: opacity 0.52s ease-out, transform 0.56s ease-out; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed; inset: auto 1rem 1rem 1rem; max-width: 420px; margin-left: auto;
  z-index: 50; border-radius: var(--radius-lg); background: var(--bg-card);
  border: 1px solid var(--border-medium); box-shadow: var(--shadow-medium);
  padding: 1.2rem 1.3rem 1.3rem; font-size: 0.79rem;
}
.cookie-banner h3 { margin: 0 0 0.45rem; font-size: 0.92rem; color: var(--primary); }
.cookie-banner p { margin: 0 0 0.8rem; color: var(--text-muted); line-height: 1.5; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: flex-end; }
.cookie-actions .btn { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
.cookie-actions .btn-primary { background: linear-gradient(135deg, var(--accent), #E8B840); color: var(--primary-deep); box-shadow: none; }
.cookie-actions .btn-ghost { color: var(--primary); border-color: var(--border-medium); }

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .carousel-track { transition: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-layout, .order-layout, .contact-layout { grid-template-columns: minmax(0,1fr); }
  .order-layout > *:last-child { order: -1; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .legal-info-grid { grid-template-columns: minmax(0,1fr); }
  .top-bar-inner { grid-template-columns: auto auto; grid-template-rows: auto auto; row-gap: 0.4rem; }
  .top-center { grid-column: 1 / -1; justify-self: center; }
  .main-nav { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .top-bar-inner { grid-template-columns: 1fr; justify-items: flex-start; }
  .main-nav { flex-wrap: wrap; justify-content: flex-start; }
  .section-padding { padding-inline: 1.2rem; }
  .hero-grid { grid-template-columns: minmax(0,1fr); }
  .hero h1 { font-size: 2.2rem; }
  .hero-media { order: -1; }
  .kpi-grid { grid-template-columns: minmax(0,1fr); }
  .studies-grid, .faq-grid { grid-template-columns: minmax(0,1fr); }
  .footer-grid { grid-template-columns: minmax(0,1fr); }
  .legal-info-grid { grid-template-columns: minmax(0,1fr); }
  .cookie-banner { max-width: none; }
  .kpi-section .kpi-grid,
  .kpi-section .section-header,
  .kpi-section .kpi-footnote { padding-left: 1.2rem; padding-right: 1.2rem; }
}

@media (max-width: 480px) {
  .top-bar-inner { padding-inline: 1rem; }
  .hero { padding-top: 0; }
  .hero h1 { font-size: 1.9rem; }
}
