/* ===========================================
   01. VARIABLES & CSS RESET
   =========================================== */

:root {
  --ec-olive-900: #556B2F;
  --ec-green-700: #6E8B3D;
  --ec-gold-500:  #B59A3A;
  --ec-gold-400:  #C8AF56;

  --ec-bg:        #F5F2E8;
  --ec-white:     #FFFFFF;
  --ec-line:      #E9E5D8;
  --ec-text:      #3B3B3B;
  --ec-text-soft: #6B6B6B;
  --ec-charcoal:  #2C2C2C;

  --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  28px;
  --radius-pill: 999px;

  --shadow-soft: 0 6px 18px rgba(44, 44, 44, 0.06);
  --shadow-md:   0 10px 30px rgba(44, 44, 44, 0.10);
  --shadow-lg:   0 18px 50px rgba(44, 44, 44, 0.14);
  --shadow-xl:   0 32px 80px rgba(44, 44, 44, 0.20);

  --container-xl: 1280px;
  --header-h: 72px;
  --topbar-h: 38px;

  --transition-fast:   150ms ease;
  --transition-base:   200ms ease;
  --transition-slow:   300ms ease-out;
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --glow-green: rgba(110, 139, 61, 0.45);
  --glow-gold:  rgba(181, 154, 58, 0.45);
  --glow-olive: rgba(85, 107, 47, 0.45);

  /* Updated by JS for mouse-following glow */
  --card-glow-x: 50%;
  --card-glow-y: 50%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ec-text);
  background: var(--ec-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-base);
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-base);
}

/* ===========================================
   02. KEYFRAMES
   =========================================== */

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%       { border-radius: 50% 50% 40% 60% / 40% 70% 30% 60%; }
  75%       { border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%; }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.5deg); }
  66%       { transform: translateY(-6px) rotate(-0.5deg); }
}

@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33%       { transform: translate(40px, -30px) scale(1.08); opacity: 0.9; }
  66%       { transform: translate(-20px, 20px) scale(0.95); opacity: 0.6; }
}

@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33%       { transform: translate(-35px, 25px) scale(1.1); opacity: 0.8; }
  66%       { transform: translate(25px, -15px) scale(0.93); opacity: 0.5; }
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes pulseGlow {
  0%   { opacity: 0; transform: scale(0.8); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.6); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes badgePop {
  0%   { opacity: 0; transform: scale(0.8) translateY(8px); }
  70%  { transform: scale(1.05) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(110, 139, 61, 0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(110, 139, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 139, 61, 0); }
}

@keyframes floatCta {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================
   03. LAYOUT UTILITIES
   =========================================== */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, var(--ec-olive-900) 0%, var(--ec-green-700) 50%, #8aaa44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================================
   04. BUTTONS
   =========================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: background var(--transition-base), color var(--transition-base),
              box-shadow var(--transition-base), transform var(--transition-fast),
              border-color var(--transition-base);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--ec-green-700);
  outline-offset: 3px;
}

/* Shimmer sweep on all buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-15deg);
  transition: none;
}

.btn:hover::after {
  animation: shimmerSweep 0.55s ease forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ec-green-700) 0%, #5a7a2a 100%);
  color: var(--ec-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--ec-olive-900) 0%, var(--ec-green-700) 100%);
  box-shadow: 0 8px 28px rgba(110, 139, 61, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-secondary {
  background: var(--ec-white);
  color: var(--ec-olive-900);
  border: 1.5px solid var(--ec-line);
}

.btn-secondary:hover {
  border-color: var(--ec-olive-900);
  background: var(--ec-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-white {
  background: var(--ec-white);
  color: var(--ec-olive-900);
}

.btn-white:hover {
  background: var(--ec-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-outline-white {
  background: transparent;
  color: var(--ec-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--ec-white);
  transform: translateY(-2px);
}

.btn-lg {
  height: 54px;
  padding: 0 var(--space-5);
  font-size: 14px;
}

.btn-full { width: 100%; }

/* ===========================================
   05. LINK ARROW
   =========================================== */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ec-green-700);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition-base), color var(--transition-base);
}

