/* This page's CTA scrolls to #download-form natively (not via the shared
   header's jQuery smooth-scroll, which only binds to #header links), so
   enable smooth scrolling on the document for an animated jump instead of
   an instant one. */
html {
  scroll-behavior: smooth;
}

#network-20-guide-2-root .gf-submit-frame {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

#network-20-guide-2-root .hidden {
  display: none !important;
}

/* Override site-wide "a:not(.btn):not(.badge):hover" red hover color from custom.css */
#network-20-guide-2-root .scroll-top-btn:hover {
  color: #FFFFFF;
}

/* Override site-wide h1 sizing from global stylesheets */
#network-20-guide-2-root .hero-left h1 {
  font-size: 50px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -1.5px !important;
}

@scope (#network-20-guide-2-root) {
  :scope {
    --primary-blue: #1A56DB;
    --primary-dark: #0B132B;
    --teal-accent: #00C49F;
    --teal-hover: #00A383;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --card-border: #E2E8F0;
    --input-bg: #F1F5F9;

    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

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

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 56px 24px 80px 24px;
  scroll-margin-top: 130px;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
/* Badge Tag */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E0F2FE;
  color: #0369A1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #0284C7;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4);
  animation: network-20-guide-2-pulse 2s infinite;
}
.hero-left h1 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-left h1 .highlight-blue { color: var(--primary-blue); }
.hero-left h1 .highlight-teal { color: var(--teal-accent); }
.hero-left p.subheading {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 580px;
}
/* Highlight Pills in Hero */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.check-icon {
  width: 20px;
  height: 20px;
  background: #DEF7EC;
  color: #03543F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}
/* Lead Card Form */
.lead-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 25px 50px -12px rgba(11, 19, 43, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--card-border);
  position: relative;
}
.lead-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.lead-card p.form-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.4;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus {
  background: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1A56DB 0%, #00C49F 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  box-shadow: none;
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: none;
}
.privacy-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}
.social-proof-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #0369A1;
  background: #F0F9FF;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 16px;
}
/* Success state (shown via .hidden removed in JS) */
.success-message {
  text-align: center;
  padding: 16px 0;
}
.success-icon {
  width: 44px;
  height: 44px;
  background: #DEF7EC;
  color: var(--teal-hover);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
/* Target Audience Strip */
.audience-strip {
  background: var(--primary-dark);
  color: white;
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.audience-strip span {
  color: var(--teal-accent);
}
/* Breakdown Section */
.breakdown-section {
  background-color: var(--bg-light);
  padding: 80px 24px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.breakdown-container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}
.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.06);
}
.card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: #E0F2FE;
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}
.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
/* Bottom CTA Section */
.bottom-cta {
  background-color: #FFFFFF;
  padding: 80px 24px;
}
.bottom-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #0B132B 0%, #1A264D 100%);
  border-radius: 20px;
  padding: 56px 40px;
  color: white;
  box-shadow: 0 20px 40px -10px rgba(11, 19, 43, 0.3);
}
.bottom-cta h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}
.bottom-cta p {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1A56DB 0%, #00C49F 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 20px -5px rgba(0, 196, 159, 0.4);
}
.scroll-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(0, 196, 159, 0.5);
}
/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    padding: 48px 24px 64px 24px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .breakdown-section,
  .bottom-cta {
    padding: 64px 24px;
  }
}
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 36px;
  }
  .hero-left p.subheading {
    font-size: 16px;
  }
  .lead-card {
    padding: 28px 24px;
  }
  .audience-strip {
    font-size: 13px;
    padding: 16px 20px;
  }
  .section-title,
  .bottom-cta h2 {
    font-size: 26px;
  }
  .breakdown-section,
  .bottom-cta {
    padding: 48px 20px;
  }
  .bottom-cta-container {
    padding: 40px 24px;
  }
  .bottom-cta p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 36px 16px 48px 16px;
  }
  .hero-left h1 {
    font-size: 30px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  .lead-card {
    padding: 24px 18px;
  }
  .lead-card h2 {
    font-size: 20px;
  }
  .section-title,
  .bottom-cta h2 {
    font-size: 22px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .info-card {
    padding: 24px 20px;
  }
  .breakdown-section,
  .bottom-cta {
    padding: 40px 16px;
  }
  .bottom-cta-container {
    padding: 32px 20px;
  }
  .scroll-top-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}
}

@keyframes network-20-guide-2-pulse {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

@media (max-width: 768px) {
  #network-20-guide-2-root .hero-left h1 {
    font-size: 36px !important;
  }
}
@media (max-width: 480px) {
  #network-20-guide-2-root .hero-left h1 {
    font-size: 30px !important;
  }
}
