/* ═══════════════════════════════════════════
   APP BRAND TOKENS (from provided CSS)
═══════════════════════════════════════════ */
:root {
  --background: hsl(0 0% 99%);
  --foreground: hsl(222 25% 9%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(222 25% 9%);
  --primary: hsl(221 83% 53%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(220 9% 92%);
  --secondary-foreground: hsl(220 18% 20%);
  --muted: hsl(220 8% 93%);
  --muted-foreground: hsl(220 9% 46%);
  --accent: hsl(214 95% 93%);
  --accent-foreground: hsl(221 83% 53%);
  --border: hsl(220 10% 89%);
  --input: hsl(220 8% 95%);
  --ring: hsl(203 89% 53%);
  --radius: 1.3rem;
  --shadow-sm: 0 1px 3px 0 hsl(222 25% 10% / 0.06), 0 1px 2px -1px hsl(222 25% 10% / 0.06);
  --shadow-md: 0 4px 6px -1px hsl(222 25% 10% / 0.07), 0 2px 4px -2px hsl(222 25% 10% / 0.05);
  --shadow-lg: 0 10px 15px -3px hsl(222 25% 10% / 0.08), 0 4px 6px -4px hsl(222 25% 10% / 0.05);
  --shadow-xl: 0 20px 25px -5px hsl(222 25% 10% / 0.08), 0 8px 10px -6px hsl(222 25% 10% / 0.05);
  --shadow-2xl: 0 25px 50px -12px hsl(222 25% 10% / 0.15);

  /* Extended palette — stays within brand spirit */
  --primary-dark: hsl(221 83% 42%);
  --primary-deeper: hsl(222 80% 18%);
  /* near-navy for dark sections */
  --primary-xdark: hsl(222 55% 11%);
  /* hero background */
  --primary-mid: hsl(221 60% 30%);
  --primary-glow: hsl(221 83% 53% / 0.18);
  --primary-dim: hsl(214 95% 93%);
  /* = accent */
  --ink: hsl(222 25% 9%);
  /* = foreground */
  --ink-mid: hsl(220 15% 38%);
  --ink-light: hsl(220 9% 58%);
  --ink-faint: hsl(220 10% 72%);
  --warn: hsl(42 93% 56%);
  /* chart-3 amber — used sparingly for emphasis */
  --warn-dim: hsl(42 93% 56% / 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h3 {
  margin-top: 20px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .32s;
}

.d4 {
  transition-delay: .44s;
}

/* ── PLACEHOLDER ── */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ph-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  background: white;
  padding: 4px 12px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  text-align: center;
}

.ph-dark .ph-label {
  background: var(--primary-xdark);
  border-color: var(--primary);
}

.ph-sub {
  font-size: .68rem;
  color: var(--ink-faint);
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.65;
}

.ph-dark .ph-sub {
  color: hsl(221 40% 40%);
}

/* ── PROGRESS BAR ── */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 500;
  width: 0;
  transition: width .1s linear;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary-xdark);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid hsl(221 60% 22%);
}

.login-bar {
  display: flex;
  padding: 8px;
  background-color: var(--ink-light);
  text-align: right;
  font-weight: 600;
  justify-content: right;
  align-items: center;
}

.login-bar a {
  padding-right: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink)
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: white;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--warn);
}

.nav-logo img {
  max-height: 50px;
  margin-top: 10px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: hsl(221 30% 55%);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  background: var(--primary);
  color: white;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 9px 22px;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn .material-symbols-outlined {
  font-size: 28px;
}

@media(max-width:768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-group {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--primary-xdark);
    flex-direction: column;
    padding: 24px 6%;
    border-bottom: 1px solid hsl(221 60% 22%);
    box-shadow: var(--shadow-xl);
  }

  .nav-group.open {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-bottom: 24px;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 8px 0;
    display: block;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}

/* ══════════════════════════════════════════
   HERO — dark, bold, avatar-first
══════════════════════════════════════════ */
.hero {
  background: var(--primary-xdark);
  padding: 80px 6% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(221 83% 53% / .08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 0px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--warn);
  border: 1px solid hsl(42 93% 56% / .35);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--warn);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .3;
    transform: scale(.7);
  }
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.4rem, 7.5vw, 6.2rem);
  line-height: .93;
  color: white;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.hero-h1 .hl {
  color: var(--warn);
  display: block;
}

