/* ==========================================================================
   Butelii Oradea — Design System
   ========================================================================== */

:root {
  /* Colors */
  --dark: #14171c;
  --dark-2: #1b1f26;
  --dark-3: #232833;
  --dark-border: #2d333f;
  --flame-1: #ffb020;
  --flame-2: #ff5722;
  --flame-3: #e8290a;
  --flame-gradient: linear-gradient(135deg, var(--flame-1) 0%, var(--flame-2) 55%, var(--flame-3) 100%);
  --blue: #2f8dff;
  --blue-dark: #1c5fc4;
  --text-light: #f5f6f8;
  --text-muted-light: #aab2c0;
  --light-bg: #f7f7f9;
  --light-bg-2: #eef0f3;
  --white: #ffffff;
  --ink: #1a1d24;
  --ink-muted: #5b6472;
  --border-light: #e6e8ec;
  --success: #1fae5c;
  --shadow-sm: 0 2px 10px rgba(20, 23, 28, 0.08);
  --shadow-md: 0 12px 30px rgba(20, 23, 28, 0.12);
  --shadow-flame: 0 14px 30px rgba(232, 41, 10, 0.28);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea, select, [contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
img { -webkit-user-drag: none; user-drag: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--flame-3);
  background: rgba(232, 41, 10, .08);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--flame-gradient); }
.eyebrow.on-dark { color: var(--flame-1); background: rgba(255, 176, 32, .12); }

.section-head { max-width: 640px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-flame {
  background: var(--flame-gradient);
  color: #fff;
  box-shadow: var(--shadow-flame);
}
.btn-flame:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(232,41,10,.36); }
.btn-whatsapp {
  background: #25D366;
  color: #08331b;
  box-shadow: 0 12px 26px rgba(37, 211, 102, .32);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(37,211,102,.4); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--border-light);
  color: var(--ink);
}
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-ghost {
  background: var(--dark-3);
  color: var(--text-light);
}
.btn-ghost:hover { background: var(--dark-border); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(20, 23, 28, .98);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar {
  background: var(--dark);
  color: var(--text-muted-light);
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
}
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--flame-1); }
.topbar a:hover { color: var(--flame-1); }
.topbar-links { display: flex; gap: 18px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.28rem;
  color: #fff;
  flex-shrink: 0;
}
.logo .flame-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--flame-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-flame);
}
.logo .flame-icon svg { width: 22px; height: 22px; color: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text span.tag {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--flame-1);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  font-size: .95rem;
}
.nav-links a { color: var(--text-muted-light); padding: 6px 0; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--flame-gradient); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.has-dropdown { position: relative; }
.has-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 280px; height: 16px;
}
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 270px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; translate: 0 8px;
  transition: opacity .18s ease, translate .18s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; translate: 0 0; }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px; font-size: .9rem; color: var(--text-muted-light);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--dark-3); color: #fff; }
.dropdown a span.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: .95rem;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--flame-1); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--dark-3); border: 1px solid var(--dark-border);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: radial-gradient(circle at 15% 20%, rgba(255,87,34,.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(47,141,255,.14), transparent 40%),
              linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: .45em;
}
.hero h1 .accent {
  background: var(--flame-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: var(--text-muted-light);
  font-size: 1.14rem;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 9px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 500; color: var(--text-light);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--flame-1); }

