/* ══════════════════════════════════════════════════
   TICKET VERT — site.css
   Custom layer on Bootstrap 5.3
   Fonts: Sora (headings) · DM Sans (body)
   ══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --tv-green:       #16a34a;
  --tv-green-light: #22c55e;
  --tv-green-pale:  #dcfce7;
  --tv-green-faint: #f0fdf4;
  --tv-navy:        #0a0f1e;
  --tv-ink:         #0f172a;
  --tv-muted:       #64748b;
  --tv-line:        #e2e8f0;
  --tv-bg:          #f8fafc;
  --tv-shadow:      0 20px 60px rgba(10,15,30,.11);
  --tv-shadow-sm:   0 4px 18px rgba(10,15,30,.07);
  --tv-radius:      16px;
}

/* ── BASE ────────────────────────────────────────── */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--tv-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.tv-heading,
.navbar-brand strong,
.tv-plan-price,
.tv-stat-val {
  font-family: 'Sora', system-ui, sans-serif;
}

/* ── NAVBAR ──────────────────────────────────────── */
.tv-navbar {
  background: rgba(255,255,255,.95) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  min-height: 66px;
}

.tv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--tv-ink) !important;
}
.tv-brand strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--tv-ink);
  line-height: 1;
}
.tv-brand small {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tv-muted);
  font-weight: 500;
}
.tv-brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tv-green-light), var(--tv-green));
  box-shadow: 0 0 0 3px var(--tv-green-pale);
  flex-shrink: 0;
}

.tv-navlink {
  font-size: 14px;
  font-weight: 600;
  color: var(--tv-muted) !important;
  border-radius: 8px;
  padding: 8px 14px !important;
  transition: background .15s, color .15s;
}
.tv-navlink:hover,
.tv-navlink.active {
  background: var(--tv-bg) !important;
  color: var(--tv-ink) !important;
}

/* ── MOBILE LINK ─────────────────────────────────── */
.tv-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tv-ink);
  text-decoration: none;
  transition: background .15s;
}
.tv-mobile-link:hover {
  background: var(--tv-bg);
  color: var(--tv-green);
}
.tv-mobile-link i {
  font-size: 18px;
  color: var(--tv-green);
  width: 22px;
}

/* ── BUTTONS ─────────────────────────────────────── */
.tv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--tv-green), var(--tv-green-light));
  box-shadow: 0 4px 18px rgba(22,163,74,.3);
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
  cursor: pointer;
  white-space: nowrap;
}
.tv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(22,163,74,.4);
  color: #fff !important;
}
.tv-btn-primary.lg {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 12px;
}

.tv-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--tv-line);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--tv-ink) !important;
  background: white;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  cursor: pointer;
  box-shadow: var(--tv-shadow-sm);
}
.tv-btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--tv-green);
  color: var(--tv-green) !important;
}
.tv-btn-outline.lg {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 12px;
}

.tv-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.35);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff !important;
  background: transparent;
  text-decoration: none;
  transition: background .18s;
  cursor: pointer;
}
.tv-btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  color: #fff !important;
}
.tv-btn-ghost-white.lg {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 12px;
}

/* ── EYEBROW ─────────────────────────────────────── */
.tv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--tv-green-pale);
  color: var(--tv-green);
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  border: 1px solid rgba(22,163,74,.2);
}
.tv-eyebrow.on-dark {
  background: rgba(34,197,94,.15);
  color: #4ade80;
  border-color: rgba(34,197,94,.2);
}

/* ── HERO ────────────────────────────────────────── */
.tv-hero {
  background:
    radial-gradient(ellipse 65% 55% at 75% 55%, rgba(34,197,94,.13) 0%, transparent 60%),
    linear-gradient(155deg, var(--tv-green-faint) 0%, #fff 50%, #eff6ff 100%);
  padding: 90px 0 100px;
}
.tv-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.05em;
  color: var(--tv-ink);
}
.tv-hero h1 em {
  font-style: normal;
  color: var(--tv-green);
}
.tv-hero-sub {
  font-size: 17px;
  color: var(--tv-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* ── MOCK CARDS ──────────────────────────────────── */
.tv-mock-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}
.tv-mock {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  padding: 22px;
  flex: 1;
  max-width: 200px;
  box-shadow: 0 18px 55px rgba(10,15,30,.13), 0 4px 14px rgba(10,15,30,.06);
}
.tv-mock:first-child { margin-top: 36px; transform: rotate(-2deg); }
.tv-mock:last-child { transform: rotate(2deg); }
.tv-mock-label {
  font-family: 'Sora', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tv-muted);
}
.tv-mock-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--tv-ink);
  letter-spacing: -.03em;
  margin: 6px 0 2px;
}
.tv-mock-sub { font-size: 11px; color: var(--tv-muted); }
.tv-mock-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--tv-line);
  overflow: hidden;
  margin-top: 12px;
}
.tv-mock-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--tv-green), var(--tv-green-light));
  border-radius: 999px;
}
.tv-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-top: 12px;
}
.tv-mock-chart i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--tv-green-pale);
  display: block;
}
.tv-mock-chart i:nth-child(2) { background: var(--tv-green-light); opacity: .55; }
.tv-mock-chart i:nth-child(4) { background: var(--tv-green); }
.tv-qr {
  width: 54px; height: 54px;
  border-radius: 9px;
  background: var(--tv-navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 7px;
  margin: 12px 0 8px;
}
.tv-qr span { border-radius: 3px; background: #fff; }
.tv-qr span:nth-child(2) { background: var(--tv-green-light); }
.tv-tag {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--tv-green-pale);
  color: var(--tv-green);
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
}

/* Store badges */
.tv-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--tv-line);
  box-shadow: var(--tv-shadow-sm);
  text-decoration: none;
}
.tv-store-badge:hover { border-color: var(--tv-green); }
.tv-store-badge .sb-sub { display: block; font-size: 10px; color: var(--tv-muted); }
.tv-store-badge .sb-title { display: block; font-size: 13px; font-weight: 700; color: var(--tv-ink); }
.tv-soon {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--tv-green); background: var(--tv-green-pale);
  padding: 2px 7px; border-radius: 999px;
}

