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

  :root {
    --bg: #FAFAF7;
    --bg-deep: #F0EFE9;
    --ink: #1A1A18;
    --ink-muted: #6B6B62;
    --ink-light: #9B9B90;
    --accent: #2D5A3D;
    --accent-light: #3A7A52;
    --accent-glow: #D4E8D9;
    --danger: #B91C1C;
    --danger-bg: #FEF2F2;
    --danger-border: #FECACA;
    --danger-glow: rgba(185,28,28,0.08);
    --warning: #92400E;
    --warning-bg: #FFFBEB;
    --warning-border: #FDE68A;
    --gold: #C8A24E;
    --gold-light: #F5EDD4;
    --white: #FFFFFF;
    --border: #DEDDD6;
    --dark: #111110;
    --dark-card: #1C1C1A;
    --dark-border: #2A2A27;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
    --card-hover: 0 2px 8px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.1);
  }
  
  section{
      display:block;
  }
  .scrolled{
      position:fixed;
      width:100%;
      top:-50px;
      background:none;
      background-color:white;
      box-shadow:5px 5px 10px lightgray;
  }
  .scrolled-cover{
      margin-top:100px;
  }
  .nav-cta {
    background: var(--danger) !important; color: var(--white) !important;
    padding: 10px 24px !important; border-radius: 100px;
    font-weight: 600 !important; 
    letter-spacing: 0.03em; transition: all .2s !important;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(185,28,28,0.25); }

  /* ── UTILITIES ── */
  .container { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
  .fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 16px;
  }
  .section-tag::before { content: ''; width: 24px; height: 1.5px; }
  .section-tag.green { color: var(--accent); }
  .section-tag.green::before { background: var(--accent); }
  .section-tag.red { color: var(--danger); }
  .section-tag.red::before { background: var(--danger); }
  .section-tag.white { color: rgba(255,255,255,.6); }
  .section-tag.white::before { background: rgba(255,255,255,.3); }
  .section-tag.gold { color: var(--gold); }
  .section-tag.gold::before { background: var(--gold); }
  .section-title {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1; font-weight: 400; letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .section-desc {
    color: var(--ink-muted);
    max-width: 760px; line-height: 1.7;
  }

  /* ── HERO ── */
  .hero {
    padding: 140px 40px 80px;
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px;
    align-items: center; position: relative;
  }
  .hero::before {
    content: ''; position: absolute;
    top: -200px; right: -300px; width: 800px; height: 800px;
    background: radial-gradient(circle, var(--danger-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-urgency {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--danger-bg); color: var(--danger);
    border: 1px solid var(--danger-border);
    padding: 6px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 24px;
  }
  .hero-urgency span{
      font-size:12px;
  }
  .hero-urgency .pulse {
    width: 8px; height: 8px; background: var(--danger);
    border-radius: 50%; position: relative;
  }
  .hero-urgency .pulse::after {
    content: ''; position: absolute; inset: -4px;
    border: 2px solid var(--danger); border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
  }
  @keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
  }
  .hero h1 {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05; font-weight: 400;
    letter-spacing: -0.03em; margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: italic; color: var(--danger);
    text-decoration: underline;
    text-decoration-color: var(--danger-border);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
  }
  .hero-desc {
    color: var(--ink-muted);
    max-width: 520px; line-height: 1.7; margin-bottom: 36px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  /* buttons */
  .btn {
    padding: 16px 36px; border-radius: 100px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .25s; border: none; cursor: pointer; font-family: inherit;
  }
  .btn svg { transition: transform .25s; }
  .btn:hover svg { transform: translateX(3px); }
  .btn-danger { background: var(--danger); color: var(--white); box-shadow: 0 2px 12px rgba(185,28,28,0.25); }
  .btn-danger:hover { background: #991B1B; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(185,28,28,0.3); }
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
  .btn-outline:hover { border-color: var(--ink); background: var(--white); }
  .btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 2px 12px rgba(45,90,61,0.25); }
  .btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
  .btn-white { background: var(--white); color: var(--ink); }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
  .btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.25); }
  .btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

  /* hero threat card */
  .hero-threat {
    background: var(--white); border-radius: 20px; padding: 40px 36px 32px;
    color: var(--ink); position: relative; overflow: hidden;
    border: 1px solid var(--danger-border);
    box-shadow: var(--card-shadow);
  }
  .hero-threat::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--danger);
  }
  .hero-threat * { position: relative; }
  .hero-threat-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--danger); margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--danger-bg); border: 1px solid var(--danger-border);
    padding: 6px 12px; border-radius: 100px;
  }
  .threat-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; border-bottom: 1px solid var(--border);
  }
  .threat-row:last-child { border-bottom: none; }
  .threat-label { font-size: 14px; color: var(--ink-muted); }
  .threat-label small{
      font-size: 9px;
  }
  .threat-val {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 22px; font-weight: 500;
    font-weight:bold;
  }
  .threat-val.red { color: var(--danger); }
  .threat-val.amber { color: #B45309; }
  .threat-val.white { color: var(--ink); }

  /* ── RISK STATS ── */
  .risk-stats {
    padding: 0 40px 80px;
    max-width: 1280px; margin: 0 auto;
    padding-bottom:0px;
  }
  .risk-stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    border-radius: 20px; overflow: hidden;
  }
  .risk-stat {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--danger-border);
    transition: background .2s;
  }
  .risk-stat:last-child { border-right: none; }
  .risk-stat:hover { background: rgba(185,28,28,0.04); }
  .risk-stat-num {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 36px; color: var(--danger); margin-bottom: 6px;
    font-weight:bold;
  }
  .risk-stat-label { font-size: 13px; color: var(--danger); font-weight: 500; line-height: 1.4; opacity: .8; }

  /* ── AI RISK ── */
  .ai-section {
    padding: 100px 40px;
    max-width: 1280px; margin: 0 auto;
  }
  .ai-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; margin-top: 48px;
  }
  .ai-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .ai-stat-card {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: 16px; padding: 24px;
    transition: all .3s;
  }
  .ai-stat-card:hover { transform: translateY(-2px); box-shadow: var(--card-hover); }
  .ai-stat-num {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 32px; color: var(--warning); margin-bottom: 4px;
  }
  .ai-stat-label { font-size: 13px; color: var(--warning); line-height: 1.4; }
  .ai-contrast {
    background: var(--accent-glow);
    border: 1px solid #A7D5B8;
    border-radius: 20px; padding: 40px;
    position: relative; overflow: hidden;
  }
  .ai-contrast::before {
    content: ''; position: absolute;
    bottom: -30%; right: -20%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(45,90,61,0.15) 0%, transparent 70%);
  }
  .ai-contrast * { position: relative; }
  .ai-contrast h3 {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 28px; color: var(--accent); margin-bottom: 16px;
  }
  .ai-contrast p {
    font-size: 15px; color: var(--accent); opacity: .8;
    line-height: 1.6; margin-bottom: 20px;
  }
  .ai-vs {
    display: flex; gap: 12px; margin-top: 20px;
  }
  .ai-vs-item {
    flex: 1; padding: 16px;
    border-radius: 12px; font-size: 13px; font-weight: 600;
    text-align: center;
  }
  .ai-vs-bad { background: rgba(185,28,28,.08); color: var(--danger); border: 1px solid rgba(185,28,28,.15); }
  .ai-vs-good { background: rgba(45,90,61,.1); color: var(--accent); border: 1px solid rgba(45,90,61,.2); }

  /* ── CALCULATOR ── */
  .calc-section {
    padding: 100px 0;
    background: var(--bg-deep);
  }
  .calc-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    margin-top: 48px; align-items: start;
  }
  .calc-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
  }
  .calc-field { margin-bottom: 24px; }
  .calc-field label {
    display: block; font-weight: 600;
    margin-bottom: 8px; color: var(--ink);
  }
  .calc-field input, .calc-field select {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px; 
    font-family: inherit; background: var(--bg);
    transition: border-color .2s;
    color: var(--ink);
  }
  .calc-field input:focus, .calc-field select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
  }
  .calc-result {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .calc-result-header {
    background: var(--danger-bg);
    padding: 28px 32px;
    color: var(--ink);
    border-bottom: 1px solid var(--danger-border);
    position: relative;
  }
  .calc-result-header::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--danger);
  }
  .calc-result-header h4 {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--danger);
    margin-bottom: 12px;
  }
  .calc-result-big {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 44px; color: var(--danger);
    line-height: 1.1;
    font-weight:bold;
  }
  .calc-result-sub { font-size: 14px; color: var(--ink-muted); margin-top: 6px; }
  .calc-result-body { padding: 28px 32px; }
  .calc-row {
    display: flex; justify-content: space-between;
    padding: 14px 0; border-bottom: 1px solid var(--bg-deep);
    font-size: 15px;
  }
  .calc-row:last-child { border-bottom: none; }
  .calc-row-label { color: var(--ink-muted); }
  .calc-row-val { font-weight: 600; }
  .calc-row-val.red { color: var(--danger); }
  .calc-row-val.green { color: var(--accent); }

  /* ── CASE STUDIES ── */
  .cases-section {
    padding: 100px 40px;
    max-width: 1280px; margin: 0 auto;
    padding-bottom:0px;
  }
  .cases-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 48px;
  }
  .case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: all .3s;
  }
  .case-card:hover { transform: translateY(-3px); box-shadow: var(--card-hover); }
  .case-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--danger);
  }
  .case-type {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--danger);
    margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
  }
  .case-card h4 {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 20px; margin-bottom: 12px; line-height: 1.3;
  }
  .case-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 16px; }
  .case-outcome {
    padding: 16px;
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    border-radius: 10px;
    font-size: 13px; color: var(--danger);
    font-weight: 600;
  }
  .case-outcome span {
    display: block; 
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 24px; margin-top: 4px;
    font-weight:bold;
  }

  /* ── NETWORK ── */
  .network-section {
    padding: 100px 40px;
    max-width: 1280px; margin: 0 auto;
  }
  .network-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-top: 48px;
  }
  .net-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px;
    transition: all .3s; position: relative; overflow: hidden;
  }
  .net-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent); opacity: 0;
    transition: opacity .3s;
  }
  .net-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); }
  .net-card:hover::before { opacity: 1; }
  .net-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--bg-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
  }
  .net-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
  .net-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

  /* ── PRICING ── */
  .pricing-section {
    padding: 100px 0;
    background: var(--bg-deep);
  }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 52px; align-items: start;
  }
  .price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 32px 24px 28px;
    transition: all .3s; position: relative;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); }
  .price-card.featured {
    border: 2px solid var(--danger);
    box-shadow: 0 0 0 4px var(--accent-glow);
  }
  .price-card.featured .popular-tag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--danger); color: var(--white);
    padding: 4px 20px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; white-space: nowrap;
  }
  .price-risk {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    border-radius: 10px; padding: 14px;
    font-size: 12px; color: var(--danger);
    line-height: 1.5; margin-bottom: 20px;
    font-weight: 500;
  }
  .price-risk strong { font-weight: 700; }
  .price-tier {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px;
  }
  .price-name {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 22px; margin-bottom: 6px;
  }
  .price-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 20px; }
  .price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
  .price-currency { font-size: 18px; font-weight: 600; color: var(--ink-muted); align-self: flex-start; margin-top: 6px; }
  .price-value { 
      /*font-family: 'Instrument Serif', serif; */
  font-size: 44px; color: var(--ink); line-height: 1; }
  .price-period { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; }
  .price-divider { height: 1px; background: var(--bg-deep); margin-bottom: 20px; }
  .price-features { list-style: none; margin-bottom: 24px; }
  .price-features li {
    font-size: 14px; color: var(--ink); padding: 6px 0;
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
  }
  .price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
  .price-btn {
    display: block; width: 100%; text-align: center;
    padding: 14px; border-radius: 12px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .25s;
    cursor: pointer; border: none; font-family: inherit;
  }
  .price-btn.primary { background: var(--danger); color: var(--white); }
  .price-btn.primary:hover { background: var(--accent-light); }
  .price-btn.outline-btn { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
  .price-btn.outline-btn:hover { border-color: var(--ink); }

  /* ── LOGOS ── */
  .logos-section {
    padding: 60px 40px;
    border-top: 1px solid var(--border);
  }
  .logos-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
  .logos-inner p {
    font-size: 13px; color: var(--ink-muted);
    font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 36px;
  }
  .logos-track {
    display: flex; gap: 48px; align-items: center;
    justify-content: center; flex-wrap: wrap; opacity: .5;
  }
  .logos-track span {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: 20px; color: var(--ink); white-space: nowrap;
  }

  /* ── CTA ── */
  .cta-section { padding: 100px 40px; max-width: 1280px; margin: 0 auto; }
  .cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1E1E1C 100%);
    border-radius: 28px; padding: 80px 60px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: ''; position: absolute;
    top: -50%; left: -20%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(185,28,28,0.15) 0%, transparent 70%);
  }
  .cta-box::after {
    content: ''; position: absolute;
    bottom: -40%; right: -10%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45,90,61,0.2) 0%, transparent 70%);
  }
  .cta-box * { position: relative; }
  .cta-box h2 {
    /*font-family: 'Instrument Serif', serif;*/
    font-size: clamp(36px, 4vw, 52px);
    color: var(--white); margin-bottom: 16px; line-height: 1.1;
  }
  .cta-box p {
    color: white; font-size: 17px;
    max-width: 520px; margin: 0 auto 36px; line-height: 1.6;
    
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .calc-foot{
        color:gray;
        margin-top:20px;
    }
  /* ── RESPONSIVE ── */
  @media (min-width: 1400px) {
    
      
    .threat-label { font-size: 1.4rem;}
    .threat-label-last{ font-size:1rem; font-style:italic; }
    .calc-foot{
        margin-top:48px;
    }

  /* Base text */
  .hero-desc,
  .section-desc,
  .cta-box p,.logos-inner p {
    font-size: 1.7rem; /* your base */
  }

    .price-features{
        padding-left:0px;
    }
  /* Small text */
  .ai-stat-label,
  .price-desc,
  .case-card p,.ai-vs-item,.ai-vs-item span,.ai-contrast p,label, input,select,.calc-row-label,.price-features li {
    font-size: 1.4rem!important;
  }
  .section-tag{
      font-size:1.4rem;
  }

  /* Buttons */
  .btn,.price-btn,.case-type,.case-outcome,.hero-urgency,.hero-urgency span,.net-card p,.hero-threat-label,.risk-stat-label,.calc-result-header h4,.calc-foot{
    font-size: 1.1rem!important;
  }
  
  .price-risk{
      font-size:1.1rem;
  }

    .price-tier,.price-period {
        font-size:1rem;
    }

    .price-card.featured .popular-tag{
        top:-20px;
        font-size:1.2rem;
    }
  /* Section headings */
  .section-title {
    font-size: 4.2rem;
  }

  /* Hero heading */
  .hero h1 {
    font-size: 5.5rem;
  }

  /* Cards / medium headings */
  .case-card h4 {
    font-size: 1.8rem;
  }

  .net-card h4 {
    font-size: 1.5rem;
  }

  .price-name {
    font-size: 2rem;
  }

  /* Numbers / highlights */
  .risk-stat-num {
    font-size: 3.5rem;
  }

  .ai-stat-num {
    font-size: 2.8rem;
  }

  .calc-result-big {
    font-size: 3.5rem;
  }

  .price-value {
    font-size: 4rem;
  }

  .case-outcome span {
    font-size: 2.2rem; 
  } 

  /* CTA */
  .cta-box h2 {
    font-size: 4.5rem;
  }

  /* Threat values */
  .threat-val {
    font-size: 1.8rem;
  }
  .net-icon{
      height:55px;
      width:55px;
      font-size:40px;
  }
  
}
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 40px; padding: 130px 24px 60px; }
    .risk-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ai-grid { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
      .scrolled-cover{
          margin-top:80px;
      }
    .nav-inner { padding: 14px 20px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .container { padding-left: 20px; padding-right: 20px; }
    .hero { padding: 120px 20px 48px; }
    .risk-stats-inner { grid-template-columns: 1fr; }
    .risk-stat { border-right: none; border-bottom: 1px solid var(--danger-border); }
    .risk-stat:last-child { border-bottom: none; }
    .network-grid, .pricing-grid { grid-template-columns: 1fr; }
    .ai-stats-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 48px 24px; border-radius: 20px; }
    section, .risk-stats, .ai-section, .cases-section, .network-section, .cta-section {
      padding-left: 20px; padding-right: 20px;
    }
    .nav-cta-li { display: none; }
    
    
    .risk-stat-label,.ai-stat-label,.net-card h4{
        font-size:19px;
    }
    .threat-label,.section-tag,.ai-vs-item{
        font-size:17px;
    }
    .ai-vs-item span,.case-card p,.net-card p,.price-tier,.price-period,.price-features li{
        font-size:16px!important;
    }
    .calc-foot,.price-risk,.threat-label-last{
        font-size:13px;
    }
    .risk-stat-num,.ai-stat-num{
        font-size:60px;
    }
  }