/* ═══════════════════════════════════════════════════════════
   Checkout Reward — Public Website Styles
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B2C;
  --orange-hover: #E85A1F;
  --orange-glow: rgba(255, 107, 44, .25);
  --orange-light: #FFF3ED;
  --dark-950: #0A0A0F;
  --dark-900: #12121A;
  --dark-800: #1A1A24;
  --dark-700: #24243A;
  --text: #1A1A1A;
  --text-secondary: #555;
  --text-muted: #888;
  --grey-50: #FAFAFB;
  --grey-100: #F3F3F6;
  --grey-200: #E5E5EA;
  --white: #FFF;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1180px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.15; }
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A5C 50%, #FFCF70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-orange { color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-weight: 600; font-size: .95rem;
  padding: 12px 28px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--orange-glow); }
.btn-white {
  background: var(--white); color: var(--orange); font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 12px; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Pill Badge ── */
.pill {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  background: rgba(255, 107, 44, .12); color: var(--orange);
  border: 1px solid rgba(255, 107, 44, .2);
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 15, .8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 32px; filter: brightness(0) invert(1); }
.nav.scrolled { background: rgba(10, 10, 15, .95); }
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .88rem; font-weight: 500; padding: 8px 16px;
  border-radius: 8px; transition: all var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 10px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-hover) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  margin: 5px 0; border-radius: 2px; transition: all .3s;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh; display: flex; align-items: center; gap: 60px;
  max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px;
}
.hero-glow {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255, 107, 44, .08), transparent),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(255, 159, 92, .05), transparent),
    var(--dark-950);
}
.hero-content { flex: 1; min-width: 0; }
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900;
  color: #fff; margin: 24px 0 20px; letter-spacing: -.02em;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }
.hero-guarantees { margin-bottom: 32px; }
.hero-guarantees p {
  color: #fff; font-size: 1.05rem; line-height: 1.8;
}
.hero-guarantees strong {
  background: linear-gradient(135deg, var(--orange), #FFCF70);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.45); }

/* Hero Mockup */
.hero-visual { flex: 0 0 420px; }
.mockup {
  background: var(--dark-800); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04);
}
.mockup-bar {
  display: flex; gap: 6px; padding: 14px 18px;
  background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.12); }
.mockup-bar span:first-child { background: #FF5F56; }
.mockup-bar span:nth-child(2) { background: #FFBD2E; }
.mockup-bar span:last-child { background: #27C93F; }
.mockup-body { padding: 32px 28px; text-align: center; }
.mockup-logo { width: 56px; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: .4; }
.mockup-text { color: rgba(255,255,255,.35); font-size: .85rem; margin-bottom: 28px; }
.mockup-stats { display: flex; gap: 16px; }
.mockup-stat {
  flex: 1; padding: 16px 8px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.mockup-stat strong { display: block; color: #fff; font-size: 1.3rem; font-weight: 800; }
.mockup-stat small { color: rgba(255,255,255,.5); font-size: .7rem; }

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--dark-900); border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04); padding: 20px 24px;
}
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.55); font-size: .82rem; font-weight: 500;
}
.trust-item svg { stroke: var(--orange); opacity: .8; flex-shrink: 0; }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: 100px 24px; }
.section-dark { background: var(--dark-950); }
.section-grey { background: var(--dark-950); }
.section-label {
  text-transform: uppercase; font-size: .78rem; font-weight: 700;
  letter-spacing: 2.5px; color: var(--orange); text-align: center; margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; margin-bottom: 56px; letter-spacing: -.01em;
  color: #fff;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-label { color: var(--orange); }

/* ═══════════════════════════════════════
   HOW IT WORKS — FLYWHEEL
   ═══════════════════════════════════════ */
.flywheel-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px; align-items: start;
}
.flywheel-step {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: all var(--transition); position: relative;
}
.flywheel-step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: var(--orange); }
.step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--orange-light); margin-bottom: 20px;
}
.step-icon svg { stroke: var(--orange); }
.step-number {
  position: absolute; top: 16px; right: 20px;
  font-size: 2.5rem; font-weight: 900; color: var(--grey-100);
}
.flywheel-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.flywheel-step p { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; }
.flywheel-arrow { display: flex; align-items: center; justify-content: center; padding-top: 60px; }
.flywheel-loop {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 40px; padding: 16px 28px; border-radius: 100px;
  background: var(--orange-light); width: fit-content; margin-left: auto; margin-right: auto;
  font-size: .88rem; font-weight: 600; color: var(--orange);
}

