*,
*::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;
}





.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 TITLE (cover H1) ── */
.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(32px, 8vw, 38px);
  }
  .badges-container{
    display: block;
    }
}

/* ── HERO ── */
.hero {
  padding: 140px 40px 0px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  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);
  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);
  color: lightgray;
}

/* 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;
}

/* ── BOOKING REACH ── */
.booking-reach-section {
  padding: 100px 40px;
  padding-bottom:0px;
  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;
}

.booking-contrast {
  background: var(--accent-glow);
  border: 1px solid #A7D5B8;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.booking-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%);
}

.booking-contrast * {
  position: relative;
}

.booking-contrast h3 {
  /*font-family: 'Instrument Serif', serif;*/
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}

.booking-contrast p {
  font-size: 15px;
  color: var(--accent);
  opacity: .8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.booking-comparison {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.booking-option {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.single-channel-option {
  background: rgba(185, 28, 28, .08);
  color: var(--danger);
  border: 1px solid rgba(185, 28, 28, .15);
}

.network-channel-option {
  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);
}

/* ── BOOKING INCLUSIONS ── */
.booking-inclusions-section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 0px;
}

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

.inclusion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

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

.inclusion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--danger);
}

.inclusion-card h4 {
  /*font-family: 'Instrument Serif', serif;*/
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.inclusion-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── NETWORK ── */
.network-section {
  padding: 100px 40px;
  /*padding-bottom:0px;*/
  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(3, 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;
}

.package-fit {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
}

.package-fit strong {
  font-weight: 700;
  color: var(--ink);
}

.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;
  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 ── */
.advertise-top-emp-section{
    padding-bottom:100px!important;
}
.logos-section {
  padding: 100px 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.3rem;
  }

  .threat-label-last {
    font-size: 1rem;
  }

  .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,
  .inclusion-card p,
  .booking-option,
  .booking-option span,
  .booking-contrast p,
  label,
  input,
  select,
  .calc-row-label {
    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,
  .price-features li,.price-period {
    font-size: 1.1rem !important;
  }

  .package-fit {
    font-size: 1.1rem;
  }

  .price-tier
   {
    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.2rem;
  }

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

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

  .price-name {
    font-size: 2rem;
    min-height:96px;
  }

  /* 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 0px;
  }

  .risk-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-grid {
    grid-template-columns: 1fr;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }

  .inclusions-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 0px;
  }

  .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,
  .booking-reach-section,
  .booking-inclusions-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,
  .booking-option {
    font-size: 17px;
  }

  .booking-option span,
  .inclusion-card p,
  .net-card p,
  .price-tier,
  .price-period,
  .price-features li {
    font-size: 16px !important;
  }

  .calc-foot,
  .package-fit,
  .threat-label-last {
    font-size: 13px;
  }

  .risk-stat-num,
  .ai-stat-num {
    font-size: 60px;
  }
}



/* ── CAMPAIGN REPORT ── */
.cta-actions {
  z-index: 10000;
}

.campaign-report-section {
  padding: 100px 40px;
}

.campaign-report-section .wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

/* LEFT PANEL */
.campaign-report-section .left {
  flex: 0 0 350px;
}

.campaign-report-section .eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  color: #C9963A;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.campaign-report-section h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: #1B2B3A;
  margin-bottom: 20px;
}

.campaign-report-section .subtext {
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.campaign-report-section .cta {
  background: #1B2B3A;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  border-radius: 2px;
}

/* RIGHT CARD */
.campaign-report-section .card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(27, 43, 58, .08);
  border: 1px solid #E8E3DC;
}

.campaign-report-section .card-header {
  margin-bottom: 24px;
}

.campaign-report-section .card-title {
  font-size: 13px;
  font-weight: 500;
  color: #1B2B3A;
}

/* TOP METRICS ROW */
.campaign-report-section .metrics-row {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  align-items: stretch;
}

.campaign-report-section .donut-box {
  flex: 0 0 auto;
  background: #F7F4EF;
  border-radius: 8px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.campaign-report-section .donut-label {
  font-size: 10px;
  color: #6B7280;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

.campaign-report-section .stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campaign-report-section .stat-box {
  flex: 1;
  background: #F7F4EF;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campaign-report-section .stat-value {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.campaign-report-section .stat-value .unit {
  font-size: 32px;
  font-weight: 300;
  margin-left: 4px;
}

.campaign-report-section .stat-desc {
  font-size: 11px;
  color: #6B7280;
  letter-spacing: .02em;
}

/* PIPELINE */
.campaign-report-section .pipeline-section {
  margin-bottom: 22px;
}

.campaign-report-section .section-label {
  font-size: 10px;
  letter-spacing: .14em;
  color: #6B7280;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.campaign-report-section .audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.campaign-report-section .audience-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  background: #F7F4EF;
  border-radius: 6px;
  padding: 8px 12px;
}

.campaign-report-section .audience-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* BADGES */
.campaign-report-section .badges {
  border-top: 1px solid #E8E3DC;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.badges-container{
    display: flex;
    justify-content: space-between;
}
.campaign-report-section .badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #2A6B4F;
  letter-spacing: .03em;
}

.campaign-report-section .badge svg {
  flex-shrink: 0;
}

@media(max-width:640px) {
  .audience-coverage-img{
      margin-top:15px;
  }
  .campaign-report-section {
    padding: 100px 10px;
  }

  .campaign-report-section .wrapper,
  .campaign-report-section .metrics-row {
    display: block;
  }

  .campaign-report-section .badge {
    text-wrap: auto;
    text-align: left;
    line-height: 1.5;
  }

  .campaign-report-section .card {
    margin-top: 30px;
  }

  .campaign-report-section .stat-col {
    margin-top: 15px;
  }

  .campaign-report-section .audience-list {
    grid-template-columns: 1fr;
  }
}

@media(min-width:1400px) {
  .campaign-report-section {
    padding: 120px 40px;
  }

  .campaign-report-section .card-title,
  .campaign-report-section .section-label,.tick-p-container {
    font-size: 1.4rem;
  }

  .campaign-report-section .badge,
  .campaign-report-section .stat-desc,
  .campaign-report-section .donut-label,
  .campaign-report-section .audience-item
  {
    font-size: 1.1rem;
  }



  #days-num,
  #sat-num {
    font-size: 3rem;
  }


}

.faq-section {
    padding: 80px 0;
    background: #fff;
    text-align:center;
  }
  .faq-section h2 {
    margin-bottom: 12px;
  }
  .faq-section .faq-intro {
    /*max-width: 640px;*/
    margin-bottom: 40px;
  }
  .faq-list {
    /*max-width: 760px;*/
  }
  .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align:left;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 44px 22px 0;
    position: relative;
    font-weight: 600;
    font-size: 1.4rem;
    color: inherit;
  }
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  /* Plus / minus indicator */
  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--teal-deep);
    transition: transform 0.2s ease;
  }
  .faq-item[open] summary::after {
    content: "\2013"; /* en dash rendered as minus indicator */
  }
  .faq-item summary:focus-visible {
    outline: 2px solid var(--teal-deep);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .faq-answer {
    padding: 0 44px 24px 0;
    line-height: 1.65;
  }
  .faq-answer p + p {
    margin-top: 12px;
  }
  @media (max-width: 600px) {
    .faq-section {
      padding: 56px 0;
    }
    .faq-item summary {
      font-size: 1rem;
      padding-right: 36px;
    }
    .faq-answer {
      padding-right: 0;
    }
  }
  
  