.link-arrow:hover {
  color: var(--ec-olive-900);
  gap: 10px;
}

.link-subtle {
  color: var(--ec-text-soft);
  font-weight: 500;
}

.link-subtle:hover {
  color: var(--ec-green-700);
}

/* ===========================================
   06. SECTION COMMON
   =========================================== */

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ec-green-700);
  margin-bottom: var(--space-2);
  padding: 5px 13px;
  background: rgba(110, 139, 61, 0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(110, 139, 61, 0.15);
}

/* ===========================================
   07. TOPBAR
   =========================================== */

.topbar {
  background: linear-gradient(90deg, #3a4d1e 0%, var(--ec-olive-900) 50%, #3a4d1e 100%);
  background-size: 200% 100%;
  color: rgba(255, 255, 255, 0.92);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.topbar-center {
  text-align: center;
  font-weight: 600;
  color: rgba(255,255,255,1);
  flex-shrink: 1;
}

/* ===========================================
   08. HEADER & NAVIGATION
   =========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(233, 229, 216, 0.7);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(44, 44, 44, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  height: var(--header-h);
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

.header-logo:hover {
  transform: scale(1.03);
}

.header-logo img {
  height: 38px;
  width: auto;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.header-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ec-text);
  border-radius: var(--radius-md);
  transition: color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--ec-green-700), var(--ec-gold-500));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--transition-spring);
  transform-origin: left;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-nav a:hover {
  color: var(--ec-olive-900);
  background: rgba(110, 139, 61, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--ec-text);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-fast);
}

.icon-btn:hover {
  background: rgba(110, 139, 61, 0.08);
  color: var(--ec-olive-900);
  transform: scale(1.08);
}

.icon-btn:focus-visible {
  outline: 2px solid var(--ec-green-700);
  outline-offset: 2px;
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ec-green-700), var(--ec-olive-900));
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cta {
  margin-left: var(--space-1);
  height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  margin-left: auto;
  transition: background var(--transition-base);
}

.hamburger:hover { background: rgba(110, 139, 61, 0.08); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ec-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--ec-line);
  background: var(--ec-white);
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ec-text);
  border-radius: var(--radius-md);
  transition: background var(--transition-base), color var(--transition-base);
}

.mobile-menu a:hover {
  background: rgba(110, 139, 61, 0.07);
  color: var(--ec-olive-900);
}

.mobile-cta { margin-top: var(--space-1); }

/* ===========================================
   09. HERO SECTION — Premium Dark Edition
   =========================================== */

.section-hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: 80px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(181,154,58,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(85,107,47,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #0b1708 0%, #142210 30%, #1c3318 60%, #111d0c 100%);
}

/* Noise grain texture */
.hero-bg-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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glows */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow--gold {
  width: 700px;
  height: 700px;
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(200,175,86,0.18) 0%, rgba(181,154,58,0.08) 45%, transparent 70%);
  animation: auroraFloat1 20s ease-in-out infinite;
}

.hero-bg-glow--green {
  width: 600px;
  height: 600px;
  bottom: -20%;
  left: -5%;
  background: radial-gradient(circle, rgba(85,107,47,0.18) 0%, rgba(110,139,61,0.06) 50%, transparent 70%);
  animation: auroraFloat2 26s ease-in-out infinite;
}

/* Canvas particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* Layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h) - 140px);
}

/* ── LEFT COPY ── */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ec-gold-400);
  box-shadow: 0 0 8px rgba(200,175,86,0.7);
  animation: glowPulseRing 2s ease-out infinite;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,175,86,0.9);
  margin-bottom: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  animation: none;
}

.hero-headline {
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  font-style: normal;
}

.hero-headline em {
  font-style: normal;
  display: block;
}

.headline-accent {
  background: linear-gradient(120deg, #c8af56 0%, #a8c44a 40%, #6E8B3D 80%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  margin-bottom: 36px;
}

/* Hero CTAs — dark theme versions */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #7aaa3a 0%, var(--ec-green-700) 50%, var(--ec-olive-900) 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(122,170,58,0.4), 0 8px 32px rgba(110,139,61,0.4);
  border: none;
  animation: gradientShift 4s ease infinite;
}

