@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --white: #FFFFFF;
  --bg: #FAFAF9;
  --text: #1A1A1A;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;
  --border: #E5E5E5;
  --accent: #1E3A5F;
  --accent-hover: #152D4A;
  --cta: #16A34A;
  --cta-hover: #15803D;
  --claimed: #DC2626;
  --available: #16A34A;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a { text-decoration: none; color: inherit; }

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

/* ── NAV ── */
nav {
  padding: 20px 0;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--white);
  transition: color 0.3s ease;
}

nav.scrolled .logo {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--white);
}

nav.scrolled .nav-link {
  color: var(--text-secondary);
}

nav.scrolled .nav-link:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--cta);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--cta-hover); }

/* ── HERO ── */
.hero {
  padding: 140px 0 80px;
  background-color: #0c1a2c;
  background-image: 
    radial-gradient(at 0% 0%, rgba(30, 58, 95, 0.45) 0px, transparent 50%), 
    radial-gradient(at 50% 0%, rgba(22, 163, 74, 0.18) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(30, 58, 95, 0.45) 0px, transparent 50%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  transition: all 0.2s ease;
}
.hero-cta:hover { 
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.hero-guarantee {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Clean Typographic Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.hero-stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  line-height: 1.4;
}

/* High-Intelligence Lead Card Widget */
.lead-card {
  background: var(--white);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 
    0 30px 60px -15px rgba(13, 30, 54, 0.35), 
    0 0 0 1px rgba(22, 163, 74, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
}

.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 40px 80px -20px rgba(13, 30, 54, 0.45), 
    0 0 0 1px rgba(22, 163, 74, 0.1);
}

.lead-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 163, 74, 0.08);
  color: var(--cta);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.lead-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.lead-card-date {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lead-card-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 24px 0;
}

.lead-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.lead-card-row:last-of-type {
  border-bottom: none;
}

.lead-card-label {
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.lead-card-value {
  font-weight: 600;
  color: var(--text);
}

.lead-card-value.verified {
  color: var(--cta);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lead-card-footer {
  margin-top: 24px;
  padding: 12px;
  background: rgba(22, 163, 74, 0.04);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--cta);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px dashed rgba(22, 163, 74, 0.15);
}

/* ── PROBLEM / SOLUTION (COMPARISON) ── */
.comparison {
  padding: 100px 0;
  background: var(--white);
}

.comparison-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cta);
  margin-bottom: 16px;
}

.comparison h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.comparison-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* ── EDITORIAL COMPARISON ── */
.editorial-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
}

.editorial-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.editorial-col-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}

.negative-col .editorial-col-title {
  color: var(--text-secondary);
}

.positive-col .editorial-col-title {
  color: var(--accent);
}

.editorial-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editorial-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.editorial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
}

.negative-icon {
  background: #FEF2F2;
  color: #DC2626;
}

.positive-icon {
  background: #F0FDF4;
  color: #16A34A;
}

.negative-col .editorial-text {
  color: var(--text-secondary);
}

.positive-col .editorial-text {
  color: var(--text);
}

/* Beautiful custom badges for icons */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.icon-badge.negative {
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}

.icon-badge.positive {
  background: rgba(22, 163, 74, 0.1);
  color: var(--cta);
}

.icon-badge svg {
  width: 12px;
  height: 12px;
}

.comparison-text {
  flex-grow: 1;
}

.comparison-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.06);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.25s ease;
  border: 1px solid rgba(30, 58, 95, 0.05);
}

.step:hover .step-number {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── TERRITORY TABLE ── */
.territories {
  padding: 100px 0;
  background: var(--white);
}

.territories h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.territories-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.territory-table-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.territory-table {
  width: 100%;
  border-collapse: collapse;
}

.territory-table th {
  text-align: left;
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #FAF9F6;
  border-bottom: 1px solid var(--border);
}

.territory-table td {
  padding: 20px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.territory-table tbody tr {
  transition: background 0.2s ease;
}

.territory-table tbody tr:hover {
  background: #FAFAF9;
}

.territory-table tr:last-child td {
  border-bottom: none;
}

.status-claimed {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(180, 83, 9, 0.08);
  color: #B45309;
  border: 1px solid rgba(180, 83, 9, 0.12);
}

.status-available {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(22, 163, 74, 0.08);
  color: var(--available);
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.table-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.15);
  transition: all 0.2s ease;
}

.table-cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  transform: translateY(-0.5px);
}

/* ── GUARANTEES (EDITORIAL LAYOUT) ── */
.guarantees {
  padding: 100px 0;
  background-color: #0c1a2c;
  background-image:
    radial-gradient(at 0% 0%, rgba(30, 58, 95, 0.45) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(22, 163, 74, 0.18) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(30, 58, 95, 0.45) 0px, transparent 50%);
  color: var(--white);
  border-radius: 0;
  margin: 0;
}

.guarantees .container {
  max-width: 1100px;
}

.guarantees-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.guarantees-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.guarantees-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.guarantees-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.guarantee-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.guarantee-item:first-child {
  border-top: none;
  padding-top: 0;
}