.hero-visual { position: relative; }
.hero-visual-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
  height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-float-tag {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem;
}
.hero-float-tag strong { display: block; font-size: 1rem; font-family: 'Poppins', sans-serif; }
.hero-float-tag.tag-1 { top: 6%; left: -6%; }
.hero-float-tag.tag-2 { bottom: 8%; right: -8%; }
.hero-float-tag .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--flame-gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-tag .icon-circle svg { width: 20px; height: 20px; color: #fff; }
.hero-float-tag.blue .icon-circle { background: linear-gradient(135deg, #4fa2ff, var(--blue-dark)); }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--light-bg); padding: 26px 0; border-bottom: 1px solid var(--border-light); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .9rem; color: var(--ink-muted);
}
.trust-strip-item svg { width: 20px; height: 20px; color: var(--flame-3); flex-shrink: 0; }

/* ==========================================================================
   Products
   ========================================================================== */
.section { padding: 90px 0; }
.section.tight { padding: 60px 0; }
.section.on-light-2 { background: var(--light-bg); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px 24px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card .img-wrap {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
  height: 190px;
  display: flex; align-items: center; justify-content: center;
}
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-card .swatch { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.product-card .weight { color: var(--ink-muted); font-size: .85rem; margin-bottom: 12px; }
.product-card .price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 16px; color: var(--ink); }
.product-card .price span { font-size: .9rem; font-weight: 500; color: var(--ink-muted); }
.product-card .card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }

/* ==========================================================================
   Steps / process
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); }
.step-num {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.4rem;
  background: var(--flame-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px; display: block;
}
.step-card h3 { font-size: 1.08rem; }
.step-card p { color: var(--ink-muted); font-size: .92rem; margin: 0; }

/* ==========================================================================
   Feature / why-us grid
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--text-light);
}
.feature-card .icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,176,32,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card .icon-box svg { width: 26px; height: 26px; color: var(--flame-1); }
.feature-card h3 { color: #fff; font-size: 1.08rem; }
.feature-card p { color: var(--text-muted-light); font-size: .92rem; margin: 0; }
.section.on-dark { background: var(--dark); }
.section.on-dark .section-head p { color: var(--text-muted-light); }
.section.on-dark .section-head h2 { color: #fff; }

/* ==========================================================================
   Coverage area
   ========================================================================== */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; margin-top: 20px; }
.area-list li { display: flex; align-items: center; gap: 8px; font-size: .93rem; color: var(--ink-muted); }
.area-list li svg { width: 16px; height: 16px; color: var(--flame-3); flex-shrink: 0; }
.area-list.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
.area-map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.area-map-box iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band {
  background: var(--flame-gradient);
  padding: 46px 0;
  color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid .num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.1rem; }
.stats-grid .label { font-size: .85rem; opacity: .92; font-weight: 500; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  border-radius: var(--radius-lg);
  padding: 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
  color: #fff;
  border: 1px solid var(--dark-border);
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-band p { color: var(--text-muted-light); margin: 0; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Card payment feature showcase ---------- */
.card-feature {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 60%, #1a1330 100%);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.card-feature::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(47,141,255,.16), transparent 65%);
  pointer-events: none;
}
.card-feature-text { position: relative; z-index: 1; }
.card-feature-text h2 { color: #fff; font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-bottom: 10px; }
.card-feature-text p { color: var(--text-muted-light); font-size: .96rem; max-width: 420px; margin-bottom: 20px; }
.card-feature-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.card-feature-visual svg { width: 100%; max-width: 230px; height: auto; filter: drop-shadow(0 18px 26px rgba(0,0,0,.45)); }
.card-feature-badge {
  position: absolute; z-index: 2; left: 50%; bottom: -6px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink); font-size: .74rem; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
}
.card-feature-badge svg { width: 13px; height: 13px; color: var(--success); flex-shrink: 0; }

/* ==========================================================================
   Testimonials-free "reviews summary" block
   ========================================================================== */
.review-summary {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 18px 22px;
}
.review-summary .stars { color: var(--flame-2); display: flex; gap: 2px; }
.review-summary .stars svg { width: 18px; height: 18px; }
.review-summary strong { font-family: 'Poppins', sans-serif; font-size: 1.05rem; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb-bar { background: var(--dark); padding: 18px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted-light); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--flame-1); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: #fff; }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 56px 0 70px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: var(--text-muted-light); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ==========================================================================
   Product detail
   ========================================================================== */
.product-detail-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: flex-start; }
.product-detail-image {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: sticky;
  top: 110px;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.product-detail-image img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-info .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.product-detail-info .price-big { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--ink); }
.product-detail-info .price-note { color: var(--ink-muted); font-size: .95rem; }
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0 28px; }
.spec-list .spec {
  background: var(--light-bg); border-radius: var(--radius-sm); padding: 14px 16px;
}
.spec-list .spec .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-muted); margin-bottom: 4px; }
.spec-list .spec .value { font-weight: 700; font-family: 'Poppins', sans-serif; }
.detail-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.warranty-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(31,174,92,.08); border: 1px solid rgba(31,174,92,.25);
  border-radius: var(--radius-md); padding: 18px 20px; margin-top: 10px;
}
.warranty-note svg { width: 24px; height: 24px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.warranty-note strong { display: block; margin-bottom: 3px; }
.warranty-note p { margin: 0; font-size: .9rem; color: var(--ink-muted); }
.warranty-note.info { background: rgba(47,141,255,.08); border-color: rgba(47,141,255,.25); }
.warranty-note.info svg { color: var(--blue); }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ==========================================================================
   Content pages (despre / livrare / termeni)
   ========================================================================== */
.content-block { max-width: 820px; }
.content-block h2 { font-size: 1.5rem; margin-top: 1.6em; }
.content-block h2:first-child { margin-top: 0; }
.content-block p, .content-block li { color: var(--ink-muted); font-size: 1rem; }
.content-block ul { margin: 0 0 1.2em; }
.content-block li { position: relative; padding-left: 24px; margin-bottom: 8px; }
.content-block li::before {
  content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--flame-gradient);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { text-align: center; padding: 26px 18px; border-radius: var(--radius-md); background: var(--light-bg); }
.value-card .icon-box {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--flame-gradient); display: flex; align-items: center; justify-content: center;
}
.value-card .icon-box svg { width: 26px; height: 26px; color: #fff; }
.value-card h3 { font-size: 1rem; }
.value-card p { font-size: .88rem; color: var(--ink-muted); margin: 0; }

.timeline { border-left: 2px solid var(--border-light); padding-left: 30px; margin-left: 6px; }
.timeline .t-item { position: relative; padding-bottom: 34px; }
.timeline .t-item:last-child { padding-bottom: 0; }
.timeline .t-item::before {
  content: ''; position: absolute; left: -37px; top: 2px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--flame-gradient); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--flame-2);
}
.timeline .t-year { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--flame-3); font-size: .9rem; }

