:root {
  --bg: #f4f7fb;
  --bg-soft: #eef4ff;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #edf4ff;
  --text: #152238;
  --muted: #6f8099;
  --border: #e2eaf4;
  --accent: #1677ff;
  --accent-2: #5b8cff;
  --glow-1: #dbeafe;
  --glow-2: #e9e7ff;
  --green: #1eaf68;
  --danger: #d84955;
  --shadow-sm: 0 8px 24px rgba(28, 62, 105, .07);
  --shadow: 0 18px 50px rgba(28, 62, 105, .10);
  --shadow-lg: 0 28px 80px rgba(28, 62, 105, .15);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 44%, #ffffff 100%);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.builder-main { display: flex; flex-direction: column; }
.builder-section { width: 100%; }
.builder-section > .container { width: min(var(--section-width, 100%), 1200px); }
.builder-section.section { padding-top: var(--section-padding, 72px); padding-bottom: var(--section-padding, 72px); }
.builder-section.hero { padding-top: var(--section-padding, 60px); padding-bottom: var(--section-padding, 60px); }
.builder-section.trust-strip { padding-top: var(--section-padding, 24px); padding-bottom: var(--section-padding, 24px); }
.page-glow { position: fixed; width: 560px; height: 560px; border-radius: 50%; filter: blur(100px); opacity: .36; z-index: -5; pointer-events:none; }
.glow-one { left:-180px; top:-170px; background:var(--glow-1); animation:drift 16s ease-in-out infinite alternate; }
.glow-two { right:-180px; bottom:-180px; background:var(--glow-2); animation:drift 22s ease-in-out infinite alternate-reverse; }
.page-grid { position:fixed; inset:0; z-index:-6; pointer-events:none; opacity:.22; background-image: radial-gradient(circle at 1px 1px, #b9c8dc 1px, transparent 0); background-size:28px 28px; mask-image:linear-gradient(to bottom, black 0%, transparent 72%); }
.scroll-progress { position:fixed; top:0; left:0; z-index:1000; height:3px; width:0; background:linear-gradient(90deg,var(--accent),var(--accent-2)); box-shadow:0 2px 10px rgba(22,119,255,.28); }
.site-header { position:sticky; top:0; z-index:90; backdrop-filter:blur(18px); background:rgba(255,255,255,.88); border-bottom:1px solid rgba(213,224,239,.85); box-shadow:0 3px 18px rgba(42,78,123,.04); }
.nav-wrap { min-height:76px; display:flex; align-items:center; gap:16px; }
.brand { display:inline-flex; align-items:center; gap:11px; white-space:nowrap; }
.brand-mark { width:44px; height:44px; display:grid; place-items:center; border-radius:15px; color:white; background:linear-gradient(145deg,var(--accent),var(--accent-2)); box-shadow:0 10px 24px rgba(22,119,255,.22); }
.brand-mark svg { width:24px; height:24px; fill:none; stroke:white; stroke-width:3; stroke-linecap:round; stroke-linejoin:round; }
.brand-text { font-weight:800; font-size:18px; letter-spacing:-.5px; }
.brand-text b { color:var(--accent); }
.nav { margin-left:auto; display:flex; align-items:center; gap:18px; }
.nav a { font-size:13px; color:#51647e; font-weight:600; position:relative; transition:.2s; }
.nav a:hover { color:var(--accent); }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:-9px; height:2px; border-radius:99px; background:var(--accent); transform:scaleX(0); transition:.2s; }
.nav a:hover::after { transform:scaleX(1); }
.top-actions { display:flex; gap:8px; }
.nav-toggle { display:none; width:44px; height:44px; border-radius:13px; border:1px solid var(--border); background:#fff; padding:0; margin-left:auto; box-shadow:var(--shadow-sm); }
.nav-toggle span { display:block; width:19px; height:2px; background:#455b78; margin:4px auto; border-radius:99px; }
.btn { display:inline-flex; min-height:48px; padding:0 19px; align-items:center; justify-content:center; gap:8px; border-radius:15px; border:1px solid transparent; font-size:13px; font-weight:700; cursor:pointer; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease; position:relative; overflow:hidden; }
.btn::after { content:""; position:absolute; inset:0; background:linear-gradient(115deg,transparent 25%,rgba(255,255,255,.42) 48%,transparent 70%); transform:translateX(-130%); transition:.65s; }
.btn:hover::after { transform:translateX(130%); }
.btn:hover { transform:translateY(-2px); }
.btn-primary { color:white; background:linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow:0 12px 28px rgba(22,119,255,.22); }
.btn-primary:hover { box-shadow:0 16px 34px rgba(22,119,255,.28); }
.btn-ghost, .btn-outline { background:#fff; border-color:var(--border); color:#38516f; box-shadow:var(--shadow-sm); }
.btn-ghost:hover, .btn-outline:hover { border-color:#bcd1ec; color:var(--accent); background:#f9fbff; }
.btn-cabinet { color:var(--accent); background:#edf5ff; border-color:#d8e9ff; }
.btn-small { min-height:40px; padding:0 15px; border-radius:13px; font-size:12px; }
.btn-block { width:100%; }
.hero { position:relative; overflow:hidden; }
.hero-rich { min-height:calc(100vh - 76px); display:flex; align-items:center; background:linear-gradient(180deg,#fbfdff 0%,#f3f8ff 100%); }
.hero-backdrop { position:absolute; inset:0 0 0 46%; background-position:center; background-size:cover; opacity:.96; animation:slowZoom 16s ease-in-out infinite alternate; }
.hero-backdrop::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,#f6faff 0%,rgba(246,250,255,.35) 35%,rgba(255,255,255,.10) 100%); }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(248,252,255,.98) 0%,rgba(248,252,255,.98) 44%,rgba(248,252,255,.45) 66%,rgba(248,252,255,.20) 100%); }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.04fr .96fr; align-items:center; gap:32px; }
.eyebrow { display:flex; align-items:center; gap:9px; margin-bottom:16px; color:var(--accent); font-size:11px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase; }
.eyebrow span { width:30px; height:2px; border-radius:99px; background:linear-gradient(90deg,var(--accent),var(--accent-2)); }
.hero h1 { margin:0 0 18px; max-width:10.5ch; font-size:clamp(40px,5.8vw,74px); line-height:1.00; letter-spacing:-3px; color:#14243d; }
.hero h1 em { font-style:normal; color:var(--accent); }
.hero-lead { max-width:620px; margin:0; color:#627690; font-size:17px; line-height:1.75; }
.hero-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:25px; }
.hero-points { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.hero-points span { display:inline-flex; align-items:center; gap:7px; padding:9px 12px; border:1px solid #dfe9f5; border-radius:12px; background:rgba(255,255,255,.84); color:#51647d; font-size:12px; box-shadow:0 6px 18px rgba(48,79,119,.05); }
.hero-points i { color:var(--green); font-style:normal; font-weight:800; }
.hero-visual { position:relative; min-height:590px; display:flex; align-items:center; justify-content:center; }
.hero-image { position:absolute; inset:36px 0; width:100%; height:calc(100% - 72px); object-fit:cover; border-radius:34px; box-shadow:0 28px 70px rgba(42,82,135,.18); }
.network-card { position:relative; z-index:3; width:min(430px,88%); padding:24px; border-radius:26px; background:rgba(255,255,255,.86); border:1px solid rgba(255,255,255,.92); backdrop-filter:blur(18px); box-shadow:0 20px 55px rgba(30,74,132,.18); }
.network-card-animated { animation:floatCard 6s ease-in-out infinite; }
.network-top { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
.network-top small { display:block; color:#8796aa; margin-bottom:5px; }
.network-top strong { color:#203654; font-size:17px; }
.online-dot { display:inline-flex; align-items:center; gap:7px; padding:7px 10px; border-radius:999px; color:var(--green); background:#ecfbf3; border:1px solid #c9f1dc; font-size:11px; font-weight:800; }
.online-dot::before { content:""; width:7px; height:7px; border-radius:50%; background:currentColor; animation:pulse 1.7s infinite; }
.speed-orbit { position:relative; width:248px; height:248px; margin:24px auto 18px; display:grid; place-items:center; }
.orbit { position:absolute; inset:0; border-radius:50%; border:1px solid #d9e7f7; }
.orbit-a { border-top-color:var(--accent); animation:rotate 16s linear infinite; }
.orbit-b { inset:20px; border-style:dashed; border-color:#c9d9ed; animation:rotateReverse 12s linear infinite; }
.speed-core { width:158px; height:158px; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:linear-gradient(145deg,#ffffff,#f0f6ff); border:1px solid #dbe8f6; box-shadow:inset 0 1px 0 white, 0 14px 30px rgba(30,74,132,.10); }
.speed-core span, .speed-core small { color:#7e8fa7; font-size:11px; }
.speed-core b { font-size:56px; line-height:1; color:#16345b; letter-spacing:-2px; }
.network-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
.network-stats div { padding:12px; border-radius:14px; background:#f7faff; border:1px solid #e4edf7; }
.network-stats span { display:block; color:#8392a6; font-size:10px; margin-bottom:4px; }
.network-stats b { color:#2b4464; font-size:16px; }
.floating-card { position:absolute; z-index:4; display:flex; align-items:center; gap:11px; padding:12px 14px; border-radius:17px; background:rgba(255,255,255,.94); border:1px solid #eef3fa; box-shadow:0 16px 35px rgba(36,77,129,.17); }
.floating-card .icon { width:35px; height:35px; display:grid; place-items:center; border-radius:11px; color:white; background:linear-gradient(135deg,var(--accent),var(--accent-2)); }
.floating-card b { color:#263c59; font-size:12px; }
.floating-card small { display:block; margin-top:3px; color:#8090a5; font-size:10px; }
.card-one { left:-10px; top:75px; }
.card-two { right:-8px; bottom:110px; }
.floaty { animation:floatCard 7s ease-in-out infinite; }
.card-two.floaty { animation-delay:-2.4s; }
.trust-strip { background:#fff; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.trust-grid > div { padding:20px; border-radius:19px; text-align:center; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.trust-grid b { display:block; color:#203654; font-size:25px; margin-bottom:6px; }
.trust-grid span { color:var(--muted); font-size:12px; }
.section { position:relative; }
.section.alt { background:linear-gradient(180deg,#f5f9ff,#ffffff); }
.section-tight { padding-top:40px !important; padding-bottom:40px !important; }
.section-head { max-width:790px; margin:0 auto 30px; text-align:center; }
.section-head .eyebrow { justify-content:center; }
.section-head h2 { margin:0 0 12px; font-size:clamp(30px,4vw,50px); line-height:1.08; letter-spacing:-1.8px; color:#1b3150; }
.section-head p { margin:0; color:var(--muted); line-height:1.75; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.stat-card { padding:24px; text-align:center; border-radius:21px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.stat-card b { display:block; margin-bottom:7px; color:var(--accent); font-size:36px; line-height:1; letter-spacing:-1.4px; }
.stat-card span { color:var(--muted); font-size:12px; }
.promo-banner { display:grid; grid-template-columns:.95fr 1.05fr; gap:24px; align-items:stretch; padding:28px; border-radius:30px; background:linear-gradient(135deg,#ffffff,#eff6ff); border:1px solid #dce8f6; box-shadow:var(--shadow); overflow:hidden; }
.promo-copy { padding:12px 2px; }
.promo-copy h2 { margin:0 0 13px; font-size:clamp(30px,3.7vw,46px); letter-spacing:-1.7px; color:#1d3656; }
.promo-copy p { color:var(--muted); line-height:1.75; }
.promo-visual { position:relative; min-height:350px; border-radius:23px; overflow:hidden; }
.promo-visual > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.promo-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(13,46,83,.02),rgba(13,46,83,.70)); }
.promo-points { position:absolute; z-index:2; left:18px; right:18px; bottom:18px; display:grid; gap:8px; }
.promo-points div { padding:10px 12px; border-radius:13px; background:rgba(255,255,255,.90); backdrop-filter:blur(10px); box-shadow:0 8px 20px rgba(14,48,88,.11); }
.promo-points b { display:block; color:#26415f; font-size:11px; margin-bottom:3px; }
.promo-points span { color:#6c7f96; font-size:10px; line-height:1.5; }
.photo-gallery { display:grid; grid-template-columns:1.35fr .8fr .8fr; grid-template-rows:260px 260px; gap:16px; }
.photo-card { position:relative; overflow:hidden; min-height:250px; border-radius:24px; box-shadow:var(--shadow-sm); background:#dfe9f5; }
.photo-card-wide { grid-row:1 / span 2; }
.photo-card:last-child { grid-column:2 / span 2; }
.photo-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s ease; }
.photo-card:hover img { transform:scale(1.045); }
.photo-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 30%,rgba(15,38,68,.78) 100%); }
.photo-card-overlay { position:absolute; z-index:2; left:20px; right:20px; bottom:18px; color:#fff; }
.photo-card-overlay h3 { margin:0 0 5px; font-size:21px; }
.photo-card-overlay p { margin:0; max-width:44ch; color:rgba(255,255,255,.83); font-size:12px; line-height:1.55; }
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:17px; }
.news-card { overflow:hidden; border-radius:24px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); transition:.24s ease; }
.news-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.news-image { position:relative; height:210px; overflow:hidden; }
.news-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s; }
.news-card:hover .news-image img { transform:scale(1.04); }
.news-badge { position:absolute; left:14px; top:14px; padding:7px 10px; border-radius:999px; color:#fff; background:rgba(22,119,255,.92); font-size:10px; font-weight:800; }
.news-body { padding:19px; }
.news-body small { color:#91a0b3; }
.news-body h3 { margin:8px 0 9px; color:#24405f; font-size:20px; }
.news-body p { margin:0 0 15px; color:var(--muted); font-size:13px; line-height:1.7; }
.news-link { color:var(--accent); font-size:12px; font-weight:800; }
.tariff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:17px; align-items:stretch; }
.tariff-card { position:relative; overflow:hidden; padding:22px; border-radius:26px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); transition:.25s; }
.tariff-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.tariff-card.featured { border-color:#bcd8ff; box-shadow:0 22px 55px rgba(22,119,255,.13); }
.tariff-media { height:180px; margin:-22px -22px 18px; overflow:hidden; }
.tariff-media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s; }
.tariff-card:hover .tariff-media img { transform:scale(1.04); }
.tariff-label, .popular { display:inline-flex; align-items:center; padding:7px 10px; border-radius:999px; font-size:10px; font-weight:800; }
.tariff-label { margin-bottom:13px; color:#53708e; background:#f0f5fb; }
.popular { position:absolute; top:14px; right:14px; z-index:2; color:#fff; background:linear-gradient(135deg,var(--accent),var(--accent-2)); }
.tariff-card h3 { margin:0 0 10px; color:#223c5c; font-size:27px; }
.speed { display:flex; align-items:flex-end; gap:8px; margin:5px 0 10px; }
.speed b { color:#193653; font-size:50px; line-height:1; letter-spacing:-2px; }
.speed span, .price span { color:var(--muted); font-size:12px; }
.price { display:flex; align-items:flex-end; gap:8px; margin-bottom:15px; }
.price b { color:var(--accent); font-size:29px; line-height:1.1; }
.tariff-card ul { margin:0 0 20px; padding-left:20px; color:#667991; font-size:13px; line-height:1.8; }
.tariff-note { text-align:center; color:var(--muted); font-size:12px; margin-top:17px; }
.section-bg-lines { position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 12% 24%,rgba(22,119,255,.08),transparent 18%),radial-gradient(circle at 88% 75%,rgba(91,140,255,.08),transparent 18%); }
.features-grid { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.feature { padding:23px; border-radius:22px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); transition:.24s; }
.feature:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.feature-icon { width:56px; height:56px; display:grid; place-items:center; margin-bottom:17px; border-radius:17px; color:var(--accent); background:#edf5ff; border:1px solid #dceaff; font-size:25px; }
.feature h3 { margin:0 0 8px; color:#27415f; font-size:19px; }
.feature p { margin:0; color:var(--muted); font-size:12px; line-height:1.7; }
.coverage-layout { display:grid; grid-template-columns:1.15fr .85fr; gap:18px; align-items:stretch; }
.coverage-map { min-height:440px; border-radius:26px; overflow:hidden; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow); }
.coverage-map-inner { position:relative; width:100%; height:100%; min-height:440px; background-position:center; background-size:cover; }
.coverage-lines { position:absolute; inset:0; width:100%; height:100%; }
.coverage-lines path { fill:none; stroke:var(--accent); stroke-width:3; stroke-dasharray:8 10; opacity:.55; animation:dash 18s linear infinite; }
.map-point { position:absolute; width:15px; height:15px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 7px rgba(22,119,255,.13); animation:pulseBlue 2s infinite; }
.map-point i { position:absolute; left:50%; bottom:20px; transform:translateX(-50%); padding:6px 8px; border-radius:9px; white-space:nowrap; color:#315170; background:rgba(255,255,255,.94); box-shadow:var(--shadow-sm); font-style:normal; font-size:10px; font-weight:700; }
.point-a { top:28%; left:27%; }
.point-b { top:52%; left:62%; animation-delay:.5s; }
.point-c { top:72%; left:43%; animation-delay:1s; }
.coverage-label { position:absolute; left:18px; bottom:18px; padding:8px 11px; border-radius:999px; background:rgba(255,255,255,.94); border:1px solid #dbe7f4; color:#3a5876; font-size:10px; font-weight:800; }
.coverage-cards { display:grid; gap:13px; }
.coverage-card { padding:22px; border-radius:21px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.coverage-card h3 { margin:0 0 8px; color:#25415f; font-size:20px; }
.coverage-card p { margin:0; color:var(--muted); font-size:12px; line-height:1.7; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.testimonial-card { position:relative; padding:24px; border-radius:23px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.testimonial-card::before { content:"“"; position:absolute; top:10px; right:18px; color:#d7e8ff; font-size:60px; line-height:1; font-family:Georgia,serif; }
.testimonial-card p { position:relative; z-index:1; margin:0 0 19px; color:#536a83; font-size:13px; line-height:1.8; }
.testimonial-meta b { display:block; color:#294560; margin-bottom:4px; }
.testimonial-meta span { color:#91a0b1; font-size:11px; }
.faq-wrap { max-width:900px; }
.faq-list { display:grid; gap:11px; }
.faq-item { border-radius:18px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); overflow:hidden; }
.faq-item summary { list-style:none; cursor:pointer; padding:18px 20px; color:#2b4663; font-weight:700; font-size:13px; position:relative; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; position:absolute; right:19px; top:14px; color:var(--accent); font-size:24px; }
.faq-item[open] summary::after { content:"−"; }
.faq-answer { padding:0 20px 19px; color:var(--muted); font-size:12px; line-height:1.75; }
.connect-grid { display:grid; grid-template-columns:.92fr 1.08fr; gap:22px; align-items:start; }
.connect-copy h2 { margin:0 0 13px; color:#1e3857; font-size:clamp(30px,4vw,48px); letter-spacing:-1.7px; }
.connect-copy > p { color:var(--muted); line-height:1.75; }
.steps { display:grid; gap:11px; margin-top:22px; }
.step { display:flex; gap:13px; align-items:flex-start; padding:14px; border-radius:17px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.step > b { flex:0 0 38px; width:38px; height:38px; display:grid; place-items:center; border-radius:11px; color:white; background:linear-gradient(135deg,var(--accent),var(--accent-2)); font-size:11px; }
.step h4 { margin:0 0 4px; color:#294662; }
.step p { margin:0; color:var(--muted); font-size:11px; line-height:1.6; }
.connect-form, .utility-card { padding:27px; border-radius:25px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow); }
.connect-form h3, .utility-card h2 { margin:0 0 8px; color:#263f5d; font-size:27px; letter-spacing:-.8px; }
.connect-form > p, .utility-card > p { color:var(--muted); line-height:1.7; }
.connect-form label, .field { display:block; margin-bottom:13px; }
.connect-form label span, .field span { display:block; margin:0 0 6px 2px; color:#7c8da2; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.7px; }
.connect-form input, .connect-form select, .field input, .field select, .field textarea { width:100%; min-height:50px; padding:0 13px; border-radius:13px; border:1px solid #dbe5f1; outline:none; color:#2d4662; background:#fbfdff; transition:.2s; }
.field textarea { min-height:115px; padding:12px 13px; resize:vertical; }
.connect-form input:focus, .connect-form select:focus, .field input:focus, .field select:focus, .field textarea:focus { border-color:#a9ceff; box-shadow:0 0 0 4px rgba(22,119,255,.08); background:white; }
.connect-form small, .notice { display:block; color:var(--muted); font-size:11px; line-height:1.6; }
.notice { margin-top:13px; padding:11px 13px; border-left:3px solid var(--accent); border-radius:0 12px 12px 0; background:#f3f8ff; }
.support-section { overflow:hidden; }
.support-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.07; filter:saturate(.7); }
.support-card { position:relative; z-index:2; display:grid; grid-template-columns:1fr 390px; align-items:center; gap:22px; padding:28px; border-radius:28px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow); }
.support-copy h2 { margin:0 0 12px; color:#203a59; font-size:clamp(30px,4vw,47px); letter-spacing:-1.5px; }
.support-copy p { color:var(--muted); line-height:1.75; }
.support-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:19px; }
.support-visual { overflow:hidden; border-radius:22px; min-height:270px; }
.support-visual img { width:100%; height:270px; object-fit:cover; display:block; }
.contact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.contact-card { padding:21px; border-radius:20px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.contact-card span { display:block; margin-bottom:9px; color:var(--muted); font-size:11px; }
.contact-card b { color:#274361; font-size:17px; overflow-wrap:anywhere; }
.footer { padding:30px 0 36px; background:#f7faff; border-top:1px solid var(--border); }
.footer-grid { display:flex; justify-content:space-between; align-items:center; gap:20px; }
.footer-grid p { color:var(--muted); font-size:12px; }
.footer-links { display:flex; flex-wrap:wrap; gap:14px; color:#61758d; font-size:12px; }
.footer-bottom { display:flex; justify-content:space-between; gap:12px; padding-top:18px; color:#95a3b4; font-size:11px; }
.utility-hero { padding:72px 0 30px; text-align:center; }
.utility-hero .eyebrow { justify-content:center; }
.utility-hero h1 { margin:10px 0 11px; color:#1e3857; font-size:clamp(36px,5.5vw,58px); letter-spacing:-2px; }
.utility-hero p { max-width:760px; margin:0 auto; color:var(--muted); line-height:1.7; }
.utility-wrap { padding:10px 0 80px; }
.quick-grid, .admin-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; margin-top:20px; }
.quick-card { padding:18px; border-radius:18px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.quick-card b { display:block; margin-bottom:5px; color:#294561; font-size:21px; }
.quick-card span { color:var(--muted); font-size:11px; line-height:1.5; }
.status-box { margin-top:14px; padding:12px 14px; border-radius:13px; font-size:12px; line-height:1.5; border:1px solid #dce6f2; background:#f7faff; color:#60758e; }
.status-box.success { border-color:#bfe9d2; background:#effbf4; color:#24784d; }
.status-box.error { border-color:#f4ccd0; background:#fff3f4; color:#a83f49; }
.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }
/* Admin */
.admin-hero { padding-top:54px; }
.admin-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; align-items:start; }
.admin-links { display:flex; flex-wrap:wrap; gap:9px; }
.admin-form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px; }
.admin-form-grid-3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:13px; }
.admin-image-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.admin-image-grid > div { padding:10px; border-radius:16px; background:#f8fbff; border:1px solid var(--border); }
.admin-image-grid span { display:block; margin-top:7px; color:var(--muted); font-size:10px; }
.admin-preview { width:100%; height:155px; object-fit:cover; display:block; border-radius:12px; }
.admin-section-box { padding:19px; margin-bottom:15px; border-radius:20px; border:1px solid var(--border); background:#f9fbfe; }
.admin-section-box h3 { margin:0 0 14px; color:#28445f; font-size:22px; }
.admin-section-box h4 { margin:17px 0 10px; color:#395571; font-size:16px; }
.table-wrap { overflow:auto; }
.admin-table { width:100%; border-collapse:collapse; font-size:11px; }
.admin-table th, .admin-table td { padding:11px 9px; text-align:left; vertical-align:top; border-bottom:1px solid var(--border); }
.admin-table th { color:#61748b; font-size:9px; text-transform:uppercase; letter-spacing:.8px; }
.media-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }
.media-card { overflow:hidden; border-radius:20px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.media-card img { width:100%; height:200px; object-fit:cover; display:block; }
.media-card-body { padding:14px; display:grid; gap:10px; }
.media-card-body code { overflow-wrap:anywhere; color:#637990; font-size:10px; }
.upload-zone { padding:18px; border:1px dashed #bad4f3; border-radius:18px; background:#f5f9ff; }
/* Visual builder */
.builder-admin-shell { display:grid; gap:16px; }
.builder-toolbar { position:sticky; top:88px; z-index:20; display:flex; justify-content:space-between; align-items:center; gap:14px; padding:15px 17px; border-radius:18px; background:rgba(255,255,255,.94); backdrop-filter:blur(16px); border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.builder-toolbar b { display:block; color:#27435f; }
.builder-toolbar span { color:var(--muted); font-size:10px; }
.visual-builder { display:grid; gap:13px; padding:18px; border-radius:24px; background:#eef4fb; border:1px solid #dfe8f3; }
.builder-card { display:grid; grid-template-columns:48px 1fr; border-radius:20px; background:white; border:1px solid var(--border); box-shadow:var(--shadow-sm); overflow:hidden; transition:opacity .2s, transform .2s; }
.builder-card.dragging { opacity:.45; transform:scale(.99); }
.builder-card-disabled { opacity:.55; }
.builder-drag { display:grid; place-items:center; color:#8ba0b8; background:#f5f8fc; border-right:1px solid var(--border); font-size:23px; cursor:grab; user-select:none; }
.builder-drag:active { cursor:grabbing; }
.builder-card-main { padding:17px; }
.builder-title-row { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.builder-title-row small { color:#9caabd; text-transform:uppercase; letter-spacing:.9px; font-size:9px; }
.builder-title-row h3 { margin:4px 0 0; color:#2c4865; font-size:18px; }
.switch-label { display:flex; align-items:center; gap:8px; cursor:pointer; color:#63778e; font-size:10px; }
.switch-label input { position:absolute; opacity:0; pointer-events:none; }
.switch-ui { width:38px; height:22px; border-radius:99px; background:#d8e2ee; position:relative; transition:.2s; }
.switch-ui::after { content:""; position:absolute; width:16px; height:16px; left:3px; top:3px; border-radius:50%; background:white; box-shadow:0 2px 5px rgba(0,0,0,.15); transition:.2s; }
.switch-label input:checked + .switch-ui { background:var(--accent); }
.switch-label input:checked + .switch-ui::after { transform:translateX(16px); }
.builder-preview-track { margin:14px 0; min-height:98px; border-radius:16px; padding:12px; background:#eff4fa; border:1px solid #e1e9f2; position:relative; }
.builder-preview-box { position:relative; width:var(--preview-width,100%); min-height:74px; margin:0 auto; border-radius:14px; background:linear-gradient(135deg,#fff,#f5f9ff); border:1px solid #d9e5f2; box-shadow:0 7px 20px rgba(35,71,112,.08); padding:12px 22px 12px 12px; transition:width .12s; }
.builder-preview-box > span { color:#54718e; font-size:10px; font-weight:800; }
.builder-preview-lines { display:grid; gap:6px; margin-top:8px; }
.builder-preview-lines i { display:block; height:5px; border-radius:99px; background:#dbe7f4; width:80%; }
.builder-preview-lines i:nth-child(2) { width:60%; }
.builder-preview-lines i:nth-child(3) { width:45%; }
.builder-resize-handle { position:absolute; right:-7px; top:50%; transform:translateY(-50%); width:14px; height:42px; padding:0; border:0; border-radius:8px; background:var(--accent); cursor:ew-resize; box-shadow:0 5px 14px rgba(22,119,255,.25); }
.builder-resize-handle::before { content:"⋮"; color:white; font-size:12px; }
.builder-controls { display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.builder-controls label { color:#687d94; font-size:10px; font-weight:700; }
.builder-controls output { float:right; color:var(--accent); }
.builder-controls input[type=range] { width:100%; margin-top:8px; accent-color:var(--accent); }
/* Utility pages */
.pay-number { color:#334d69; font-size:15px; }
/* Animations */
@keyframes rotate { to { transform:rotate(360deg); } }
@keyframes rotateReverse { to { transform:rotate(-360deg); } }
@keyframes floatCard { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-9px); } }
@keyframes slowZoom { from { transform:scale(1.02); } to { transform:scale(1.07); } }
@keyframes drift { from { transform:translate3d(0,0,0); } to { transform:translate3d(55px,-30px,0); } }
@keyframes pulse { 0% { box-shadow:0 0 0 0 rgba(30,175,104,.35); } 70% { box-shadow:0 0 0 10px rgba(30,175,104,0); } 100% { box-shadow:0 0 0 0 rgba(30,175,104,0); } }
@keyframes pulseBlue { 0% { box-shadow:0 0 0 7px rgba(22,119,255,.13); } 60% { box-shadow:0 0 0 15px rgba(22,119,255,0); } 100% { box-shadow:0 0 0 7px rgba(22,119,255,0); } }
@keyframes dash { to { stroke-dashoffset:-500; } }
@media (max-width: 1100px) {
  .nav { gap:12px; }
  .nav a { font-size:12px; }
  .hero-grid { grid-template-columns:1fr 1fr; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display:block; }
  .nav { position:absolute; display:none; top:67px; left:16px; right:16px; padding:17px; border-radius:18px; background:white; border:1px solid var(--border); box-shadow:var(--shadow); flex-direction:column; align-items:flex-start; }
  .nav.open { display:flex; }
  .header-cta, .btn-cabinet { display:none; }
  .hero-rich { min-height:auto; }
  .hero-backdrop { inset:45% 0 0; }
  .hero-overlay { background:linear-gradient(180deg,#f8fbff 0%,rgba(248,251,255,.96) 43%,rgba(248,251,255,.52) 70%,rgba(248,251,255,.34) 100%); }
  .hero-grid, .promo-banner, .coverage-layout, .connect-grid, .support-card, .admin-grid, .admin-form-grid, .admin-form-grid-3 { grid-template-columns:1fr; }
  .hero h1 { max-width:none; }
  .hero-visual { min-height:520px; }
  .tariff-grid, .news-grid, .testimonials-grid { grid-template-columns:1fr 1fr; }
  .photo-gallery { grid-template-columns:1fr 1fr; grid-template-rows:260px 260px 260px; }
  .photo-card-wide { grid-row:auto; grid-column:1 / span 2; }
  .photo-card:last-child { grid-column:1 / span 2; }
  .media-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 20px,1200px); }
  .builder-section > .container { width:min(calc(100% - 20px), var(--section-width,100%)); }
  .hero h1 { font-size:43px; letter-spacing:-2.1px; }
  .hero-lead { font-size:14px; }
  .hero-visual { min-height:460px; }
  .hero-image { inset:24px 0; height:calc(100% - 48px); border-radius:25px; }
  .network-card { width:92%; padding:17px; }
  .speed-orbit { width:210px; height:210px; }
  .speed-core { width:140px; height:140px; }
  .speed-core b { font-size:48px; }
  .card-one { left:3px; top:30px; }
  .card-two { right:3px; bottom:58px; }
  .floating-card { padding:9px 10px; }
  .trust-grid, .stats-grid, .tariff-grid, .features-grid, .news-grid, .testimonials-grid, .contact-grid, .quick-grid, .admin-stats, .media-grid { grid-template-columns:1fr; }
  .photo-gallery { display:grid; grid-template-columns:1fr; grid-template-rows:auto; }
  .photo-card, .photo-card-wide, .photo-card:last-child { grid-column:auto; grid-row:auto; min-height:250px; }
  .promo-visual { min-height:370px; }
  .builder-toolbar { position:static; align-items:flex-start; flex-direction:column; }
  .builder-card { grid-template-columns:38px 1fr; }
  .builder-controls { grid-template-columns:1fr; }
  .switch-label b { display:none; }
  .footer-grid, .footer-bottom { flex-direction:column; align-items:flex-start; }
}

.visibility-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.toggle-row { display:flex; align-items:center; gap:9px; padding:10px 12px; border-radius:13px; background:#fff; border:1px solid var(--border); color:#5f748c; font-size:11px; cursor:pointer; }
.toggle-row input { accent-color:var(--accent); }
@media (max-width: 700px) { .visibility-grid { grid-template-columns:1fr; } }
.media-assign-form { display:grid; grid-template-columns:1fr auto; gap:8px; align-items:center; }
.media-slot-select { min-height:38px; border-radius:11px; border:1px solid #dbe5f1; background:#f8fbff; color:#536a83; padding:0 10px; font-size:10px; }
@media (max-width:620px) { .media-assign-form { grid-template-columns:1fr; } }


/* Home navigation and back-to-top */
.nav-home { font-weight: 700; }
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 16px 38px rgba(22,119,255,.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.94);
  transition: .25s ease;
  z-index: 120;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 22px 42px rgba(22,119,255,.36); }
@media (max-width: 640px) {
  .back-to-top { right: 14px; bottom: 14px; width: 48px; height: 48px; border-radius: 16px; font-size: 24px; }
}