.btn-hero-primary:hover {
  box-shadow: 0 0 0 1px rgba(122,170,58,0.6), 0 12px 40px rgba(110,139,61,0.55);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.36);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  background: none;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-stat span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ── RIGHT VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

/* Main light cone — warm gold behind product */
.hero-light-cone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    rgba(200,175,86,0.28) 0%,
    rgba(181,154,58,0.14) 30%,
    rgba(110,139,61,0.07) 55%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: auroraFloat1 10s ease-in-out infinite;
}

/* Spinning outer ring */
.hero-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(200,175,86,0.15);
  box-shadow:
    0 0 60px rgba(200,175,86,0.08),
    inset 0 0 60px rgba(200,175,86,0.06);
  animation: spinSlow 30s linear infinite;
  pointer-events: none;
}

/* Dashes on ring */
.hero-glow-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(110,139,61,0.18);
}

/* Product image */
.hero-product-img {
  position: relative;
  z-index: 3;
  max-width: 400px;
  width: 85%;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,0.55))
    drop-shadow(0 0 60px rgba(181,154,58,0.25))
    drop-shadow(0 0 20px rgba(110,139,61,0.2));
  animation: heroFloat 7s ease-in-out infinite;
  transform-origin: center bottom;
}

/* ── FLOATING CHIPS A / B / C ── */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-pill);
  padding: 10px 16px 10px 10px;
  z-index: 4;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.chip-letter {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ec-olive-900), var(--ec-green-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(85,107,47,0.5);
}

.chip-letter--b {
  background: linear-gradient(135deg, #2a5a1a, var(--ec-green-700));
  box-shadow: 0 4px 12px rgba(46,90,26,0.5);
}

.chip-letter--c {
  background: linear-gradient(135deg, #7a6010, var(--ec-gold-500));
  box-shadow: 0 4px 12px rgba(122,96,16,0.5);
}

.chip-info strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}

.chip-info span {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* Positions — tuned visually */
.hero-chip--a {
  top: 14%;
  left: -4%;
  animation: heroFloat 8s 0s ease-in-out infinite;
}

.hero-chip--b {
  top: 42%;
  right: -10%;
  animation: heroFloat 9s 1.5s ease-in-out infinite;
}

.hero-chip--c {
  bottom: 18%;
  left: 0%;
  animation: heroFloat 7s 0.8s ease-in-out infinite;
}

/* Top badge */
.hero-badge {
  position: absolute;
  top: 6%;
  right: 0%;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(110,139,61,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(110,139,61,0.3);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(200,220,140,0.95);
  z-index: 4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: badgePop 0.8s var(--transition-spring) 0.6s both;
}

.hero-badge svg {
  color: #a8d44a;
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLineGrow 2.5s ease-out 1.2s both;
  transform-origin: top;
}

@keyframes scrollLineGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

/* ===========================================
   10. BENEFITS STRIP
   =========================================== */

.section-benefits {
  background: var(--ec-bg);
  padding-block: var(--space-9);
  border-top: 1px solid var(--ec-line);
  position: relative;
  overflow: hidden;
}

.section-benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ec-green-700), var(--ec-gold-500), var(--ec-green-700), transparent);
  opacity: 0.4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.benefit-card {
  background: var(--ec-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ec-line);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

/* Gradient border reveal on hover */
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--ec-green-700), var(--ec-gold-500));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-card:hover::before { opacity: 1; }

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(110, 139, 61, 0.12), rgba(85, 107, 47, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-green-700);
  flex-shrink: 0;
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.benefit-card:hover .benefit-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(110, 139, 61, 0.08);
}

.benefit-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ec-charcoal);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ec-text-soft);
}

/* ===========================================
   11. METHOD SECTION
   =========================================== */

.section-method {
  background: var(--ec-white);
  padding-block: var(--space-10);
  position: relative;
}

