/* ==============================================
   FOTORESTORE — assets/css/landing.css
   Estilos exclusivos da landing page
   Fonte: Cormorant Garamond + DM Sans
   ============================================== */

/* ── Override de fontes para a landing ───────────────────────────────── */
.landing-body {
  font-family: 'DM Sans', sans-serif;
  background: #0e0b08;
  color: #f0e8d8;
  overflow-x: hidden;
}

/* ── Containers e helpers ─────────────────────────────────────────────── */
.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c8a97e;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s, transform .6s;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #f0e8d8;
  margin-bottom: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s .1s, transform .7s .1s;
}
.section-title em {
  font-style: italic;
  color: #c8a97e;
  font-weight: 400;
}
.section-sub {
  text-align: center;
  color: rgba(240,232,216,.55);
  font-size: 1rem;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s .2s, transform .7s .2s;
}

/* Reveal animation trigger */
[data-reveal].revealed,
[data-reveal].revealed .section-tag,
[data-reveal].revealed .section-title,
[data-reveal].revealed .section-sub {
  opacity: 1 !important;
  transform: none !important;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.lp-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #c8a97e;
  color: #0e0b08;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.lp-btn-cta:hover {
  background: #e0c090;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,126,.3);
  text-decoration: none;
}
.lp-btn-large { padding: 16px 40px; font-size: 1.05rem; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  color: rgba(240,232,216,.7);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  border-radius: 4px;
}
.lp-btn-ghost:hover { color: #c8a97e; text-decoration: none; }

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  color: #c8a97e;
  border: 1.5px solid rgba(200,169,126,.4);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all .2s;
}
.lp-btn-outline:hover {
  border-color: #c8a97e;
  background: rgba(200,169,126,.08);
  text-decoration: none;
}

.lp-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: #f0e8d8;
  border: 1.5px solid rgba(240,232,216,.25);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all .2s;
}
.lp-btn-outline-dark:hover {
  border-color: rgba(240,232,216,.5);
  background: rgba(240,232,216,.05);
  text-decoration: none;
}

/* ── HEADER ───────────────────────────────────────────────────────────── */
.lp-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: background .3s, backdrop-filter .3s, border-bottom .3s;
}
.lp-header.scrolled {
  background: rgba(14,11,8,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,169,126,.12);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0e8d8;
  text-decoration: none;
}
.lp-logo svg { color: #c8a97e; flex-shrink: 0; }

.lp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-nav a {
  padding: 8px 14px;
  font-size: .88rem;
  color: rgba(240,232,216,.65);
  text-decoration: none;
  border-radius: 4px;
  transition: color .2s;
}
.lp-nav a:hover { color: #c8a97e; }

.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.lp-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #f0e8d8;
  transition: .3s;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,126,.4) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(120,80,40,.3) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c8a97e;
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #f0e8d8;
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic;
  color: #c8a97e;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,232,216,.6);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-link {
  font-size: .9rem;
  color: rgba(240,232,216,.55);
  text-decoration: none;
  transition: color .2s;
}
.hero-link:hover { color: #c8a97e; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #c8a97e;
  line-height: 1;
}
.trust-item span { font-size: .75rem; color: rgba(240,232,216,.45); }
.trust-divider { width: 1px; height: 36px; background: rgba(200,169,126,.2); }

/* Hero photo comparison mockup */
.hero-visual { display: flex; justify-content: center; }

.photo-compare-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-frame {
  display: flex;
  gap: 12px;
}

.compare-before, .compare-after {
  position: relative;
}

.photo-mock {
  width: 188px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.photo-mock-old {
  background: linear-gradient(135deg, #2a2218 0%, #3d3020 50%, #2a2218 100%);
  border: 1px solid rgba(200,169,126,.15);
}

.photo-damage {
  position: absolute;
  background: rgba(0,0,0,.4);
  border-radius: 2px;
}
.photo-damage:first-child { width: 60%; height: 40%; top: 10%; left: -10%; transform: rotate(-8deg); }
.photo-damage-2 { width: 40%; height: 30%; bottom: 20%; right: -5%; transform: rotate(5deg); }
.photo-scratch {
  position: absolute;
  width: 2px;
  height: 80%;
  background: rgba(255,255,255,.08);
  top: 10%;
  left: 40%;
  transform: rotate(3deg);
}
.photo-content-old {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg,
    rgba(200,169,126,.08) 0%,
    rgba(160,130,90,.12) 50%,
    rgba(200,169,126,.06) 100%
  );
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-content-old::after {
  content: '📷';
  font-size: 2.5rem;
  opacity: .25;
}

.photo-mock-new {
  background: linear-gradient(135deg, #3d2e1a 0%, #5a4020 40%, #3d2e1a 100%);
  border: 1px solid rgba(200,169,126,.3);
  box-shadow: 0 0 40px rgba(200,169,126,.15);
}
.photo-content-new {
  position: absolute;
  inset: 8%;
  background: linear-gradient(135deg,
    rgba(200,169,126,.2) 0%,
    rgba(180,130,70,.25) 50%,
    rgba(200,160,90,.18) 100%
  );
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-content-new::after {
  content: '🖼️';
  font-size: 2.5rem;
  opacity: .5;
}

.compare-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,232,216,.4);
}
.compare-label-after { color: #c8a97e; }

.compare-arrow {
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240,232,216,.3);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: rgba(200,169,126,.5);
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── SERVICES ─────────────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  border-top: 1px solid rgba(200,169,126,.08);
}

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

.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,126,.12);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .3s, background .3s, transform .3s;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s, border-color .3s, background .3s;
}
.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  border-color: rgba(200,169,126,.35);
  background: rgba(200,169,126,.05);
  transform: translateY(-4px);
}
.service-card-featured {
  border-color: rgba(200,169,126,.3);
  background: rgba(200,169,126,.07);
}
.service-card-featured:hover { transform: translateY(-4px); }

