/** Shopify CDN: Minification failed

Line 34:0 All "@import" rules must come first

**/
/* ============================================
   ECOFILTER ARGENTINA — DAWN CUSTOM STYLES
   ============================================ */

:root {
  --ef-black:      #0D0D0D;
  --ef-white:      #FFFFFF;
  --ef-green:      #00A896;   /* teal de las imágenes */
  --ef-green-dark: #007A6E;
  --ef-green-light:#00C4B0;
  --ef-steel:      #6B7B7A;
  --ef-steel-light:#B0C4C2;
  --ef-yellow:     #F0C419;
  --ef-bg:         #F2F8F7;   /* blanco con toque teal muy suave */
  --ef-surface:    #1A2322;

  --ef-font-display: 'Bebas Neue', sans-serif;
  --ef-font-body:    'Inter', sans-serif;

  --ef-radius:  6px;
  --ef-radius-lg: 12px;

  --ef-max-width: 1280px;
  --ef-section-padding: 80px 20px;
  --ef-section-padding-sm: 48px 20px;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* Reset section defaults from Dawn */
.shopify-section { margin: 0; }

/* ============================================
   SHARED COMPONENTS
   ============================================ */

.ef-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ef-green);
  color: var(--ef-white);
  font-family: var(--ef-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: var(--ef-radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ef-btn-primary:hover {
  background: var(--ef-green-dark);
  transform: translateY(-1px);
}

.ef-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ef-white);
  font-family: var(--ef-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--ef-radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ef-btn-secondary:hover {
  border-color: var(--ef-white);
  background: rgba(255,255,255,0.08);
}

.ef-eyebrow {
  font-family: var(--ef-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ef-green);
}

.ef-section-title {
  font-family: var(--ef-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ef-black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 8px 0 16px;
}

.ef-section-title--white {
  color: var(--ef-white);
}

.ef-container {
  max-width: var(--ef-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SECTION: HERO
   ============================================ */

.ef-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--ef-black);
  overflow: hidden;
}

.ef-hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.03) 59px,
      rgba(255,255,255,0.03) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.03) 59px,
      rgba(255,255,255,0.03) 60px
    );
  pointer-events: none;
}

.ef-hero__green-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse, rgba(46,139,91,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ef-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--ef-max-width);
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.ef-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,139,91,0.15);
  border: 1px solid rgba(46,139,91,0.4);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.ef-hero__badge span {
  font-family: var(--ef-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ef-green-light);
}
.ef-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--ef-green-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.ef-hero__heading {
  font-family: var(--ef-font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ef-white);
  margin: 0 0 24px;
}

.ef-hero__heading em {
  font-style: normal;
  color: var(--ef-green);
  display: block;
}

.ef-hero__sub {
  font-family: var(--ef-font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ef-steel-light);
  margin: 0 0 36px;
  max-width: 480px;
}

.ef-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ef-hero__proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ef-hero__proof-item {
  display: flex;
  flex-direction: column;
}

.ef-hero__proof-number {
  font-family: var(--ef-font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ef-white);
  line-height: 1;
}

