:root {
  --orange: #FF6B00;
  --orange2: #FF8C2A;
  --orange3: #FFB74D;
  --yellow: #FFD700;
  --green: #00A650;
  --green2: #25D366;
  --blue: #1565C0;
  --red: #D32F2F;
  --red2: #E53935;
  --navy: #1A1A2E;
  --navy2: #16213E;
  --navy3: #0F3460;
  --white: #FFFFFF;
  --off: #F8F9FA;
  --light: #F1F3F6;
  --dark: #1A1A1A;
  --gray: #616161;
  --lgray: #9E9E9E;
  --gold: #C9A84C;
  --border: #E0E0E0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  font-size: 14px;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }

/* MARQUEE */
.marquee {
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.marquee-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--navy), var(--navy2), var(--navy3));
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 0.04em;
}
.logo span { color: #fff; }
.header-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.header-badge {
  background: var(--green2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.header-wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--green2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.25s;
}
.header-wa:hover { background: var(--green2); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, var(--navy3) 100%);
  padding: 48px 20px 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-car.jpg') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(255, 215, 0, 0.08), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-areas:
    "intro price"
    "extras price";
  gap: 32px 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-intro { grid-area: intro; }
.hero-extras { grid-area: extras; }
.price-box { grid-area: price; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero h1 .hl { color: var(--yellow); }
.hero-sub {
  font-size: clamp(13px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-sub strong { color: #fff; }
.bullets { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}
.bullet .tick { color: var(--green2); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* HERO PREVIEW GRID */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.preview-item {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, border-color 0.3s;
}
.preview-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--yellow);
}
.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-hint {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

/* PRICE BOX */
.price-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.price-old {
  font-size: 16px;
  color: var(--lgray);
  text-decoration: line-through;
  text-align: center;
  margin-bottom: 2px;
}
.price-new {
  font-family: 'Nunito', sans-serif;
  font-size: 62px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-align: center;
  margin-bottom: 6px;
}
.price-save {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 0 auto 22px;
  display: flex;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  justify-content: center;
  line-height: 1.35;
}
.plan-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-align: center;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  min-width: 0;
}
.plan-btn {
  padding: 13px 8px;
  min-height: 44px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--dark);
  text-align: center;
}
.plan-btn.active,
.plan-btn:hover {
  border-color: var(--orange);
  background: #FFF3E0;
  color: var(--orange);
}
.plan-btn span {
  display: block;
  font-size: 17px;
  font-weight: 900;
  color: var(--orange);
  margin-top: 3px;
}
.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 18px 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
  text-align: center;
}
.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 0, 0.5);
}
.buy-btn .buy-btn-short { display: none; }
.buy-btn .buy-btn-long { display: block; }
.pay-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.pay-chip {
  background: var(--light);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  color: var(--gray);
}
.secure { font-size: 11px; color: var(--lgray); text-align: center; }
.secure b { color: var(--green); }
.sample-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 8px;
  transition: background 0.25s;
}
.sample-link:hover { background: #FFF3E0; }

/* TIMER */
.timer {
  background: linear-gradient(135deg, var(--red), var(--red2));
  padding: 20px;
  text-align: center;
}
.timer h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.timer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.t-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 68px;
  text-align: center;
}
.t-num {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.t-lbl {
  font-size: 9px;
  font-weight: 700;
  color: var(--lgray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.t-sep {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  padding-top: 10px;
}

/* TRUST */
.trust {
  background: #fff;
  border-bottom: 3px solid var(--light);
  padding: 22px 20px;
}
.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.trust-item .ico { font-size: 20px; }

/* NUMBERS */
.numbers {
  background: linear-gradient(135deg, var(--orange), var(--orange2), var(--orange3));
  padding: 44px 20px;
}
.num-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.num-val {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.num-lbl {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* SECTION COMMONS */
.sec { padding: 60px 20px; }
.sec-inner { max-width: 1060px; margin: 0 auto; }
.sec-center { text-align: center; margin-bottom: 40px; }
.sec-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sec-tag.blue { background: linear-gradient(135deg, var(--blue), #1976D2); }
.sec-tag.green { background: linear-gradient(135deg, var(--green), #00C853); }
.sec-tag.purple { background: linear-gradient(135deg, #7B1FA2, #9C27B0); }
.sec-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
}
.sec-title span { color: var(--orange); }
.sec-title.white { color: #fff; }
.sec-title.white span { color: var(--yellow); }

/* INSIDE — image cards */
.inside { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.in-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.in-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.in-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.in-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.4) 55%, rgba(26, 26, 46, 0.15) 100%);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.in-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
}
.in-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 10px;
}
.in-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.06em;
  width: fit-content;
}

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 2px solid transparent;
}
.feat-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feat-text h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.feat-text p { font-size: 12px; color: var(--gray); line-height: 1.7; }

/* STEPS */
.steps-sec { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.07);
}
.step-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
}
.step-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.step-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.step-desc { font-size: 11px; color: rgba(255, 255, 255, 0.65); line-height: 1.7; }

/* PERFECT FOR — photo cards */
.perf-sec { background: var(--off); }
.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.perf-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  cursor: default;
}
.perf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.perf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}
.perf-card:hover img { transform: scale(1.08); }
.perf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
}
.perf-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.perf-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* TESTIMONIALS */
.testi-sec { background: linear-gradient(135deg, #F3E5F5, #E8EAF6); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.stars { color: #FFB300; font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.testi-text {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}
.author-name { font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; }
.author-loc { font-size: 10px; color: var(--lgray); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  padding: 16px 20px;
  min-height: 48px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  color: inherit;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--gray);
}
.faq-item.open .faq-icon { background: var(--orange); color: #fff; }
.faq-a {
  padding: 0 20px 16px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.85;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* FINAL CTA */
.final-sec {
  background: linear-gradient(135deg, var(--orange), var(--orange2), var(--orange3));
  padding: 70px 20px;
  text-align: center;
}
.final-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.final-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  font-weight: 500;
}
.final-box {
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}
.final-old {
  font-size: 16px;
  color: var(--lgray);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.final-price {
  font-family: 'Nunito', sans-serif;
  font-size: 70px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.final-save {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.final-box .plan-grid { margin-bottom: 18px; }
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 17px;
  background: var(--green2);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  border-radius: 12px;
  transition: all 0.3s;
  margin-bottom: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.value-table { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 4px; }
.val-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--light);
  font-size: 12px;
}
.val-row:last-child { border: none; padding-top: 14px; margin-top: 4px; }
.val-label { color: var(--gray); }
.val-price { color: var(--green); font-weight: 700; }
.val-strike { text-decoration: line-through; color: var(--lgray); }
.val-total {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}

/* STICKY MOBILE */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--orange);
  padding: 12px 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-price {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}
.sticky-price small {
  display: block;
  font-size: 10px;
  color: var(--lgray);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-decoration: line-through;
}
.sticky-btn {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 900;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.sticky-btn:hover { transform: translateY(-1px); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--green2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 9998;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 44px 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: 11px; color: rgba(255, 255, 255, 0.28); letter-spacing: 0.05em; }

/* LEGAL PAGES */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.legal-page h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--navy);
}
.legal-page .updated { font-size: 12px; color: var(--lgray); margin-bottom: 32px; }
.legal-page h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 28px 0 10px;
  color: var(--dark);
}
.legal-page p,
.legal-page li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
}
.legal-back:hover { text-decoration: underline; }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    padding: 28px 16px 40px;
    overflow: visible;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "price"
      "extras";
    gap: 28px;
    min-width: 0;
    width: 100%;
  }
  .hero-inner > * {
    min-width: 0;
    width: 100%;
  }
  .hero-intro {
    margin-bottom: 4px;
  }
  .hero-sub {
    margin-bottom: 12px;
    line-height: 1.55;
  }
  .price-box {
    margin-top: 4px;
    padding: 40px 18px 24px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
  }
  .ribbon {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 32px);
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    font-size: 9px;
    padding: 5px 12px;
  }
  .price-old {
    font-size: 14px;
    padding: 0 4px;
    word-break: break-word;
  }
  .price-save {
    font-size: 11px;
    padding: 6px 12px;
  }
  .plan-btn {
    min-width: 0;
    padding: 12px 4px;
    font-size: 10px;
  }
  .plan-btn span {
    font-size: 14px;
  }
  .hero-extras .bullets { margin-top: 4px; margin-bottom: 16px; }
  .preview-hint { display: block; }
  .preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    max-width: none;
    padding: 4px 4px 12px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .preview-grid::-webkit-scrollbar { display: none; }
  .preview-item {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }
  .preview-item:hover { transform: none; }
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .inside-grid { grid-template-columns: 1fr; }
  .in-card { min-height: 260px; }
  .perf-grid { grid-template-columns: 1fr; }
  .perf-card { min-height: 240px; }
  .feat-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .sec { padding: 48px 16px; }
  .sticky-bar {
    display: flex;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .wa-float {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  header {
    padding: 12px 16px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
  }
  .logo { font-size: 22px; }
  .header-wa {
    padding: 8px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .final-sec { padding: 48px 16px; }
  .final-box {
    padding: 28px 18px;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .final-box .plan-btn {
    min-width: 0;
  }
  .buy-btn .buy-btn-long { display: none; }
  .buy-btn .buy-btn-short { display: block; }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .t-box { min-width: 52px; padding: 8px 10px; }
  .t-num { font-size: 24px; }
  .header-badge { display: none; }
  .bullet-desktop { display: none; }
  .price-new { font-size: 52px; }
  .final-price { font-size: 52px; }
  .plan-btn { font-size: 10px; padding: 14px 6px; }
  .plan-btn span { font-size: 15px; }
  .sticky-btn { font-size: 12px; padding: 14px 10px; }
  .marquee-track { font-size: 10px; }
  .trust-inner { gap: 12px 16px; }
  .trust-item { font-size: 11px; }
}

@media (max-width: 400px) {
  .price-new,
  .final-price { font-size: 44px; }
  .sticky-price { font-size: 18px; }
  .hero h1 { font-size: 26px; }
  .preview-item { flex: 0 0 130px; }
  .hero { padding-left: 12px; padding-right: 12px; }
  .price-box,
  .final-box { padding-left: 14px; padding-right: 14px; }
  .plan-btn { font-size: 9px; padding: 12px 2px; }
  .plan-btn span { font-size: 13px; }
}

@media (max-width: 360px) {
  .hero-sub { font-size: 12px; }
  .price-new { font-size: 40px; }
  .ribbon { font-size: 8px; max-width: calc(100% - 20px); }
  .header-wa { font-size: 10px; padding: 8px 10px; }
}

@media (min-width: 901px) {
  .hero-extras .bullets { margin-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .hero-badge,
  .reveal { animation: none; transition: none; }
}
