:root {
  --color-primary: #567B5C;
  --color-primary-dark: #3D5942;
  --color-primary-darker: #2C4231;
  --color-primary-light: #6B9672;
  --color-accent: #C6A66A;
  --color-accent-dark: #A88542;
  --color-accent-light: #D4BC8A;
  --color-white: #FFFFFF;
  --color-text-muted: rgba(255, 255, 255, 0.82);
  --color-text-soft: rgba(255, 255, 255, 0.65);
  --color-card-bg: rgba(255, 255, 255, 0.08);
  --color-card-bg-hover: rgba(255, 255, 255, 0.12);
  --color-card-border: rgba(255, 255, 255, 0.18);

  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-hero: clamp(2.2rem, 5.5vw, 4rem);
  --font-size-h2: clamp(1.75rem, 3.4vw, 2.5rem);
  --font-size-h3: 1.2rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  --spacing-section: clamp(3.5rem, 8vw, 6.5rem);
  --container-max: 1200px;
  --container-narrow: 820px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --border-radius-btn: 999px;
  --border-radius-card: 20px;

  --shadow-btn: 0 10px 30px rgba(198, 166, 106, 0.35);
  --shadow-btn-hover: 0 14px 40px rgba(198, 166, 106, 0.5);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.18);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(.2,.7,.2,1);
  --transition-slow: 0.6s cubic-bezier(.2,.7,.2,1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  color: var(--color-white);
  background: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========== UTILS ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--spacing-section) 0; position: relative; }
.section--dark {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
}

/* leaf-pattern subtle bg */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(198,166,106,0.08) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.04) 0, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><g fill='none' stroke='%23C6A66A' stroke-width='1.2' opacity='0.06'><path d='M120 60 C90 100 80 150 100 200 C150 200 200 170 200 120 C200 90 170 60 120 60Z M120 60 L200 120'/><path d='M450 380 C480 420 470 470 430 490 C400 480 370 440 380 400 C400 380 430 370 450 380Z M450 380 L380 470'/></g></svg>");
  background-size: auto, auto, 600px 600px;
  background-repeat: no-repeat, no-repeat, repeat;
  pointer-events: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.kicker--light { color: var(--color-accent-light); }