.guarantee-number {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--cta);
  line-height: 1;
  opacity: 0.9;
}

.guarantee-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.guarantee-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── APPLICATION FORM ── */
.apply {
  padding: 100px 0;
  background: var(--white);
}

.scarcity-line {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #B45309;
  background: rgba(180, 83, 9, 0.06);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px dashed rgba(180, 83, 9, 0.2);
}

.apply-inner {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(13, 30, 54, 0.06);
}

.apply-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.apply-inner .apply-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.form-submit {
  width: 100%;
  background: var(--cta);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
  transition: all 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--cta-hover);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
  transform: translateY(-0.5px);
}


/* ── FOOTER ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-contact a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--cta);
}

.footer-legal {
  font-size: 12px !important;
  color: var(--text-tertiary) !important;
  margin-top: 4px;
}

.footer-legal a {
  color: var(--text-tertiary);
  text-decoration: underline;
}

footer p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px; /* leaves breathing room for bottom absolute ticker */
  }
  
  .hero .container { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .hero h1 { 
    font-size: clamp(26px, 6vw, 36px); 
    line-height: 1.15;
    margin-bottom: 16px;
  }
  
  .hero-sub {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero::after {
    display: none;
  }

  .hero-stats { 
    display: flex;
    flex-direction: column;
    gap: 16px; 
    padding-top: 0;
    margin-top: 32px;
  }
  
  .hero-stat {
    padding: 0;
  }
  
  .hero-stat-number { 
    font-size: 28px; 
  }

  /* Hide secondary nav link on mobile to prevent overlap */
  .nav-link {
    display: none;
  }
  
  .nav-links {
    gap: 0;
  }

  .logo {
    font-size: 18px;
  }

  .comparison {
    padding: 60px 0;
  }
  
  .comparison h2 {
    font-size: 26px;
  }

  .editorial-comparison { 
    grid-template-columns: 1fr; 
    gap: 48px;
  }
  
  .editorial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }

  .how-it-works, .territories, .faq, .apply {
    padding: 60px 0;
  }
  
  .guarantees {
    padding: 60px 0;
    margin: 0;
    border-radius: 0;
  }

  .guarantees-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guarantees-header h2 {
    font-size: 32px;
  }

  .steps { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }

  /* Make table scrollable horizontally on mobile */
  .territory-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .territory-table th, .territory-table td {
    padding: 12px 16px;
    white-space: nowrap;
  }

  .apply-inner {
    padding: 24px;
    margin: 0;
    border-radius: 16px;
  }

  .form-row { 
    grid-template-columns: 1fr; 
  }
  
  .lead-card { 
    max-width: 100%; 
    margin: 0; 
    padding: 20px;
  }
  
  .lead-card-name {
    font-size: 20px;
  }
  
  .lead-card-footer {
    padding: 10px;
    font-size: 11px;
  }
  
  .footer-main { 
    flex-direction: column; 
    gap: 12px; 
    text-align: center; 
  }
  
  footer .container { 
    flex-direction: column; 
    gap: 8px; 
    text-align: center; 
  }
}

@media (max-width: 480px) {
  .lead-card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }
  
  .lead-card-value {
    text-align: left;
  }
  
  .hero-stat-number {
    font-size: 24px;
  }
  
  .logo {
    font-size: 16px;
  }
}

/* Form Success State UX */
.success-msg {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.success-msg.visible {
  display: block;
}

.success-msg h3 {
  color: #22c55e;
  font-size: 24px;
  margin-bottom: 12px;
}

.success-msg p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── HERO TICKER BAR ── */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 26, 44, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  z-index: 10;
  width: 100%;
}

.hero-ticker-scroll {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, white 80px, white 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 80px, white 90%, transparent);
}

.hero-ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
  font-size: 12px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.65);
}

.hero-ticker-track span {
  display: inline-flex;
  align-items: center;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Floating Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  top: 40px; /* Positions it cleanly on the white comparison canvas */
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(12, 26, 44, 0.08);
  border-radius: 50%;
  color: var(--accent); /* Deep corporate navy for high visibility */
  z-index: 15;
  cursor: pointer;
  display: none; /* Hidden on mobile by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(12, 26, 44, 0.12), 0 2px 6px rgba(12, 26, 44, 0.04);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease, box-shadow 0.2s ease;
  animation: bounceIndicator 2.5s infinite;
}

@media (min-width: 768px) {
  .hero-scroll-indicator {
    display: flex; /* Show only on PC/Tablet screens */
  }
}

.hero-scroll-indicator:hover {
  color: var(--cta); /* Lights up to brand green on hover */
  box-shadow: 0 12px 30px rgba(12, 26, 44, 0.18), 0 4px 10px rgba(12, 26, 44, 0.06);
}

.hero-scroll-indicator.indicator-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
}

@keyframes bounceIndicator {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -6px);
  }
  60% {
    transform: translate(-50%, -3px);
  }
}