.ef-hero__proof-label {
  font-family: var(--ef-font-body);
  font-size: 0.7rem;
  color: var(--ef-steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.ef-hero__proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.ef-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ef-hero__filter-card {
  background: var(--ef-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ef-radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 380px;
}

.ef-hero__filter-title {
  font-family: var(--ef-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ef-green);
  margin-bottom: 20px;
}

.ef-hero__filter-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ef-hero__filter-stage:last-child { border-bottom: none; }

.ef-hero__filter-stage-num {
  width: 32px;
  height: 32px;
  background: rgba(46,139,91,0.15);
  border: 1px solid rgba(46,139,91,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ef-font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ef-green-light);
  flex-shrink: 0;
}

.ef-hero__filter-stage-info { flex: 1; }

.ef-hero__filter-stage-micron {
  font-family: var(--ef-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ef-white);
}

.ef-hero__filter-stage-desc {
  font-family: var(--ef-font-body);
  font-size: 0.72rem;
  color: var(--ef-steel);
  margin-top: 1px;
}

.ef-hero__filter-check {
  color: var(--ef-green-light);
  font-size: 1rem;
}

.ef-hero__filter-result {
  margin-top: 20px;
  background: rgba(46,139,91,0.1);
  border: 1px solid rgba(46,139,91,0.25);
  border-radius: var(--ef-radius);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ef-hero__filter-result-label {
  font-family: var(--ef-font-body);
  font-size: 0.75rem;
  color: var(--ef-steel-light);
}

.ef-hero__filter-result-value {
  font-family: var(--ef-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ef-green-light);
}

/* ============================================
   SECTION: PROBLEM
   ============================================ */

.ef-problem {
  background: var(--ef-bg);
  padding: var(--ef-section-padding);
}

.ef-problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ef-problem__body {
  font-family: var(--ef-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 32px;
}

.ef-problem__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ef-problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ef-font-body);
  font-size: 0.9rem;
  color: #333;
}

.ef-problem__list li::before {
  content: "✕";
  color: #C0392B;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ef-problem__solution {
  background: var(--ef-black);
  border-radius: var(--ef-radius-lg);
  padding: 40px;
  color: var(--ef-white);
}

.ef-problem__solution-title {
  font-family: var(--ef-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ef-white);
  margin: 0 0 24px;
}

.ef-problem__solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ef-problem__solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ef-font-body);
  font-size: 0.9rem;
  color: var(--ef-steel-light);
  line-height: 1.5;
}

.ef-problem__solution-icon {
  width: 20px;
  height: 20px;
  background: var(--ef-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   SECTION: CATEGORIES
   ============================================ */

.ef-categories {
  background: var(--ef-white);
  padding: var(--ef-section-padding);
}

.ef-categories__header {
  text-align: center;
  margin-bottom: 48px;
}

.ef-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ef-categories__card {
  position: relative;
  display: block;
  background: var(--ef-black);
  border-radius: var(--ef-radius-lg);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3/4;
  transition: transform 0.25s ease;
}
.ef-categories__card:hover { transform: translateY(-4px); }

.ef-categories__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ef-categories__card:hover .ef-categories__card-img {
  opacity: 0.65;
  transform: scale(1.03);
}

.ef-categories__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.ef-categories__card-label {
  font-family: var(--ef-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ef-white);
  display: block;
  margin-bottom: 6px;
}

.ef-categories__card-cta {
  font-family: var(--ef-font-body);
  font-size: 0.75rem;
  color: var(--ef-green-light);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.06em;
}

.ef-categories__card--featured {
  grid-row: span 1;
}

/* ============================================
   SECTION: STATS (Firma única)
   ============================================ */

.ef-stats {
  background: var(--ef-black);
  padding: var(--ef-section-padding);
  position: relative;
  overflow: hidden;
}

.ef-stats__bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(46,139,91,0.15);
  transform: translateY(-50%);
}

.ef-stats__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.ef-stats__subtitle {
  font-family: var(--ef-font-body);
  font-size: 0.95rem;
  color: var(--ef-steel);
  margin-top: 12px;
}

.ef-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--ef-radius-lg);
  overflow: hidden;
  position: relative;
}

.ef-stats__item {
  background: var(--ef-black);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.2s ease;
}
.ef-stats__item:hover { background: var(--ef-surface); }