.method-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  align-items: start;
}

.method-intro h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--ec-charcoal);
  line-height: 1.15;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.method-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ec-text-soft);
}

.method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.method-card {
  background: var(--ec-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  border: 1px solid var(--ec-line);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

/* Shimmer sweep on hover */
.method-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
}

.method-card:hover::after {
  animation: shimmerSweep 0.6s ease forwards;
}

/* Gradient border */
.method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--ec-green-700), var(--ec-gold-500), var(--ec-olive-900));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.method-card:hover::before { opacity: 1; }

.method-card:hover {
  background: var(--ec-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.method-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(110, 139, 61, 0.12), rgba(181, 154, 58, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-green-700);
  margin-bottom: var(--space-2);
  transition: transform var(--transition-spring);
}

.method-card:hover .method-card-icon {
  transform: scale(1.12) rotate(-3deg);
}

.method-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ec-charcoal);
  margin-bottom: 8px;
}

.method-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ec-text-soft);
}

/* ===========================================
   12. HOW IT WORKS
   =========================================== */

.section-how {
  background: var(--ec-bg);
  padding-block: var(--space-10);
  position: relative;
  overflow: hidden;
}

.section-how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,139,61,0.3), transparent);
}

.how-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-9);
}

.how-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ec-charcoal);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.how-header p {
  font-size: 17px;
  color: var(--ec-text-soft);
  line-height: 1.65;
}

.how-steps {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.how-step {
  flex: 1;
  background: var(--ec-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-5) var(--space-4);
  border: 1px solid var(--ec-line);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.how-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}

.how-step:hover::after {
  animation: shimmerSweep 0.6s ease forwards;
}

.how-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.step-number {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(110, 139, 61, 0.14), rgba(181, 154, 58, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.04em;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(110, 139, 61, 0.12), rgba(181, 154, 58, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-green-700);
  margin: 0 auto var(--space-3);
  transition: transform var(--transition-spring);
}

.how-step:hover .step-icon {
  transform: scale(1.12);
}

.how-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ec-charcoal);
  margin-bottom: var(--space-2);
}

.how-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ec-text-soft);
}

.step-parts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-2);
}

.step-part-label {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(85, 107, 47, 0.1), rgba(110, 139, 61, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--ec-olive-900);
  border: 1.5px solid rgba(85, 107, 47, 0.2);
}

.step-plus {
  font-size: 18px;
  font-weight: 700;
  color: var(--ec-gold-500);
}

.how-arrow {
  color: rgba(233, 229, 216, 0.8);
  flex-shrink: 0;
}

/* ===========================================
   13. PRODUCTS SECTION
   =========================================== */

.section-products {
  background: var(--ec-white);
  padding-block: var(--space-10);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-7);
  gap: var(--space-3);
}

.products-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--ec-charcoal);
  letter-spacing: -0.02em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  perspective: 1200px;
}

.product-card {
  background: var(--ec-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--ec-line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  transition: box-shadow var(--transition-slow), border-color var(--transition-base);
  will-change: transform;
}

/* Mouse-following radial glow — x/y updated by JS */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 160px at var(--card-glow-x) var(--card-glow-y),
    rgba(110, 139, 61, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.product-card:hover::before {
  opacity: 1;
}

/* Shimmer sweep */
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
}

.product-card:hover::after {
  animation: shimmerSweep 0.7s ease forwards;
}

.product-card:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(110, 139, 61, 0.12);
}

.product-img-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--ec-bg) 0%, rgba(245, 242, 232, 0.5) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-4);
}

.product-img-wrap img {
  max-width: 85%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.5s var(--transition-spring);
  position: relative;
  z-index: 2;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07) translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 3;
}

.badge-green {
  background: rgba(110, 139, 61, 0.12);
  color: var(--ec-olive-900);
  border: 1px solid rgba(110, 139, 61, 0.2);
}

.badge-gold {
  background: rgba(181, 154, 58, 0.12);
  color: #8a7028;
  border: 1px solid rgba(181, 154, 58, 0.25);
}