@media(min-width:769px) {
  .nav-group {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: hsl(221 20% 62%);
  max-width: 460px;
  margin: 24px 0 36px;
  line-height: 1.74;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px hsl(221 83% 53% / .4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(221 83% 53% / .45);
}

.btn-outline-white {
  font-size: .93rem;
  font-weight: 600;
  color: hsl(221 20% 62%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid hsl(221 40% 28%);
  padding: 14px 24px;
  border-radius: 10px;
  transition: border-color .2s, color .2s;
}

.btn-outline-white:hover {
  border-color: hsl(221 40% 50%);
  color: white;
}

.btn-outline-white::after {
  content: '→';
  transition: transform .2s;
}

.btn-outline-white:hover::after {
  transform: translateX(4px);
}

.hero-microcopy {
  font-size: .8rem;
  color: hsl(221 20% 38%);
  font-style: italic;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hstat {
  display: flex;
  flex-direction: column;
}

.hstat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.hstat-lbl {
  font-size: .72rem;
  color: hsl(221 20% 38%);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-phone {
  width: 230px;
  aspect-ratio: 9/19;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-phone .ph {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: none;
}

.hero-phone .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.hero-tablet {
  width: 310px;
  aspect-ratio: 4/3;
  background: hsl(222 40% 8%);
  border: 2px solid hsl(221 50% 22%);
  border-radius: 14px;
  position: absolute;
  bottom: 50px;
  right: -20px;
  box-shadow: 0 28px 56px hsl(222 50% 5% / .6);
  overflow: hidden;
}

.hero-tablet .ph {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 12px;
}

.hero-badge {
  position: absolute;
  top: 36px;
  left: -12px;
  background: var(--primary);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 24px hsl(221 83% 53% / .5);
}

.hbadge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: white;
  line-height: 1;
}

.hbadge-lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: hsl(221 60% 85%);
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
}

/*subhero sections */

.sub-hero {
  background: var(--primary-xdark);
  min-height: 22vh;
  padding: 80px 6% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}



/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee {
  background: var(--primary);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.marquee-item::after {
  content: '✦';
  font-size: .5rem;
  color: rgba(255, 255, 255, .35);
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--primary-deeper);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid hsl(221 40% 20%);
}

.stat-cell {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid hsl(221 40% 20%);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  color: var(--warn);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-lbl {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: hsl(221 20% 42%);
  margin-top: 8px;
}

@media(max-width:600px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid hsl(221 40% 20%);
  }

  .stat-cell:last-child {
    border-bottom: none;
  }
}

/* INNER SECTIONS*/
.inner-section {
  margin: 40px;
}

.article li {
  margin-left: 40px;
}

.article h2 {
  margin-top: 60px;
}

/* ══════════════════════════════════════════
   ARTICLE GRID & CARDS
══════════════════════════════════════════ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-glow);
}

.article-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.article-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 0;
  color: var(--ink);
}

.article-card-excerpt {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.article-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.article-card:hover .article-card-link {
  color: var(--primary-dark);
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.section-lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--ink);
}

.body-copy {
  font-size: 1.02rem;
  color: var(--ink-mid);
  line-height: 1.78;
}

/* ══════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════ */
.problem {
  background: var(--background);
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem h2 {
  margin-bottom: 18px;
}

.problem .body-copy {
  max-width: 430px;
  margin-bottom: 30px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink-mid);
  line-height: 1.55;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.pain-list li::before {
  content: '—';
  color: hsl(356 91% 54%);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.problem-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, hsl(222 25% 9% / .9) 0%, transparent 100%);
  padding: 28px 22px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .04em;
  color: white;
}

@media(max-width:860px) {
  .problem {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   FEATURES — dark navy, bold section
══════════════════════════════════════════ */
.features {
  background: var(--primary-deeper);
  padding: 100px 6%;
}

.features-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid hsl(221 40% 22%);
}

.features-hdr h2 {
  color: white;
}

.features-hdr .body-copy {
  color: hsl(221 15% 50%);
  margin-top: 14px;
}

.fpill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid hsl(221 40% 22%);
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: border-color .2s, background .2s;
}

.fpill:hover,
.fpill.on {
  border-color: var(--primary);
  background: hsl(221 83% 53% / .1);
}

.fpill-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--primary);
  opacity: .4;
  flex-shrink: 0;
}

.fpill.on .fpill-n {
  opacity: 1;
}

.fpill-t {
  font-size: .85rem;
  font-weight: 600;
  color: hsl(221 15% 45%);
}

.fpill.on .fpill-t {
  color: white;
}

@media(max-width:860px) {
  .features-hdr {
    grid-template-columns: 1fr;
  }
}

.feature-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fpanel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: hsl(222 40% 10%);
  border: 1px solid hsl(221 40% 18%);
  overflow: hidden;
  border-radius: 16px;
}

.fpanel-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fpanel-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: white;
  opacity: .1;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}

