/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #00345C;
  color: #FFFCF1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0, 52, 92, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; }
.logo img {
  /* PNG is autocropped (938×282) so the wordmark fills the box. Height
     44 inside a 64px nav reads cleanly without crowding. */
  height: 44px; width: auto;
  display: block;
  border-radius: 6px; /* the logo PNG has a navy background — round it slightly so it sits cleanly on the nav */
}
.footer-brand .logo img { height: 56px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.9rem; font-weight: 500; }
.nav-links a { opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-links .nav-lang {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  opacity: 0.85;
}
.nav-links .nav-lang:hover { border-color: #EE7B18; color: #EE7B18; opacity: 1; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 10px 24px;
  background: #EE7B18; color: #fff;
  font-weight: 600; font-size: 0.9rem;
  border-radius: 8px; border: 2px solid #EE7B18;
  transition: all 0.2s; cursor: pointer;
  box-shadow: 0 2px 8px rgba(238,123,24,0.25);
}
.btn:hover {
  background: #D26A0F; border-color: #D26A0F;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(238,123,24,0.35);
}
.btn-outline {
  background: transparent; color: #FFFCF1;
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: #EE7B18; color: #fff;
  box-shadow: 0 2px 8px rgba(238,123,24,0.2);
}
.btn-sm { padding: 6px 16px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ── Hero ── */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(238,123,24,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(238,123,24,0.05) 0%, transparent 50%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(238,123,24,0.08) 0%, transparent 60%);
  animation: heroGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.hero-ribbon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 24px;
  background: rgba(238,123,24,0.12);
  border: 1px solid rgba(238,123,24,0.35);
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  color: #EE7B18; letter-spacing: 0.3px;
  position: relative;
}
.hero-ribbon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #EE7B18;
  box-shadow: 0 0 0 0 rgba(238,123,24,0.6);
  animation: ribbonPulse 1.8s ease-in-out infinite;
}
@keyframes ribbonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238,123,24,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(238,123,24,0); }
}
.hero-cta-note {
  text-align: center; font-size: 0.85rem; opacity: 0.55;
  margin-top: -32px; margin-bottom: 36px;
  position: relative;
}
.hero-sub strong { color: #fff; opacity: 1; font-weight: 700; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.7;
  line-height: 1.7;
  position: relative;
}
.hero-audience {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: #EE7B18; margin-bottom: 32px; opacity: 0.8;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 48px; position: relative; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; position: relative; }
.hero-badges span {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.6;
  position: relative;
  padding-left: 14px;
}
.hero-badges span::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: #EE7B18;
  border-radius: 50%;
}

/* ── Social proof ── */
.social-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0,52,92,0) 0%, rgba(0,43,77,0.55) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.social-eyebrow {
  text-align: center; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #EE7B18; opacity: 0.9;
  margin-bottom: 36px;
}
.social-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.social-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px;
  margin: 0;
  position: relative;
}
.social-card::before {
  content: '"'; position: absolute; top: 4px; left: 16px;
  font-size: 4rem; font-family: 'Inter', serif;
  color: #EE7B18; opacity: 0.4; line-height: 1;
}
.social-card blockquote {
  margin: 0 0 16px; font-size: 0.95rem; line-height: 1.6;
  color: #fff; opacity: 0.92;
  position: relative; padding-top: 20px;
}
.social-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.social-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.social-meta { font-size: 0.75rem; opacity: 0.55; }
.social-disclosure {
  margin-top: 28px; text-align: center;
  font-size: 0.72rem; opacity: 0.45;
  max-width: 700px; margin-left: auto; margin-right: auto;
  font-style: italic;
}
@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
  .social-section { padding: 56px 0; }
}