.badge-olive {
  background: rgba(85, 107, 47, 0.1);
  color: var(--ec-olive-900);
  border: 1px solid rgba(85, 107, 47, 0.2);
}

.product-body {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ec-charcoal);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ec-text-soft);
  flex: 1;
  margin-bottom: var(--space-3);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--ec-line);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  color: var(--ec-text-soft);
  font-weight: 500;
}

.product-price strong {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ec-olive-900), var(--ec-green-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* ===========================================
   14. CALCULATOR SECTION
   =========================================== */

.section-calculator {
  background: var(--ec-bg);
  padding-block: var(--space-10);
  position: relative;
  overflow: hidden;
}

.section-calculator::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(110, 139, 61, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

.calc-info h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--ec-charcoal);
  line-height: 1.18;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.calc-info p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ec-text-soft);
  margin-bottom: var(--space-4);
}

.calc-form-wrap {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(233, 229, 216, 0.7);
  position: relative;
  overflow: hidden;
}

.calc-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ec-olive-900), var(--ec-green-700), var(--ec-gold-500));
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ec-charcoal);
}

.form-group input,
.form-group select {
  height: 50px;
  padding: 0 var(--space-2);
  border: 1.5px solid var(--ec-line);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--ec-text);
  background: var(--ec-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ec-green-700);
  box-shadow: 0 0 0 4px rgba(110, 139, 61, 0.12);
}

.calc-result {
  margin-top: var(--space-3);
  background: rgba(110, 139, 61, 0.07);
  border: 1.5px solid rgba(110, 139, 61, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.calc-result h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ec-olive-900);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(110, 139, 61, 0.12);
  font-size: 14px;
}

.calc-result-row:last-child { border-bottom: none; }

.calc-result-label {
  color: var(--ec-text-soft);
  font-weight: 500;
}

.calc-result-value {
  font-weight: 700;
  color: var(--ec-olive-900);
}

.calc-result-ph {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1.5px solid rgba(110, 139, 61, 0.15);
  font-size: 13px;
  color: var(--ec-text-soft);
  text-align: center;
}

.calc-result-ph strong { color: var(--ec-green-700); }

.calc-tip {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: var(--space-2);
  font-size: 12px;
  color: var(--ec-text-soft);
  line-height: 1.55;
  padding: 10px 14px;
  background: rgba(181, 154, 58, 0.07);
  border: 1px solid rgba(181, 154, 58, 0.2);
  border-radius: var(--radius-md);
}

.calc-tip svg {
  flex-shrink: 0;
  color: var(--ec-gold-500);
  margin-top: 1px;
}

/* ===========================================
   14b. KNOWLEDGE BASE / GUIDE SECTION
   =========================================== */

.section-guide {
  background: var(--ec-bg);
  padding-block: var(--space-10);
  border-top: 1px solid var(--ec-line);
}

.guide-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.guide-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--ec-charcoal);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.guide-header p {
  font-size: 17px;
  color: var(--ec-text-soft);
  line-height: 1.65;
}

/* ── Tabs ── */
.guide-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--ec-line);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.guide-tabs::-webkit-scrollbar { display: none; }

.guide-tab {
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ec-text-soft);
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: color var(--transition-base), background var(--transition-base), border-color var(--transition-base);
  font-family: var(--font-base);
}

.guide-tab:hover {
  color: var(--ec-olive-900);
  background: rgba(110,139,61,0.05);
}

.guide-tab.active {
  color: var(--ec-olive-900);
  border-bottom-color: var(--ec-green-700);
  background: rgba(110,139,61,0.06);
}

/* ── Panels ── */
.guide-panel {
  animation: fadeInUp 0.35s ease both;
}

/* ── Featured image ── */
.guide-featured-img {
  width: 100%;
  max-height: 340px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, var(--ec-olive-900), var(--ec-green-700));
}

