/* ══════════════════════════════════════════
   HELIO — style.css  (Copper Edition)
   DM Serif Display + DM Sans + Noto Sans Georgian
   Warm copper-burgundy premium aesthetic
══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds — light green tending to white */
  --bg:          #eef4e8;
  --bg-2:        #e5eedb;
  --surface:     #ffffff;
  --surface-2:   #f3f8ee;
  --surface-3:   #e8efe0;

  /* Borders — soft green-tinted */
  --border:      rgba(60,90,45,0.14);
  --border-2:    rgba(60,90,45,0.26);

  /* Brand — Copper + Burgundy */
  --copper:      #c87941;
  --copper-l:    #e8955a;
  --copper-d:    #a05e2a;
  --burgundy:    #8b2635;
  --burgundy-l:  #a83244;
  --amber:       #f59e0b;
  --cream:       #fdf6ec;

  /* Text — dark for light bg */
  --text:        #1e2a18;
  --text-2:      #4d5746;
  --text-3:      #8a9580;

  /* Semantic aliases */
  --accent:      var(--copper);
  --cta:         var(--copper);

  /* Shadows — warm tinted */
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-h:    0 8px 40px rgba(200,121,65,0.18);
  --glow:        0 0 60px rgba(200,121,65,0.12);

  /* Radii + Transition */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --t:      all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  animation: warmPageIn 0.35s ease both;
}
@keyframes warmPageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
a { color: var(--copper); text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(110,135,95,0.45); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--copper); }

/* ── TYPOGRAPHY ── */
h1, h2 {
  font-family: 'DM Serif Display', 'Noto Sans Georgian', serif;
  font-weight: 400;
  color: var(--text);
}
h3, h4, nav, button, label {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h3 { font-size: 1.2rem; line-height: 1.3; }

/* Gradient text — copper→amber */
.gradient-text {
  background: linear-gradient(135deg, var(--copper) 0%, var(--amber) 60%, var(--copper-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--copper); }

/* ── GRID TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,121,65,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,121,65,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(240,246,235,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(200,121,65,0.1);
  transition: background 0.3s ease;
}
header.scrolled { background: rgba(240,246,235,0.96); box-shadow: 0 2px 16px rgba(40,60,30,0.06); }

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 42px; width: auto; border-radius: 8px; object-fit: contain; }

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

nav a {
  position: relative;
  color: var(--text-2);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: var(--t);
  padding-bottom: 7px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--amber));
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
nav a:hover { color: var(--text); text-decoration: none; }
nav a.active { color: var(--copper); }
nav a.active::after, nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-lang {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--t);
}
.btn-lang:hover { border-color: var(--copper); color: var(--copper); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  color: var(--text);
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  background: rgba(240,246,235,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,121,65,0.12);
  padding: 8px 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-2);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 24px;
  display: block;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--copper);
  background: rgba(200,121,65,0.06);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-l) 100%);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(200,121,65,0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,121,65,0.45);
  color: var(--bg);
  text-decoration: none;
}

.btn-cta {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-l) 100%);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(200,121,65,0.3);
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-cta:hover::after { left: 100%; }
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,121,65,0.45);
  color: var(--bg);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════ */
section { padding: 80px 0; position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.section-sub {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════════
   PAGE HEADER (breadcrumb pages)
══════════════════════════════════════════ */
.page-hero {
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--text-3); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--copper); text-decoration: none; }
.breadcrumb .sep { color: var(--border-2); }
.breadcrumb .cur { color: var(--copper); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-2); font-size: 1.05rem; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 65% 35%, rgba(200,121,65,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 10% 75%, rgba(139,38,53,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 90% 85%, rgba(245,158,11,0.07) 0%, transparent 50%),
    linear-gradient(160deg, #f4f9ee 0%, #eef4e8 50%, #e6efdc 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,121,65,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,121,65,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,121,65,0.1);
  color: var(--copper);
  border: 1px solid rgba(200,121,65,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,121,65,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(200,121,65,0); }
}

.hero-sub {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 480px;
  margin-top: 20px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
}
.stat-label {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.72rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  will-change: transform;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 0 80px rgba(200,121,65,0.18);
  background: var(--surface-2);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(18,16,14,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  min-width: 150px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: emberFloat 4s ease-in-out infinite;
  will-change: transform;
}
.float-badge-1 { top: 20px; right: -24px; }
.float-badge-2 { bottom: 40px; left: -24px; animation-delay: 2s; }
.float-badge-icon { font-size: 1.25rem; flex-shrink: 0; }
.float-badge-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.float-badge-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 2px;
}
@keyframes emberFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero load animations (CSS fallback — GSAP overrides) */
.hero-badge   { animation: fadeUp 0.5s 0.1s both, pulseDot 2s ease-in-out infinite; }
.hero h1      { animation: fadeUp 0.6s 0.2s both; }
.hero-sub     { animation: fadeUp 0.6s 0.3s both; }
.hero-btns    { animation: fadeUp 0.6s 0.4s both; }
.hero-stats   { animation: fadeUp 0.6s 0.5s both; }
.hero-visual  { animation: fadeUp 0.7s 0.3s both; }

/* ══════════════════════════════════════════
   BRANDS MARQUEE
══════════════════════════════════════════ */
.marquee-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-track-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '·';
  color: var(--copper);
  margin-left: 56px;
}
.marquee-track span:last-child::after { content: ''; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   FEATURE CARDS
══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: var(--t);
}
.feature-card:hover {
  border-color: rgba(200,121,65,0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(200,121,65,0.08), 0 8px 40px rgba(0,0,0,0.5);
}
.feature-icon { font-size: 1.75rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text); }
.feature-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ══════════════════════════════════════════
   CATEGORIES GRID
══════════════════════════════════════════ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--amber));
  transform: scaleX(0);
  transition: transform 0.28s ease;
}
.cat-card:hover {
  border-color: rgba(200,121,65,0.3);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(200,121,65,0.08), 0 8px 40px rgba(0,0,0,0.5);
  text-decoration: none;
  color: var(--text);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 2rem; margin-bottom: 12px; }