.partner-strip { display: flex; flex-wrap: wrap; gap: 14px; }
.partner-chip {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: .88rem; color: var(--ink-muted);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq-q svg { width: 20px; height: 20px; color: var(--flame-3); flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; color: var(--ink-muted); font-size: .95rem; }
.faq-a p { margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .88rem; }
.field label .req { color: var(--flame-3); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border-light); border-radius: 10px; padding: 13px 15px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--light-bg);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--flame-2); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--ink-muted); margin-top: 6px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.info-card {
  background: var(--dark-2); border: 1px solid var(--dark-border); border-radius: var(--radius-md);
  padding: 24px; color: var(--text-light);
}
.info-card .icon-box {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,176,32,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.info-card .icon-box svg { width: 22px; height: 22px; color: var(--flame-1); }
.info-card h3 { font-size: .95rem; color: #fff; margin-bottom: 4px; }
.info-card p { font-size: .88rem; color: var(--text-muted-light); margin: 0; }
.info-card a:hover { color: var(--flame-1); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: var(--text-muted-light); padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid var(--dark-border);
}
.footer-about p { color: var(--text-muted-light); font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: .92rem; color: var(--text-muted-light); }
.footer-col a:hover { color: var(--flame-1); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; margin-bottom: 14px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--flame-1); flex-shrink: 0; margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--dark-3);
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--dark-border);
}
.social-row a svg { width: 17px; height: 17px; }
.social-row a:hover { background: var(--flame-gradient); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 24px 0; font-size: .84rem;
}
.footer-bottom a:hover { color: var(--flame-1); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-partners { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 34px; }
.footer-partners span {
  font-size: .78rem; color: var(--text-muted-light); background: var(--dark-2);
  border: 1px solid var(--dark-border); padding: 6px 14px; border-radius: 999px;
}
.footer-legal { padding: 24px 0; border-top: 1px solid var(--dark-border); }
.footer-legal p { font-size: .82rem; color: var(--text-muted-light); margin: 0 0 12px; max-width: 640px; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-legal-links a {
  font-size: .78rem; font-weight: 600; color: var(--text-light); background: var(--dark-2);
  border: 1px solid var(--dark-border); padding: 8px 16px; border-radius: 999px;
}
.footer-legal-links a:hover { border-color: var(--flame-2); color: var(--flame-1); }

/* ==========================================================================
   Cookie notice
   ========================================================================== */
.cookie-notice {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 800;
  max-width: 560px; margin: 0 auto;
  background: var(--dark-2); border: 1px solid var(--dark-border); border-radius: var(--radius-md);
  padding: 18px 20px; box-shadow: var(--shadow-md);
  display: none; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-notice.show { display: flex; }
.cookie-notice p { margin: 0; font-size: .85rem; color: var(--text-muted-light); flex: 1; min-width: 220px; }
.cookie-notice p a { color: var(--flame-1); font-weight: 600; }
.cookie-notice button {
  background: var(--flame-gradient); color: #fff; border: 0; border-radius: 999px;
  padding: 10px 20px; font-weight: 600; font-size: .85rem; flex-shrink: 0;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.float-whatsapp {
  position: fixed; bottom: 22px; right: 22px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: pulse-wa 2.4s infinite;
}
.float-whatsapp svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   404
   ========================================================================== */
.error-page { text-align: center; padding: 130px 0; }
.error-page .code {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(5rem, 14vw, 9rem);
  background: var(--flame-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-image { position: static; }
  .area-grid { grid-template-columns: 1fr; }
  .area-list.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1040px) {
  .nav-links, .nav-phone span { display: none; }
  .nav-toggle { display: flex; }
  .topbar-links { display: none; }
  .nav-cta .btn { padding: 11px 18px; font-size: .88rem; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .has-dropdown .dropdown { display: none !important; }
  .card-feature { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
  .card-feature-text p { margin-left: auto; margin-right: auto; }
  .card-feature-visual { order: -1; max-width: 190px; margin: 0 auto 18px; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .spec-list { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .hero { padding: 44px 0 60px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .area-list, .area-list.cols-3 { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .hero-float-tag { position: static; margin-top: 14px; }
  .hero-visual-card { padding: 18px; }
}
@media (max-width: 540px) {
  .navbar { padding: 12px 16px; gap: 10px; }
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo .flame-icon { width: 34px; height: 34px; }
  .logo .flame-icon svg { width: 18px; height: 18px; }
  .logo-text .tag { display: none; }
  .nav-phone { display: none; }
  .nav-cta .btn { padding: 10px 14px; font-size: .82rem; }
}

/* Mobile nav drawer */
.nav-links.open {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
  background: var(--dark-2); padding: 90px 26px 26px; z-index: 700;
  box-shadow: -20px 0 40px rgba(0,0,0,.35);
}
.nav-links.open a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--dark-border); }
.nav-links.open a::after { display: none; }
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 650; }
.nav-backdrop.open { display: block; }
.nav-close { display: none; position: fixed; top: 22px; right: 26px; z-index: 720; width: 40px; height: 40px; border-radius: 10px; background: var(--dark-3); border: 1px solid var(--dark-border); align-items: center; justify-content: center; }
.nav-close.open { display: flex; }
.nav-close svg { width: 20px; height: 20px; color: #fff; }