/* ── Comparison scorecard ── */
.compare-scorecard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 32px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(238,123,24,0.10) 0%, rgba(0,52,92,0.4) 100%);
  border: 1px solid rgba(238,123,24,0.25);
  border-radius: 16px;
}
.scorecard-side { text-align: center; }
.scorecard-name {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; opacity: 0.55; margin-bottom: 4px;
}
.scorecard-score {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -1px;
  line-height: 1;
}
.scorecard-score span { font-size: 1rem; opacity: 0.45; font-weight: 600; margin-left: 2px; }
.scorecard-label { font-size: 0.78rem; opacity: 0.55; margin-top: 6px; }
.scorecard-them .scorecard-score { color: #e74c3c; }
.scorecard-us   .scorecard-score { color: #EE7B18; }
.scorecard-vs {
  font-size: 0.8rem; font-weight: 700; opacity: 0.4;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .compare-scorecard { grid-template-columns: 1fr 1fr; padding: 22px; gap: 16px; }
  .scorecard-vs { display: none; }
  .scorecard-score { font-size: 2.2rem; }
}

/* ── Mid-page CTA bands ── */
.cta-band {
  padding: 32px 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(238,123,24,0.14) 0%, rgba(238,123,24,0.04) 100%);
  border: 1px solid rgba(238,123,24,0.3);
  border-radius: 14px;
}
.cta-band-inner h3 {
  font-size: 1.4rem; font-weight: 800; color: #fff;
  margin: 0 0 4px; letter-spacing: -0.5px;
}
.cta-band-inner p { margin: 0; font-size: 0.95rem; opacity: 0.75; }
.cta-band-inner .btn { flex-shrink: 0; }
@media (max-width: 768px) {
  .cta-band-inner { flex-direction: column; text-align: center; padding: 24px; }
  .cta-band-inner h3 { font-size: 1.2rem; }
}

/* ── FAQ ── */
.faq-section { padding: 80px 0; }
.faq-section h2 {
  text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 40px; color: #fff;
}
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0 20px;
  transition: background 0.15s, border-color 0.15s;
}
.faq-item[open] {
  background: rgba(238,123,24,0.06);
  border-color: rgba(238,123,24,0.3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600; font-size: 1rem;
  color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 400;
  color: #EE7B18;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 0 20px;
  margin: 0;
  font-size: 0.92rem; line-height: 1.65;
  opacity: 0.78;
}
@media (max-width: 768px) {
  .faq-section { padding: 56px 0; }
  .faq-item summary { font-size: 0.95rem; padding: 16px 0; }
}

/* ── Hero Screenshot ── */
.hero-screenshot {
  max-width: 800px; margin: 60px auto 0;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.hero-screenshot img { width: 100%; display: block; }
.hero-screenshot::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  pointer-events: none;
}

/* ── Anti Section (comparison) ── */
.anti-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.anti-section h2 { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 48px; color: #fff; }
.anti-section h2::after {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: #EE7B18; border-radius: 2px;
  margin: 16px auto 0;
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.compare-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.compare-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.85;
}
.compare-card li::before {
  position: absolute; left: 0;
  font-weight: 700; font-size: 0.9rem;
}
.compare-card.bad { background: rgba(231, 76, 60, 0.06); border-color: rgba(231, 76, 60, 0.2); }
.compare-card.bad h3 { color: #e74c3c; }
.compare-card.bad li::before { content: '\2717'; color: #e74c3c; }
.compare-card.good { background: rgba(46, 204, 113, 0.06); border-color: rgba(46, 204, 113, 0.2); }
.compare-card.good h3 { color: #2ecc71; }
.compare-card.good li::before { content: '\2713'; color: #2ecc71; }

/* ── Features ── */
.features-section {
  padding: 100px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.features-section h2 { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 48px; color: #fff; }
.features-section h2::after {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: #EE7B18; border-radius: 2px;
  margin: 16px auto 0;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 12px; padding: 1px;
  background: linear-gradient(135deg, rgba(238,123,24,0) 0%, rgba(238,123,24,0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: background 0.3s;
  pointer-events: none;
}
.feature-card:hover::before {
  background: linear-gradient(135deg, rgba(238,123,24,0.5) 0%, rgba(238,123,24,0.1) 100%);
}
.feature-card:hover { border-color: rgba(238, 123, 24, 0.4); transform: translateY(-2px); }
.feature-more {
  display: inline-block; margin-top: 12px;
  font-size: 0.8rem; font-weight: 600; color: #EE7B18;
  opacity: 0; transition: opacity 0.2s;
}
.feature-card:hover .feature-more { opacity: 1; }
.feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(238, 123, 24, 0.15);
  color: #EE7B18;
  font-weight: 800;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: 0.85rem; opacity: 0.65; line-height: 1.5; }

/* ── Steps Section ── */
.steps-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.steps-section h2 { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.steps-section h2::after {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: #EE7B18; border-radius: 2px;
  margin: 16px auto 0;
}
.steps-sub { text-align: center; opacity: 0.6; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, rgba(238,123,24,0.3), rgba(238,123,24,0.3));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(238,123,24,0.15); border: 2px solid #EE7B18;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #EE7B18;
  margin: 0 auto 16px;
}
.step-item h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; opacity: 0.6; line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ── Tobacco ── */
.tobacco-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 123, 24, 0.08) 0%, rgba(0, 52, 92, 1) 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.tobacco-content { max-width: 700px; margin: 0 auto; text-align: center; }
.tobacco-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.tobacco-lead { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; line-height: 1.7; }
.tobacco-details { display: flex; justify-content: center; gap: 48px; margin-bottom: 36px; }
.tobacco-stat { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: #2ecc71; }
.stat-label { font-size: 0.85rem; opacity: 0.6; margin-top: 4px; }
.tobacco-content > p:last-child { font-size: 1rem; opacity: 0.75; }

/* ── Tobacco Calculator ── */
.calc-wrap {
  margin-top: 40px; padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; max-width: 480px; margin-left: auto; margin-right: auto;
  margin-bottom: 36px;
}
.calc-wrap label { display: block; font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.calc-wrap input[type="range"] {
  width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,0.1); border-radius: 3px; outline: none;
  margin-bottom: 8px;
}
.calc-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  background: #EE7B18; border-radius: 50%; cursor: pointer;
}
.calc-val { font-size: 0.85rem; opacity: 0.5; margin-bottom: 16px; }
.calc-result {
  font-size: 2.4rem; font-weight: 800; color: #2ecc71; text-align: center;
  text-shadow: 0 0 20px rgba(46,204,113,0.3);
}
.calc-result-label { font-size: 0.85rem; opacity: 0.5; text-align: center; margin-top: 4px; }

.tobacco-manufacturers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 32px auto; max-width: 600px;
}
.tmfr {
  padding: 16px; text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.tmfr strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 4px; }
.tmfr span { display: block; font-size: 0.75rem; opacity: 0.45; }
.tmfr-rate { color: #2ecc71; opacity: 0.8 !important; margin-top: 6px; font-weight: 600; }
.tobacco-dtp {
  font-size: 0.88rem; opacity: 0.6; max-width: 560px;
  margin: 20px auto 0; line-height: 1.6;
}

/* ── Pricing ── */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pricing-section h2 { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.pricing-section h2::after {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: #EE7B18; border-radius: 2px;
  margin: 16px auto 0;
}
.pricing-sub { text-align: center; opacity: 0.6; margin-bottom: 28px; }
.pricing-toggle {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-left: auto; margin-right: auto;
}
.toggle-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-btn.active {
  background: #EE7B18;
  color: #fff;
}
.toggle-btn:hover:not(.active) { color: rgba(255,255,255,0.8); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  padding: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
  position: relative;
}
.pricing-card.popular {
  border-color: #EE7B18;
  transform: scale(1.04);
  background: linear-gradient(180deg, rgba(238,123,24,0.08) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 8px 32px rgba(238,123,24,0.15);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #EE7B18; color: #fff;
  padding: 4px 20px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.pricing-tier { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; opacity: 0.5; }
.pricing-note { font-size: 0.8rem; opacity: 0.45; margin-bottom: 24px; }
.pricing-footer { text-align: center; font-size: 0.85rem; opacity: 0.45; margin-top: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pricing-card ul { margin-bottom: 28px; text-align: left; }
.pricing-card li {
  padding: 6px 0 6px 20px; font-size: 0.88rem; opacity: 0.75;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.pricing-card li::before {
  content: '\2713'; position: absolute; left: 0;
  color: #2ecc71; font-size: 0.75rem; font-weight: 700;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card .btn { width: 100%; }

/* ── Savings Badge ── */
.savings-badge {
  display: inline-block; padding: 4px 12px;
  background: rgba(46,204,113,0.12); color: #2ecc71;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 20px;
}

/* ── Hardware ── */
.hardware-section {
  padding: 100px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.hardware-section h2 { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.hardware-section h2::after {
  content: ''; display: block;
  width: 40px; height: 3px;
  background: #EE7B18; border-radius: 2px;
  margin: 16px auto 0;
}
.hardware-sub { text-align: center; opacity: 0.6; max-width: 600px; margin: 0 auto 48px; }
.hardware-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hw-item {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.hw-item strong { display: block; color: #fff; margin-bottom: 8px; font-size: 0.95rem; }
.hw-item p { font-size: 0.85rem; opacity: 0.6; }

/* ── Trust Section ── */
.trust-section { padding: 80px 0; }
.trust-grid {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; opacity: 0.5;
}
.trust-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border-radius: 8px;
}
.trust-icon svg { width: 18px; height: 18px; opacity: 0.6; }

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(238,123,24,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(238,123,24,0.06) 0%, transparent 40%);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-section h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.cta-section p { max-width: 560px; margin: 0 auto 36px; opacity: 0.7; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; }

/* ── Footer ── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.3);
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-desc { font-size: 0.85rem; opacity: 0.4; line-height: 1.5; max-width: 260px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 4px;
}
.footer-col a { font-size: 0.85rem; opacity: 0.5; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: #EE7B18; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.3; }

/* ── Comparison Table ── */
.compare-table-wrap { margin-top: 48px; }
.compare-table-wrap h3 { text-align: center; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
  border-radius: 12px; overflow: hidden;
}
.compare-table th {
  padding: 12px 16px; text-align: left; font-weight: 700; color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.compare-table th:nth-child(2) { color: #2ecc71; }
.compare-table th:nth-child(3) { color: #e74c3c; }
.compare-table td { padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); opacity: 0.75; transition: background 0.15s; }
.compare-table td.yes { color: #2ecc71; opacity: 1; }
.compare-table td.no { color: #e74c3c; opacity: 0.7; }
.compare-table td.meh { color: #f39c12; opacity: 0.8; }
.compare-table tr:hover td { background: rgba(255,255,255,0.03); }

.compare-footnote {
  font-size: 0.75rem; opacity: 0.35; margin-top: 12px;
  font-style: italic; max-width: 600px;
}

/* ── Social Proof ── */
.proof-section { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.proof-grid { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-num { font-size: 2.2rem; font-weight: 800; color: #fff; }
.proof-label { font-size: 0.85rem; opacity: 0.45; margin-top: 4px; }

/* ── Contact Form ── */
.cta-layout { display: grid; grid-template-columns: 1fr 240px; gap: 48px; max-width: 800px; margin: 0 auto; align-items: start; }
.contact-form {
  padding: 32px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 0.8rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 10px 14px;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: #FFFCF1; font-size: 0.88rem;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #EE7B18; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.contact-form textarea { resize: vertical; min-height: 70px; }
.contact-form .form-error {
  background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3);
  color: #e74c3c; padding: 10px 16px; border-radius: 8px;
  font-size: 0.85rem; margin-bottom: 16px;
}
.form-success { text-align: center; padding: 40px 20px; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: #2ecc71; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; opacity: 0.6; }
.form-note { font-size: 0.8rem; opacity: 0.4; text-align: center; margin-top: 12px; }
.cta-alt { text-align: center; padding-top: 40px; }
.cta-alt p { font-size: 0.9rem; opacity: 0.6; margin-bottom: 12px; }
.cta-hours { font-size: 0.8rem; opacity: 0.4; margin-top: 8px; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #FFFCF1;
  border-radius: 2px; transition: all 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Billing Period Toggle ── */
.billing-toggle {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px; padding: 4px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.billing-btn {
  padding: 10px 24px; background: transparent; border: none;
  color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 600; border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
}
.billing-btn.active { background: rgba(46,204,113,0.15); color: #2ecc71; }
.billing-btn:hover:not(.active) { color: rgba(255,255,255,0.8); }
.annual-save {
  background: #2ecc71; color: #fff; padding: 2px 8px;
  border-radius: 100px; font-size: 0.65rem; margin-left: 6px;
  font-weight: 700;
}

/* ── Partner Logos ── */
.partners-section {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.partners-label {
  text-align: center; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25); margin-bottom: 24px;
}
.partners-grid {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.partner-logo {
  font-size: 0.95rem; font-weight: 700; opacity: 0.2;
  letter-spacing: 0.5px; transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 0.5; }

/* ── Competitor Comparison (expanded) ── */
.compare-expanded {
  margin-top: 48px; max-width: 700px; margin-left: auto; margin-right: auto;
  text-align: center;
}
.compare-expanded h3 {
  font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.compare-expanded p {
  font-size: 0.92rem; opacity: 0.65; line-height: 1.7;
}

/* ── NRS Migration Guide ── */
.nrs-migration {
  margin-top: 64px; padding: 40px;
  background: rgba(46,204,113,0.04);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: 20px;
}
.nrs-migration h3 {
  font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.nrs-migration > p { font-size: 0.95rem; opacity: 0.7; margin-bottom: 28px; }
.migration-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.migration-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.migration-num {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(46,204,113,0.15); border: 1px solid rgba(46,204,113,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: #2ecc71;
}
.migration-step strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.migration-step p { font-size: 0.88rem; opacity: 0.6; line-height: 1.6; margin: 0; }
.migration-note {
  font-size: 0.85rem; opacity: 0.5; line-height: 1.6;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06);
}
.migration-note a { color: #2ecc71; text-decoration: underline; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .compare-grid, .features-grid, .pricing-grid, .hardware-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular { transform: none; }
  .tobacco-details { flex-direction: column; gap: 24px; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .nav-links { gap: 16px; font-size: 0.8rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .trust-grid { gap: 24px; }
  .cta-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .proof-grid { gap: 32px; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
  .tobacco-manufacturers { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(0,52,92,0.98); flex-direction: column;
    padding: 20px 24px; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nrs-migration { padding: 24px; }
  .partners-grid { gap: 24px; }
  .billing-toggle { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Feature Modals ── */
.modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  justify-content: center; align-items: center;
  padding: 24px;
  animation: fadeIn 0.15s ease;
}
.modal-overlay.active { display: flex; }

.modal {
  /* Slightly darker than the page bg so the modal lifts off the navy. */
  background: #002B4D;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideUp 0.2s ease;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.4); font-size: 1.6rem;
  cursor: pointer; transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover { color: #fff; }

.modal-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(238, 123, 24, 0.15); color: #EE7B18;
  font-weight: 800; font-size: 1.2rem;
  border-radius: 12px; margin-bottom: 20px;
}
.modal h2 {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.modal-lead {
  font-size: 1rem; opacity: 0.7; line-height: 1.7;
  margin-bottom: 28px;
}

.modal-features { margin-bottom: 28px; }
.mf-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mf-item:last-child { border-bottom: none; }
.mf-item strong {
  display: block; color: #fff;
  font-size: 0.95rem; margin-bottom: 4px;
}
.mf-item p {
  font-size: 0.88rem; opacity: 0.6; line-height: 1.6; margin: 0;
}

.modal-usecase {
  background: rgba(238, 123, 24, 0.06);
  border: 1px solid rgba(238, 123, 24, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 0.88rem; line-height: 1.6; opacity: 0.8;
}
.modal-usecase strong { color: #EE7B18; }

.modal-tier {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  opacity: 0.6;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .modal { padding: 28px; max-height: 90vh; }
}