.service-icon {
  margin-bottom: 20px;
  width: 52px; height: 52px;
  background: rgba(200,169,126,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0e8d8;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .88rem;
  color: rgba(240,232,216,.5);
  line-height: 1.65;
}
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(200,169,126,.2);
  color: #c8a97e;
  border: 1px solid rgba(200,169,126,.3);
  border-radius: 20px;
  padding: 3px 10px;
}
.card-badge-new { background: rgba(34,197,94,.1); color: #4ade80; border-color: rgba(34,197,94,.2); }

/* ── RESULTS ──────────────────────────────────────────────────────────── */
.results {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200,169,126,.03) 50%, transparent 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.result-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,126,.12);
  border-radius: 12px;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.result-card.revealed { opacity: 1; transform: none; }
.result-card:hover { border-color: rgba(200,169,126,.25); }

.result-images {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.result-img { position: relative; flex: 1; }

.img-placeholder {
  height: 130px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.img-placeholder-old {
  background: linear-gradient(135deg, #1e1810 0%, #2d2418 100%);
  border: 1px solid rgba(255,255,255,.06);
}
.img-placeholder-new {
  background: linear-gradient(135deg, #3d2e1a 0%, #5a4020 100%);
  border: 1px solid rgba(200,169,126,.25);
  box-shadow: 0 0 20px rgba(200,169,126,.1);
}

.placeholder-grain {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 2px,
    rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px
  );
}
.result-label {
  position: absolute;
  bottom: 6px; left: 8px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,232,216,.4);
}
.result-label-after { color: #c8a97e; }

.result-arrow {
  color: rgba(200,169,126,.4);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.result-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.result-info strong { font-size: .88rem; color: #f0e8d8; }
.result-info span { font-size: .78rem; color: rgba(240,232,216,.4); }

.results-note {
  text-align: center;
  margin-top: 40px;
  font-size: .85rem;
  color: rgba(240,232,216,.35);
}

/* ── VIDEO SECTION ────────────────────────────────────────────────────── */
.video-section {
  padding: 100px 0;
  background: rgba(200,169,126,.04);
  border-top: 1px solid rgba(200,169,126,.08);
  border-bottom: 1px solid rgba(200,169,126,.08);
}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.video-text .section-title { text-align: left; }

.video-text p {
  color: rgba(240,232,216,.55);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.video-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(240,232,216,.65);
}
.video-features li span { color: #c8a97e; flex-shrink: 0; }

.video-phone-frame {
  background: #1a1410;
  border: 2px solid rgba(200,169,126,.2);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(200,169,126,.1);
  position: relative;
}
.video-phone-frame::before {
  content: '';
  display: block;
  width: 60px; height: 6px;
  background: rgba(200,169,126,.2);
  border-radius: 6px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0e0b08;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
}

.phone-video-preview {
  flex: 1;
  background: linear-gradient(135deg, #2a1f0e 0%, #3d2e18 50%, #2a1f0e 100%);
  position: relative;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-photo-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(200,169,126,.1) 0%,
    rgba(160,120,60,.15) 50%,
    rgba(200,169,126,.08) 100%
  );
}

.video-play-pulse {
  position: relative;
  z-index: 2;
  width: 64px; height: 64px;
  background: rgba(200,169,126,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.pulse-ring {
  position: absolute;
  width: 100%; height: 100%;
  border: 2px solid rgba(200,169,126,.3);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}
.pulse-ring-2 { animation-delay: 1s; }
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.phone-bottom {
  height: 15%;
  background: #0e0b08;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.video-progress-fill {
  width: 60%;
  height: 100%;
  background: #c8a97e;
  animation: progressAnim 5s linear infinite;
}
@keyframes progressAnim {
  0%   { width: 0; }
  100% { width: 100%; }
}
.phone-bottom span { font-size: .75rem; color: rgba(240,232,216,.4); }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,126,.3), rgba(200,169,126,.3), transparent);
}

.step-card {
  padding: 0 28px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.step-card.revealed { opacity: 1; transform: none; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(200,169,126,.25);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0e8d8;
  margin-bottom: 10px;
}
.step-card p {
  font-size: .85rem;
  color: rgba(240,232,216,.45);
  line-height: 1.65;
}

/* ── PRICING ──────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200,169,126,.02) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 56px auto 0;
}

.price-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,126,.15);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.price-card.revealed { opacity: 1; transform: none; }
.price-card:hover { border-color: rgba(200,169,126,.3); }

.price-card-featured {
  border-color: rgba(200,169,126,.4);
  background: rgba(200,169,126,.07);
  box-shadow: 0 0 60px rgba(200,169,126,.1);
}

.price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c8a97e;
  color: #0e0b08;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card-header { margin-bottom: 28px; }
.price-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #f0e8d8;
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.price-currency { font-size: 1.1rem; color: #c8a97e; }
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #c8a97e;
  line-height: 1;
}
.price-cents { font-size: 1.4rem; color: #c8a97e; }
.price-card-header p { font-size: .9rem; color: rgba(240,232,216,.5); }
.price-card-header strong { color: #f0e8d8; }

.price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(240,232,216,.65);
}
.check { color: #c8a97e; font-weight: 700; flex-shrink: 0; }
.check-star { color: #eab308; }
.cross { color: rgba(240,232,216,.2); flex-shrink: 0; }
.price-feature-off { opacity: .4; }

.price-btn { width: 100%; justify-content: center; }

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  margin: 40px auto 0;
  padding: 20px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,126,.12);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s, transform .6s;
}
.pricing-guarantee.revealed { opacity: 1; transform: none; }
.guarantee-icon { font-size: 1.8rem; }
.pricing-guarantee strong { display: block; color: #f0e8d8; font-size: .9rem; margin-bottom: 2px; }
.pricing-guarantee p { color: rgba(240,232,216,.4); font-size: .8rem; margin: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid rgba(200,169,126,.08);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,126,.12);
  border-radius: 12px;
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.testimonial-card.revealed { opacity: 1; transform: none; }
.testimonial-card:hover { border-color: rgba(200,169,126,.25); }

.testimonial-stars { color: #c8a97e; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(240,232,216,.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px; height: 36px;
  background: rgba(200,169,126,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: #c8a97e;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .88rem; color: #f0e8d8; }
.testimonial-author span { font-size: .78rem; color: rgba(240,232,216,.35); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: rgba(200,169,126,.03);
  border-top: 1px solid rgba(200,169,126,.08);
  border-bottom: 1px solid rgba(200,169,126,.08);
}

.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left p { color: rgba(240,232,216,.5); font-size: .95rem; }

.faq-item {
  border-bottom: 1px solid rgba(200,169,126,.1);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s, transform .5s;
}
.faq-item.revealed { opacity: 1; transform: none; }
.faq-item:first-child { border-top: 1px solid rgba(200,169,126,.1); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  color: #f0e8d8;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: #c8a97e; }
.faq-icon { flex-shrink: 0; transition: transform .3s; color: rgba(240,232,216,.3); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: #c8a97e; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-answer.open { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { color: rgba(240,232,216,.5); font-size: .9rem; line-height: 1.7; }

/* ── FINAL CTA ────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-orb {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,169,126,.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

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

.cta-star {
  font-size: 1.5rem;
  color: #c8a97e;
  margin-bottom: 20px;
  display: block;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #f0e8d8;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: #c8a97e; font-weight: 400; }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(240,232,216,.5);
  margin-bottom: 40px;
}
.cta-actions { margin-bottom: 24px; }
.cta-trust { font-size: .8rem; color: rgba(240,232,216,.3); }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.lp-footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(200,169,126,.1);
}
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.lp-footer-brand .lp-logo { margin-bottom: 10px; }
.lp-footer-brand p { font-size: .85rem; color: rgba(240,232,216,.35); max-width: 260px; }
.lp-footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.lp-footer-links a { font-size: .88rem; color: rgba(240,232,216,.45); transition: color .2s; }
.lp-footer-links a:hover { color: #c8a97e; }
.lp-footer-copy { width: 100%; font-size: .78rem; color: rgba(240,232,216,.2); border-top: 1px solid rgba(200,169,126,.08); padding-top: 24px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .video-inner { grid-template-columns: 1fr; }
  .video-phone-frame { max-width: 280px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 700px) {
  .lp-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(14,11,8,.97); padding: 80px 28px 28px; gap: 8px; z-index: 199; }
  .lp-nav.open { display: flex; }
  .lp-nav a { padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(200,169,126,.1); color: rgba(240,232,216,.7); border-radius: 0; }
  .lp-hamburger { display: flex; z-index: 300; position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }
}