.fpanel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: .01em;
}

.fpanel p {
  font-size: .97rem;
  color: hsl(221 15% 50%);
  line-height: 1.82;
}

.fpanel p em {
  color: var(--warn);
  font-style: normal;
  font-weight: 600;
}

.fpanel-vis {
  position: relative;
}

.fpanel-vis .ph {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.fpanel:nth-child(even) .fpanel-content {
  order: 2;
}

.fpanel:nth-child(even) .fpanel-vis {
  order: 1;
}

@media(max-width:860px) {
  .fpanel {
    grid-template-columns: 1fr;
  }

  .fpanel-vis {
    aspect-ratio: 16/9;
    position: relative;
  }

  .fpanel:nth-child(even) .fpanel-content {
    order: 1;
  }

  .fpanel:nth-child(even) .fpanel-vis {
    order: 2;
  }

  .fpanel-content {
    padding: 40px 28px;
  }
}

/* FAQ Section*/
.faq {
  margin: 20px 0;
  padding: 20px;
}

details {
  padding: 15px;
  border: 1px solid var(--border);
  /* Matches your existing variables */
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}

summary {
  font-weight: bold;
  outline: none;
}

details[open] {
  /* Style when the box is expanded */
  background: #f9f9f9;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.hiw {
  background: var(--background);
  padding: 100px 6%;
}

.hiw-hdr {
  text-align: center;
  margin-bottom: 80px;
}

.hiw-hdr h2 {
  margin-bottom: 14px;
}

.hiw-hdr .body-copy {
  max-width: 440px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--card);
  padding: 44px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.step:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.step p {
  font-size: .93rem;
  color: var(--ink-mid);
  line-height: 1.74;
}

.step-img {
  width: 100%;
  margin-top: 26px;
  border-radius: 10px;
  overflow: hidden;
}

@media(max-width:768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   VIDEO DEMO
══════════════════════════════════════════ */
.demo {
  background: var(--primary-deeper);
  padding: 100px 6%;
  text-align: center;
}

.demo h2 {
  color: white;
  margin: 12px auto 14px;
  max-width: 580px;
}

.demo .body-copy {
  color: hsl(221 15% 45%);
  max-width: 440px;
  margin: 0 auto 52px;
}

.video-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.video-ph {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.video-ph .ph {
  position: absolute;
  inset: 0;
  border-radius: 14px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .2s, background .2s;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 32px hsl(221 83% 53% / .5);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-dark);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 5px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  background: var(--background);
  padding: 100px 6%;
  overflow: hidden;
}

.testi-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.testi-hdr h2 {
  margin-bottom: 10px;
}

.testi-hdr .body-copy {
  max-width: 330px;
}

.carousel-ctrl {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.cbtn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted-foreground);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: border-color .2s, color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}

.cbtn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.carousel-wrap {
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 36px 30px;
  min-width: 360px;
  flex-shrink: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: box-shadow .25s;
  max-width: 350px;
  max-height: 550px;
}

.tcard:hover {
  box-shadow: var(--shadow-xl);
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
}

.tcard-avatar .ph {
  height: 100%;
  border: none;
  border-radius: 50%;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  color: var(--warn);
  font-size: .88rem;
}

.tquote {
  font-size: .97rem;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.tauthor {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
}

.trole {
  font-size: .78rem;
  color: var(--ink-light);
  margin-top: 3px;
}

.cdots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  justify-content: center;
}

.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.cdot.on {
  background: var(--primary);
  transform: scale(1.4);
}

@media(max-width:600px) {
  .tcard {
    min-width: calc(100vw - 48px);
  }
}

/* ══════════════════════════════════════════
   TRUST / INTEGRATIONS
══════════════════════════════════════════ */
.trust {
  background: var(--muted);
  padding: 48px 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 26px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-ph {
  width: 110px;
  height: 36px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ph span {
  font-size: .62rem;
  color: var(--muted-foreground);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   OBJECTIONS
══════════════════════════════════════════ */
.objections {
  background: var(--muted);
  padding: 100px 6%;
}

.objections h2 {
  text-align: center;
  margin-bottom: 60px;
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.obj-card {
  background: var(--card);
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}

.obj-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.obj-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: .02em;
  line-height: 1.25;
}

.obj-a {
  font-size: .93rem;
  color: var(--ink-mid);
  line-height: 1.74;
}

@media(max-width:640px) {
  .obj-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   TAGLINES
══════════════════════════════════════════ */
.taglines {
  background: var(--background);
  padding: 100px 6%;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 60px;
  align-items: center;
}

@media(max-width:900px) {
  .taglines {
    flex-direction: column;
  }
}

.taglines-hdr {
  max-width: 500px;
  margin-bottom: 46px;
}

.taglines-hdr h2 {
  margin-bottom: 12px;
}

.tagline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
}

.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}

.tl-item:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tl-item.feat {
  border-left-color: var(--primary);
  background: hsl(214 95% 98%);
}

.tl-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
}

.tl-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.1;
}

.tl-note {
  font-size: .83rem;
  color: var(--ink-light);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   CLOSING CTA
══════════════════════════════════════════ */
.cta-section {
  background: var(--primary);
  padding: 120px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'THE GOING RATE';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 17vw;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .07);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
}

.cta-section .section-lbl {
  color: hsl(221 60% 85%);
}

.cta-section h2 {
  color: white;
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 660px;
  margin: 14px auto 18px;
}

.cta-section .body-copy {
  color: hsl(221 60% 85%);
  max-width: 460px;
  margin: 0 auto 44px;
  font-size: 1.06rem;
}

.cta-form {
  display: flex;
  max-width: 430px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.cta-input {
  flex: 1;
  min-width: 200px;
  padding: 15px 18px;
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  border: none;
  background: white;
  outline: none;
  color: var(--ink);
}

.cta-input::placeholder {
  color: var(--ink-light);
}

.btn-dark {
  background: hsl(222 55% 11%);
  color: white;
  font-size: .93rem;
  font-weight: 700;
  padding: 15px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.btn-dark:hover {
  background: var(--primary-deeper);
}

.cta-note {
  font-size: .82rem;
  color: hsl(221 60% 82%);
  font-style: italic;
}

/* PRICING TABLE*/
.price-table {
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  width: 400px;
}

.price-table h2 {
  margin-bottom: 10px;
}

.price-table p {
  margin-bottom: 20px;
}

.price-table h3 {
  margin-top: 0px;
  font-size: x-large;
}

.price-table h4 {
  text-decoration: line-through;
}


.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-table li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink-mid);
  line-height: 1.55;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.price-table li::before {
  content: '✅';
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--primary-xdark);
  padding: 60px 6% 28px;
  border-top: 1px solid hsl(221 40% 16%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid hsl(221 40% 16%);
  margin-bottom: 26px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.footer-logo span {
  color: var(--warn);
}

.footer-tagline {
  font-size: .82rem;
  color: hsl(221 20% 35%);
  line-height: 1.65;
}

.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: hsl(221 20% 30%);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .87rem;
  color: hsl(221 15% 40%);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: .76rem;
  color: hsl(221 15% 28%);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  font-size: .76rem;
  color: hsl(221 15% 28%);
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

@media(max-width:768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── UTILITIES ── */
.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.text-white {
  color: white !important;
}

.text-muted-alt {
  color: hsl(221 15% 50%) !important;
}

.text-center {
  text-align: center !important;
}

.no-border-mb {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.footer-logo img {
  max-height: 50px;
  margin-top: 10px;
}

.relative {
  position: relative !important;
}

.flex {
  display: flex !important;
}

.flex-1 {
  flex: 1 !important;
}

.gap-40 {
  gap: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.list-none {
  list-style: none !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.rounded-15 {
  border-radius: 15px !important;
}

.border-0 {
  border: 0 !important;
}

/* ══════════════════════════════════════════
   ARTICLE PAGE TEMPLATE
══════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 6%;
  align-items: start;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
  }
}

/* MAIN CONTENT */
.article-main {
  min-width: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--primary-dark);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.article-header {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.article-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--ink-mid);
}

/* TYPOGRAPHY IN ARTICLE CONTENT */
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-mid);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content .lead {
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.6;
}

.article-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content strong {
  color: var(--ink);
}

.article-content blockquote {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

/* SIDEBAR */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sticky-widget {
  position: sticky;
  top: 90px;
}

.widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  margin-top: 0;
  color: var(--ink);
}

.widget-text {
  font-size: 0.95rem;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.widget-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.related-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-list a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s;
}

.related-list a:hover {
  transform: translateX(4px);
}

.related-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.related-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.related-list a:hover .related-title {
  color: var(--primary);
}