/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #111111;
  --bg-section:  #181818;
  --bg-card:     #1e1e1e;
  --green:       #A0D081;
  --green-dark:  #8BBD55;
  --green-light: #A8D18D;
  --red:         #E05A5A;
  --text:        #f0f0f0;
  --muted:       #888;
  --border:      rgba(255,255,255,0.07);
  --radius:      16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow Semi Condensed', 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: #1a1a1a; }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--green-dark), var(--green-light));
  border-radius: 10px;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Ticker ────────────────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-reverse .ticker-track { animation-direction: reverse; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: #111;
  box-shadow: 0 4px 20px rgba(160,208,129,0.3);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(160,208,129,0.4); }

.btn-large { font-size: 1.1rem; padding: 20px 48px; width: 100%; justify-content: center; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

/* ─── Section Base ──────────────────────────────────────── */
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.section-title strong { color: var(--green-light); }
.green { color: var(--green); }
.lead { font-size: 1.05rem; color: #ccc; margin-bottom: 20px; line-height: 1.7; }

/* ─── Logo ──────────────────────────────────────────────── */
.logo { max-width: 280px; width: 100%; margin-bottom: 24px; filter: brightness(1.1); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: #000;
  background-image: url('Imagens de Fundo/1.jpg (2).jpeg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

/* dark gradient over the left side so text is readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.70) 35%,
    rgba(0,0,0,0.10) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--green);
  max-width: 650px;
}
.hero-headline strong { color: #fff; }
.hero-sub {
  font-size: 1rem;
  color: #ccc;
  max-width: 480px;
  margin: 0 0 32px;
  line-height: 1.7;
}

/* Mobile hero image */
@media (max-width: 768px) {
  .hero {
    /* portrait image — expert fica no centro/topo */
    background-image: url('Imagens de Fundo/2.jpg (2).jpeg');
    background-position: center 5%;
    background-size: cover;
    min-height: 100svh;
    /* texto fica ao fundo, imagem aparece acima */
    align-items: flex-end;
    padding-bottom: 44px;
    padding-top: 0;
  }
  .hero::before {
    /* gradiente sobe de baixo para cima: escuro no texto, transparente na foto */
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.97) 0%,
      rgba(0,0,0,0.88) 30%,
      rgba(0,0,0,0.40) 55%,
      rgba(0,0,0,0.00) 75%
    );
  }
  .hero .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: center;
  }
  .hero-headline { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-sub { font-size: 0.92rem; margin-left: auto; margin-right: auto; }
}

/* ─── PROBLEM CARDS ─────────────────────────────────────── */
.problem-section { background: var(--bg-section); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(160,208,129,0.25); }
.problem-card.featured { border-color: rgba(160,208,129,0.4); background: #1f2a1c; }
.problem-card img { width: 120px; height: 160px; object-fit: contain; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-light); margin-bottom: 12px; }
.problem-card p { font-size: 0.9rem; color: #aaa; line-height: 1.65; }

/* ─── IMPACT ────────────────────────────────────────────── */
.impact-section { background: var(--bg); }
.impact-inner { max-width: 700px; }
blockquote {
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  margin: 24px 0;
  background: rgba(255,255,255,0.05);
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}
.dot-list { list-style: none; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}
.dot-list li::before {
  content: '⬤';
  color: var(--red);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.closing-impact {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1.7;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(160,208,129,0.07);
  border-radius: 12px;
  border: 1px solid rgba(160,208,129,0.2);
}
@media (max-width: 900px) {
  .impact-section {
    background-image: none;
    background: var(--bg);
  }
  .impact-section::before { display: none; }
  .impact-section .container { justify-content: center; }
  .impact-inner {
    max-width: 100%;
    background: var(--bg-card);
    backdrop-filter: none;
    border-color: var(--border);
  }
}

/* ─── PARALLAX BRIDGE (For Whom + Day in Life) ────────── */
.parallax-bridge {
  position: relative;
  background-color: #000;
  background-image: url('Imagens de Fundo/2.jpg (1).jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: left center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.parallax-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.45) 36%,
    rgba(0,0,0,0.82) 60%,
    rgba(0,0,0,0.94) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.parallax-bridge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.forwhom-section {
  background: transparent;
  position: relative;
  z-index: 3;
  padding-bottom: 48px;
}

.bridge-divider {
  position: relative;
  z-index: 3;
  height: 1px;
  margin: 0 auto 56px;
  width: 55%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(160, 208, 129, 0.4) 30%,
    rgba(160, 208, 129, 0.4) 70%,
    transparent
  );
  box-shadow: 0 0 20px rgba(160,208,129,0.20);
}

@media (max-width: 900px) {
  .parallax-bridge {
    background-attachment: scroll;
    background-image: none;
    background: var(--bg-section);
  }
  .parallax-bridge::before,
  .parallax-bridge::after { display: none; }
  .bridge-divider { display: none; }
  .forwhom-section { padding-bottom: 56px; }
}
.forwhom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.forwhom-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.forwhom-card.not-for { border-color: rgba(224,90,90,0.25); }
.forwhom-card.is-for { border-color: rgba(160,208,129,0.3); background: #1a2318; }
.forwhom-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: #eee; }
.forwhom-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.forwhom-card li { font-size: 0.95rem; color: #ccc; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.icon-x { color: var(--red); font-weight: 800; flex-shrink: 0; }
.icon-check { color: var(--green); font-weight: 800; flex-shrink: 0; }
.cta-center { text-align: center; }

/* ─── DAY IN LIFE ───────────────────────────────────────── */
.daylife-section {
  background: transparent;
  position: relative;
  z-index: 3;
  padding-top: 0;
  padding-bottom: 100px;
}
.daylife-section .container { position: relative; }
@media (max-width: 900px) {
  .daylife-section { background: var(--bg); padding-top: 80px; }
}
.daylife-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.day-card:hover { border-color: rgba(160,208,129,0.2); }
.day-card.highlight-card { border-color: rgba(160,208,129,0.35); background: #1b2519; }
.day-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  background: rgba(160,208,129,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}
.day-card p { font-size: 0.95rem; color: #aaa; line-height: 1.65; }

/* ─── REALITY ───────────────────────────────────────────── */
.reality-section { background: var(--bg-section); }
.check-list { list-style: none; margin: 24px 0 40px; display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: #ddd; line-height: 1.5; }
.underline-anim {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 6px;
}

/* ─── METHOD ────────────────────────────────────────────── */
.method-section { background: var(--bg); }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 40px 0; }
.method-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.method-item:hover { border-color: rgba(160,208,129,0.3); transform: translateY(-2px); }
.method-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}
.method-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--green-light); }
.method-item p { font-size: 0.9rem; color: #aaa; line-height: 1.6; }
.method-closing {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #eee;
  margin-top: 12px;
  line-height: 1.6;
}

/* ─── VALUE STACK ────────────────────────────────────────── */
.value-stack-section { background: var(--bg); }

.value-stack-header { text-align: center; margin-bottom: 48px; }
.value-stack-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(160,208,129,0.1);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.value-stack-list {
  max-width: 760px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.value-stack-item:first-child { border-top: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
.value-stack-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
.value-stack-item:hover { background: rgba(255,255,255,0.03); }

.vsi-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.vsi-icon { font-size: 1.6rem; flex-shrink: 0; }
.vsi-left strong { display: block; font-size: 0.95rem; color: #eee; margin-bottom: 3px; }
.vsi-left p { font-size: 0.82rem; color: #777; line-height: 1.4; }

.vsi-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* bloco total */
.value-stack-total {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.vst-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(224,90,90,0.06);
  border: 1px solid rgba(224,90,90,0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  margin-bottom: 20px;
}
.vst-label {
  font-size: 0.95rem;
  color: #aaa;
  font-weight: 600;
}
.vst-price-full {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-color: rgba(224,90,90,0.6);
  letter-spacing: -0.02em;
}
.vst-arrow {
  font-size: 2rem;
  color: var(--green);
  animation: bounceDown 1.4s ease-in-out infinite;
  margin-bottom: 8px;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.vst-cta-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ─── OFFER ─────────────────────────────────────────────── */
.offer-section { background: var(--bg-section); }


/* cabeçalho centralizado */
.offer-header { text-align: center; margin-bottom: 52px; }
.offer-header .logo { margin: 0 auto 16px; display: block; }
.offer-header .section-title { margin-bottom: 10px; }
.offer-subtitle { font-size: 1rem; color: #999; max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* 3 colunas: incluso | preço (destaque) | garantia */
.offer-cols {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

/* coluna esquerda */
.offer-includes h3 { font-size: 1rem; font-weight: 700; color: var(--green-light); margin-bottom: 20px; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.includes-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: #ccc; line-height: 1.5; }
.icon-circle { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* card de preço — centro em destaque */
.price-box {
  background: var(--bg-card);
  border: 1px solid rgba(160,208,129,0.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-box--center {
  border-color: rgba(160,208,129,0.5);
  background: linear-gradient(160deg, #1c2a19 0%, #1e1e1e 100%);
  box-shadow: 0 0 48px rgba(160,208,129,0.14);
  padding: 40px 36px;
}
.price-box--center:hover { transform: translateY(-4px); box-shadow: 0 0 70px rgba(160,208,129,0.24); }
.price-label { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.price-sub { font-size: 0.85rem; color: #888; margin-bottom: 16px; line-height: 1.5; }
.divider { height: 1px; background: var(--border); margin: 16px 0; }
.price-main { font-size: 4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; margin: 8px 0 4px; }
.price-installment { font-size: 0.9rem; color: #999; margin: 8px 0 28px; }

/* coluna direita — garantia */
.offer-guarantee { display: flex; flex-direction: column; gap: 18px; }
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1b2519;
  border: 1px solid rgba(160,208,129,0.3);
  border-radius: 14px;
  padding: 20px;
}
.guarantee-badge--full { padding: 24px 20px; }
.badge-icon { font-size: 2.2rem; flex-shrink: 0; }
.guarantee-badge strong { display: block; color: var(--green-light); font-size: 1rem; }
.guarantee-badge p { font-size: 0.85rem; color: #999; margin-top: 2px; }
.guarantee-text {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.75;
  padding: 18px 20px;
  background: #1a1a1a;
  border-radius: 12px;
  border-left: 3px solid var(--green-dark);
  margin-bottom: 0;
}

/* responsivo */
@media (max-width: 900px) {
  .offer-cols { grid-template-columns: 1fr; gap: 20px; }
  .price-box--center { order: -1; }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about-section {
  position: relative;
  background-color: #030403;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}
/* Brilhos verdes sutis nas laterais */
.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(160,208,129,0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.about-section::before { left: -25vw; }
.about-section::after { right: -25vw; }

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text {
  text-align: left;
}
.about-text .section-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-text p { font-size: 0.95rem; color: #ccc; line-height: 1.75; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-photo { display: block; }
.about-photo img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .about-section { padding: 60px 0 0; }
  .about-section::before,
  .about-section::after { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* foto primeiro, ocupa largura total, sem cortes */
  .about-photo {
    order: -1;
    width: 100%;
  }
  .about-photo img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  /* texto abaixo da foto com fundo sólido legível */
  .about-text {
    background: #030403;
    padding: 36px 20px 48px;
  }
  .about-text .section-title {
    font-size: 1.3rem;
  }
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section { background: var(--bg-section); }
.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* coluna esquerda — título sticky */
.faq-header { position: sticky; top: 100px; }
.faq-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(160,208,129,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.faq-title {
  font-size: 2rem;
  font-weight: 300;
  color: #eee;
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-title strong { color: var(--green-light); font-weight: 700; }
.faq-lead { font-size: 0.9rem; color: #777; line-height: 1.6; }

/* coluna direita — accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #eee;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-light); }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--green); flex-shrink: 0; transition: transform 0.3s; }
.faq-q[aria-expanded="true"] { color: var(--green-light); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: #bbb; line-height: 1.7; }

/* mobile */
@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .faq-header { position: static; }
  .faq-title { font-size: 1.5rem; }
  .faq-q { font-size: 0.9rem; padding: 18px 20px; }
  .faq-a p { padding: 0 20px 18px; font-size: 0.88rem; }
}

/* ─── SUPPORT ───────────────────────────────────────────── */
.support-section { background: var(--bg); }
.support-section .section-title { text-align: center; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}
.footer-brand { font-size: 0.8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.footer-copy { font-size: 0.72rem; color: #444; margin-top: 6px; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .offer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-img { max-width: 200px; }
  .method-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .daylife-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
  .btn-large { font-size: 0.95rem; padding: 18px 28px; }
}

/* ─── Reveal Animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