/* ═══════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: all var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255, 107, 44, .3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 107, 44, .08);
}
.benefit-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255, 107, 44, .1); border: 1px solid rgba(255, 107, 44, .15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit-card h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   EXAMPLE
   ═══════════════════════════════════════ */
.example-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.example-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
.example-heading {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 24px;
}
.example-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--grey-100); font-size: .92rem;
}
.example-row:last-of-type { border-bottom: none; }
.example-row span { color: var(--text-secondary); }
.example-row.highlight { background: var(--orange-light); margin: 0 -16px; padding: 14px 16px; border-radius: 8px; border: none; }
.example-divider { height: 2px; background: var(--grey-200); margin: 8px 0; }
.example-bottom {
  margin-top: 20px; padding: 16px; border-radius: var(--radius);
  background: var(--grey-50); text-align: center; font-size: .9rem; color: var(--text-secondary);
}
.example-bottom strong { color: var(--orange); font-size: 1.1rem; }

.explanation-item { margin-bottom: 32px; }
.explanation-num {
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--orange), #FFCF70);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.explanation-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.explanation-item p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.65; }
.explanation-callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius); background: var(--orange-light);
  border: 1px solid rgba(255, 107, 44, .15);
}
.explanation-callout p { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing-wrapper { max-width: 520px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center;
  border: 2px solid var(--grey-200);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.pricing-card:hover { border-color: var(--orange); box-shadow: 0 12px 48px var(--orange-glow); }
.pricing-badge {
  display: inline-block; padding: 6px 18px; border-radius: 100px;
  background: var(--orange-light); color: var(--orange);
  font-size: .8rem; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 24px;
}
.pricing-number { font-size: 4rem; font-weight: 900; color: var(--text); }
.pricing-unit { display: block; font-size: .92rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 32px; }
.pricing-logo { display: block; margin: 0 auto 32px; height: 48px; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--grey-100);
  font-size: .92rem; color: var(--text-secondary);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list svg { flex-shrink: 0; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--orange); box-shadow: 0 4px 20px var(--orange-glow); }
.faq-item summary {
  padding: 20px 24px; font-weight: 600; font-size: 1rem;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--orange); transition: transform .3s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { color: var(--orange); }
.faq-item p { padding: 0 24px 20px; color: var(--text-secondary); font-size: .92rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.contact-subtitle {
  text-align: center; color: var(--text-secondary); font-size: 1.05rem;
  line-height: 1.7; max-width: 540px; margin: -24px auto 40px;
}
.contact-form { max-width: 520px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 16px; font-size: .95rem; font-family: inherit;
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  background: var(--white); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-status {
  text-align: center; margin-top: 16px; font-size: .88rem; min-height: 24px;
}
.contact-status.success { color: #16a34a; }
.contact-status.error { color: #dc2626; }

/* ═══════════════════════════════════════
   SUCCESS MODEL SECTION
   ═══════════════════════════════════════ */
.success-model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 48px;
}
.success-point {
  text-align: center; padding: 32px 24px;
  background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px; transition: border-color var(--transition), transform var(--transition);
}
.success-point:hover { border-color: rgba(255, 107, 44, .3); transform: translateY(-4px); }
.success-icon { margin-bottom: 20px; }
.success-point h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.success-point p { font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.success-tagline {
  text-align: center; padding: 28px; font-size: 1.4rem; font-weight: 700; color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}
.success-tagline p { margin: 0; }

@media (max-width: 1024px) {
  .success-model-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--dark-950); padding: 120px 24px; text-align: center;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 44, .12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; }
.cta-logo { margin-bottom: 28px; opacity: .25; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-note { margin-top: 16px; font-size: .82rem; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--dark-950); border-top: 1px solid rgba(255,255,255,.06); padding: 64px 24px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .88rem; margin-top: 16px; line-height: 1.6; }
.footer-brand img { opacity: .3; }
.footer-col h4 { color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.4); text-decoration: none; font-size: .88rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .15s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; min-height: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { flex: none; width: 100%; max-width: 420px; }
  .flywheel-grid { grid-template-columns: 1fr; gap: 16px; }
  .flywheel-arrow { transform: rotate(90deg); padding: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .example-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10, 10, 15, .98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px !important; font-size: 1rem !important; }
  .nav-toggle { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .section { padding: 72px 24px; }
  .section-title { margin-bottom: 40px; }
  .pricing-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 20px; }
  .trust-item span { font-size: .75rem; }
}
