  :root {
    --teal: #2DB1C7;
    --teal-deep: #1E8A9C;
    --teal-light: #E4F2F4;
    --peach: #E4B5A9;
    --peach-light: #F4D9D1;
    --mint: #B2D5CC;
    --mint-light: #DBEBE5;
    --coral: #E84135;
    --coral-deep: #C7332A;
    --ink: #0E1B2C;
    --ink-soft: #1F2D40;
    --gold: #E8B86A;
    --paper: #FDFBF7;
    --paper-warm: #F8F2EA;
    --rule: #E8E2D5;
    --text: #1A2332;
    --muted: #6B7585;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Manrope', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-soft: 0 2px 12px rgba(14, 27, 44, 0.04);
    --shadow-lift: 0 8px 28px rgba(14, 27, 44, 0.08);
    --shadow-card: 0 12px 40px rgba(14, 27, 44, 0.10);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  /*html { scroll-behavior: smooth; }*/
  /*body {*/
  /*  background: var(--paper);*/
  /*  color: var(--text);*/
    
  /*  font-size: 17px;*/
  /*  line-height: 1.6;*/
  /*  -webkit-font-smoothing: antialiased;*/
  /*  overflow-x: hidden;*/
  /*}*/
  
  ::selection { background: var(--teal); color: white; }
  img { max-width: 100%; display: block; }

  /* === Top notice === */
  .notice {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 11px 32px;
    text-align: center;
    font-weight: 500;
  }
  .notice strong { color: var(--gold); font-weight: 600; }

  /* === Header === */
  /*header {*/
  /*  background: rgba(253, 251, 247, 0.92);*/
  /*  backdrop-filter: blur(12px);*/
  /*  -webkit-backdrop-filter: blur(12px);*/
  /*  border-bottom: 1px solid var(--rule);*/
  /*  padding: 18px 0;*/
  /*  position: sticky;*/
  /*  top: 0;*/
  /*  z-index: 100;*/
  /*}*/
  /*.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }*/
  /*.logo {*/
    
  /*  font-weight: 400;*/
  /*  font-size: 30px;*/
  /*  letter-spacing: -0.02em;*/
  /*  color: var(--teal);*/
  /*  text-decoration: none;*/
  /*  line-height: 1;*/
  /*}*/
  .logo span { color: var(--ink); font-weight: 300; }
  .nav-pill {
    background: var(--mint);
    color: var(--ink);
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .nav-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
  .nav-pill.peach { background: var(--peach); }
  .nav-cta {
    background: var(--coral);
    color: white;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-left: 8px;
  }
  .nav-cta:hover { background: var(--coral-deep); transform: translateY(-1px); box-shadow: var(--shadow-lift); }

  /* === Hero === */
  .hero {
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -160px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--mint) 0%, transparent 65%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--teal-deep);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid var(--rule);
  }
  .eyebrow::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(232, 65, 53, 0.18);
  }
  h1.hero-headline {
    
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  h1.hero-headline em {
    font-style: italic;
    color: var(--teal);
  }
  .hero-sub {
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 32px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-block;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    
    letter-spacing: 0.01em;
  }
  .btn-primary { background: var(--coral); color: white; box-shadow: 0 6px 16px rgba(232, 65, 53, 0.25); }
  .btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 65, 53, 0.32); }
  .btn-ghost { background: transparent; color: var(--teal-deep); padding: 15px 0; font-weight: 600; }
  .btn-ghost::after { content: ' →'; transition: margin 0.2s; display: inline-block; margin-left: 4px; }
  .btn-ghost:hover::after { margin-left: 10px; }

  /* Hero image block */
  .hero-image-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, var(--teal-light) 0%, var(--mint-light) 40%, var(--peach-light) 100%);
    box-shadow: var(--shadow-card);
  }
  .hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* Placeholder shown only when no real img src is set */
  .hero-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--teal-deep);
    opacity: 0.6;
  }
  .hero-image-placeholder svg { width: 48px; height: 48px; }
  .hero-image-placeholder span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .hero-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(14, 27, 44, 0.72);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }



  /* === Governance section — white background typographic layout === */
  .service-section {
    background: #ffffff;
    border-top: 2px solid var(--ink);
    
  }
  .gov-band { padding: 0; }
  .gov-band-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* Section label row */
  .gov-section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 0;
    padding-top:100px;
    border-bottom: 1px solid var(--rule);
  }
  .gov-section-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-deep);
    font-weight: 700;
    white-space: nowrap;
  }
  .gov-section-rule {
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  /* Each credential row */
  .gov-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    padding: 56px 0;
    position: relative;
    transition: background 0.3s;
  }
  .gov-row:last-child { border-bottom: none; padding-bottom: 80px; }
  .gov-row:hover { background: var(--paper-warm); padding-left:15px; }
  .gov-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .gov-row:hover::before { transform: scaleY(1); }

  /* Left column — category tag */
  .gov-cat { padding-top: 8px; padding-right: 40px; }
  .gov-cat-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.5;
  }

  /* Right column — title + body */
  .gov-content { padding-left: 48px; border-left: 1px solid var(--rule); }
  .gov-title {
    
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.0;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 22px;
  }
  .gov-title em { font-style: italic; color: var(--teal); }
  .gov-body {
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 640px;
  }
  .gov-body strong { color: var(--ink); font-weight: 600; }

  /* === Audience — distinctive typographic composition === */
  .audience-section {
    background: var(--paper-warm);
    padding: 100px 0;
    border-top: 1px solid var(--rule);
    padding-top:0px;
  }
  .audience-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .audience-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-deep);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    /*margin-bottom: 64px;*/
    padding: 36px 0px;
    padding-top:100px;
  }
  .audience-eyebrow::after {
    content: '';
    flex: 1;
    height: 0px;
    background: var(--rule);
  }
  .audience-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .audience-stat-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: baseline;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0;
    position: relative;
    transition: padding-left 0.3s ease;
  }
  .audience-stat-row:hover {
    padding-left: 12px;
  }
  .audience-stat-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .audience-stat-row:hover::before { transform: scaleY(1); }
  .audience-stat-num {
    
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 400;
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: -0.03em;
  }
  .audience-stat-num em {
    font-style: normal;
    color: var(--teal);
  }
  .audience-stat-text {
    
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.25;
    padding-left: 40px;
    letter-spacing: -0.01em;
  }
  .audience-stat-text strong {
    color: var(--ink);
    font-weight: 600;
  }
  /* Last row — no number, full statement */
  .audience-stat-row.statement {
    grid-template-columns: 1fr;
  }
  .audience-stat-row.statement .audience-stat-text {
    
    font-size: clamp(22px, 2.6vw, 34px);
    font-style: italic;
    color: var(--teal-deep);
    padding-left: 0;
    font-weight: 400;
  }

  /* === Diversity Network === */
  .network-section {
    background: #0B2A36;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .network-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,177,199,0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }
  .network-inner { position: relative; z-index: 1; }
  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--teal-deep);
  }
  h2 {
    
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 920px;
  }
  h2 em { font-style: italic; color: var(--teal); }
  .section-intro {
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 720px;
    margin-top: 24px;
  }
  .network-section .section-eyebrow { color: var(--gold); }
  .network-section h2 { color: var(--paper); }
  .network-section h2 em { color: var(--teal); }
  .network-section .section-intro { color: white; }
  .network-channels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-top: 56px;
  }
  .network-channel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 16px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .network-channel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .network-channel:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
  .network-channel:hover::before { transform: scaleX(1); }
  .network-dot {
    
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
  }
  .network-dot img{
      margin-bottom:10px;
  }
  .network-dot svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .network-name {
    
    font-size: 15px;
    font-weight: 500;
    color: var(--paper);
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .network-tag {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253,251,247,0.4);
    margin-top: 7px;
    font-weight: 500;
  }
  .network-cta-row {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 32px;
  }
  .network-cta-text {
    
    font-size: clamp(18px, 2vw, 26px);
    color: white;
    font-style: italic;
    max-width: 560px;
    line-height: 1.4;
  }
  .network-cta-text em { color: var(--teal); font-style: normal; }
  .btn-network {
    display: inline-block;
    padding: 15px 30px;
    background: var(--teal);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.25s ease;
    white-space: nowrap;
  }
  .btn-network:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,177,199,0.35); }

  /* === Pricing === */
  .pricing-section { background: var(--paper); padding: 110px 0; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .plan {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
  }
  .plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
  .plan.featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: translateY(-12px);
  }
  .plan.featured:hover { transform: translateY(-16px); }
  .plan.featured h3, .plan.featured .plan-price-num { color: var(--paper); }
  .plan.featured .plan-feature { color: white; }
  .plan.featured .plan-feature strong { color: var(--gold); }
  .plan.featured .plan-tag { color: var(--gold); }
  .plan.featured .plan-divider { background: rgba(253,251,247,0.18); }
  .plan.featured .plan-desc { color: white; }
  .plan.featured .plan-meta { color: white; }
  .plan.featured .plan-price-unit { color: white; }
  .plan-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(232,65,53,0.30);
    white-space: nowrap;
  }
  .plan-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; margin-bottom: 14px; }
  .plan h3 {  font-size: 30px; font-weight: 500; line-height: 1.15; color: var(--ink); margin-bottom: 12px; }
  .plan-desc { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.55; }
  .plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
  .plan-price-num {  font-size: 56px; font-weight: 400; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
  .plan-price-unit { font-size: 14px; color: var(--muted); }
  .plan-meta { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
  .plan-divider { height: 1px; background: var(--rule); margin: 16px 0 24px; }
  .plan-features { list-style: none; margin-bottom: 32px; flex-grow: 1; padding-left:0px;}
  .plan-feature { padding: 8px 0 8px 26px; position: relative; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
  .plan-feature::before {
    content: ''; position: absolute; left: 0; top: 14px; width: 14px; height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232DB1C7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: contain;
  }
  .plan.featured .plan-feature::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8B86A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  }
  .plan-feature strong { color: var(--ink); font-weight: 600; }
  .plan-cta {
    background: var(--ink); color: white; padding: 14px 24px; border: none;
    border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none;
    text-align: center; transition: all 0.25s ease; cursor: pointer;
     letter-spacing: 0.01em;
  }
  .plan-cta:hover { background: var(--teal); transform: translateY(-1px); }
  .plan.featured .plan-cta { background: var(--coral); }
  .plan.featured .plan-cta:hover { background: var(--coral-deep); }

  /* === Trusted By === */
  .trusted-section {
    background: var(--paper-warm);
    padding: 72px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .trusted-header {
    display: flex; align-items: center; gap: 24px; margin-bottom: 48px;
  }
  .trusted-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }
  .trusted-rule { flex: 1; height: 1px; background: var(--rule); }
  .trusted-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .trusted-logo-cell {
    padding: 26px 28px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
  }
  .trusted-logo-cell:nth-child(5n) { border-right: none; }
  .trusted-logo-cell:nth-last-child(-n+5) { border-bottom: none; }
  .trusted-logo-cell:hover { background: white; }
  .trusted-wordmark {
    
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    transition: color 0.25s;
  }
  .trusted-logo-cell:hover .trusted-wordmark { color: var(--ink); }
  .trusted-note { margin-top: 32px; text-align: center; font-size: 12px; color: var(--muted); font-style: italic; }

  /* === Final CTA === */
  .final-cta {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--mint-light) 50%, var(--peach-light) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, white 0%, transparent 70%);
    opacity: 0.6; border-radius: 50%;
  }
  .final-cta-inner { position: relative; z-index: 1; }
  .final-cta h2 { margin: 0 auto 24px; font-size: clamp(36px, 4.8vw, 60px); }
  .final-cta h2 em { color: var(--teal-deep); }
  .final-cta p { color: var(--ink-soft); max-width: 580px; margin: 0 auto 36px; line-height: 1.6; }
  .final-cta .btn-primary { padding: 18px 36px; font-size: 16px; }
  .final-cta-secondary { margin-top: 28px; font-size: 14px; color: var(--muted); letter-spacing: 0.06em; }
  .final-cta-secondary a { color: var(--teal-deep); text-decoration: none; font-weight: 600; }
  .final-cta-secondary a:hover { color: var(--coral); text-decoration: underline; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-headline { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s backwards; }
  .hero-sub      { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards; }
  .hero-actions  { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s backwards; }
  .eyebrow       { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0s    backwards; }
  .hero-image-block { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s backwards; }
  
  footer .content-row .right-col img{
        margin-left:auto;
        margin-right:auto;
    }

  /* Mobile */
  @media (max-width: 980px) {
    .hero { padding: 48px 0 56px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-block { aspect-ratio: 3 / 2; }
    .gov-row { grid-template-columns: 1fr; gap: 16px; }
    .gov-cat { padding-right: 0; padding-bottom: 0; }
    .gov-content { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
    .how-row-desc { grid-column: 2; border-left: none; padding-left: 0; padding-top: 12px; border-top: 1px solid var(--rule); margin-top: 12px; }
    .how-row-title { padding-right: 0; }
    .audience-stat-row { grid-template-columns: 160px 1fr; }
    .network-channels { grid-template-columns: repeat(3, 1fr); }
    .network-cta-row { flex-direction: column; gap: 24px; text-align: center; }
    .pricing-grid, .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .plan.featured { transform: none; }
    .trusted-logos { grid-template-columns: repeat(3, 1fr); }
    .pricing-section { padding: 72px 0; }
  }
  
@media (min-width: 1300px) {
    p,div,body,span,li,button{
        font-size:25px;
    }
    .final-cta .btn-primary,.plan-cta,.btn-network,.btn-primary,.btn-ghost,.plan-feature,.plan-desc{
        font-size:1.2rem!important;
    }
    .eyebrow,.notice,.audience-eyebrow,.gov-section-label,.gov-cat-tag,.section-eyebrow,.network-name,.plan-tag,.final-cta-secondary,.hero-image-tag,.plan-price-unit,.plan-meta,.trusted-label{
        font-size:1.1rem!important;
    }
    .network-tag{
        font-size:0.9rem;
    }
    .plan-badge{
        font-size:0.9rem;
        top:-20px;
    }
    .hero-actions{
        gap:30px;
    }
    
}