:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --surface-dark: #0b1830;
  --text: #14213d;
  --muted: #60708b;
  --border: #dfe7f2;
  --brand: #1769e0;
  --brand-dark: #0d4fae;
  --brand-soft: #e8f1ff;
  --cyan: #08a6c9;
  --success: #0d9f6e;
  --danger: #d92d4c;
  --shadow-sm: 0 8px 22px rgba(15, 36, 72, .06);
  --shadow-md: 0 18px 50px rgba(15, 36, 72, .10);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(23, 105, 224, .07), transparent 30rem),
    linear-gradient(180deg, #fbfcff 0, var(--bg) 42rem, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
::selection { background: #cfe1ff; color: #0b397a; }
:focus-visible { outline: 3px solid rgba(23, 105, 224, .28); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: rgba(235, 242, 252, .72); border-block: 1px solid var(--border); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 999px; background: var(--brand); }
.section-title { margin: 12px 0 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.04em; }
.section-copy { max-width: 680px; margin: 18px 0 0; color: var(--muted); line-height: 1.8; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-head.center { display: block; }
.section-head.center .section-copy { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(214, 225, 240, .85);
  backdrop-filter: blur(18px);
}
.navbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: auto; height: 42px; object-fit: contain; }
.brand-copy { display: grid; gap: 1px; }
.brand-name { color: #0c1d3b; font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.brand-tag { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.desktop-nav { display: flex; align-items: center; gap: 3px; }
.nav-link { position: relative; padding: 11px 12px; border-radius: 12px; color: #4f607b; font-size: 13px; font-weight: 700; transition: .2s ease; }
.nav-link:hover { color: var(--brand-dark); background: var(--brand-soft); }
.nav-link.active { color: var(--brand-dark); }
.nav-link.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--brand); border-radius: 99px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); color: var(--text);
  align-items: center; justify-content: center;
}
.mobile-toggle svg { width: 22px; height: 22px; }
.mobile-nav { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 14px;
  font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 10px 24px rgba(23, 105, 224, .24); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 14px 32px rgba(23, 105, 224, .28); }
.btn-secondary { color: var(--brand-dark); background: var(--surface); border-color: var(--border); }
.btn-secondary:hover { border-color: #b7c8df; background: #fafdff; }
.btn-dark { color: #fff; background: #112547; }
.btn-dark:hover { background: #091833; }
.btn-block { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 92px 0 80px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(rgba(15, 70, 150, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 70, 150, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1; width: 720px; height: 720px; border-radius: 50%;
  right: -390px; top: -420px; background: radial-gradient(circle, rgba(23, 105, 224, .17), rgba(8, 166, 201, .06) 46%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); align-items: center; gap: 64px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid #cfe0f7; border-radius: 999px; background: rgba(255, 255, 255, .78); color: #36506f; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); }
.status-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--success); }
.status-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(13, 159, 110, .35); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(.75); opacity: .8; } 50% { transform: scale(1.2); opacity: .2; } }
.hero h1 { max-width: 760px; margin: 22px 0 0; font-size: clamp(43px, 6.2vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.hero h1 span { color: var(--brand); }
.hero-copy { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #52647e; font-size: 12px; font-weight: 700; }
.hero-note { display: flex; align-items: center; gap: 7px; }
.hero-note svg { width: 16px; height: 16px; color: var(--success); }

.network-card {
  position: relative; min-height: 430px; border: 1px solid #d6e3f3; border-radius: 34px; overflow: hidden;
  background: linear-gradient(145deg, #fff, #edf4ff); box-shadow: var(--shadow-md);
}
.network-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(8, 166, 201, .18), transparent 28rem); }
.network-top { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 24px 26px 0; }
.network-label { font-size: 13px; font-weight: 800; }
.network-live { display: inline-flex; gap: 7px; align-items: center; color: var(--success); font-size: 11px; font-weight: 800; }
.network-visual { position: absolute; inset: 68px 24px 86px; }
.line { position: absolute; height: 2px; background: linear-gradient(90deg, rgba(23,105,224,.15), rgba(23,105,224,.65), rgba(8,166,201,.25)); transform-origin: left; }
.line.l1 { left: 50%; top: 47%; width: 31%; transform: rotate(-35deg); }
.line.l2 { left: 26%; top: 29%; width: 29%; transform: rotate(33deg); }
.line.l3 { left: 50%; top: 48%; width: 30%; transform: rotate(35deg); }
.line.l4 { left: 27%; top: 68%; width: 29%; transform: rotate(-34deg); }
.node { position: absolute; display: grid; place-items: center; border-radius: 50%; box-shadow: 0 13px 25px rgba(23,105,224,.17); }
.node::after { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(23,105,224,.18); border-radius: 50%; }
.node.core { left: calc(50% - 34px); top: calc(49% - 34px); width: 68px; height: 68px; color: #fff; background: linear-gradient(145deg, var(--brand), var(--cyan)); }
.node.edge { width: 46px; height: 46px; color: var(--brand); background: #fff; border: 1px solid #cfe0f6; }
.node.edge svg { width: 21px; height: 21px; }
.node.n1 { left: 13%; top: 17%; }
.node.n2 { right: 10%; top: 15%; }
.node.n3 { left: 13%; bottom: 10%; }
.node.n4 { right: 10%; bottom: 11%; }
.network-stats { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.network-stat { padding: 15px; border: 1px solid rgba(207,224,247,.9); border-radius: 16px; background: rgba(255,255,255,.82); backdrop-filter: blur(10px); }
.network-stat strong { display: block; font-size: 16px; }
.network-stat span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; font-weight: 700; }

.stat-strip { margin-top: 14px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.stat-item { padding: 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: 0; }
.stat-item strong { display: block; font-size: 21px; letter-spacing: -.025em; }
.stat-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-pad { padding: 30px; }
.card:hover.card-lift { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cad8eb; }
.card-lift { transition: .25s ease; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--brand-soft); color: var(--brand); }
.icon-box svg { width: 23px; height: 23px; }
.card h3 { margin: 20px 0 0; font-size: 19px; letter-spacing: -.02em; }
.card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; color: var(--brand-dark); font-size: 13px; font-weight: 800; }
.card-link svg { width: 16px; height: 16px; transition: .2s; }
.card-link:hover svg { transform: translateX(4px); }

.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.about-visual { position: relative; min-height: 490px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(145deg, #0b1b36, #144b8f); box-shadow: var(--shadow-md); }
.about-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(38,158,255,.5), transparent 18rem); }
.fiber-wave { position: absolute; inset: 0; overflow: hidden; }
.fiber-wave span { position: absolute; left: -20%; width: 140%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), rgba(36,197,255,.7), transparent); transform: rotate(-18deg); opacity: .8; }
.fiber-wave span:nth-child(1) { top: 29%; }
.fiber-wave span:nth-child(2) { top: 45%; transform: rotate(-8deg); }
.fiber-wave span:nth-child(3) { top: 62%; transform: rotate(8deg); }
.fiber-wave span:nth-child(4) { top: 75%; transform: rotate(18deg); }
.visual-panel { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(7,22,48,.62); color: #fff; backdrop-filter: blur(14px); }
.visual-panel small { color: #bcd4f3; font-weight: 700; }
.visual-panel strong { display: block; margin-top: 7px; font-size: 23px; }
.about-copy h2 { margin: 14px 0 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.14; letter-spacing: -.045em; }
.about-copy > p { margin: 20px 0 0; color: var(--muted); line-height: 1.85; }
.check-list { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #3f526e; font-size: 14px; line-height: 1.6; }
.check-list svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; color: var(--success); }

.value-card { padding: 28px; }
.value-number { color: #afbdd0; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.value-card h3 { margin-top: 26px; }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px; }
.step::before { counter-increment: step; content: "0" counter(step); display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--surface-soft); color: var(--brand-dark); font-size: 12px; font-weight: 900; }
.step h3 { margin-top: 22px; font-size: 17px; }
.step p { margin-top: 10px; }

.faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 17px; background: var(--surface); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 23px; border: 0; background: transparent; color: var(--text); text-align: left; font-weight: 800; }
.faq-question svg { width: 18px; height: 18px; color: var(--brand); transition: transform .2s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 23px 22px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

.cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 54px; color: #fff; background: linear-gradient(135deg, #0d3979, #1769e0 54%, #08a6c9); box-shadow: var(--shadow-md); }
.cta::after { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; right: -130px; top: -220px; box-shadow: 0 0 0 48px rgba(255,255,255,.05), 0 0 0 98px rgba(255,255,255,.03); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta h2 { margin: 0; max-width: 690px; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; letter-spacing: -.04em; }
.cta p { margin: 14px 0 0; max-width: 650px; color: rgba(255,255,255,.78); line-height: 1.7; }
.cta .btn-secondary { border-color: rgba(255,255,255,.34); background: #fff; }

.page-hero { position: relative; overflow: hidden; padding: 74px 0 66px; background: linear-gradient(180deg, rgba(230,240,255,.7), rgba(247,249,252,0)); border-bottom: 1px solid var(--border); }
.page-hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -230px; top: -400px; border-radius: 50%; background: radial-gradient(circle, rgba(23,105,224,.22), transparent 66%); }
.breadcrumb { color: #6a7b94; font-size: 12px; font-weight: 700; }
.breadcrumb a { color: var(--brand-dark); }
.page-hero h1 { margin: 16px 0 0; max-width: 780px; font-size: clamp(39px, 5.3vw, 62px); line-height: 1.07; letter-spacing: -.05em; }
.page-hero p { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }

.service-card { padding: 31px; }
.service-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 21px; }
.tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: #4d607c; background: #f1f5fb; border: 1px solid #e2eaf5; font-size: 10px; font-weight: 800; }

.pricing-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.price-card { position: relative; padding: 25px 22px; display: flex; flex-direction: column; min-height: 370px; }
.price-card.featured { border-color: rgba(23,105,224,.48); background: linear-gradient(180deg, #eff6ff, #fff 55%); box-shadow: 0 18px 46px rgba(23,105,224,.14); }
.price-badge { display: inline-flex; align-self: flex-start; margin-bottom: 14px; padding: 6px 9px; border-radius: 999px; color: #fff; background: var(--brand); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-name { color: var(--muted); font-size: 12px; font-weight: 800; }
.price-speed { margin-top: 10px; font-size: 24px; font-weight: 900; letter-spacing: -.04em; }
.price-desc { min-height: 54px; margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.price { margin-top: 24px; font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.price small { color: var(--muted); font-size: 11px; font-weight: 600; }
.price-card .btn { margin-top: auto; }
.notice { padding: 17px 20px; border: 1px solid #cfe0f7; border-radius: 16px; color: #49607c; background: #f1f7ff; font-size: 12px; line-height: 1.7; }

.coverage-layout, .contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 28px; }
.coverage-card { padding: 30px; }
.area-list { display: grid; gap: 14px; margin-top: 24px; }
.area-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: #fafcff; }
.area-item strong { font-size: 14px; }
.area-item span { color: var(--muted); font-size: 12px; }
.area-state { padding: 6px 9px; border-radius: 999px; color: var(--success); background: #e9f8f2; font-size: 10px !important; font-weight: 900; white-space: nowrap; }
.map-card { overflow: hidden; }
.map-card iframe { width: 100%; min-height: 390px; border: 0; display: block; }
.map-head { padding: 22px 24px; border-bottom: 1px solid var(--border); }
.map-head strong { font-size: 15px; }
.map-head p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }

.quote-card { padding: 29px; }
.quote-stars { color: #f59e0b; letter-spacing: .12em; font-size: 12px; }
.quote-type { margin-top: 16px; color: var(--brand-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.quote-card blockquote { margin: 15px 0 0; font-size: 16px; font-weight: 700; line-height: 1.65; letter-spacing: -.01em; }
.quote-card p { font-size: 13px; }
.quote-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); font-size: 12px; font-weight: 900; }
.quote-person strong { display: block; font-size: 12px; }
.quote-person span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }

.team-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.team-card { padding: 26px; }
.team-profile { display: flex; align-items: center; gap: 15px; }
.team-photo { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; background: var(--brand-soft); border: 1px solid #d6e4f7; }
.team-card h3 { margin: 0; font-size: 17px; }
.team-role { margin-top: 5px; color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.team-bio { min-height: 78px; }
.team-links { display: flex; gap: 14px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--border); }
.team-links a { color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.team-empty { grid-column: 1/-1; padding: 30px; text-align: center; color: var(--muted); }

.contact-card { padding: 31px; }
.contact-list { display: grid; gap: 23px; margin-top: 26px; }
.contact-item { display: flex; gap: 15px; }
.contact-item .icon-box { flex: 0 0 auto; width: 43px; height: 43px; border-radius: 13px; }
.contact-item strong { display: block; font-size: 13px; }
.contact-item a, .contact-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.contact-item a:hover { color: var(--brand); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { color: #425570; font-size: 11px; font-weight: 800; }
.form-control { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d8e2ef; border-radius: 13px; color: var(--text); background: #fbfdff; transition: .2s; }
textarea.form-control { min-height: 132px; resize: vertical; }
.form-control::placeholder { color: #9ba9bc; }
.form-control:focus { outline: none; border-color: #83b1ed; box-shadow: 0 0 0 4px rgba(23,105,224,.10); background: #fff; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.form-banner { margin-bottom: 24px; padding: 15px 18px; border-radius: 14px; font-size: 12px; line-height: 1.6; }
.form-banner.success { color: #08724f; border: 1px solid #a9e3ce; background: #edfbf5; }
.form-banner.error { color: #a8243e; border: 1px solid #f0b8c3; background: #fff1f3; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; }

.legal-card { max-width: 850px; margin: 0 auto; padding: 42px; }
.legal-card h2 { margin: 34px 0 0; font-size: 20px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 14px; line-height: 1.85; }
.legal-card ul { padding-left: 20px; }
.legal-updated { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border); color: #8290a4; font-size: 11px; }

.site-footer { margin-top: 20px; color: #b9c6d8; background: var(--surface-dark); }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 70px; padding: 64px 0 48px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: #91a5c0; }
.footer-brand p { max-width: 480px; margin: 20px 0 0; color: #9dafc5; font-size: 13px; line-height: 1.8; }
.footer-title { color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.footer-links { display: grid; gap: 12px; margin-top: 20px; }
.footer-links a, .footer-contact div { color: #9dafc5; font-size: 12px; line-height: 1.7; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: grid; gap: 12px; margin-top: 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); color: #8093ad; font-size: 10px; }
.footer-bottom-links { display: flex; align-items: center; gap: 20px; }
.footer-bottom-links a:hover { color: #fff; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .nav-actions .btn { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-nav { position: fixed; inset: 76px 0 auto; display: grid; gap: 5px; padding: 18px 20px 24px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s ease; }
  .mobile-nav.open { transform: none; opacity: 1; visibility: visible; }
  .mobile-nav .nav-link { padding: 13px 14px; }
  .mobile-nav .btn { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy-wrap { max-width: 800px; }
  .network-card { width: min(100%, 660px); }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .price-card { min-height: 340px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .grid-4, .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-layout, .coverage-layout, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { min-height: 410px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.3fr 1fr; gap: 45px; }
  .footer-main > :last-child { grid-column: 1/-1; }
  .team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { height: 36px; }
  .brand-copy { display: grid; }
  .brand-name { font-size: 11px; }
  .brand-tag { display: none; }
  .mobile-nav { top: 68px; }
  .hero { padding: 64px 0 54px; }
  .hero h1 { font-size: clamp(39px, 13vw, 56px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .network-card { min-height: 380px; border-radius: 25px; }
  .network-visual { inset-inline: 13px; }
  .network-stats { grid-template-columns: 1fr; }
  .network-stat:nth-child(2), .network-stat:nth-child(3) { display: none; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .section-head .btn { width: 100%; }
  .grid-2, .grid-3, .grid-4, .steps, .pricing-grid, .team-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 350px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: 0; }
  .page-hero { padding: 55px 0 50px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; }
  .cta { padding: 36px 26px; }
  .cta .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .legal-card { padding: 28px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding: 50px 0 38px; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
