/* ═══════════════════════════════════════════════
   BOSS POS Landing — mirrors Logic8 design system
   Tokens match src/app/globals.css
   ═══════════════════════════════════════════════ */

:root {
  /* Brand */
  --brand-red: #C41E1E;
  --brand-red-dark: #9B1717;
  --brand-red-tint: #F9EDED;
  --brand-warm-white: #FEF8F8;

  /* Text */
  --text-heading: #1A1A1A;
  --text-body: #555555;
  --text-muted: #9E9E9E;
  --text-caption: #B0A8A8;

  /* Surface */
  --surface-white: #FFFFFF;
  --surface-light: #FEF8F8;
  --surface-border: #ECEAEA;
  --surface-input: #D4CBCB;

  /* Semantic */
  --teal: #0D9488;
  --teal-light: #E0F5F3;
  --blue: #1A56DB;
  --blue-light: #EBF2FF;
  --green: #16A34A;
  --green-light: #EDFBF3;
  --gold: #D97706;

  /* Gradient */
  --logo-gradient: linear-gradient(90deg,#4CAF50,#FFD600,#FF9800,#E91E1E,#E91E8C,#9C27B0);

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0,0,0,.05);
  --shadow-card-hover: 0 8px 28px rgba(0,0,0,.09);
  --shadow-cta: 0 4px 14px rgba(196,30,30,.30);
  --shadow-input-focus: 0 0 0 3px rgba(196,30,30,.12);
  --shadow-nav: 0 2px 12px rgba(0,0,0,.06);

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  background: var(--surface-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Raleway", inherit;
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.accent-red { color: var(--brand-red); }
.accent-blue { color: var(--blue); }
.accent-teal { color: var(--teal); }

/* ═══ Eyebrow + gradient bar (SectionLabel pattern) ═══ */
.eyebrow-wrap { display: flex; flex-direction: column; margin-bottom: 18px; }
.eyebrow-wrap.center { align-items: center; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brand-red);
  margin-bottom: 6px;
}
.gradient-bar {
  display: block; width: 40px; height: 3px;
  background: var(--logo-gradient);
  border-radius: 999px;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand-red); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--brand-red-dark); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(196,30,30,.36); }

.btn-outline { background: #fff; color: var(--text-heading); border-color: var(--surface-border); }
.btn-outline:hover { border-color: var(--brand-red); color: var(--brand-red); text-decoration: none; }

.btn-white { background: #fff; color: var(--brand-red); box-shadow: var(--shadow-card); }
.btn-white:hover { background: #fff; color: var(--brand-red-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-card-hover); }

.btn-white-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.30); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-white-ghost:hover { background: rgba(255,255,255,.20); color: #fff; text-decoration: none; border-color: rgba(255,255,255,.50); }

.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 10px; font-size: 15px; font-weight: 600;
  color: var(--text-body); text-decoration: none;
  transition: color .15s ease;
}
.btn-link:hover { color: var(--brand-red); text-decoration: none; }
.btn-link span { transition: transform .2s ease; }
.btn-link:hover span { transform: translateY(2px); }

.btn-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  display: none; animation: spin .7s linear infinite;
}
.btn.is-loading .btn-label { opacity: .5; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ Header ═══ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--surface-border);
  box-shadow: var(--shadow-nav);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 18px; }
.brand { display: flex; align-items: center; color: var(--text-heading); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { display: block; height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a:not(.btn) { color: var(--text-heading); font-size: 14px; font-weight: 600; }
.nav-links a:not(.btn):hover { color: var(--brand-red); text-decoration: none; }
@media (max-width: 820px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ═══ Hero ═══ */
.hero {
  padding: 64px 0 72px;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 960px) { .hero { padding: 88px 0 96px; } }

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.06;
  margin-bottom: 20px;
}
.lede { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.8; color: var(--text-body); max-width: 520px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 28px; }
.cta-row.center { justify-content: center; }

.hero-microcopy {
  margin: 14px 0 24px; color: var(--text-muted);
  font-size: 13px; font-weight: 500; letter-spacing: .3px;
}
.trust-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 22px; color: var(--text-body); font-size: 14px; font-weight: 500; }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-light); }