/* ── STATS BAR ───────────────────────────────────── */
.tv-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--tv-line);
  border-bottom: 1px solid var(--tv-line);
  background: #fff;
}
.tv-stats-bar .tv-stat {
  padding: 28px 24px;
  border-right: 1px solid var(--tv-line);
}
.tv-stats-bar .tv-stat:last-child { border-right: none; }
.tv-stat-val {
  font-size: 34px;
  font-weight: 900;
  color: var(--tv-green);
  letter-spacing: -.04em;
  display: block;
  line-height: 1;
}
.tv-stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--tv-muted);
  margin-top: 4px;
  display: block;
}

/* ── SECTIONS ────────────────────────────────────── */
.tv-section { padding: 88px 0; }
.tv-section-dark {
  background: var(--tv-navy);
}
.tv-section-dark h2 { color: #fff; }
.tv-section-dark p { color: rgba(255,255,255,.6); }
.tv-section-alt { background: var(--tv-bg); }
.tv-section-green-faint { background: linear-gradient(155deg, var(--tv-green-faint) 0%, #fff 60%); }

.tv-section-head { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.tv-section-head h2 { margin-bottom: 12px; }
.tv-section-head p { font-size: 17px; color: var(--tv-muted); margin-bottom: 0; }

/* ── CARDS ───────────────────────────────────────── */
.tv-card {
  background: #fff;
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius);
  padding: 28px;
  box-shadow: var(--tv-shadow-sm);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.tv-card:hover { transform: translateY(-3px); box-shadow: var(--tv-shadow); }

.tv-card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--tv-green-pale), #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.tv-card-dark {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-color: rgba(255,255,255,.07);
  color: #fff;
}
.tv-card-dark h3, .tv-card-dark h4 { color: #fff; }
.tv-card-dark p { color: rgba(255,255,255,.58); }
.tv-card-dark .tv-card-icon { background: rgba(255,255,255,.08); }

.tv-card-green {
  background: linear-gradient(145deg, var(--tv-green), #15803d);
  border-color: transparent;
  color: #fff;
}
.tv-card-green h2, .tv-card-green h3, .tv-card-green p { color: #fff; }
.tv-card-green p { color: rgba(255,255,255,.78); }
.tv-card-green .tv-card-icon { background: rgba(255,255,255,.18); }

/* ── STEPS (dark section) ────────────────────────── */
.tv-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.tv-step {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
}
.tv-step-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #4ade80;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.tv-step h3 {
  color: #fff !important;
  font-size: 15px;
  margin: 0;
}

/* ── PRICING ─────────────────────────────────────── */
.tv-install-card {
  background: linear-gradient(155deg, var(--tv-green-faint), #fff);
  border: 1.5px solid var(--tv-green);
  border-radius: var(--tv-radius);
  padding: 38px;
  box-shadow: 0 0 0 4px rgba(22,163,74,.08), var(--tv-shadow-sm);
  max-width: 700px;
  margin: 0 auto;
}
.tv-plan-card {
  background: #fff;
  border: 1.5px solid var(--tv-line);
  border-radius: var(--tv-radius);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tv-plan-card:hover { transform: translateY(-4px); box-shadow: var(--tv-shadow); }
.tv-plan-card.featured {
  border-color: var(--tv-green);
  background: linear-gradient(155deg, var(--tv-green-faint), #fff);
  box-shadow: 0 0 0 4px rgba(22,163,74,.1), var(--tv-shadow-sm);
}
.tv-plan-card.dark {
  background: linear-gradient(145deg, var(--tv-navy), #1e293b);
  border-color: rgba(255,255,255,.07);
}
.tv-plan-badge {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tv-green);
}
.tv-plan-card.dark .tv-plan-badge { color: #4ade80; }
.tv-plan-range {
  font-size: 13px;
  font-weight: 500;
  color: var(--tv-muted);
  margin: 5px 0 16px;
}
.tv-plan-card.dark .tv-plan-range { color: rgba(255,255,255,.45); }
.tv-plan-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--tv-ink);
  letter-spacing: -.04em;
  margin-bottom: 4px;
  line-height: 1.1;
}
.tv-plan-card.dark .tv-plan-price { color: #fff; }
.tv-plan-annual {
  font-size: 13px;
  font-weight: 700;
  color: var(--tv-green);
  margin-bottom: 0;
}
.tv-plan-card.dark .tv-plan-annual { color: #4ade80; }
.tv-plan-divider { height: 1px; background: var(--tv-line); margin: 18px 0; }
.tv-plan-card.dark .tv-plan-divider { background: rgba(255,255,255,.08); }
.tv-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.tv-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--tv-muted);
}
.tv-plan-card.dark .tv-plan-features li { color: rgba(255,255,255,.62); }
.tv-plan-features li i { color: var(--tv-green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.tv-plan-card.dark .tv-plan-features li i { color: #4ade80; }
.tv-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tv-green);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.tv-plan-tip {
  background: linear-gradient(135deg, var(--tv-green-pale), #bbf7d0);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #14532d;
  text-align: center;
  margin-top: 28px;
}

/* ── CHECK LIST ──────────────────────────────────── */
.tv-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tv-check-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--tv-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.tv-check-dot i { font-size: 12px; color: var(--tv-green); }

/* ── CONTACT ─────────────────────────────────────── */
.tv-form-wrap {
  background: #fff;
  border: 1px solid var(--tv-line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--tv-shadow);
}
.tv-form-wrap label {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  display: block;
  margin-bottom: 5px;
}
.tv-form-wrap input,
.tv-form-wrap select,
.tv-form-wrap textarea {
  width: 100%;
  border: 1.5px solid var(--tv-line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: var(--tv-bg);
  color: var(--tv-ink);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.tv-form-wrap input:focus,
.tv-form-wrap select:focus,
.tv-form-wrap textarea:focus {
  border-color: var(--tv-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.tv-form-wrap textarea { resize: vertical; }

/* ── SUMMARY PILLS ───────────────────────────────── */
.tv-summary-pill {
  background: #fff;
  border: 1px solid var(--tv-line);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
}
.tv-summary-pill .val {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--tv-green);
  display: block;
  letter-spacing: -.03em;
}
.tv-summary-pill .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--tv-muted);
  margin-top: 3px;
  display: block;
}

/* ── FLOW STACK ──────────────────────────────────── */
.tv-flow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius);
  padding: 20px 22px;
  box-shadow: var(--tv-shadow-sm);
}
.tv-flow-item.highlight { border-color: var(--tv-green); background: var(--tv-green-faint); }
.tv-flow-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--tv-green-pale), #bbf7d0);
}
.tv-flow-item.highlight .tv-flow-icon {
  background: linear-gradient(135deg, var(--tv-green), var(--tv-green-light));
}
.tv-flow-arrow {
  text-align: center;
  color: var(--tv-green);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  padding: 2px 0;
}

/* ── FOOTER ──────────────────────────────────────── */
.tv-footer {
  background: var(--tv-navy);
  padding: 64px 0 40px;
}
.tv-footer-heading {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  font-weight: 700;
  margin-bottom: 14px;
}
.tv-footer-link {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color .15s;
}
.tv-footer-link:hover { color: rgba(255,255,255,.88); }

/* ── THANK YOU PAGE ──────────────────────────────── */
.tv-thankyou {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.tv-thankyou-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tv-green-pale), #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
  border: 2px solid rgba(22,163,74,.2);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
  .tv-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .tv-stats-bar .tv-stat:nth-child(2) { border-right: none; }
  .tv-stats-bar .tv-stat { border-bottom: 1px solid var(--tv-line); }
  .tv-stats-bar .tv-stat:nth-child(3),
  .tv-stats-bar .tv-stat:nth-child(4) { border-bottom: none; }
  .tv-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .tv-hero { padding: 56px 0 64px; }
  .tv-section { padding: 60px 0; }
  .tv-mock-wrap { display: none; }
  .tv-stats-bar { grid-template-columns: 1fr 1fr; }
  .tv-steps { grid-template-columns: 1fr 1fr; }
  .tv-install-card { padding: 24px; }
  .tv-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
  .tv-hero h1 { font-size: 34px; }
  .tv-stats-bar { grid-template-columns: 1fr 1fr; }
  .tv-steps { grid-template-columns: 1fr; }
  .tv-stat { border-right: none !important; }
}