.guide-featured-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── Accordion items ── */
.guide-accordions {
  display: flex;
  flex-direction: column;
  background: var(--ec-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ec-line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.guide-item {
  border-bottom: 1px solid var(--ec-line);
}

.guide-item:last-child {
  border-bottom: none;
}

.guide-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 20px var(--space-4);
  font-size: 15px;
  font-weight: 700;
  color: var(--ec-charcoal);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-base);
  transition: background var(--transition-base), color var(--transition-base);
}

.guide-item-header:hover {
  background: rgba(110,139,61,0.04);
  color: var(--ec-olive-900);
}

.guide-item.open .guide-item-header {
  color: var(--ec-olive-900);
  background: rgba(110,139,61,0.05);
}

.guide-arrow {
  flex-shrink: 0;
  color: var(--ec-text-soft);
  transition: transform 0.3s var(--transition-spring);
}

.guide-item.open .guide-arrow {
  transform: rotate(180deg);
  color: var(--ec-green-700);
}

.guide-body {
  display: none;
  padding: 0 var(--space-4) var(--space-4);
  font-size: 15px;
  line-height: 1.78;
  color: var(--ec-text-soft);
  border-top: 1px solid var(--ec-line);
}

.guide-item.open .guide-body {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.guide-body p {
  margin-bottom: 14px;
}

.guide-body p:last-child {
  margin-bottom: 0;
}

.guide-body ul,
.guide-body ol {
  margin: 12px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-body ul { list-style: none; }
.guide-body ol { list-style: none; counter-reset: guide-counter; }

.guide-body ul li {
  padding-left: 20px;
  position: relative;
  color: var(--ec-text);
}

.guide-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ec-green-700), var(--ec-gold-500));
}

.guide-body ol li {
  padding-left: 32px;
  position: relative;
  counter-increment: guide-counter;
  color: var(--ec-text);
}

.guide-body ol li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ec-olive-900), var(--ec-green-700));
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.guide-body strong {
  color: var(--ec-charcoal);
  font-weight: 700;
}

.guide-body em {
  color: var(--ec-green-700);
  font-style: italic;
}

@media (max-width: 767px) {
  .guide-tab { padding: 10px 14px; font-size: 12px; }
  .guide-item-header { padding: 16px var(--space-3); font-size: 14px; }
  .guide-body { padding: 0 var(--space-3) var(--space-3); font-size: 14px; }
  .guide-featured-img { max-height: 200px; }
  .guide-featured-img img { height: 200px; }
}

/* ===========================================
   15. CONTENT HUB — Photo Card Design
   =========================================== */

.section-content {
  background: var(--ec-bg);
  padding-block: var(--space-10);
}

.content-header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.content-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--ec-charcoal);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.content-header p {
  font-size: 17px;
  color: var(--ec-text-soft);
  line-height: 1.65;
}

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

/* ── Card shell ── */
.content-card {
  background: var(--ec-white);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44,44,44,0.09), 0 1px 4px rgba(44,44,44,0.06);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--transition-spring), box-shadow 0.3s ease;
  position: relative;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,44,44,0.15), 0 2px 8px rgba(44,44,44,0.07);
}

/* ── Media / photo area ── */
.cc-media {
  position: relative;
  height: 220px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.cc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-card:hover .cc-media img {
  transform: scale(1.04);
}

/* CSS gradient fallback when no photo */
.cc-media--coco   { background: linear-gradient(160deg, #1a2d10 0%, #3d5520 40%, #5a7a2a 100%); }
.cc-media--nutricao { background: linear-gradient(160deg, #0f2010 0%, #2a4d1a 40%, #4a7028 100%); }
.cc-media--cultivo  { background: linear-gradient(160deg, #1c2d0a 0%, #3a5518 40%, #6a8a30 100%); }
.cc-media--tabelas  { background: linear-gradient(160deg, #0c1a06 0%, #2a4010 40%, #556B2F 100%); }

/* Gradient overlay darkening bottom of photo for readability */
.cc-media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.35));
  pointer-events: none;
}

/* Number badge — top left */
.cc-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Icon badge — centered, overlapping bottom of image */
.cc-badge {
  position: absolute;
  bottom: -22px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ec-olive-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--transition-spring), background var(--transition-base);
}

.content-card:hover .cc-badge {
  transform: scale(1.08);
  background: var(--ec-green-700);
}

/* ── White content body ── */
.cc-body {
  padding: 38px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 0 0 20px 20px;
  background: var(--ec-white);
}

.cc-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ec-olive-900);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.cc-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--ec-gold-500);
  display: block;
  margin-bottom: 10px;
}

/* Gold separator line */
.cc-sep {
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--ec-gold-500), var(--ec-gold-400));
  border-radius: 2px;
  margin-bottom: 12px;
}