/* ═══ Hero visual — layered screenshots ═══ */
.hero-visual {
  position: relative;
  min-height: 480px;
}
@media (min-width: 640px) { .hero-visual { min-height: 560px; } }

.glow-a, .glow-b {
  position: absolute; pointer-events: none;
  border-radius: 40px; filter: blur(60px);
}
.glow-a {
  inset: -24px;
  background: rgba(196,30,30,.05);
}
.glow-b {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(13,148,136,.10); filter: blur(80px);
}

.screenshot {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--surface-border);
}
.screenshot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: blur(.5px);
}
.screenshot.back {
  top: 0; right: 0;
  width: 88%; height: 250px;
  transform: rotate(3deg) translateY(-8px);
  z-index: 1;
}
.screenshot.front {
  top: 180px; left: 0;
  width: 92%; height: 280px;
  transform: rotate(-2deg);
  z-index: 2;
  box-shadow: var(--shadow-card-hover);
  border-width: 2px;
}
@media (min-width: 640px) {
  .screenshot.back { height: 310px; }
  .screenshot.front { top: 210px; height: 330px; }
}
.fade-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  border: 1px solid var(--surface-border); border-radius: 999px;
  padding: 4px 10px; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  box-shadow: var(--shadow-card);
}
.chip-red { color: var(--brand-red); }
.chip-teal { color: var(--teal); }

.pill {
  position: absolute; z-index: 20;
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: 999px; padding: 6px 12px;
  box-shadow: var(--shadow-card);
  font-size: 11px; font-weight: 600; color: var(--text-heading);
  display: inline-flex; align-items: center; gap: 8px;
}
.pill-status {
  top: 14px; left: -8px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 rgba(22,163,74,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
  70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.metric {
  position: absolute; bottom: 8px; right: 0; z-index: 20;
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-card-hover);
  min-width: 140px;
}
.metric-label { font-size: 10px; color: var(--text-muted); margin: 0 0 2px; font-weight: 500; }
.metric-value { font-size: 22px; font-weight: 800; color: var(--text-heading); margin: 0 0 2px; line-height: 1.1; }
.metric-delta { font-size: 10px; color: var(--green); font-weight: 700; margin: 0; }

/* ═══ Sections ═══ */
.section { padding: 72px 0; }
@media (min-width: 960px) { .section { padding: 96px 0; } }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-title { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 12px; }
.section-sub { color: var(--text-body); max-width: 620px; margin: 0 auto; font-size: 15px; line-height: 1.7; }

/* ═══ Trust bar (compact) ═══ */
.trust-bar {
  background: var(--surface-light);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 22px 0;
}
.trust-lead {
  text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 14px;
}
.trust-logos {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  justify-content: center; align-items: center;
}
.trust-logos li {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-heading); font-weight: 600; font-size: 13px;
}
.trust-logos li span:first-child { font-size: 18px; line-height: 1; }

/* ═══ Stats ═══ */
.stats-section { background: #fff; padding: 56px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 26px 16px; text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.stat:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.stat-value {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800; color: var(--brand-red);
  line-height: 1; margin: 0 0 8px;
  font-family: "Raleway", inherit;
}
.stat-value span { font-size: 18px; font-weight: 700; color: var(--brand-red); margin-left: 2px; }
.stat-label { font-size: 13px; color: var(--text-body); margin: 0; font-weight: 500; letter-spacing: .3px; }

/* ═══ Testimonial ═══ */
.testimonial-section { background: var(--surface-light); padding: 56px 0; }
.testimonial {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--surface-border);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 32px 32px 26px;
  text-align: left;
}
.testimonial .stars { color: var(--brand-red); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.testimonial blockquote {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-heading); line-height: 1.55; font-weight: 500;
  margin: 0 0 20px; font-style: italic;
  quotes: none;
}
.testimonial figcaption strong {
  display: block; color: var(--text-heading); font-weight: 700; font-size: 15px;
  margin-bottom: 2px;
}
.testimonial figcaption span { display: block; font-size: 13px; color: var(--text-muted); }

