/* ============================================================
   TastyCat v2 — Design System
   Compiled: 2026-06-10
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --bg:        #0D0D1F;
  --bg2:       #131325;
  --card:      #1C1C35;
  --border:    rgba(255,255,255,0.08);
  --primary:   #FF5E2B;
  --primary-h: #E84E1F;
  --teal:      #00CFAF;
  --teal-h:    #00B096;
  --yellow:    #FFD84D;
  --blue:      #4A9FFF;
  --pink:      #FF7DB5;
  --text:      #EEEEFF;
  --muted:     #7A7A99;
  --white:     #FFFFFF;

  /* Flavor palette — Pantone exact */
  --atun:       #7BA3DC;   /* PANTONE 659 C  */
  --salmon:     #89C648;   /* PANTONE 2292 U */
  --mariscos:   #F6C55B;   /* PANTONE 141 C  */
  --pollo:      #67BAAF;   /* PANTONE 563 C  */
  --camaron:    #FFA388;   /* PANTONE 1625 C */

  /* Spacing */
  --gap:    clamp(1rem, 3vw, 2rem);
  --section: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  /* Typography */
  --font-display: 'Nunito', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Shadow */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --glow-primary: 0 0 40px rgba(255,94,43,0.35);
  --glow-teal:    0 0 40px rgba(0,207,175,0.3);

  /* Transitions */
  --t: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); line-height: 1.75; }

.text-primary  { color: var(--primary); }
.text-teal     { color: var(--teal); }
.text-yellow   { color: var(--yellow); }
.text-white    { color: var(--white); }
.text-center   { text-align: center; }

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section { padding: var(--section) 0; }
.section-alt { background: var(--bg2); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gap); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 1rem; }
.flex-col { display: flex; flex-direction: column; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--glow-primary);
}
.btn-primary:hover {
  background: var(--primary-h);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,94,43,0.5);
}

.btn-teal {
  background: var(--teal);
  color: #0D1F1C;
  box-shadow: var(--glow-teal);
}
.btn-teal:hover {
  background: var(--teal-h);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: #0D1F1C;
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled {
  background: rgba(13,13,31,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  padding: 0.875rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255,94,43,0.3));
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav__mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__mobile-toggle { display: flex; }
  .nav__links,
  .nav__cta {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,13,31,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--border);
  }
  .nav__links.open,
  .nav__cta.open { display: flex; }
  .nav__cta.open { top: calc(100% + 12rem); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,94,43,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,207,175,0.08) 0%, transparent 60%),
              var(--bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,94,43,0.12);
  border: 1px solid rgba(255,94,43,0.3);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__title { margin-bottom: 1.25rem; }
.hero__title span { color: var(--primary); }

.hero__desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--muted);
}
.hero__badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,94,43,0.15) 0%, transparent 65%);
  z-index: 0;
}
.hero__photo {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header p { max-width: 560px; margin: 0.75rem auto 0; font-size: 1.05rem; }

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,94,43,0.3);
}

/* ---------- Benefit Cards ---------- */
.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.benefit-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,94,43,0.12);
  border: 1px solid rgba(255,94,43,0.2);
  flex-shrink: 0;
}
.benefit-card__icon.teal { background: rgba(0,207,175,0.12); border-color: rgba(0,207,175,0.2); }
.benefit-card__icon.yellow { background: rgba(255,216,77,0.12); border-color: rgba(255,216,77,0.2); }
.benefit-card__icon.blue { background: rgba(74,159,255,0.12); border-color: rgba(74,159,255,0.2); }
.benefit-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--text); }
.benefit-card p { font-size: 0.9rem; }

/* ---------- Flavor Cards ---------- */
.flavor-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.flavor-card {
  border-radius: var(--r-md);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  cursor: default;
  border: 1px solid transparent;
}
.flavor-card:hover { transform: translateY(-6px); }