.cc-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ec-text-soft);
  flex: 1;
  margin-bottom: 18px;
}

/* "Saber mais" button */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ec-olive-900);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

.cc-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-15deg);
}

.cc-btn:hover::after {
  animation: shimmerSweep 0.5s ease forwards;
}

.cc-btn:hover {
  background: var(--ec-green-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(85,107,47,0.35);
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .content-grid { grid-template-columns: 1fr; gap: 16px; }
  .cc-media { height: 200px; }
}

/* ===========================================
   16. SOCIAL PROOF
   =========================================== */

.section-social {
  background: var(--ec-bg);
  padding-block: var(--space-10);
  position: relative;
}

.section-social::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,139,61,0.3), transparent);
}

.social-header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.social-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--ec-charcoal);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.social-header p {
  font-size: 17px;
  color: var(--ec-text-soft);
  line-height: 1.65;
}

.social-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.testimonial-card {
  background: var(--ec-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  border: 1px solid var(--ec-line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(110, 139, 61, 0.06);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  font-size: 14px;
  color: var(--ec-gold-400);
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
  text-shadow: 0 0 8px rgba(200, 175, 86, 0.4);
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ec-text);
  margin-bottom: var(--space-3);
  font-style: italic;
  position: relative;
  padding-left: 18px;
  border-left: 2.5px solid transparent;
  border-image: linear-gradient(to bottom, var(--ec-green-700), var(--ec-gold-500)) 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ec-charcoal);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--ec-text-soft);
}

/* Community block */
.community-card {
  background: var(--ec-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  border: 1px solid var(--ec-line);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ec-olive-900), var(--ec-green-700), var(--ec-gold-500));
}

.community-number {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ec-olive-900), var(--ec-green-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.community-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ec-green-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.community-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ec-text-soft);
  margin-bottom: var(--space-4);
}