/* ═══ Offer cards ═══ */
.offer { background: var(--surface-white); }
.cards-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .cards-2 { grid-template-columns: 1fr 1fr; gap: 24px; } }

.card {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl); padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--text-body); margin-bottom: 20px; }

.card-offer { display: flex; flex-direction: column; position: relative; }
.card-offer .btn { align-self: flex-start; }

.card-highlight {
  border: 2px solid var(--brand-red);
  box-shadow: 0 8px 28px rgba(196,30,30,.14);
  position: relative;
}
.ribbon {
  position: absolute; top: -12px; right: 20px;
  background: var(--brand-red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase;
}

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-red { background: var(--brand-red-tint); color: var(--brand-red); }
.icon-blue { background: var(--blue-light); color: var(--blue); }
.icon-teal { background: var(--teal-light); color: var(--teal); }

/* ═══ Include grid (what's in the free switch) ═══ */
.include-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 640px) { .include-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 980px) { .include-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.include-card {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.include-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.include-card h3 { font-size: 17px; margin-bottom: 8px; }
.include-card p { font-size: 14px; color: var(--text-body); margin: 0; line-height: 1.55; }

.offer-foot { text-align: center; margin-top: 36px; }
.offer-foot-note { margin-top: 12px; font-size: 13px; color: var(--text-muted); }

/* ═══ How it works (3 steps) ═══ */
.how-section { background: #fff; }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 1000px; margin: 0 auto;
  counter-reset: step;
}
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 26px;
  position: relative;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.step:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-red); color: #fff;
  font-size: 18px; font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(196,30,30,.3);
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-body); margin: 0; line-height: 1.55; }

/* ═══ Safety guarantees row (de-risking) ═══ */
.safety-row {
  list-style: none; padding: 22px 24px; margin: 40px auto 0;
  max-width: 900px;
  background: var(--green-light);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-2xl);
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 820px) { .safety-row { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.safety-row li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #065F46; font-size: 14px; line-height: 1.5;
}
.safety-row li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.safety-row strong { color: #064E3B; font-weight: 700; }

/* ═══ Support / contact section (secondary CTA) ═══ */
.support-section { background: #fff; padding: 56px 0 72px; }
.support-inner { max-width: 900px; margin: 0 auto; }
.support-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 28px 30px;
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  align-items: center;
}
@media (min-width: 900px) {
  .support-card { grid-template-columns: auto 1fr auto; gap: 28px; padding: 32px 36px; }
}
.support-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-red-tint); color: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
}
.support-copy h2 { font-size: 20px; margin: 0 0 4px; line-height: 1.2; }
.support-copy p { font-size: 14px; color: var(--text-body); margin: 0; line-height: 1.5; }
.support-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  grid-column: 1 / -1;
}
@media (min-width: 900px) { .support-actions { grid-column: auto; flex-wrap: nowrap; } }
.support-actions .btn { font-size: 13px; padding: 10px 16px; }

/* ═══ Form reassurance ═══ */
.form-reassure {
  margin-top: 24px; padding: 14px 16px;
  background: var(--green-light);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius);
  font-size: 14px; color: #065F46; line-height: 1.5;
}
.form-reassure strong { color: #064E3B; }

/* ═══ Problem + Solution split ═══ */
.problem-solution { background: var(--surface-light); }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 820px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split-title { font-size: clamp(24px, 3vw, 36px); line-height: 1.2; margin-bottom: 16px; }
.pain-list { list-style: none; padding: 0; margin: 24px 0 0; }
.pain-list li {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-body);
  box-shadow: var(--shadow-card);
}
.pain-list strong { color: var(--text-heading); font-weight: 700; margin-right: 4px; }
.pain-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }

.feat-stack { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat h3 { font-size: 17px; margin-bottom: 4px; }
.feat p { font-size: 14px; margin: 0; line-height: 1.6; }

/* ═══ Showcase ═══ */
.showcase { background: var(--surface-white); overflow: hidden; }
.showcase-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-card-hover);
  margin-bottom: 24px;
}
.showcase-main img {
  width: 100%;
  height: clamp(280px, 48vw, 520px);
  object-fit: cover; object-position: top;
  filter: blur(.5px);
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 720px) { .showcase-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.mini-card {
  margin: 0; background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.mini-card:hover { box-shadow: var(--shadow-card-hover); }
.mini-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; object-position: top;
  filter: blur(.5px);
  position: relative;
}
@media (min-width: 720px) { .mini-card img { height: 260px; } }
.mini-card figcaption {
  padding: 14px 18px 18px;
}
.mini-card figcaption strong {
  display: block; color: var(--text-heading); font-weight: 700; font-size: 15px;
  margin-bottom: 3px;
}
.mini-card figcaption span { font-size: 13px; color: var(--text-body); line-height: 1.5; }

/* ═══ Reporting (browser-frame dashboard) ═══ */
.reporting { background: var(--surface-light); }
.browser-frame {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 32px;
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--surface-light);
  border-bottom: 1px solid var(--surface-border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; } .dot-y { background: #FFBD2E; } .dot-g { background: #28CA42; }
.url {
  flex: 1; background: #fff; border: 1px solid var(--surface-border);
  border-radius: 6px; height: 24px;
  margin: 0 12px; padding: 0 12px;
  display: inline-flex; align-items: center;
  font-size: 11px; color: var(--text-muted); font-weight: 500;
}
.browser-body { position: relative; overflow: hidden; }
.browser-body img {
  width: 100%;
  height: clamp(300px, 52vw, 540px);
  object-fit: cover; object-position: top;
  filter: blur(.5px);
}

.report-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 820px) { .report-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ═══ Compliance ═══ */
.compliance { background: #fff; }
.accred-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 820px; margin: 0 auto;
}
@media (min-width: 720px) { .accred-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.accred {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 22px 16px; text-align: center;
  transition: box-shadow .2s ease;
}
.accred:hover { box-shadow: var(--shadow-card-hover); }
.accred-icon { font-size: 32px; margin-bottom: 10px; line-height: 1; }
.accred strong { display: block; font-size: 16px; color: var(--text-heading); font-weight: 700; margin-bottom: 4px; }
.accred span { display: block; font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ═══ Demo form ═══ */
.demo-section { background: linear-gradient(180deg, var(--surface-white) 0%, var(--brand-red-tint) 100%); }
.demo-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media (min-width: 960px) { .demo-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.demo-copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.demo-copy p { color: var(--text-body); line-height: 1.7; }

.bullets { list-style: none; padding: 0; margin: 24px 0 28px; }
.bullets li {
  position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--text-body);
  font-size: 15px; line-height: 1.5;
}
.bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-red); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.contact-direct { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--surface-border); }
.contact-direct p { margin: 6px 0; font-size: 15px; color: var(--text-body); }
.contact-direct a { color: var(--text-heading); font-weight: 600; }
.contact-direct a:hover { color: var(--brand-red); }

.demo-form {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-hover);
  padding: 36px 30px;
  border: 1px solid var(--surface-border);
}
.form-title { font-size: 22px; margin-bottom: 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--text-body); margin-bottom: 6px; font-weight: 500; }
.field .req { color: var(--brand-red); }
.field .muted { color: var(--text-muted); font-weight: 400; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text-heading);
  background: #fff;
  border: 1.5px solid var(--surface-input);
  border-radius: var(--radius);
  padding: 12px 14px;
  height: 48px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
textarea { height: auto; min-height: 110px; resize: vertical; font-family: inherit; }
select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-input-focus);
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px #FEE2E2;
}
.row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 560px) { .row-2 { grid-template-columns: 1fr 1fr; gap: 14px; } }