.cat-name { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.cat-count-badge { font-size: 0.8rem; color: var(--copper); font-weight: 600; margin-top: 5px; }

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(200,121,65,0.1), 0 8px 40px rgba(0,0,0,0.5);
  border-color: rgba(200,121,65,0.28);
}
.product-img {
  height: 200px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder {
  font-size: 3rem;
  color: var(--text-3);
  line-height: 1;
  user-select: none;
}
.product-body { padding: 16px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.product-name {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  gap: 8px;
}
.product-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--copper);
}
.product-unit { font-size: 0.8rem; color: var(--text-3); }
.btn-order {
  background: rgba(200,121,65,0.1);
  color: var(--copper);
  border: 1px solid rgba(200,121,65,0.22);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-order:hover {
  background: var(--copper);
  color: var(--bg);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   PRODUCTS PAGE LAYOUT
══════════════════════════════════════════ */
.products-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.products-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
  margin-left: auto;
  white-space: nowrap;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
}
.mobile-filter-btn:hover { border-color: var(--copper); color: var(--copper); }

.search-wrap { position: relative; flex: 1; min-width: 200px; }
.search-wrap svg {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
}
#searchInput {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 10px 12px 10px 38px;
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: var(--t);
}
#searchInput:focus {
  border-color: var(--copper);
  background: var(--surface-3);
  box-shadow: 0 0 0 3px rgba(200,121,65,0.12);
}
#searchInput::placeholder { color: var(--text-3); }