.section-head h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-white);
  max-width: 24ch;
  margin: 0 auto;
}
.ornament {
  display: block;
  width: 64px;
  height: 2px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--border-radius-btn);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  will-change: transform;
}
.btn--cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #2c1d00;
  box-shadow: var(--shadow-btn);
  animation: pulse 2.5s infinite;
}
.btn--cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow-btn-hover); animation: none; }
.btn--cta:active { transform: translateY(0) scale(1); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn--small { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
.btn--large { padding: 1.15rem 2.25rem; font-size: 1.05rem; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(198, 166, 106, 0.35); }
  50% { box-shadow: 0 10px 40px rgba(198, 166, 106, 0.6); }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(61, 89, 66, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.logo { height: 38px; width: auto; }
.nav-main {
  display: none;
  gap: 1.75rem;
}
.nav-main a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.nav-main a:hover { color: var(--color-accent); }
@media (min-width: 880px) { .nav-main { display: flex; } }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(100dvh, 880px);
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
@media (max-width: 640px) {
  .hero { min-height: auto; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 82% 18%, rgba(212, 188, 138, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 12% 78%, rgba(107, 150, 114, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 120% 90% at 50% 0%, rgba(86, 123, 92, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.2fr 1fr; }
}

.hero-leaf {
  position: absolute;
  color: var(--color-accent);
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px) drop-shadow(0 0 24px rgba(198, 166, 106, 0.18));
  opacity: 0.22;
}
.hero-leaf--1 {
  top: -40px; left: -60px;
  width: 280px; height: 280px;
  transform: rotate(-25deg);
  animation: float 12s ease-in-out infinite;
}
.hero-leaf--2 {
  bottom: -50px; right: -40px;
  width: 220px; height: 220px;
  transform: rotate(160deg);
  animation: float 14s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-25deg); }
  50%      { transform: translateY(-18px) rotate(-22deg); }
}

.hero-text { max-width: 640px; }
.badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(198, 166, 106, 0.12);
  border: 1px solid rgba(198, 166, 106, 0.35);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: var(--font-size-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-title .hl {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 520px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-stats strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  max-width: 440px;
  margin: 0 auto 0.5rem;
  width: 100%;
  order: -1;
}
@media (min-width: 880px) {
  .hero-visual {
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    order: 0;
  }
}

.hero-photo {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  background: var(--color-primary-dark);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo:not(.hero-photo--small) {
  top: 0; right: 0;
  width: 75%; height: 88%;
  transform: rotate(2deg);
  animation: gentle-tilt 10s ease-in-out infinite;
}
.hero-photo--small {
  bottom: 0; left: 0;
  width: 48%; height: 50%;
  transform: rotate(-5deg);
  border-radius: 20px;
  z-index: 2;
  animation: gentle-tilt-rev 10s ease-in-out infinite;
}
@keyframes gentle-tilt {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-10px); }
}
@keyframes gentle-tilt-rev {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(8px); }
}

.hero-mini-card {
  position: absolute;
  right: 4%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  background: rgba(20, 32, 24, 0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 4;
  animation: gentle-tilt 8s ease-in-out infinite;
  max-width: calc(100% - 16%);
}
@media (min-width: 880px) {
  .hero-mini-card {
    right: 0;
    padding: 0.9rem 1.1rem;
    gap: 0.75rem;
  }
}
.hero-mini-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-white);
  font-weight: 600;
}
.hero-mini-card span {
  font-size: 0.72rem;
  color: var(--color-text-soft);
}
.mini-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #2c1d00;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ========== TICKER ========== */
.ticker {
  background: var(--color-accent);
  color: #2c1d00;
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== BENEFITS ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--border-radius-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  transition: transform var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-card);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(198,166,106,0.22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  background: var(--color-card-bg-hover);
  box-shadow: var(--shadow-card);
  border-color: rgba(198,166,106,0.35);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(198,166,106,0.18) 0%, rgba(198,166,106,0.08) 100%);
  border: 1px solid rgba(198,166,106,0.35);
  border-radius: 50%;
  transition: transform var(--transition-normal);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.card h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 0.65rem;
  color: var(--color-white);
}
.card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat {
  padding: 2rem 1rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--border-radius-card);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-normal);
}
.stat:hover { transform: translateY(-4px); }
.stat-num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-static { font-size: clamp(2rem, 4vw, 2.75rem); }
.stat span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== STEPS ========== */
.section--steps {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  counter-reset: step;
}
.steps::before {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(198,166,106,0.45) 12%, rgba(198,166,106,0.45) 88%, transparent);
  z-index: 0;
}
@media (max-width: 768px) { .steps::before { display: none; } }

.step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--border-radius-card);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), background var(--transition-normal);
  z-index: 1;
}
.step:hover { transform: translateY(-6px); background: var(--color-card-bg-hover); }

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #2c1d00;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(198,166,106,0.4);
  border: 4px solid var(--color-primary-dark);
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}
.step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ========== CARROSSEL ========== */
.carousel {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.carousel-track {
  display: flex;
  gap: 1rem;
  padding: 1rem var(--gutter);
  transition: transform var(--transition-slow);
  will-change: transform;
}
.slide {
  flex: 0 0 clamp(220px, 35vw, 340px);
  aspect-ratio: 3/4;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition-normal);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.slide:hover img { transform: scale(1.05); }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 2;
  transition: transform var(--transition-fast), background var(--transition-fast);
}
.carousel-btn:hover { background: var(--color-accent); color: var(--color-white); transform: translateY(-50%) scale(1.08); }
.carousel-btn--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.carousel-btn--next { right: clamp(0.5rem, 2vw, 1.5rem); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 0 var(--gutter);
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: width var(--transition-fast), background var(--transition-fast);
}
.carousel-dots button[aria-current="true"] {
  width: 24px;
  background: var(--color-accent);
  border-radius: 999px;
}

