:root {
    --navy-950: #071431;
    --navy-900: #0b1f4f;
    --navy-800: #123276;
    --blue-700: #1949b5;
    --blue-600: #2566dc;
    --blue-500: #3f88e8;
    --blue-200: #cfe3ff;
    --blue-100: #eaf3ff;
    --teal-500: #53c7b1;
    --yellow-500: #ffc929;
    --yellow-300: #ffda69;
    --white: #ffffff;
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --text: #0c1731;
    --text-soft: #30415f;
    --muted: #6e7f9d;
    --line: #dbe5f2;
    --line-strong: #c7d6e9;
    --success: #16835b;
    --success-bg: #e9f8f1;
    --danger: #b23b3b;
    --danger-bg: #fff0f0;
    --warning: #936900;
    --warning-bg: #fff7dd;
    --shadow-sm: 0 10px 30px rgba(14, 39, 86, .08);
    --shadow: 0 20px 60px rgba(12, 35, 83, .12);
    --shadow-lg: 0 35px 100px rgba(8, 27, 70, .20);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.container { width: min(1200px, calc(100% - 36px)); margin-inline: auto; }

.utility-bar {
    background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
    color: #dce8ff;
    font-size: 12px;
}
.utility-row { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-links { display: flex; align-items: center; gap: 24px; }
.utility-links a { transition: color .2s; }
.utility-links a:first-child, .utility-links a:hover { color: #fff; font-weight: 800; }
.network-status { display: inline-flex; align-items: center; gap: 7px; }
.network-status i { width: 8px; height: 8px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 0 4px rgba(57,217,138,.14); }

.promo-strip {
    background: linear-gradient(90deg, #1854ca, #2879ea 56%, #3ca5ed);
    color: #fff;
    transition: .25s ease;
}
.promo-strip.hidden { max-height: 0; overflow: hidden; opacity: 0; }
.promo-strip-row { min-height: 56px; display: flex; align-items: center; gap: 18px; }
.promo-message { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; }
.promo-button { margin-left: auto; min-width: 120px; text-align: center; padding: 10px 17px; border-radius: 999px; background: #fff; color: var(--navy-800); font-size: 13px; font-weight: 900; }
.promo-close { border: 0; background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; padding: 8px; border-radius: 50%; }
.promo-close:hover { background: rgba(255,255,255,.15); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(209,222,239,.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(13,35,79,.04);
}
.header-row { min-height: 86px; display: flex; align-items: center; gap: 24px; position: relative; }
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 195px; height: 64px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.main-nav a { position: relative; color: var(--text-soft); font-weight: 800; font-size: 14px; padding: 31px 0; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 3px; border-radius: 999px; background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--navy-800); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav .nav-support { color: var(--blue-700); }
.header-search { width: 190px; height: 43px; border: 1px solid var(--line-strong); border-radius: 999px; display: flex; align-items: center; gap: 8px; padding: 0 13px; background: #fff; }
.header-search svg { width: 18px; height: 18px; color: var(--navy-800); }
.header-search input { border: 0; outline: 0; width: 100%; min-width: 0; background: transparent; color: var(--text); font-size: 13px; }
.nav-toggle { display: none; align-items: center; gap: 8px; border: 0; background: var(--navy-800); color: #fff; padding: 11px 14px; border-radius: 12px; font-weight: 800; cursor: pointer; }

.flash { margin-top: 18px; border-radius: 15px; padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; border: 1px solid; }
.flash.success { color: var(--success); background: var(--success-bg); border-color: #c8ebdb; }
.flash.error { color: var(--danger); background: var(--danger-bg); border-color: #f2caca; }

.hero-section {
    background:
        radial-gradient(circle at 55% 18%, rgba(75,135,255,.18), transparent 31%),
        linear-gradient(115deg, #f7faff 0%, #edf4ff 50%, #f8fbff 100%);
    overflow: hidden;
    position: relative;
}
.hero-section::before { content: ""; position: absolute; inset: auto -10% -55% 30%; height: 80%; background: radial-gradient(circle, rgba(84,154,255,.20), transparent 66%); }
.hero-grid { min-height: 640px; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 40px; padding: 54px 0 70px; position: relative; z-index: 1; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-700); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker svg { width: 21px; height: 21px; }
.hero-copy h1 { max-width: 570px; margin: 20px 0; font-size: clamp(46px, 6vw, 76px); line-height: .97; letter-spacing: -.055em; color: var(--navy-950); }
.hero-copy > p { max-width: 590px; margin: 0; color: var(--text-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; margin-top: 28px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points svg { width: 17px; height: 17px; color: var(--blue-600); }
.hero-visual { min-height: 505px; position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy-900); isolation: isolate; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,24,61,.05), transparent 45%, rgba(15,47,113,.10)); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; min-height: 505px; object-fit: cover; object-position: center 46%; }
.hero-feature-card { position: absolute; right: 22px; top: 22px; width: min(245px, calc(100% - 44px)); padding: 17px; border-radius: 20px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.88); backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(4,18,51,.22); display: grid; gap: 13px; z-index: 3; }
.hero-feature-card > div { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 10px; }
.hero-feature-card svg { width: 40px; height: 40px; padding: 9px; border-radius: 12px; color: var(--blue-700); background: var(--blue-100); }
.hero-feature-card span { display: grid; gap: 2px; }
.hero-feature-card b { font-size: 13px; color: var(--navy-900); }
.hero-feature-card small { color: var(--muted); font-size: 11px; }
.fiber-wave { position: absolute; height: 8px; border-radius: 999px; background: linear-gradient(90deg, transparent, #48a7ff, #d9f2ff, transparent); box-shadow: 0 0 18px #49a8ff, 0 0 35px rgba(73,168,255,.8); transform: rotate(-14deg); opacity: .85; z-index: 2; }
.wave-one { width: 58%; left: 9%; bottom: 27%; }
.wave-two { width: 43%; left: 20%; bottom: 21%; height: 4px; opacity: .65; }

.button { min-height: 45px; padding: 12px 20px; border-radius: 12px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 900; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-1px); }
.button svg { width: 19px; height: 19px; }
.button-primary { background: linear-gradient(135deg, var(--navy-800), var(--blue-700)); color: #fff; box-shadow: 0 14px 30px rgba(18,50,118,.23); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(18,50,118,.30); }
.button-outline { color: var(--navy-800); background: #fff; border-color: var(--blue-700); }
.button-secondary { background: var(--blue-100); color: var(--navy-800); border-color: #c8dcf8; }
.button-light { background: #fff; color: var(--navy-900); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.40); background: rgba(255,255,255,.06); }
.button-package { width: 100%; background: var(--navy-800); color: #fff; }

.quick-section { margin-top: -38px; position: relative; z-index: 5; }
.quick-grid { background: #fff; border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden; }
.quick-grid a { min-height: 112px; display: grid; place-items: center; align-content: center; gap: 11px; border-right: 1px solid var(--line); color: var(--text-soft); font-size: 13px; font-weight: 800; transition: background .2s, color .2s; }
.quick-grid a:last-child { border-right: 0; }
.quick-grid a:hover { background: var(--blue-100); color: var(--blue-700); }
.quick-grid i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #f0f6ff, #dfeeff); color: var(--blue-700); font-style: normal; }
.quick-grid svg { width: 25px; height: 25px; }

.section { padding: 90px 0; }
.section-label { display: inline-block; color: var(--blue-700); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 36px; }
.section-heading h2, .center-heading h2, .pre-footer h2, .experience-grid h2, .form-aside h2, .form-title h2, .about-grid h2 { margin: 9px 0 0; font-size: clamp(34px, 4.5vw, 54px); line-height: 1.04; letter-spacing: -.045em; color: var(--navy-950); }
.section-heading p, .center-heading p, .experience-grid p, .about-grid p { max-width: 630px; color: var(--muted); line-height: 1.75; }
.activation-card { flex: 0 0 auto; min-width: 245px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.activation-card > svg { width: 46px; height: 46px; padding: 11px; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); }
.activation-card div { display: grid; }
.activation-card small, .activation-card span { font-size: 11px; color: var(--muted); }
.activation-card b { font-size: 20px; color: var(--navy-900); }

.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.package-card { position: relative; padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package-card.featured { border: 2px solid var(--blue-600); padding: 23px; }
.popular-label { position: absolute; top: 0; left: 0; right: 0; padding: 7px; background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); color: #fff; font-size: 11px; text-align: center; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.package-card.featured .package-top { margin-top: 18px; }
.package-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.package-top > div { display: grid; }
.package-top span { color: var(--navy-800); font-size: 14px; font-weight: 900; }
.package-top b { font-size: 42px; line-height: 1; margin-top: 7px; letter-spacing: -.045em; color: var(--navy-950); }
.package-top b small { font-size: 15px; letter-spacing: 0; }
.package-top > i { width: 45px; height: 45px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-style: normal; }
.package-top svg { width: 23px; height: 23px; }
.package-card ul { list-style: none; padding: 20px 0; margin: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; min-height: 175px; }
.package-card li { display: flex; align-items: flex-start; gap: 8px; color: var(--text-soft); font-size: 13px; line-height: 1.55; }
.package-card li svg { width: 17px; height: 17px; color: var(--blue-600); margin-top: 2px; }
.package-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 17px; }
.package-price b { font-size: 24px; color: var(--blue-700); }
.package-price small { color: var(--muted); }
.activation-wide { display: flex; gap: 15px; align-items: center; padding: 18px; margin-bottom: 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.activation-wide > svg { width: 50px; height: 50px; padding: 12px; border-radius: 15px; background: var(--blue-100); color: var(--blue-700); }
.activation-wide div { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.activation-wide span { color: var(--muted); font-weight: 700; }
.activation-wide b { color: var(--navy-900); font-size: 24px; }
.activation-wide small { color: var(--muted); }

.coverage-highlight { padding-top: 20px; }
.coverage-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 38px; align-items: center; padding: 32px; border-radius: 28px; background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 58%, #e6f0ff 100%); border: 1px solid #d4e3f7; box-shadow: var(--shadow-sm); }
.coverage-intro h2 { margin: 8px 0; font-size: 33px; letter-spacing: -.035em; }
.coverage-intro p { margin: 0 0 19px; color: var(--muted); line-height: 1.65; }
.coverage-steps { display: flex; align-items: stretch; gap: 12px; }
.coverage-step { flex: 1; min-width: 0; display: flex; align-items: center; gap: 13px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.coverage-step i { width: 48px; height: 48px; border-radius: 14px; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-style: normal; flex: 0 0 auto; }
.coverage-step svg { width: 25px; height: 25px; }
.coverage-step span { min-width: 0; display: grid; gap: 5px; }
.coverage-step small { color: var(--muted); font-size: 11px; }
.coverage-step b { color: var(--navy-900); font-size: 13px; overflow-wrap: anywhere; }
.coverage-arrow { display: grid; place-items: center; color: var(--blue-700); }
.coverage-arrow svg { width: 20px; height: 20px; }

.center-heading { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.benefit-grid article { padding: 22px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 50px 1fr; gap: 13px; }
.benefit-grid i { width: 50px; height: 50px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-style: normal; }
.benefit-grid svg { width: 25px; height: 25px; }
.benefit-grid h3 { margin: 1px 0 6px; font-size: 15px; color: var(--navy-900); }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.experience-section { background: #fff; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.experience-image { position: relative; }
.experience-image img { width: 100%; min-height: 480px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.experience-image span { position: absolute; bottom: 18px; left: 18px; padding: 11px 15px; border-radius: 999px; color: #fff; background: rgba(7,20,49,.82); backdrop-filter: blur(10px); font-size: 12px; font-weight: 900; }
.process-list { display: grid; gap: 14px; margin-top: 26px; }
.process-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: center; padding: 15px; border-radius: 16px; background: var(--surface-soft); border: 1px solid var(--line); }
.process-list i { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-800); color: #fff; font-style: normal; font-weight: 900; }
.process-list span { display: grid; gap: 4px; }
.process-list small { color: var(--muted); }

.page-banner { background: linear-gradient(135deg, #edf5ff, #f9fbff 58%, #e6f0ff); padding: 72px 0; border-bottom: 1px solid var(--line); }
.page-banner h1 { max-width: 850px; margin: 10px 0 14px; font-size: clamp(40px, 6vw, 66px); line-height: 1; letter-spacing: -.05em; color: var(--navy-950); }
.page-banner p { max-width: 750px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

.coverage-search-card { padding: 25px; border-radius: 25px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.search-field { width: 100%; height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--surface-soft); }
.search-field svg { color: var(--blue-700); }
.search-field input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; }
.coverage-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 20px; }
.coverage-result { padding: 20px; border-radius: 19px; border: 1px solid var(--line); background: linear-gradient(180deg, #fff, #f8fbff); }
.coverage-status { display: inline-flex; align-items: center; min-height: 27px; padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.coverage-status.active, .coverage-status.installed, .coverage-status.resolved, .coverage-status.sent { color: var(--success); background: var(--success-bg); }
.coverage-status.survey, .coverage-status.scheduled, .coverage-status.process, .coverage-status.queued { color: var(--warning); background: var(--warning-bg); }
.coverage-status.new, .coverage-status.open, .coverage-status.contacted { color: var(--blue-700); background: var(--blue-100); }
.coverage-status.rejected, .coverage-status.failed, .coverage-status.closed { color: var(--danger); background: var(--danger-bg); }
.coverage-result h3 { margin: 12px 0 14px; font-size: 22px; color: var(--navy-900); }
.coverage-result dl { margin: 0; display: grid; gap: 9px; }
.coverage-result dl div { display: grid; grid-template-columns: 92px 1fr; gap: 10px; padding-bottom: 9px; border-bottom: 1px dashed var(--line); }
.coverage-result dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.coverage-result dd { margin: 0; color: var(--text-soft); font-size: 13px; font-weight: 800; }
.coverage-result p { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.form-section { background: linear-gradient(180deg, #f4f7fb, #edf3fa); }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.form-layout.compact { max-width: 1100px; }
.form-aside { padding: 44px; color: #fff; background: linear-gradient(145deg, var(--navy-950), var(--navy-800) 60%, var(--blue-700)); }
.form-aside .section-label { color: #8fc1ff; }
.form-aside h2 { color: #fff; font-size: 42px; }
.form-aside > p { color: #d6e4ff; line-height: 1.75; }
.form-aside ol { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 15px; }
.form-aside li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; }
.form-aside li > i { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); font-style: normal; font-weight: 900; }
.form-aside li span { display: grid; gap: 3px; }
.form-aside li small { color: #b9caeb; }
.form-card { padding: 40px; background: #fff; }
.form-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 25px; }
.form-title h2 { font-size: 36px; }
.required-note { font-size: 12px; color: var(--muted); }
.required-note i, label > span > i { color: #d13d3d; font-style: normal; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid > label:not(.check-field) { display: grid; gap: 8px; color: var(--text-soft); font-size: 13px; font-weight: 800; }
.form-grid input:not([type="checkbox"]), .form-grid select, .form-grid textarea { width: 100%; min-height: 46px; padding: 12px 13px; border: 1px solid var(--line-strong); border-radius: 11px; background: #fff; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-grid input[type="file"] { padding: 9px 10px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(63,136,232,.12); }
.form-grid textarea { min-height: 112px; resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }
.geo-row { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.geo-row small { color: var(--muted); }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; }
.check-field { position: relative; display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 10px; cursor: pointer; color: var(--text-soft); font-size: 13px; font-weight: 700; line-height: 1.55; }
.check-field input { position: absolute; opacity: 0; pointer-events: none; }
.check-box { width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid var(--line-strong); background: #fff; color: #fff; display: grid; place-items: center; transition: .2s; }
.check-box svg { width: 15px; height: 15px; opacity: 0; transform: scale(.7); transition: .2s; }
.check-field input:checked + .check-box { background: var(--blue-700); border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(37,102,220,.11); }
.check-field input:checked + .check-box svg { opacity: 1; transform: scale(1); }
.check-field input:focus-visible + .check-box { outline: 3px solid rgba(63,136,232,.25); }

.track-wrap { max-width: 900px; }
.track-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.track-form label { display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 11px; }
.track-form label svg { color: var(--blue-700); }
.track-form input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; }
.track-result { margin-top: 20px; padding: 28px; background: #fff; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.track-result h2 { margin: 14px 0 22px; font-size: 34px; }
.track-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.track-meta > div { padding: 16px; border-radius: 14px; background: var(--surface-soft); border: 1px solid var(--line); display: grid; gap: 6px; }
.track-meta small { color: var(--muted); }
.track-result.not-found { text-align: center; }
.track-result.not-found > svg { width: 52px; height: 52px; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: start; }
.about-photo img { width: 100%; min-height: 520px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.about-grid .benefit-grid { grid-template-columns: 1fr; margin-top: 28px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.article-card > img { width: 100%; height: 220px; object-fit: cover; }
.article-card > div { padding: 21px; }
.article-card h3 { margin: 10px 0; color: var(--navy-900); font-size: 21px; }
.article-card p { color: var(--muted); line-height: 1.7; }
.article-card a { color: var(--blue-700); display: inline-flex; align-items: center; gap: 5px; font-weight: 900; }
.article-card a svg { width: 16px; height: 16px; }
.article-detail, .legal-card { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); color: var(--text-soft); line-height: 1.9; }
.legal-card h2 { color: var(--navy-900); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; }
.faq-list { max-width: 930px; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item button { width: 100%; min-height: 66px; border: 0; background: transparent; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left; font-weight: 900; cursor: pointer; }
.faq-item button i { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-700); font-style: normal; font-size: 18px; transition: transform .2s; }
.faq-item > div { display: none; padding: 0 20px 20px; color: var(--muted); line-height: 1.75; }
.faq-item.open > div { display: block; }
.faq-item.open button i { transform: rotate(45deg); }
.contact-list { display: grid; gap: 13px; margin-top: 28px; }
.contact-list p { margin: 0; display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; }
.contact-list > p > svg { width: 42px; height: 42px; padding: 10px; border-radius: 13px; background: rgba(255,255,255,.12); }
.contact-list span { display: grid; }
.contact-list small { color: #b9caeb; }

.pre-footer { background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 58%, var(--blue-700)); color: #fff; padding: 62px 0; }
.pre-footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.pre-footer .section-label { color: #8fc1ff; }
.pre-footer h2 { color: #fff; font-size: 46px; max-width: 770px; }
.pre-footer p { color: #d5e2fb; max-width: 690px; line-height: 1.7; }
.pre-footer-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer { padding: 70px 0 25px; background: #06122e; color: #cbd8ef; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 35px; }
.footer-brand img { width: 210px; height: 78px; object-fit: contain; background: #fff; border-radius: 16px; padding: 9px 13px; }
.footer-brand p { max-width: 300px; color: #b8c8e5; line-height: 1.75; }
.footer-grid h3 { margin: 0 0 16px; color: #fff; font-size: 15px; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 10px 0; color: #cbd8ef; font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.social-row { display: flex; gap: 8px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.11); display: grid; place-items: center; font-size: 11px; font-weight: 900; }
.footer-contact p { margin: 11px 0; display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; font-size: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: #8fc1ff; }
.footer-bottom { margin-top: 42px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 20px; color: #91a3c6; font-size: 12px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 92px; z-index: 31; display: flex; align-items: center; gap: 9px; padding: 11px 15px 11px 11px; border-radius: 999px; background: #20b867; color: #fff; box-shadow: 0 16px 38px rgba(20,126,72,.32); font-size: 12px; font-weight: 900; }
.whatsapp-float svg { width: 31px; height: 31px; padding: 6px; border-radius: 50%; background: rgba(255,255,255,.16); }
.cookie-bar { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 35; width: min(940px, calc(100% - 36px)); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.97); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.cookie-bar.hidden { display: none; }
.cookie-bar > div { display: grid; gap: 3px; }
.cookie-bar b { font-size: 13px; }
.cookie-bar span { color: var(--muted); font-size: 11px; }
.cookie-bar > a { color: var(--blue-700); font-size: 12px; font-weight: 900; }
.cookie-bar button { border: 0; min-height: 39px; padding: 9px 17px; border-radius: 10px; background: var(--navy-800); color: #fff; font-weight: 900; cursor: pointer; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .main-nav { gap: 17px; }
    .header-search { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-panel { grid-template-columns: 1fr; }
    .benefit-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
    .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 14px; }
}

@media (max-width: 900px) {
    .utility-right { display: none; }
    .nav-toggle { display: inline-flex; margin-left: auto; }
    .main-nav { display: none; position: fixed; inset: 0; top: 86px; padding: 25px 22px 40px; background: rgba(255,255,255,.99); flex-direction: column; align-items: stretch; gap: 3px; overflow-y: auto; }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 15px; }
    .main-nav a::after { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-top: 16px; }
    .hero-visual { min-height: 440px; }
    .hero-visual > img { min-height: 440px; }
    .quick-grid { grid-template-columns: repeat(3, 1fr); }
    .quick-grid a:nth-child(3n) { border-right: 0; }
    .quick-grid a:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    .coverage-steps { flex-direction: column; }
    .coverage-arrow { transform: rotate(90deg); }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-grid, .form-layout, .about-grid { grid-template-columns: 1fr; }
    .form-aside { padding: 35px; }
    .pre-footer-grid { grid-template-columns: 1fr; }
    .pre-footer-actions { justify-content: flex-start; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-result-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { width: min(100% - 24px, 1200px); }
    .utility-row { justify-content: center; }
    .utility-links { gap: 18px; }
    .promo-strip-row { min-height: 66px; }
    .promo-message { font-size: 12px; line-height: 1.45; }
    .promo-button { display: none; }
    .promo-close { margin-left: auto; }
    .header-row { min-height: 74px; }
    .brand img { width: 155px; height: 56px; }
    .nav-toggle span { display: none; }
    .main-nav { top: 74px; }
    .hero-grid { min-height: auto; padding: 45px 0 70px; }
    .hero-copy h1 { font-size: 45px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .button { flex: 1 1 150px; }
    .hero-points { gap: 12px; }
    .hero-visual { min-height: 380px; border-radius: 24px; }
    .hero-visual > img { min-height: 380px; }
    .hero-feature-card { right: 14px; top: 14px; width: 210px; padding: 13px; }
    .hero-feature-card > div { grid-template-columns: 34px 1fr; }
    .hero-feature-card svg { width: 34px; height: 34px; padding: 8px; }
    .quick-section { margin-top: -25px; }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-grid a { min-height: 98px; }
    .quick-grid a:nth-child(3n) { border-right: 1px solid var(--line); }
    .quick-grid a:nth-child(2n) { border-right: 0; }
    .quick-grid a:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
    .section { padding: 66px 0; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .activation-card { width: 100%; }
    .package-grid, .benefit-grid, .coverage-result-grid, .article-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
    .package-card ul { min-height: auto; }
    .coverage-panel { padding: 23px; }
    .experience-image img { min-height: 360px; }
    .page-banner { padding: 55px 0; }
    .page-banner h1 { font-size: 43px; }
    .form-card { padding: 25px 20px; }
    .form-aside { padding: 30px 23px; }
    .form-aside h2 { font-size: 36px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: auto; }
    .form-title { align-items: flex-start; flex-direction: column; }
    .track-form { grid-template-columns: 1fr; }
    .track-meta { grid-template-columns: 1fr; }
    .pre-footer h2 { font-size: 38px; }
    .footer-bottom { flex-direction: column; }
    .cookie-bar { grid-template-columns: 1fr; gap: 10px; bottom: 10px; }
    .cookie-bar button { width: 100%; }
    .whatsapp-float { right: 14px; bottom: 170px; padding: 9px; }
    .whatsapp-float span { display: none; }
}

/* v4 coverage map, dedicated, legalitas, and secure tracking */
.coverage-map-home {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 32px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid #d5e2f4;
    border-radius: 30px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 48%, #eaf3ff 100%);
    box-shadow: var(--shadow);
}
.coverage-home-copy { padding: 18px 10px 18px 8px; }
.coverage-home-copy h2 { margin: 10px 0 13px; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.045em; }
.coverage-home-copy > p { margin: 0; color: var(--muted); line-height: 1.75; }
.coverage-home-map { position: relative; min-height: 390px; overflow: hidden; border-radius: 24px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.coverage-home-map img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.coverage-home-map > span { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 999px; background: rgba(8,31,79,.92); color: #fff; font-size: 12px; font-weight: 900; box-shadow: 0 12px 30px rgba(6,25,64,.25); }
.coverage-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.coverage-summary > div { display: grid; gap: 5px; min-width: 0; padding: 13px; border-radius: 14px; background: rgba(255,255,255,.76); border: 1px solid var(--line); }
.coverage-summary small { color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.coverage-summary b { color: var(--navy-900); font-size: 12px; overflow-wrap: anywhere; }
.district-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 11px; }
.district-chip-row span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 999px; background: #fff; color: var(--blue-700); border: 1px solid #d3e2f7; font-size: 11px; font-weight: 800; }
.district-chip-row svg { width: 15px; height: 15px; }
.dedicated-section { background: linear-gradient(135deg, #071431, #0d2d70 62%, #1651b8); color: #fff; }
.dedicated-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 46px; align-items: center; }
.dedicated-grid h2 { margin: 10px 0 14px; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.dedicated-grid > div:first-child > p { color: #d8e6ff; line-height: 1.8; margin: 0 0 24px; }
.dedicated-cards { display: grid; gap: 14px; }
.dedicated-cards article { display: grid; grid-template-columns: 58px 1fr; gap: 15px; align-items: start; padding: 22px; border-radius: 20px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); }
.dedicated-cards article > svg { width: 58px; height: 58px; padding: 14px; border-radius: 17px; color: #fff; background: rgba(255,255,255,.12); }
.dedicated-cards h3 { margin: 1px 0 6px; font-size: 20px; }
.dedicated-cards p { margin: 0; color: #cbdcff; line-height: 1.7; }
.legality-section { background: #fff; }
.legality-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: center; padding: 32px; border-radius: 28px; border: 1px solid var(--line); background: linear-gradient(145deg, #f8fbff, #edf4ff); box-shadow: var(--shadow-sm); }
.legality-panel h2 { margin: 10px 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.04; letter-spacing: -.04em; }
.legality-panel > div:first-child p { margin: 0; color: var(--muted); line-height: 1.75; }
.legality-list { display: grid; gap: 13px; }
.legality-list article { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.legality-list article > svg { width: 54px; height: 54px; padding: 13px; border-radius: 15px; color: var(--blue-700); background: var(--blue-100); }
.legality-list article div { display: grid; gap: 5px; }
.legality-list b { color: var(--navy-900); line-height: 1.45; }
.legality-list small { color: var(--muted); line-height: 1.55; }
.coverage-map-section { padding-bottom: 38px; }
.coverage-map-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.coverage-map-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 28px; }
.coverage-map-head h2 { margin: 8px 0; font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -.045em; }
.coverage-map-head p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.75; }
.coverage-map-shell > img { width: 100%; max-height: 820px; object-fit: contain; background: #fff; border-top: 1px solid var(--line); }
.coverage-area-title { margin: 44px 0 20px; }
.coverage-area-title h2 { margin: 8px 0 0; font-size: 38px; }
.coverage-request-section { padding-top: 42px; scroll-margin-top: 120px; }
.tracking-security-note { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; padding: 15px 17px; border-radius: 15px; color: var(--navy-900); background: var(--blue-100); border: 1px solid #cadefa; }
.tracking-security-note > svg { width: 40px; height: 40px; padding: 9px; border-radius: 12px; color: var(--blue-700); background: #fff; }
.tracking-security-note div { display: grid; gap: 3px; }
.tracking-security-note span { color: var(--muted); font-size: 12px; }
.track-form.secure { grid-template-columns: 1fr 1fr auto; }
.track-meta .wide { grid-column: 1 / -1; }
.coverage-status.pending, .coverage-status.contacted { color: var(--blue-700); background: var(--blue-100); }
.coverage-status.evaluation, .coverage-status.planned { color: var(--warning); background: var(--warning-bg); }
.coverage-status.covered { color: var(--success); background: var(--success-bg); }
.coverage-status.not_covered { color: var(--danger); background: var(--danger-bg); }
@media (max-width: 1000px) {
    .coverage-map-home, .dedicated-grid, .legality-panel { grid-template-columns: 1fr; }
    .coverage-home-map { min-height: 320px; }
    .coverage-home-map img { min-height: 320px; }
}
@media (max-width: 760px) {
    .coverage-map-home, .legality-panel { padding: 20px; border-radius: 22px; }
    .coverage-summary { grid-template-columns: 1fr; }
    .coverage-home-map, .coverage-home-map img { min-height: 240px; }
    .coverage-map-head { align-items: flex-start; flex-direction: column; padding: 21px; }
    .coverage-map-shell { border-radius: 22px; }
    .dedicated-grid { gap: 28px; }
    .dedicated-cards article, .legality-list article { grid-template-columns: 48px 1fr; padding: 17px; }
    .dedicated-cards article > svg, .legality-list article > svg { width: 48px; height: 48px; padding: 11px; }
    .track-form.secure { grid-template-columns: 1fr; }
}

/* v4.1.0 — cache-safe responsive hardening */
html, body { max-width: 100%; overflow-x: clip; }
main, header, footer, section, .container, .header-row > *, .hero-grid > *, .section-heading > *, .coverage-map-home > * { min-width: 0; }
svg.icon {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    max-width: 22px !important;
    max-height: 22px !important;
    overflow: visible;
}
.promo-message svg.icon { width: 20px !important; height: 20px !important; min-width: 20px; }
.promo-close svg.icon { width: 18px !important; height: 18px !important; min-width: 18px; }
.nav-toggle svg.icon { width: 20px !important; height: 20px !important; min-width: 20px; }
.header-search svg.icon { width: 18px !important; height: 18px !important; min-width: 18px; }
.hero-kicker svg.icon { width: 21px !important; height: 21px !important; min-width: 21px; }
.hero-feature-card svg.icon { width: 40px !important; height: 40px !important; max-width: 40px !important; max-height: 40px !important; min-width: 40px; }
.quick-grid svg.icon { width: 25px !important; height: 25px !important; min-width: 25px; }
.brand img { width: 195px; max-width: 195px; height: 64px; object-fit: contain; }
.main-nav { min-width: 0; }
.main-nav a { line-height: 1.2; }
.header-search { flex: 0 0 190px; }
.hero-visual img, .coverage-home-map img, .coverage-map-shell > img { display: block; }
.button { appearance: none; -webkit-appearance: none; text-align: center; line-height: 1.2; }
.button:focus-visible, .nav-toggle:focus-visible, .promo-close:focus-visible, .cookie-bar button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
    outline: 3px solid rgba(37,102,220,.25);
    outline-offset: 2px;
}
.form-grid > label { min-width: 0; }
.form-grid input, .form-grid select, .form-grid textarea { min-width: 0; max-width: 100%; }
.check-field, .switch-field { user-select: none; }
.check-field input, .switch-field input { width: 1px !important; height: 1px !important; }
.cookie-bar { max-height: calc(100vh - 24px); overflow: auto; }

@media (max-width: 1240px) {
    .container { width: min(1160px, calc(100% - 32px)); }
    .main-nav { gap: 16px; }
    .main-nav a { font-size: 13px; }
    .header-search { flex-basis: 168px; width: 168px; }
    .brand img { width: 175px; max-width: 175px; }
}
@media (max-width: 1030px) {
    .header-search { display: none; }
    .main-nav { gap: 14px; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 46px; }
    .hero-copy { max-width: 760px; }
    .hero-visual { width: 100%; }
}
@media (max-width: 900px) {
    .site-header { position: sticky; top: 0; }
    .header-row { min-height: 76px; }
    .brand img { width: 168px; max-width: 168px; height: 56px; }
    .main-nav { top: 76px; z-index: 50; }
    .main-nav a { width: 100%; }
    .promo-strip-row { padding-block: 8px; }
    .promo-message { flex: 1; }
    .quick-grid a { min-width: 0; text-align: center; padding: 12px 8px; }
}
@media (max-width: 640px) {
    .utility-bar { display: none; }
    .promo-strip-row { min-height: 58px; gap: 10px; }
    .promo-message span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .header-row { min-height: 70px; }
    .brand img { width: 148px; max-width: 148px; height: 50px; }
    .main-nav { top: 70px; }
    .hero-copy h1 { font-size: clamp(39px, 12vw, 50px); }
    .hero-feature-card { width: min(220px, calc(100% - 28px)); }
    .hero-feature-card svg.icon { width: 34px !important; height: 34px !important; min-width: 34px; max-width: 34px !important; max-height: 34px !important; }
    .quick-grid a { font-size: 12px; }
    .coverage-home-map img { object-fit: contain; background: #fff; }
    .coverage-map-shell > img { max-height: none; }
    .whatsapp-float { z-index: 36; }
}
@media (max-width: 390px) {
    .container { width: calc(100% - 20px); }
    .brand img { width: 138px; max-width: 138px; }
    .nav-toggle { padding: 10px 11px; }
    .quick-grid a { min-height: 92px; }
    .form-card { padding-inline: 16px; }
}