.community-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mosaic-item {
  aspect-ratio: 1;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.mosaic-item:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.mosaic-1 { background: linear-gradient(135deg, #556B2F, #6E8B3D); }
.mosaic-2 { background: linear-gradient(135deg, #B59A3A, #C8AF56); }
.mosaic-3 { background: linear-gradient(135deg, #4d7a3a, #7a9842); }
.mosaic-4 { background: linear-gradient(135deg, #8a7028, #B59A3A); }
.mosaic-5 { background: linear-gradient(135deg, #3d6b4f, #6E8B3D); }
.mosaic-6 { background: linear-gradient(135deg, #556B2F, #B59A3A); }

/* ===========================================
   17. CTA FINAL
   =========================================== */

.section-cta-final {
  position: relative;
  padding-block: var(--space-10);
  overflow: hidden;
  background: linear-gradient(-45deg, #2a3d14, var(--ec-olive-900), #3d6b2a, var(--ec-green-700), #5a7a1a, #8a7028);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Two aurora orbs in CTA */
.section-cta-final::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final-bg {
  position: absolute;
  top: -20%;
  left: -8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.cta-final-inner h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--ec-white);
  line-height: 1.1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-final-inner p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: var(--space-6);
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ===========================================
   18. FLOATING CTA
   =========================================== */

.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: var(--radius-pill);
  padding: 0 20px;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(18, 140, 126, 0.45);
  cursor: pointer;
  border: none;
  font-family: var(--font-base);
  letter-spacing: 0.02em;
  animation: floatCta 4s ease-in-out infinite;
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
  text-decoration: none;
}

.float-cta-btn:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 36px rgba(18, 140, 126, 0.55);
}

.float-cta-btn svg {
  flex-shrink: 0;
}

/* Pulse ring behind button */
.float-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: glowPulseRing 2.5s ease-out infinite;
}

/* ===========================================
   19. FOOTER
   =========================================== */

.footer-newsletter-wrap {
  background: linear-gradient(135deg, #1a2410 0%, #232c15 60%, #1e2a12 100%);
  padding-block: var(--space-7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.footer-newsletter-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(110, 139, 61, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.newsletter-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ec-white);
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-form input {
  height: 48px;
  width: 280px;
  padding: 0 var(--space-2);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.07);
  color: var(--ec-white);
  font-size: 14px;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--ec-green-700);
  background: rgba(255,255,255,0.1);
}

.site-footer {
  background: var(--ec-charcoal);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-9);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-col ul a:hover {
  color: var(--ec-white);
  padding-left: 4px;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: var(--space-3);
  transition: transform var(--transition-base);
}

.footer-brand .footer-logo:hover {
  transform: scale(1.04);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 260px;
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition-base), color var(--transition-base),
              border-color var(--transition-base), transform var(--transition-spring);
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--ec-green-700), var(--ec-olive-900));
  color: var(--ec-white);
  border-color: transparent;
  transform: scale(1.1) translateY(-2px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ec-green-700);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: var(--space-3);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-3);
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===========================================
   20. RESPONSIVE — TABLET (768–1023px)
   =========================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  .topbar-center { display: none; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .header-cta { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
    min-height: auto;
  }

  .hero-eyebrow-wrap { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-visual { min-height: 340px; order: -1; }

  .hero-chip--a { top: 8%; left: 0; }
  .hero-chip--b { top: 40%; right: -4%; }
  .hero-chip--c { bottom: 10%; left: 0; }
  .hero-badge   { top: 4%; right: 0; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .method-inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .method-cards { grid-template-columns: repeat(2, 1fr); }

  .how-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .how-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .calc-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .content-grid { grid-template-columns: repeat(2, 1fr); }

  .social-inner { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .newsletter-form input { width: 220px; }
}

/* ===========================================
   21. RESPONSIVE — MOBILE (max 767px)
   =========================================== */

@media (max-width: 767px) {
  :root { --header-h: 64px; }

  .topbar { display: none; }
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .header-actions { gap: 4px; }
  .header-actions .icon-btn:nth-child(1),
  .header-actions .icon-btn:nth-child(2) { display: none; }
  .header-cta { display: none; }

  .section-hero {
    min-height: auto;
    padding-block: var(--space-8) var(--space-6);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  .hero-inner {
    min-height: auto;
    gap: var(--space-5);
  }

  .hero-visual { order: -1; min-height: 280px; }

  .hero-eyebrow-wrap { justify-content: center; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    justify-content: center;
    gap: 16px;
  }

  .stat-divider {
    width: 1px;
    height: 28px;
  }

  .hero-sub {
    font-size: 16px;
    margin-inline: auto;
  }

  .hero-chip { display: none; }
  .hero-badge { top: 4%; right: 0; font-size: 10px; padding: 6px 10px; }
  .hero-scroll-hint { display: none; }

  .br-mobile { display: none; }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .method-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .method-cards { grid-template-columns: 1fr; }

  .how-steps { flex-direction: column; }

  .how-arrow {
    transform: rotate(90deg);
    text-align: center;
    align-self: center;
  }

  .products-grid { grid-template-columns: 1fr; }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .calc-inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .content-grid { grid-template-columns: 1fr; }

  .social-inner { grid-template-columns: 1fr; }

  .cta-final-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-final-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input { width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding-block: var(--space-7);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .float-cta {
    bottom: 16px;
    right: 16px;
  }
}

/* ===========================================
   22. DESKTOP LARGE (1440px+)
   =========================================== */

@media (min-width: 1440px) {
  .container { max-width: 1380px; }
  .hero-product-img { max-width: 480px; }
}