/* ========== VIDEOS ========== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--border-radius-card);
  padding: 0.75rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-normal);
}
.video-card:hover { transform: translateY(-4px); }
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  display: block;
  width: 100%;
  padding: 0;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-lite { cursor: pointer; }
.video-lite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-normal);
}
.video-lite::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
  transition: background var(--transition-normal);
}
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #2c1d00;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 6px rgba(198,166,106,0.18);
  z-index: 2;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.video-play svg { margin-left: 4px; }
.video-lite:hover img { transform: scale(1.04); filter: brightness(1.05); }
.video-lite:hover .video-play {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(198,166,106,0.55), 0 0 0 10px rgba(198,166,106,0.22);
}
.video-lite:focus-visible .video-play {
  box-shadow: 0 0 0 4px var(--color-white), 0 12px 32px rgba(0,0,0,0.45);
}
.video-caption {
  margin-top: 0.85rem;
  padding: 0 0.5rem 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
}
.faq-item:hover {
  border-color: rgba(198,166,106,0.35);
  background: rgba(255,255,255,0.06);
}
.faq-item[open] {
  background: rgba(198,166,106,0.06);
  border-color: rgba(198,166,106,0.5);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition-normal);
}
.faq-item[open] summary { color: var(--color-accent-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(198,166,106,0.12);
  border: 1px solid rgba(198,166,106,0.35);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform var(--transition-normal), background var(--transition-normal);
}
.faq-item:hover .faq-icon { background: rgba(198,166,106,0.22); }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform var(--transition-normal);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: #2c1d00; }

.faq-body {
  padding: 0 1.5rem 1.35rem;
  color: var(--color-text-muted);
  animation: faq-open 0.35s ease;
}
.faq-body p { font-size: 0.95rem; line-height: 1.65; }
.faq-body strong { color: var(--color-accent-light); font-weight: 600; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== CTA FINAL ========== */
.cta-final {
  padding: var(--spacing-section) 0;
  background:
    radial-gradient(ellipse at top right, rgba(198,166,106,0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-primary-darker) 0%, #1a2820 100%);
}
.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.cta-box h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  margin: 0.5rem 0 1rem;
}
.cta-box p {
  color: var(--color-text-muted);
  max-width: 55ch;
  margin: 0 auto 2rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.trust-row li { display: flex; align-items: center; gap: 0.35rem; }

/* ========== FOOTER ========== */
.site-footer {
  background: #1a2820;
  padding: clamp(3rem, 6vw, 4.5rem) 0 5.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}
.footer-col li a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-col--brand p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
  max-width: 36ch;
}
.footer-logo { height: 44px; opacity: 0.95; }

.footer-nav { display: flex; gap: 0.65rem; }
.footer-nav a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}
.footer-nav a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #2c1d00;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.75rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.copyright {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
}
.footer-credits {
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-maven {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.footer-maven a {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  transition: color .2s ease;
}
.footer-maven a:hover {
  color: var(--color-accent);
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsapp-pulse 2.4s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { display: block; }

@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  .whatsapp-float { width: 62px; height: 62px; }
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .hero-stats strong { font-size: 1.4rem; }
  .hero-stats span { font-size: 0.7rem; }
  .carousel-btn { width: 40px; height: 40px; }
  .carousel-btn--prev { left: 0.35rem; }
  .carousel-btn--next { right: 0.35rem; }
}

@media (max-width: 480px) {
  .header-inner { padding-top: 0.65rem; padding-bottom: 0.65rem; }
  .logo { height: 32px; }
  .btn--small { padding: 0.55rem 1rem; font-size: 0.8rem; }
  .hero { padding-top: 4rem; }
  .hero-ctas .btn { flex: 1; }
  .hero-visual { aspect-ratio: 4 / 3; max-width: 360px; }
}