.filter-select {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 10px 12px;
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
}
.filter-select:focus { border-color: var(--copper); }

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.products-sidebar {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
}
.products-sidebar::-webkit-scrollbar { width: 3px; }
.products-sidebar::-webkit-scrollbar-thumb { background: var(--surface-2); }
.sidebar-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.sidebar-filter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-2);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  transition: var(--t);
  gap: 8px;
}
.sidebar-filter:hover { background: var(--surface-2); color: var(--text); }
.sidebar-filter.active {
  background: rgba(200,121,65,0.1);
  color: var(--copper);
  border-left: 3px solid var(--copper);
  padding-left: 9px;
}
.cat-count {
  background: var(--surface-2);
  color: var(--text-3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.sidebar-filter.active .cat-count {
  background: rgba(200,121,65,0.15);
  color: var(--copper);
}

.products-main { min-width: 0; }

/* Skeleton */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.skeleton-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.skeleton-img { height: 200px; background: var(--surface-2); }
.shimmer {
  background: linear-gradient(90deg, var(--surface-2) 25%, rgba(255,255,255,0.03) 50%, var(--surface-2) 75%);
  background-size: 400% 100%;
  animation: shimmerAnim 1.8s ease-in-out infinite;
  border-radius: 4px;
}
@keyframes shimmerAnim {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-2);
}

/* ══════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.page-btn:hover:not(:disabled) { border-color: var(--copper); color: var(--text); }
.page-btn.active { background: var(--copper); border-color: var(--copper); color: var(--bg); font-weight: 800; }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-dots { color: var(--text-3); padding: 0 4px; font-size: 0.875rem; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #fdf6ec 0%, #f4ead8 100%);
  border: 1px solid rgba(200,121,65,0.30);
  border-radius: var(--r-lg);
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 0 0 80px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,121,65,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { color: var(--text-2); font-size: 1rem; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════
   CONTACT STRIP (index page)
══════════════════════════════════════════ */
.contact-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.contact-strip-item { display: flex; gap: 16px; align-items: center; }
.cs-icon { font-size: 1.5rem; flex-shrink: 0; }
.cs-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.cs-val { font-size: 0.95rem; font-weight: 600; color: var(--text); display: block; }
.cs-val a { color: var(--text); transition: color 0.2s ease; }
.cs-val a:hover { color: var(--copper); text-decoration: none; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #e3ecd7;
  border-top: 1px solid rgba(200,121,65,0.28);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo img { height: 40px; border-radius: 8px; margin-bottom: 14px; }
.footer-desc {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
  max-width: 240px;
  line-height: 1.7;
}
.footer-contacts { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.85rem;
  color: var(--text-2);
}
.footer-contact-item a { color: var(--text-2); transition: color 0.2s ease; }
.footer-contact-item a:hover { color: var(--copper); text-decoration: none; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--t);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover { color: var(--copper); border-color: rgba(200,121,65,0.35); text-decoration: none; }
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
.footer-col li a {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col li a:hover { color: var(--copper); text-decoration: none; }
.footer-col li {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 3px 0;
}
.hours-day-label { color: var(--text-3); font-size: 0.85rem; }
.hours-time-accent { color: var(--copper); }
.hours-closed { color: #ef4444; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-stat-num {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
}
.about-stat-label {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.75rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: var(--t);
}
.why-card:hover { border-color: rgba(200,121,65,0.28); transform: translateY(-3px); box-shadow: var(--shadow-h); }
.why-card-icon { font-size: 1.75rem; margin-bottom: 14px; display: block; }
.why-card h3 { margin-bottom: 8px; color: var(--text); }
.why-card p {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Serve cards */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.serve-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: var(--t);
}
.serve-card:hover { border-color: rgba(200,121,65,0.28); transform: translateY(-3px); }
.serve-card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.serve-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.serve-card p {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.serve-card ul { display: flex; flex-direction: column; gap: 6px; }
.serve-card li {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.serve-card li::before { content: '✓'; position: absolute; left: 0; color: var(--copper); font-weight: 700; }

/* Brands grid */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  transition: var(--t);
}
.brand-card:hover { border-color: rgba(200,121,65,0.28); transform: translateY(-2px); box-shadow: var(--shadow-h); }
.brand-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}
.brand-card-sub {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0 80px;
}
.contact-info-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--t);
}
.contact-info-card:hover { border-color: rgba(200,121,65,0.28); }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.ci-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.ci-value {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
.ci-value a { color: var(--text); transition: color 0.2s ease; }
.ci-value a:hover { color: var(--copper); text-decoration: none; }
.map-wrap {
  margin-top: 24px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}

/* Contact form */
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px;
}
.contact-form-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 28px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; position: relative; }
.form-group label {
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}
.form-group:focus-within label { color: var(--copper); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 12px 16px;
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  background: var(--surface-3);
  box-shadow: 0 0 0 3px rgba(200,121,65,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
  transition: opacity 0.2s, transform 0.2s;
}
.form-group input:focus::placeholder { opacity: 0.4; }
.form-group input:valid:not(:placeholder-shown) {
  border-color: rgba(74,222,128,0.5);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.input-error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.required { color: #ef4444; }

.btn-submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-l) 100%);
  color: var(--bg);
  border: none;
  padding: 15px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(200,121,65,0.3);
  margin-top: 4px;
}
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,121,65,0.4); }
.btn-submit:hover::after { left: 100%; }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.form-success-box .success-icon { font-size: 2.5rem; }
.form-success-box h3 { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.form-success-box p { font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif; color: var(--text-2); font-size: 0.95rem; }

/* Hours */
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.875rem;
  padding: 3px 0;
  gap: 16px;
}
.hours-row span:first-child { color: var(--text-2); }
.hours-row span:last-child { font-weight: 600; }
.hours-closed-txt { color: #ef4444; }

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: var(--t);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  text-decoration: none;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(18,16,14,0.95);
  color: var(--text);
  font-family: 'DM Sans', 'Noto Sans Georgian', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-tooltip { display: none; }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .products-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .float-badge { display: none; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; max-height: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .skeleton-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .btn-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .mobile-filter-btn { display: flex; }
  .products-sidebar { display: none; }
  .products-sidebar.open { display: block; }
  .products-layout { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .skeleton-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .skeleton-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-card { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .cta-banner { padding: 28px 16px; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns .btn { justify-content: center; }
  .contact-form-box { padding: 20px 16px; }
  .stat-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .float-badge { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
