/* === BASE === */
:root {
  --bg: #0e0e0e;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --accent: #ff4500;
  --accent-dim: rgba(255, 69, 0, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8680;
  --border: rgba(240, 237, 232, 0.08);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* === HERO === */
.hero {
  padding: 80px 32px 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  line-height: 1;
}

.hero-stat {
  font-family: 'Syne', sans-serif;
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -4px;
  line-height: 0.9;
}

.hero-stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  max-width: 400px;
  margin-bottom: 8px;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 6px;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.9; }
.hero-cta-sub { font-size: 12px; color: var(--text-muted); }

.hero-sub--secondary {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0;
}

/* hero card mockups */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.hero-card--accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, var(--surface) 60%);
}

.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-card--accent .hero-card-label { color: var(--accent); }

/* before site — sad gray placeholder */
.mock-site {
  background: var(--surface-2);
  border-radius: 4px;
  padding: 16px;
  height: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-site--before { opacity: 0.45; }

.mock-bar { height: 10px; background: #444; border-radius: 2px; width: 70%; }
.mock-line { height: 6px; background: #444; border-radius: 2px; }
.mock-line--short { width: 45%; }
.mock-block { height: 40px; background: #333; border-radius: 2px; margin-top: 8px; }

/* after site — richer with nav dots */
.mock-site--after { height: 100px; }
.mock-nav { display: flex; gap: 5px; margin-bottom: 10px; }
.mock-dot { width: 18px; height: 8px; background: #555; border-radius: 2px; }
.mock-hero-block { height: 30px; background: var(--accent-dim); border: 1px solid rgba(255,69,0,0.3); border-radius: 3px; margin-bottom: 10px; }
.mock-cols { display: flex; gap: 6px; }
.mock-col-block { flex: 1; height: 20px; background: #333; border-radius: 2px; }

.mock-caption {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 48px;
  justify-content: center;
}

/* === HOW === */
.how {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.how-header { margin-bottom: 56px; }

.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.how-desc {
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  max-width: 500px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 24px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  flex-shrink: 0;
}

/* === PACKAGES === */
.packages {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.packages-header { margin-bottom: 40px; }

.packages-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.packages-desc { font-size: 16px; color: var(--text-muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(255,69,0,0.08) 0%, var(--surface) 50%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-tier { color: var(--accent); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pricing-monthly {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.addons-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.packages-cta-wrap { text-align: center; margin-top: 40px; }
.packages-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.packages-cta:hover { opacity: 0.9; }
.packages-cta-sub { font-size: 13px; color: var(--text-muted); margin-top: 10px; }

/* === DIFFERENCE === */
.difference {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.diff-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.diff-body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.diff-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: center;
}

.diff-row--head {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 8px;
}

.diff-row > span:first-child {
  color: var(--text);
  font-weight: 500;
}

.diff-old {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(138,134,128,0.4);
}

.diff-new {
  color: var(--accent);
  font-weight: 600;
}

/* === CLOSING === */
.closing {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 680px; }

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}

.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 24px;
  transition: opacity 0.15s;
}
.closing-cta:hover { opacity: 0.9; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.footer-note { font-size: 14px; color: var(--text-muted); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* === NFC SECTION === */
.nfc-section {
  padding: 0 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.nfc-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nfc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.nfc-headline {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.nfc-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}

.nfc-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nfc-price {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.nfc-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nfc-btn:hover { opacity: 0.9; }

/* NFC visual: card + tap animation */
.nfc-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nfc-card {
  width: 120px;
  height: 76px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,69,0,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(255,69,0,0.15);
}

.nfc-chip {
  width: 28px;
  height: 20px;
  background: linear-gradient(135deg, #d4a843, #b88c2a);
  border-radius: 4px;
}

.nfc-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nfc-line {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  width: 70%;
}

.nfc-line--short { width: 45%; }

.nfc-logo-mark {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.nfc-card { position: relative; }

.nfc-tap-ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nfc-ring-1 {
  position: absolute;
  width: 96px;
  height: 96px;
  border: 1px dashed rgba(255,69,0,0.3);
  border-radius: 50%;
  animation: nfc-pulse 2s ease-in-out infinite;
}

.nfc-ring-2 {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,69,0,0.2);
  border-radius: 50%;
}

.nfc-phone {
  width: 44px;
  height: 72px;
  background: #111;
  border: 1.5px solid #333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.nfc-phone-screen {
  width: 34px;
  height: 56px;
  background: var(--surface);
  border-radius: 6px;
  padding: 5px;
}

.nfc-site-mock { display: flex; flex-direction: column; gap: 4px; height: 100%; }

.nfc-site-nav {
  height: 6px;
  background: var(--accent-dim);
  border-radius: 2px;
  border: 1px solid rgba(255,69,0,0.2);
}

.nfc-site-hero {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,69,0,0.15) 0%, rgba(255,69,0,0.05) 100%);
  border-radius: 3px;
}

.nfc-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

@keyframes nfc-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (max-width: 768px) {
  .nfc-section { padding: 0 20px 56px; }
  .nfc-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .nfc-desc { max-width: none; }
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: column; }
  .steps { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 20px 48px; }
  .how, .packages, .difference, .closing { padding: 56px 20px; }
  .diff-row { grid-template-columns: 110px 1fr 1fr; }
  .nav-inner { padding: 14px 20px; }
}
}

@media (max-width: 480px) {
  .hero-stat { font-size: 80px; }
  .pricing-amount { font-size: 32px; }
  .closing-title { font-size: 26px; }
  .diff-row { grid-template-columns: 90px 1fr 1fr; font-size: 12px; }
}