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

:root {
  --bg:       #0a0a0a;
  --bg2:      #111111;
  --bg3:      #191919;
  --border:   #242424;
  --text:     #f5f5f5;
  --muted:    #6b6b6b;
  --accent:   #FF2800;
  --accent-h: #e02300;
  --cream:    #f5f5f5;
  --warm:     #ff6644;
  --r:        10px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--accent);
  padding: 9px 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; font-weight: 500; color: #fff;
}
.announce-divider { opacity: 0.4; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,13,12,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Geist', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--text); letter-spacing: -0.3px;
}
.nav-logo-icon {
  width: 88px; height: 88px;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 28px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 14px; color: var(--muted);
  transition: color .18s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--cream); color: #0a0a0a;
  padding: 9px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: background .18s;
  white-space: nowrap;
}
.nav-cta:hover { background: #fff; }

/* ── HERO ── */
.hero {
  padding: 80px 28px 64px;
  text-align: center;
  max-width: 1160px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,96,56,0.15);
  border: 1px solid rgba(201,96,56,0.3);
  padding: 6px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--warm);
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '•'; color: var(--accent); font-size: 16px; line-height: 0;
}
.hero h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1.0; letter-spacing: -3px;
  color: var(--text);
  max-width: 900px; margin: 0 auto 24px;
}
.hero h1 .script {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400;
  color: var(--warm);
  letter-spacing: -2px;
}
.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.65; font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 16px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 30px; border-radius: 100px;
  font-size: 16px; font-weight: 600;
  transition: background .18s;
}
.btn-primary:hover { background: var(--accent-h); }
.hero-price {
  font-size: 15px; color: var(--muted);
}

/* ── TEMPLATE GALLERY ── */
.gallery-wrap {
  overflow: hidden;
  padding: 48px 0 0;
  position: relative;
}
.gallery-wrap::before,
.gallery-wrap::after {
  content: ''; position: absolute; top: 48px; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.gallery-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.gallery-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.gallery {
  display: flex;
  overflow: hidden;
  padding: 0 0 32px;
}
.gallery-track {
  display: flex; gap: 14px;
  animation: gallery-scroll 30s linear infinite;
  will-change: transform;
}
@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
.gallery-card {
  flex-shrink: 0; width: 200px; height: 260px;
  border-radius: 12px;
  position: relative; overflow: hidden;
}
.gallery-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 12px;
}

/* ── SHARED LAYOUT ── */
.section { padding: 96px 28px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Geist', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 500px; line-height: 1.65;
}

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 28px 28px;
  display: flex; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Geist', sans-serif;
  font-weight: 800; font-size: 34px;
  color: var(--text); letter-spacing: -1px; line-height: 1;
}
.stat-value span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg2); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 52px;
}
.step {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
}
.step-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 40px; font-weight: 600; color: #e02300;
  line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px; margin-top: 52px;
}
.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(201,96,56,0.4); }
.feature-icon {
  margin-bottom: 16px;
  width: 42px; height: 42px; border-radius: 9px;
  background: rgba(201,96,56,0.12);
  border: 1px solid rgba(201,96,56,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews { background: var(--bg2); }
.reviews-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-bottom: 44px;
}
.rating-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: var(--r);
}
.stars { color: #f5c230; font-size: 16px; letter-spacing: 1px; }
.rating-text { font-size: 13px; color: var(--muted); }
.rating-text strong { color: var(--text); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
}
.review-stars { color: #f5c230; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--warm); flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--muted); }
.review-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-date { font-size: 11px; color: var(--muted); }
.review-verified { font-size: 11px; color: #4ade80; display: flex; align-items: center; gap: 4px; }
.review-verified::before { content: '✓'; font-weight: 700; }
.review-avatar-a { background: #1e3a5f; color: #60a5fa; }
.review-avatar-b { background: #3b1f2b; color: #f9a8d4; }
.review-avatar-c { background: #1a3320; color: #4ade80; }
.review-avatar-d { background: #2d1f00; color: #fbbf24; }
.review-avatar-e { background: #1f1535; color: #a78bfa; }
.review-avatar-f { background: #2d1515; color: #f87171; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 52px; max-width: 900px;
}
.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; position: relative;
  display: flex; flex-direction: column;
}
.pricing-card.featured { border-color: var(--accent); background: var(--bg3); }
.pricing-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 3px 12px; border-radius: 100px; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pricing-price-row { margin-bottom: 4px; }
.pricing-price-original {
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: line-through; margin-bottom: 4px;
}
.pricing-price {
  font-family: 'Geist', sans-serif; font-weight: 800;
  font-size: 46px; line-height: 1; letter-spacing: -2px;
}
.pricing-discount {
  font-size: 12px; color: #4ade80; font-weight: 600;
  margin-top: 5px;
}
.pricing-note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pricing-features { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.pricing-features li {
  font-size: 13px; padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 9px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-btn {
  display: block; text-align: center;
  padding: 12px; border-radius: 8px;
  font-size: 14px; font-weight: 700; margin-top: auto;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  cursor: pointer; border: none;
}
.pricing-card.featured .pricing-btn {
  background: var(--accent); color: #fff;
}
.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-h); transform: translateY(-1px);
}
.pricing-card:not(.featured) .pricing-btn {
  background: transparent; border: 1px solid var(--muted); color: var(--text);
}
.pricing-card:not(.featured) .pricing-btn:hover {
  background: var(--text); color: var(--bg); border-color: var(--text); transform: translateY(-1px);
}
.pricing-urgency {
  font-size: 12px; font-weight: 500; color: var(--accent);
  margin-bottom: 10px; letter-spacing: 0;
}
.trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 12px;
  font-size: 11px; color: var(--muted);
}
.trust-badges span + span::before { content: '·'; margin-right: 6px; }
.guarantee-block {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 36px auto 0;
  max-width: 500px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.guarantee-text { font-size: 13px; color: var(--muted); line-height: 1.5; text-align: center; }
.guarantee-text strong { color: var(--text); }

/* ── BEFORE / AFTER ── */
.before-after { background: var(--bg2); }
.before-after-inner {
  display: flex;
  gap: 3px;
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  margin: 52px auto 0;
  position: relative;
}
.ba-side { position: relative; }
.ba-side.ba-before { flex: 0 0 38%; }
.ba-side.ba-after { flex: 1; }
.ba-side img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  min-height: 460px;
}
.ba-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
}
.ba-label.after { background: var(--accent); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--bg);
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 600px) {
  .before-after-inner { grid-template-columns: 1fr; }
  .ba-divider { display: none; }
}

/* ── FAQ ── */
.faq { background: var(--bg2); }
.faq-inner { max-width: 700px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer; color: var(--text);
  font-family: inherit; font-size: 15px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; gap: 12px;
}
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px; color: var(--accent);
  transition: transform .22s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease, padding-bottom .28s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ── FINAL CTA ── */
.cta-section {
  padding: 100px 28px;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(201,96,56,0.14), transparent);
}
.cta-section h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 900; font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 18px;
}
.cta-section p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.cta-note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 28px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand .nav-logo { margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 220px; margin-top: 8px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  margin-bottom: 8px; transition: color .18s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px; margin: 28px auto 0; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--muted);
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .stats-inner { gap: 32px; }
  .footer-inner { flex-direction: column; }
  .reviews-top { flex-direction: column; align-items: flex-start; }
}