.form-note {
  text-align: center; font-size: 13px; color: var(--text-muted);
  margin: 12px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-status { margin-top: 12px; padding: 0; font-size: 14px; min-height: 0; }
.form-status.ok {
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--green-light); color: #065F46;
  border: 1px solid #A7F3D0; min-height: 44px;
}
.form-status.err {
  padding: 14px 16px; border-radius: var(--radius);
  background: #FEE2E2; color: #991B1B;
  border: 1px solid #FCA5A5; min-height: 44px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.success-panel { text-align: center; padding: 32px 12px; }
.success-panel .check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--brand-red); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 40px; font-weight: 700;
  box-shadow: 0 12px 28px rgba(196,30,30,.3);
  animation: pop .45s cubic-bezier(.2,.8,.2,1);
}
.success-panel h3 { font-size: 26px; margin-bottom: 10px; }
.success-panel p { color: var(--text-body); max-width: 380px; margin: 0 auto 8px; line-height: 1.6; }
.success-panel .success-sub { font-size: 13px; color: var(--text-muted); }
@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

/* ═══ Final CTA ═══ */
.final-cta {
  background: var(--brand-red);
  position: relative; overflow: hidden;
  padding: 72px 0;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: url("images/screenshots/ntcloud-dashboard.png") center/cover;
  opacity: .04; filter: blur(2px);
  pointer-events: none;
}
.final-cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  color: #fff; font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 12px;
}
.final-cta p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 28px; }
.final-cta-note { margin-top: 24px; color: rgba(255,255,255,.55); font-size: 13px; }
.final-cta-note a { color: rgba(255,255,255,.85); text-decoration: underline; }
.final-cta-note a:hover { color: #fff; }

/* ═══ Footer — dark, distinct from main site's white footer ═══ */
.site-footer {
  background: #0F0F10;
  color: #D1D5DB;
  padding: 64px 0 96px;
  position: relative;
}
@media (min-width: 720px) { .site-footer { padding-bottom: 56px; } }

.footer-gradient {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--logo-gradient);
}

.footer-grid {
  display: grid; gap: 32px 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }

.foot-col-brand { grid-column: 1 / -1; }
@media (min-width: 720px) { .foot-col-brand { grid-column: auto; } }

.foot-logo { display: inline-block; margin-bottom: 14px; text-decoration: none; }
.foot-logo img {
  height: 34px; width: auto; display: block;
  filter: brightness(0) invert(1);
}
.foot-company {
  font-size: 13px; color: #9CA3AF; line-height: 1.6; margin: 0 0 14px;
}
.foot-social { display: flex; gap: 10px; }
.foot-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #D1D5DB;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.foot-social-icon:hover { background: var(--brand-red); color: #fff; text-decoration: none; }

.foot-col h3 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  color: #fff; text-transform: uppercase;
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul a {
  color: #9CA3AF; font-size: 14px;
  transition: color .15s ease;
}
.foot-col ul a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  justify-content: space-between; align-items: center;
}
.footer-bottom .copy, .footer-bottom .foot-tag {
  color: #6B7280; font-size: 12px; margin: 0;
}

/* ═══ Sticky CTA (mobile full-width, desktop floating pill) ═══ */
.sticky-cta {
  position: fixed; z-index: 40;
  background: var(--brand-red); color: #fff;
  font-weight: 700; text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--brand-red-dark); text-decoration: none; color: #fff; }

/* Mobile: full-width bottom bar */
@media (max-width: 719px) {
  .sticky-cta {
    bottom: 14px; left: 14px; right: 14px;
    padding: 14px 20px; border-radius: 999px;
    font-size: 15px;
  }
}
/* Desktop: compact floating pill, bottom-right */
@media (min-width: 720px) {
  .sticky-cta {
    bottom: 24px; right: 24px;
    padding: 14px 22px; border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(196,30,30,.35);
  }
}

/* ═══ Motion ═══ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