.ef-stats__number {
  font-family: var(--ef-font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--ef-white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.ef-stats__number--green { color: var(--ef-green-light); }

.ef-stats__unit {
  font-family: var(--ef-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ef-green-light);
  vertical-align: super;
}

.ef-stats__label {
  font-family: var(--ef-font-body);
  font-size: 0.75rem;
  color: var(--ef-steel);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  display: block;
}

.ef-stats__source {
  font-family: var(--ef-font-body);
  font-size: 0.65rem;
  color: rgba(138,138,138,0.5);
  margin-top: 6px;
  display: block;
}

.ef-stats__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   SECTION: BEST SELLERS
   ============================================ */

.ef-best-sellers {
  background: var(--ef-bg);
  padding: var(--ef-section-padding);
}

.ef-best-sellers__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.ef-best-sellers__view-all {
  font-family: var(--ef-font-body);
  font-size: 0.85rem;
  color: var(--ef-green);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.ef-best-sellers__view-all:hover { gap: 8px; }

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

.ef-product-card {
  background: var(--ef-white);
  border-radius: var(--ef-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.ef-product-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.ef-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ef-yellow);
  color: var(--ef-black);
  font-family: var(--ef-font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.ef-product-card__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ef-bg);
}

.ef-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}
.ef-product-card:hover .ef-product-card__img { transform: scale(1.05); }

.ef-product-card__body {
  padding: 16px;
}

.ef-product-card__type {
  font-family: var(--ef-font-body);
  font-size: 0.7rem;
  color: var(--ef-steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.ef-product-card__title {
  font-family: var(--ef-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ef-black);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ef-product-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.ef-product-card__price-sale {
  font-family: var(--ef-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ef-green-dark);
}

.ef-product-card__price-original {
  font-family: var(--ef-font-body);
  font-size: 0.85rem;
  color: var(--ef-steel);
  text-decoration: line-through;
}

.ef-product-card__add {
  width: 100%;
  background: var(--ef-black);
  color: var(--ef-white);
  font-family: var(--ef-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 16px;
  border: none;
  border-radius: var(--ef-radius);
  cursor: pointer;
  transition: background 0.2s ease;
}
.ef-product-card__add:hover { background: var(--ef-green); }

/* ============================================
   SECTION: PROOF (Lab results)
   ============================================ */

.ef-proof {
  background: var(--ef-white);
  padding: var(--ef-section-padding);
}

.ef-proof__header {
  text-align: center;
  margin-bottom: 64px;
}

.ef-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ef-proof__card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--ef-radius-lg);
  overflow: hidden;
}

.ef-proof__card-header {
  background: var(--ef-black);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ef-proof__card-title {
  font-family: var(--ef-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ef-white);
}

.ef-proof__card-badge {
  background: rgba(46,139,91,0.2);
  border: 1px solid rgba(46,139,91,0.4);
  color: var(--ef-green-light);
  font-family: var(--ef-font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
}

.ef-proof__card-body {
  padding: 24px;
}

.ef-proof__compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ef-proof__compare-row:last-child { border-bottom: none; }

.ef-proof__compare-label {
  font-family: var(--ef-font-body);
  font-size: 0.8rem;
  color: #555;
  flex: 1;
}

.ef-proof__compare-before {
  font-family: var(--ef-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #C0392B;
  text-align: right;
  min-width: 80px;
}

.ef-proof__compare-arrow {
  color: var(--ef-steel-light);
  font-size: 0.8rem;
}

.ef-proof__compare-after {
  font-family: var(--ef-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ef-green);
  text-align: right;
  min-width: 80px;
}

.ef-proof__bar-wrap {
  margin: 20px 0 4px;
}

.ef-proof__bar-label {
  font-family: var(--ef-font-body);
  font-size: 0.75rem;
  color: var(--ef-steel);
  margin-bottom: 6px;
}

.ef-proof__bar-track {
  background: var(--ef-bg);
  border-radius: 100px;
  height: 8px;
  position: relative;
  overflow: hidden;
}

.ef-proof__bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--ef-green);
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ef-proof__bar-fill--danger {
  background: #C0392B;
}

.ef-proof__vtv {
  background: var(--ef-bg);
  border-radius: var(--ef-radius-lg);
  padding: 24px;
}

.ef-proof__vtv-title {
  font-family: var(--ef-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ef-black);
  margin-bottom: 20px;
}

.ef-proof__vtv-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ef-proof__vtv-box {
  background: var(--ef-white);
  border-radius: var(--ef-radius);
  padding: 20px;
  text-align: center;
  border: 2px solid transparent;
}

.ef-proof__vtv-box--fail {
  border-color: rgba(192,57,43,0.3);
}

.ef-proof__vtv-box--pass {
  border-color: rgba(46,139,91,0.4);
}

.ef-proof__vtv-status {
  font-family: var(--ef-font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ef-proof__vtv-status--fail { color: #C0392B; }
.ef-proof__vtv-status--pass { color: var(--ef-green); }

.ef-proof__vtv-reading {
  font-family: var(--ef-font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.ef-proof__vtv-reading--fail { color: #C0392B; }
.ef-proof__vtv-reading--pass { color: var(--ef-green); }

.ef-proof__vtv-unit {
  font-family: var(--ef-font-body);
  font-size: 0.72rem;
  color: var(--ef-steel);
}

.ef-proof__vtv-desc {
  font-family: var(--ef-font-body);
  font-size: 0.7rem;
  color: var(--ef-steel);
  margin-top: 8px;
}

.ef-proof__vtv-improvement {
  margin-top: 16px;
  background: var(--ef-green);
  border-radius: var(--ef-radius);
  padding: 14px 16px;
  text-align: center;
  color: var(--ef-white);
  font-family: var(--ef-font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   SECTION: FAQ
   ============================================ */

.ef-faq {
  background: var(--ef-bg);
  padding: var(--ef-section-padding);
}

.ef-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.ef-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.ef-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ef-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.ef-faq__q-text {
  font-family: var(--ef-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ef-black);
  letter-spacing: 0.02em;
}

.ef-faq__icon {
  width: 24px;
  height: 24px;
  background: var(--ef-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s ease;
  color: white;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
}

.ef-faq__item--open .ef-faq__icon {
  background: var(--ef-green);
  transform: rotate(45deg);
}

.ef-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ef-faq__a-text {
  font-family: var(--ef-font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  padding-bottom: 20px;
}

/* ============================================
   SECTION: CTA FINAL
   ============================================ */

.ef-cta-final {
  background: var(--ef-green);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ef-cta-final__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.ef-cta-final__content { position: relative; z-index: 1; }

.ef-cta-final__heading {
  font-family: var(--ef-font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ef-white);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0 0 16px;
}

.ef-cta-final__sub {
  font-family: var(--ef-font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
}

.ef-cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ef-cta-final .ef-btn-primary {
  background: var(--ef-white);
  color: var(--ef-green-dark);
}
.ef-cta-final .ef-btn-primary:hover {
  background: var(--ef-bg);
}

.ef-cta-final .ef-btn-secondary {
  border-color: rgba(255,255,255,0.5);
}

/* ============================================
   ANNOUNCEMENT BAR OVERRIDE
   ============================================ */

.announcement-bar {
  background: var(--ef-green) !important;
  color: var(--ef-white) !important;
  font-family: var(--ef-font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
}

/* ============================================
   HEADER OVERRIDE
   ============================================ */

.header {
  background: var(--ef-black) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.header__heading-link,
.header__menu-item,
.header__icon {
  color: var(--ef-white) !important;
}

.header__heading-link:hover,
.header__menu-item:hover {
  color: var(--ef-green-light) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .ef-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .ef-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ef-best-sellers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --ef-section-padding: 56px 20px;
  }

  .ef-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 20px 60px;
  }
  .ef-hero__visual { display: none; }

  .ef-problem__inner { grid-template-columns: 1fr; gap: 40px; }
  .ef-proof__grid { grid-template-columns: 1fr; }
  .ef-proof__vtv-compare { grid-template-columns: 1fr 1fr; }

  .ef-best-sellers__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ef-best-sellers__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .ef-hero__proof { flex-wrap: wrap; gap: 16px; }
  .ef-hero__proof-divider { display: none; }
}

@media (max-width: 480px) {
  .ef-categories__grid { grid-template-columns: 1fr 1fr; }
  .ef-best-sellers__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ef-stats__grid { grid-template-columns: 1fr 1fr; }
}