.flavor-card__emoji { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.flavor-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.flavor-card__desc { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* Pantone-matched flavor cards */
.flavor-atun    { background: linear-gradient(135deg, #162848, #22407A); box-shadow: 0 8px 30px rgba(123,163,220,0.28); border-color: rgba(123,163,220,0.35); }
.flavor-salmon  { background: linear-gradient(135deg, #162E06, #274E0C); box-shadow: 0 8px 30px rgba(137,198,72,0.28);  border-color: rgba(137,198,72,0.35); }
.flavor-mariscos{ background: linear-gradient(135deg, #352200, #5E3C00); box-shadow: 0 8px 30px rgba(246,197,91,0.28);  border-color: rgba(246,197,91,0.35); }
.flavor-pollo   { background: linear-gradient(135deg, #092826, #0F4542); box-shadow: 0 8px 30px rgba(103,186,175,0.28); border-color: rgba(103,186,175,0.35); }
.flavor-camaron { background: linear-gradient(135deg, #52180E, #8A2A1A); box-shadow: 0 8px 30px rgba(255,163,136,0.28); border-color: rgba(255,163,136,0.35); }

/* ---------- Petco Section ---------- */
.petco-section {
  background: linear-gradient(135deg, #0A1A28 0%, #0D2A1F 100%);
  border-top: 1px solid rgba(0,207,175,0.15);
  border-bottom: 1px solid rgba(0,207,175,0.15);
}
.petco-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,207,175,0.12);
  border: 1px solid rgba(0,207,175,0.4);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.petco-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

/* ---------- Distributor CTA Section ---------- */
.dist-cta {
  background: linear-gradient(135deg, #1F0A05 0%, #2A1005 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid rgba(255,94,43,0.2);
  position: relative;
  overflow: hidden;
}
.dist-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,94,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card__img {
  background: #1E1E35;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.product-card__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, var(--card));
}
.product-card__body { padding: 1.5rem; }
.product-card__flavor {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.product-card__name { font-size: 1.2rem; margin-bottom: 0.5rem; }
.product-card__desc { font-size: 0.9rem; margin-bottom: 1rem; }
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.product-card__price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; }

/* ---------- Form Styles ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-label span { color: var(--primary); }
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,94,43,0.15);
}
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Footer ---------- */
.footer { background: #1E2848; color: rgba(255,255,255,0.7); }
.footer__top {
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer__brand img { height: 40px; margin-bottom: 14px; display: block; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 220px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none;
  transition: background 0.2s;
}
.footer__social a:hover { background: #FFA388; }
.footer__col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.footer__col ul li a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer__col ul li a:hover { color: #FFA388; }
.footer__bottom {
  max-width: 1180px; margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer__bottom a:hover { color: #FFA388; }

/* ---------- Newsletter Form (footer) ---------- */
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--t);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--primary-h); }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.875rem; flex: 1; min-width: 200px; margin: 0; color: var(--muted); }
.cookie-banner a { color: var(--teal); }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-buttons button {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--t);
}
.cookie-accept { background: var(--primary); color: white; }
.cookie-accept:hover { background: var(--primary-h); }
.cookie-decline { border: 1px solid var(--border); color: var(--muted); }
.cookie-decline:hover { border-color: var(--muted); color: var(--text); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,94,43,0.1) 0%, transparent 70%);
}
.page-hero .label { font-size: 0.85rem; }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---------- Alert / Success ---------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.alert-success {
  background: rgba(0,207,175,0.1);
  border: 1px solid rgba(0,207,175,0.3);
  color: var(--teal);
}
.alert-error {
  background: rgba(255,94,43,0.1);
  border: 1px solid rgba(255,94,43,0.3);
  color: var(--primary);
}

/* ---------- Stats / Numbers ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-item__label { font-size: 0.85rem; color: var(--muted); }

/* ---------- Comparison Table (vs Churu) ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-md);
  overflow: hidden;
}
.compare-table th {
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table td {
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table .th-feature { background: var(--card); color: var(--muted); text-align: left; }
.compare-table .th-tastycat { background: rgba(255,94,43,0.15); color: var(--primary); text-align: center; }
.compare-table .th-churu { background: var(--card); color: var(--muted); text-align: center; }
.compare-table .td-feature { background: var(--card); color: var(--text); font-weight: 500; }
.compare-table .td-tastycat { background: rgba(255,94,43,0.05); text-align: center; }
.compare-table .td-churu { background: var(--card); color: var(--muted); text-align: center; }
.compare-table .check { color: var(--teal); font-size: 1.2rem; }
.compare-table .cross { color: var(--muted); font-size: 1.2rem; }
.compare-table .win { color: var(--primary); font-weight: 700; }

/* ---------- Article / Blog ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.article h3 { margin: 2rem 0 0.75rem; font-size: 1.25rem; color: var(--teal); }
.article p { margin-bottom: 1.25rem; color: var(--muted); }
.article p strong { color: var(--text); }
.article ul, .article ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article ul li, .article ol li { color: var(--muted); margin-bottom: 0.5rem; line-height: 1.7; }
.article .verdict {
  background: linear-gradient(135deg, rgba(255,94,43,0.08), rgba(255,94,43,0.04));
  border: 1px solid rgba(255,94,43,0.2);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article .verdict p { margin: 0; color: var(--text); }

/* ---------- Animations ---------- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.full-width { width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .flavor-cards { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__grid .hero__img-wrap { order: -1; }
  .hero__desc { margin: 0 auto 2rem; }
  .hero__badges { justify-content: center; }
  .btn-group { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .flavor-cards { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.875rem; font-size: 0.825rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .flavor-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { border-radius: 50px; }
}
