:root {
  --ink: #07111f;
  --ink-2: #0d1c2f;
  --surface: #ffffff;
  --surface-2: #f3f7fb;
  --line: #d8e2ec;
  --text: #102033;
  --muted: #5c6b7b;
  --brand: #08b77c;
  --brand-dark: #07845e;
  --signal: #4db4ff;
  --warning: #ffce5c;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(5, 20, 38, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: white; padding: 12px 16px; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7, 17, 31, .94); backdrop-filter: blur(14px); color: white; border-bottom: 1px solid rgba(255,255,255,.08); }
.header-inner { display: flex; align-items: center; min-height: 76px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 850; letter-spacing: -.03em; white-space: nowrap; }
.brand img { width: 42px; height: 42px; }
.brand small { display: block; font-weight: 650; color: #9fb0c2; font-size: 11px; letter-spacing: .02em; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav a { color: #dbe7f2; text-decoration: none; font-weight: 700; font-size: 14px; padding: 10px 11px; border-radius: 10px; }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255,255,255,.08); color: white; }
.nav .nav-cta { background: var(--brand); color: #04140e; padding-inline: 16px; }
.nav .nav-cta:hover { background: #18cc91; color: #03110c; }
.menu-button { display: none; margin-left: auto; border: 1px solid rgba(255,255,255,.18); background: transparent; color: white; border-radius: 12px; padding: 9px 12px; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 16%, rgba(77,180,255,.22), transparent 31%), radial-gradient(circle at 12% 110%, rgba(8,183,124,.22), transparent 36%), var(--ink); color: white; padding: 92px 0 72px; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 54px; align-items: center; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; color: var(--brand); }
.hero .eyebrow { color: #67e6ba; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(42px, 6.3vw, 76px); margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 12px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: #c5d4e2; max-width: 740px; }
.hero-actions, .button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 20px; border-radius: 13px; text-decoration: none; border: 1px solid transparent; font-weight: 850; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #04140e; }
.btn-primary:hover { background: #19cf93; }
.btn-secondary { background: rgba(255,255,255,.07); color: white; border-color: rgba(255,255,255,.22); }
.btn-light { background: white; color: var(--ink); border-color: white; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: #aabccd; font-size: 14px; font-weight: 700; }
.hero-proof span::before { content: "✓"; color: #67e6ba; margin-right: 7px; }
.hero-visual { background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; padding: 18px; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.hero-visual img { display: block; width: 100%; border-radius: 20px; }
.stat-strip { background: #0b1a2d; color: white; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 24px 22px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 18px; }
.stat span { display: block; margin-top: 4px; color: #aabccd; font-size: 13px; }
.section { padding: 86px 0; }
.section-soft { background: var(--surface-2); }
.section-dark { background: var(--ink); color: white; }
.section-dark p, .section-dark .muted { color: #b9c8d7; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head p { font-size: 18px; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 30px rgba(7,17,31,.045); }
.card-dark { background: #10243c; border-color: rgba(255,255,255,.1); color: white; }
.card p { color: var(--muted); }
.card-dark p { color: #b9c8d7; }
.card-link { display: inline-flex; margin-top: 16px; color: var(--brand-dark); font-weight: 850; text-decoration: none; }
.card-link::after { content: "→"; margin-left: 8px; }
.icon-box { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #e4f9f1; color: var(--brand-dark); font-weight: 900; margin-bottom: 20px; }
.signal-card { border-top: 4px solid var(--brand); }
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }
.problem-list { display: grid; gap: 14px; }
.problem-item { display: flex; gap: 14px; align-items: flex-start; background: white; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.problem-item b { display: block; margin-bottom: 4px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--warning); flex: 0 0 auto; margin-top: 6px; box-shadow: 0 0 0 6px rgba(255,206,92,.18); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 950; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { counter-increment: step; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step::before { content: "0" counter(step); display: inline-block; color: var(--brand-dark); font-weight: 900; margin-bottom: 24px; letter-spacing: .08em; }
.band { background: linear-gradient(110deg, #083429, #0c5e48 58%, #0c3556); color: white; border-radius: 28px; padding: 46px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 30px; align-items: center; }
.band p { color: #d2eee5; }
.page-hero { background: radial-gradient(circle at 90% 10%, rgba(77,180,255,.19), transparent 35%), var(--ink); color: white; padding: 82px 0 64px; }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 66px); max-width: 900px; }
.page-hero .lead { max-width: 850px; }
.breadcrumbs { color: #9fb0c2; font-size: 13px; margin-bottom: 26px; }
.breadcrumbs a { color: #c9d8e5; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 42px; align-items: start; }
.content h2 { font-size: clamp(28px, 3.4vw, 42px); margin-top: 58px; }
.content h3 { margin-top: 34px; }
.content p, .content li { font-size: 17px; color: #34475a; }
.sidebar { position: sticky; top: 104px; display: grid; gap: 18px; }
.sidebar .card { padding: 23px; }
.kicker { font-size: 14px; font-weight: 850; color: var(--brand-dark); text-transform: uppercase; letter-spacing: .1em; }
.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 850; font-size: 18px; list-style: none; position: relative; padding-right: 36px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: -2px; font-size: 26px; color: var(--brand-dark); }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 12px 0 0; }
.form-shell { background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.form-head { background: var(--ink); color: white; padding: 30px; }
.form-head p { color: #b8c8d8; margin-bottom: 0; }
.form-body { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 780; font-size: 14px; }
.field small { color: var(--muted); }
input, select, textarea { width: 100%; border: 1px solid #bac9d8; border-radius: 12px; background: white; color: var(--text); padding: 12px 13px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--brand-dark); box-shadow: 0 0 0 4px rgba(8,183,124,.12); }
textarea { min-height: 130px; resize: vertical; }
.form-status { display: none; border-radius: 12px; padding: 13px 15px; margin-bottom: 16px; font-weight: 700; }
.form-status.show { display: block; }
.form-status.sending { background: #eef5fb; color: #26425c; }
.form-status.success { background: #e4f8ef; color: #075b3f; }
.form-status.error { background: #fff0ed; color: #8c2819; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; }
.consent input { width: auto; margin-top: 5px; }
.upload-note { font-size: 13px; color: var(--muted); }
.service-nav { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 0; }
.service-nav a { background: #e9f1f7; border: 1px solid #d3e0ea; border-radius: 999px; padding: 9px 13px; text-decoration: none; font-weight: 750; font-size: 13px; }
.coverage-map { background: #0d2138; border-radius: 28px; padding: 22px; }
.coverage-map img { width: 100%; display: block; }
.site-footer { background: #06101c; color: white; padding: 58px 0 92px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-grid p, .footer-grid a { color: #9fb0c2; }
.footer-grid a { display: block; text-decoration: none; margin: 8px 0; }
.footer-grid h3 { font-size: 16px; letter-spacing: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; color: #8194a8; font-size: 13px; }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 80; max-width: 720px; margin: auto; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 20px; display: none; }
.cookie-banner.show { display: block; }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.mobile-actions { display: none; }
.badge { display: inline-flex; align-items: center; gap: 7px; background: #e7f7f1; color: #075b3f; border-radius: 999px; padding: 7px 11px; font-size: 13px; font-weight: 800; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
table { border-collapse: collapse; width: 100%; min-width: 680px; background: white; }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #eef4f8; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.notice { border-left: 4px solid var(--signal); background: #eef7fe; padding: 18px 20px; border-radius: 0 14px 14px 0; }
@media (max-width: 980px) {
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 82px; background: #0b1b2e; padding: 12px; border-radius: 16px; box-shadow: var(--shadow); }
  .nav.open { display: grid; }
  .menu-button { display: inline-flex; }
  .hero-grid, .problem-grid, .content-grid, .band { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 36px; height: 36px; }
  .brand span { font-size: 15px; }
  .brand small { font-size: 10px; }
  .hero { padding: 64px 0 50px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: 44px; }
  .hero-actions .btn, .button-row .btn { width: 100%; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 66px 0; }
  .grid-2, .grid-3, .grid-4, .steps, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .band { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1.25fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 10px; background: rgba(6,16,28,.96); border-top: 1px solid rgba(255,255,255,.1); gap: 8px; }
  .mobile-actions a { min-height: 44px; font-size: 14px; }
  .site-footer { padding-bottom: 118px; }
}

/* Event price and bandwidth calculator */
.calculator-hero { padding-bottom: 74px; }
.calculator-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; margin-bottom: 38px; }
.calculator-intro p:last-child { color: var(--muted); font-size: 17px; }
.calculator-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 26px; align-items: start; }
.calculator-controls { display: grid; gap: 22px; }
.calculator-panel { background: white; border: 1px solid var(--line); border-radius: 26px; padding: 30px; box-shadow: 0 12px 34px rgba(7,17,31,.05); }
.calculator-panel-head { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.calculator-panel-head h2 { font-size: 30px; margin-bottom: 6px; }
.calculator-panel-head p { margin: 0; color: var(--muted); }
.calculator-number { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; border-radius: 14px; background: var(--ink); color: white; font-weight: 900; }
.range-field { padding: 18px 0; border-bottom: 1px solid #e7edf3; }
.range-field:last-child { border-bottom: 0; }
.range-label { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 12px; }
.range-label label { font-weight: 800; }
.range-label output { font-weight: 900; color: var(--brand-dark); text-align: right; }
.range-help { color: var(--muted); font-size: 13px; margin-top: 8px; }
.range-scale { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-top: 5px; }
input[type="range"] { appearance: none; -webkit-appearance: none; height: 8px; padding: 0; border: 0; border-radius: 999px; background: linear-gradient(90deg, #cfeee3, #a9d9f8); box-shadow: none; }
input[type="range"]:focus { box-shadow: 0 0 0 4px rgba(8,183,124,.12); }
input[type="range"]::-webkit-slider-thumb { appearance: none; -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; border: 4px solid white; background: var(--brand-dark); box-shadow: 0 2px 10px rgba(7,17,31,.25); }
input[type="range"]::-moz-range-thumb { width: 17px; height: 17px; border-radius: 50%; border: 4px solid white; background: var(--brand-dark); box-shadow: 0 2px 10px rgba(7,17,31,.25); }
.select-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
.bandwidth-note { margin-top: 22px; border-left: 4px solid var(--warning); background: #fff8e5; border-radius: 0 14px 14px 0; padding: 17px 18px; }
.bandwidth-note p { margin: 5px 0 0; color: #5e5134; }
.calculator-results { position: sticky; top: 102px; display: grid; gap: 18px; }
.result-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: 0 12px 34px rgba(7,17,31,.055); }
.result-card-primary { background: var(--ink); color: white; border-color: var(--ink); }
.result-card-primary p { color: #b9c8d7; }
.result-price { font-size: clamp(34px, 4vw, 50px); line-height: 1; letter-spacing: -.045em; font-weight: 950; margin: 10px 0 18px; }
.result-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 9px; }
.result-list li { position: relative; padding-left: 24px; color: #d9e5ef; font-size: 14px; }
.result-list li::before { content: "✓"; position: absolute; left: 0; color: #67e6ba; font-weight: 900; }
.result-small { font-size: 12px; margin-bottom: 0; }
.bandwidth-figures { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 0 22px; }
.bandwidth-figures div { background: var(--surface-2); border-radius: 16px; padding: 16px; }
.bandwidth-figures strong { display: block; font-size: 22px; line-height: 1.15; }
.bandwidth-figures span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-top: 5px; }
.human-summary { background: #eef7fe; border: 1px solid #d4eafa; border-radius: 15px; padding: 15px; color: #294963; font-size: 14px; }
.result-card-action { display: grid; gap: 11px; }
.result-card-action p { margin: 0 0 5px; color: var(--muted); }
.result-card-action .btn { width: 100%; }
.calculator-cap { margin-top: 28px; }
.calculator-cap a { font-weight: 850; }
.calculator-prefill { background: #eaf8f2; border: 1px solid #bfe9d8; border-radius: 15px; padding: 16px; margin-bottom: 20px; }
.calculator-prefill p { margin: 5px 0; color: #275746; }
.text-button { appearance: none; border: 0; background: transparent; padding: 0; color: var(--brand-dark); text-decoration: underline; font-weight: 800; }
.calculator-teaser-section { background: linear-gradient(140deg, #f5fbf8, #edf7fe); }
.calculator-teaser { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.calculator-teaser-card { background: var(--ink); color: white; border-radius: 26px; padding: 28px; box-shadow: var(--shadow); }
.calculator-teaser-card .badge { margin-bottom: 18px; }
.teaser-metric { display: grid; grid-template-columns: 110px 1fr; gap: 15px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.teaser-metric:last-child { border-bottom: 0; }
.teaser-metric strong { font-size: 20px; }
.teaser-metric span { color: #aabccd; }

@media (max-width: 1080px) {
  .calculator-layout { grid-template-columns: 1fr; }
  .calculator-results { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .result-card-action { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .calculator-intro, .calculator-teaser { grid-template-columns: 1fr; }
  .calculator-results { grid-template-columns: 1fr; }
  .result-card-action { grid-column: auto; }
  .calculator-panel { padding: 22px 18px; }
  .range-label { align-items: flex-start; }
  .select-grid { grid-template-columns: 1fr; }
  .bandwidth-figures { grid-template-columns: 1fr; }
  .teaser-metric { grid-template-columns: 92px 1fr; }
}
