body{
margin:0;
font-family:'Inter',sans-serif;
background:
radial-gradient(circle at top, rgba(74,163,255,0.08), transparent 35%),
linear-gradient(180deg,#0f1c2e,#101a2b 55%, #0c1422 100%);
color:#f1f5f9;
}

/* HEADER */

header{
background:rgba(11,22,36,0.92);
padding:10px 20px;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
backdrop-filter:blur(8px);
transition:padding .3s ease, box-shadow .3s ease, background .3s ease;
}

header.shrink{
padding:6px 20px;
box-shadow:0 10px 30px rgba(0,0,0,.35);
background:rgba(11,22,36,0.97);
}

.header-inner{
max-width:1180px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:24px;
}

.logo{
display:flex;
align-items:center;
gap:14px;
min-width:0;
}

.logo-icon{
font-size:30px;
color:#4aa3ff;
text-shadow:0 0 10px rgba(74,163,255,.35);
flex-shrink:0;
}

.logo-text h1{
margin:0;
font-size:26px;
line-height:1.05;
font-weight:700;
color:#f1f5f9;
}

.logo-text span{
display:block;
margin-top:5px;
font-size:14px;
line-height:1.2;
color:#9fb3c8;
}

nav{
display:flex;
align-items:center;
gap:22px;
flex-wrap:wrap;
justify-content:flex-end;
}

nav a{
color:#e2e8f0;
text-decoration:none;
font-size:15px;
position:relative;
padding-bottom:4px;
transition:color .25s ease, transform .25s ease;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:linear-gradient(90deg,#1e73be,#4aa3ff);
transition:width .25s ease;
}

nav a:hover{
color:#4aa3ff;
transform:translateY(-1px);
}

nav a:hover::after{
width:100%;
}

.nav-call{
background:#1e73be;
padding:10px 16px;
border-radius:10px;
color:#ffffff !important;
font-weight:600;
transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-call::after{
display:none;
}

.nav-call:hover{
background:#2b84d6;
transform:translateY(-2px);
box-shadow:0 0 14px rgba(74,163,255,.6), 0 10px 25px rgba(0,0,0,.25);
}

/* HERO */

.hero{
position:relative;
padding:64px 20px 42px;
background:linear-gradient(180deg,#0f1c2e,#14263d);
overflow:hidden;
}

.hero-tech-bg{
position:absolute;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
background-size:40px 40px;
pointer-events:none;
z-index:0;
}

.hero::before{
content:"";
position:absolute;
width:620px;
height:620px;
right:-180px;
top:-140px;
background:radial-gradient(circle, rgba(74,163,255,.22) 0%, rgba(74,163,255,.08) 35%, transparent 70%);
filter:blur(8px);
animation:heroGlow 12s ease-in-out infinite alternate;
pointer-events:none;
z-index:0;
}

.hero::after{
content:"";
position:absolute;
width:420px;
height:420px;
left:-120px;
bottom:-140px;
background:radial-gradient(circle, rgba(30,115,190,.16) 0%, transparent 70%);
filter:blur(12px);
animation:heroGlowTwo 14s ease-in-out infinite alternate;
pointer-events:none;
z-index:0;
}

@keyframes heroGlow{
0%{
transform:translate(0,0) scale(1);
opacity:.45;
}
100%{
transform:translate(-40px,35px) scale(1.12);
opacity:.8;
}
}

@keyframes heroGlowTwo{
0%{
transform:translate(0,0) scale(1);
opacity:.35;
}
100%{
transform:translate(30px,-20px) scale(1.1);
opacity:.65;
}
}

.hero-lines{
position:absolute;
inset:0;
pointer-events:none;
overflow:hidden;
z-index:1;
}

.hero-lines::before,
.hero-lines::after{
content:"";
position:absolute;
width:200%;
height:2px;
background:linear-gradient(90deg, transparent, rgba(74,163,255,0.25), transparent);
animation:heroLineMove 10s linear infinite;
}

.hero-lines::before{
top:30%;
left:-50%;
}

.hero-lines::after{
top:65%;
left:-60%;
animation-duration:14s;
}

@keyframes heroLineMove{
0%{
transform:translateX(0);
opacity:.2;
}
50%{
opacity:.45;
}
100%{
transform:translateX(30%);
opacity:.2;
}
}

.hero-content{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
position:relative;
z-index:2;
}

.hero-text{
flex:1;
min-width:320px;
text-align:left;
}

.hero-text h1{
font-size:38px;
line-height:1.12;
margin:0 0 14px;
max-width:640px;
}

.hero-text p{
color:#cbd5e1;
max-width:520px;
margin:0 0 18px;
font-size:18px;
line-height:1.6;
}

.hero-trust{
display:grid;
grid-template-columns:repeat(2, minmax(260px, 1fr));
gap:14px 16px;
margin-top:20px;
max-width:760px;
}

.hero-trust div{
display:flex;
align-items:center;
gap:8px;
font-size:14px;
color:#c7d6e6;
background:rgba(255,255,255,0.03);
padding:10px 14px;
border-radius:999px;
border:1px solid rgba(255,255,255,0.05);
white-space:normal;
min-height:44px;
}

.hero-trust i{
color:#4aa3ff;
text-shadow:0 0 8px rgba(74,163,255,.45);
}

.hero-visual-stack{
position:relative;
height:220px;
min-width:320px;
}

.monitor-icon{
font-size:150px;
position:absolute;
left:46%;
top:48%;
transform:translate(-50%,-50%);
color:#4aa3ff;
opacity:.85;
text-shadow:0 0 30px rgba(74,163,255,.18);
}

.tower-icon{
font-size:62px;
position:absolute;
left:69%;
top:64%;
transform:translate(-50%,-50%);
color:#4aa3ff;
opacity:.95;
text-shadow:0 0 30px rgba(74,163,255,.18);
}

/* BUTTONS */

.btn{
display:inline-block;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
margin-right:10px;
color:#ffffff !important;
transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-primary{
background:#1e73be;
color:#ffffff !important;
}

.btn-secondary{
border:2px solid #1e73be;
background:transparent;
color:#ffffff !important;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 0 18px rgba(74,163,255,.6), 0 10px 25px rgba(0,0,0,.35);
}

.btn-secondary:hover{
transform:translateY(-3px);
box-shadow:0 0 18px rgba(74,163,255,.5), 0 10px 25px rgba(0,0,0,.35);
background:#1e73be;
color:#ffffff !important;
}

/* HERO RATING */

.hero-rating{
padding:20px;
background:#0b1624;
border-top:1px solid rgba(255,255,255,0.05);
border-bottom:1px solid rgba(255,255,255,0.05);
text-align:center;
}

.hero-rating-inner{
max-width:900px;
margin:auto;
}

.stars{
font-size:26px;
letter-spacing:4px;
color:#fbbf24;
margin-bottom:8px;
text-shadow:0 0 12px rgba(251,191,36,.25);
}

.hero-rating p{
margin:0;
color:#cbd5e1;
font-size:15px;
}

/* GENERIC SECTIONS */

.container{
max-width:1100px;
margin:auto;
padding:70px 20px;
}

.section-title{
text-align:center;
font-size:30px;
margin:0 0 20px;
position:relative;
}

.section-title::after{
content:"";
display:block;
width:70px;
height:3px;
margin:14px auto 0;
background:linear-gradient(90deg,#1e73be,#4aa3ff);
border-radius:2px;
}

.section-subtitle{
max-width:760px;
margin:0 auto 30px;
color:#cbd5e1;
line-height:1.7;
font-size:16px;
text-align:left;
}

.section-subtitle strong{
color:#f1f5f9;
font-weight:600;
}

/* ARTICLE PAGES */

.article-hero{
padding-bottom:30px;
text-align:center;
}

.article-hero .section-title{
text-align:center;
}

.article-hero .section-subtitle{
max-width:760px;
margin:10px auto 30px;
text-align:left;
}

.article-layout{
display:grid;
grid-template-columns:1.35fr .75fr;
gap:30px;
align-items:start;
}

.article-card,
.article-side-card{
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:30px;
}

.article-card h3,
.article-side-card h3{
margin-top:0;
margin-bottom:14px;
font-size:24px;
}

.article-card p,
.article-side-card p{
color:#cbd5e1;
line-height:1.8;
}

.article-intro p:first-child{
margin-top:0;
}

.article-list{
padding-left:20px;
color:#cbd5e1;
line-height:1.8;
margin-top:0;
margin-bottom:28px;
}

.article-list li{
margin-bottom:8px;
}

.article-actions{
margin-top:26px;
display:flex;
gap:12px;
flex-wrap:wrap;
}

.article-side-points{
display:grid;
gap:12px;
margin-top:18px;
margin-bottom:22px;
}

.article-side-points div{
display:flex;
align-items:center;
gap:10px;
color:#cbd5e1;
background:rgba(255,255,255,0.03);
padding:10px 12px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.06);
}

.article-side-points i{
color:#4aa3ff;
width:18px;
text-align:center;
}

/* CONTACT PAGE */

.contact-layout{
display:flex;
justify-content:center;
margin-top:40px;
}

.contact-card{
max-width:420px;
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:32px;
text-align:left;
}

.contact-card a{
color:#4aa3ff;
text-decoration:none;
}

.contact-card a:hover{
text-decoration:underline;
}

/* SERVICES / CARD GRIDS */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.services-card{
background:rgba(20,38,61,.58);
padding:30px;
border-radius:18px;
text-align:center;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
position:relative;
overflow:hidden;
}

.services-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg, transparent, rgba(74,163,255,.12), transparent);
opacity:0;
transition:opacity .3s ease;
pointer-events:none;
}

.services-card:hover::before{
opacity:1;
}

.services-card:hover{
transform:translateY(-8px);
box-shadow:0 22px 55px rgba(0,0,0,.45), 0 0 18px rgba(74,163,255,.08);
border-color:rgba(74,163,255,.38);
background:rgba(22,42,67,.72);
}

.services-card i{
font-size:30px;
color:#4aa3ff;
margin-bottom:15px;
display:block;
text-shadow:0 0 12px rgba(74,163,255,.25);
transition:transform .3s ease, text-shadow .3s ease, color .3s ease;
}

.services-card:hover i{
transform:scale(1.08);
color:#6bb6ff;
text-shadow:0 0 18px rgba(74,163,255,.45);
}

.services-card h3,
.compare-card h3,
.testimonial-card h3{
text-align:center;
}

.services-card p,
.compare-card p,
.service-radius-card p,
.faq-card p{
text-align:left;
}

.services-card .btn{
display:inline-block;
margin-top:12px;
}

/* LOCAL TECH SECTION */

.local-tech-section{
padding-top:20px;
}

.local-tech-layout{
display:grid;
grid-template-columns:320px 1fr;
gap:28px;
align-items:center;
max-width:1000px;
margin:0 auto;
}

.local-tech-photo-wrap{
display:flex;
justify-content:center;
}

.local-tech-photo{
width:100%;
max-width:320px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 18px 40px rgba(0,0,0,.35);
object-fit:cover;
}

.local-tech-card{
max-width:100%;
margin:0;
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:32px;
}

.local-tech-card p{
color:#cbd5e1;
line-height:1.8;
font-size:17px;
margin-top:0;
margin-bottom:18px;
}

.local-tech-card p:last-child{
margin-bottom:0;
}

/* COMPARE SECTION */

.compare-section{
padding-top:20px;
}

.compare-grid{
display:grid;
grid-template-columns:repeat(2, minmax(0,1fr));
gap:30px;
}

.compare-card{
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:30px;
}

.compare-card.featured{
border-color:rgba(74,163,255,.35);
box-shadow:0 18px 45px rgba(0,0,0,.4);
}

.compare-icon{
font-size:30px;
color:#4aa3ff;
margin-bottom:16px;
}

.compare-card h3{
margin-top:0;
margin-bottom:14px;
font-size:24px;
}

.compare-card ul{
margin:0;
padding-left:20px;
color:#cbd5e1;
line-height:1.7;
}

/* TESTIMONIALS */

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.testimonial-card{
background:#14263d;
padding:30px;
border-radius:18px;
box-shadow:0 20px 60px rgba(0,0,0,.35);
border:1px solid rgba(255,255,255,0.05);
transition:transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover{
transform:translateY(-5px);
box-shadow:0 30px 70px rgba(0,0,0,.45);
}

.testimonial-card p{
font-style:italic;
color:#d6dce5;
line-height:1.7;
}

.testimonial-author{
margin-top:15px;
font-size:14px;
color:#9fb3c8;
font-weight:bold;
}

/* FAQ */

.faq-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.faq-card{
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:28px;
}

.faq-card h3{
margin-top:0;
margin-bottom:12px;
font-size:22px;
text-align:left;
}

.faq-card p{
color:#cbd5e1;
line-height:1.75;
text-align:left;
}

.related-articles{
margin-top:34px;
padding-top:26px;
border-top:1px solid rgba(255,255,255,0.08);
}

.related-articles h3{
margin-top:0;
margin-bottom:14px;
font-size:22px;
}

.related-articles ul{
margin:0;
padding-left:20px;
}

.related-articles li{
margin-bottom:10px;
color:#cbd5e1;
line-height:1.7;
}

.related-articles a{
color:#4aa3ff;
text-decoration:none;
}

.related-articles a:hover{
text-decoration:underline;
}

/* REVIEW CTA */

.review-cta{
background:#0b1624;
text-align:center;
padding:60px 20px;
border-top:1px solid rgba(255,255,255,0.05);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.review-cta p{
max-width:650px;
margin:20px auto;
color:#cbd5e1;
}

.review-button{
display:block;
width:fit-content;
margin:25px auto 0;
background:#22c55e;
color:white;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.review-button:hover{
background:#16a34a;
transform:translateY(-2px);
box-shadow:0 15px 35px rgba(0,0,0,.35);
}

/* MAP / SERVICE AREA */

.map-section{
padding:20px 0 0;
}

.map-layout{
display:grid;
grid-template-columns:1.2fr .9fr;
gap:28px;
align-items:stretch;
}

.map-card,
.service-radius-card{
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:20px;
}

.service-radius-card h3{
margin-top:0;
margin-bottom:12px;
font-size:24px;
}

.service-radius-card ul{
margin:16px 0 0;
padding-left:20px;
color:#cbd5e1;
line-height:1.7;
}

/* CTA */

.cta-section{
text-align:center;
padding:80px 20px;
background:linear-gradient(135deg,#1e73be,#14263d);
}

.cta-section p{
max-width:700px;
margin:16px auto 0;
}

.cta-button{
display:inline-block;
margin-top:20px;
background:white;
color:#1e73be;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:transform .25s ease, box-shadow .25s ease;
}

.cta-button:hover{
transform:translateY(-2px);
box-shadow:0 12px 28px rgba(0,0,0,.28);
}

/* THANK YOU PAGE */

.thank-you-section{
padding-top:90px;
padding-bottom:90px;
}

.thank-you-card{
max-width:760px;
margin:0 auto;
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 20px 50px rgba(0,0,0,.35);
border-radius:20px;
padding:40px 30px;
text-align:center;
}

.thank-you-icon{
font-size:54px;
color:#22c55e;
margin-bottom:10px;
text-shadow:0 0 14px rgba(34,197,94,.25);
}

.thank-you-message{
max-width:620px;
margin:20px auto 0;
}

.thank-you-message p{
color:#cbd5e1;
line-height:1.8;
margin:0 0 14px;
}

.thank-you-actions{
margin-top:26px;
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
}

.thank-you-review{
margin-top:34px;
padding-top:26px;
border-top:1px solid rgba(255,255,255,0.08);
}

.thank-you-review p{
color:#cbd5e1;
margin-bottom:16px;
}

/* SOCIAL LINKS */

.social-proof-label{
margin:20px 0 12px;
font-size:14px;
font-weight:600;
color:#cbd5e1;
}

.social-links{
display:flex;
gap:14px;
align-items:center;
flex-wrap:wrap;
}

.social-links a{
width:42px;
height:42px;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
color:#9fb3c8;
text-decoration:none;
font-size:18px;
transition:transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease, background .25s ease;
}

.social-links a:hover{
color:#4aa3ff;
border-color:rgba(74,163,255,.35);
box-shadow:0 0 14px rgba(74,163,255,.18);
transform:translateY(-2px);
background:rgba(255,255,255,0.06);
}

/* HELP HUB */

.help-intro-card{
max-width:900px;
margin:10px auto 0;
background:rgba(20,38,61,.58);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 40px rgba(0,0,0,.35);
border-radius:18px;
padding:28px 30px;
text-align:left;
}

.help-intro-card p{
color:#cbd5e1;
line-height:1.8;
margin:0 0 14px;
font-size:17px;
text-align:left;
}

.help-intro-card p:last-child{
margin-bottom:0;
}

.help-category-section{
padding-top:0;
}

/* SERVICE CITIES SECTION */

.service-cities-section{
padding:60px 20px;
background:#0f172a;
border-top:1px solid rgba(255,255,255,0.05);
}

.service-cities-section h2{
text-align:center;
margin-bottom:20px;
}

.service-cities-section p{
max-width:700px;
margin:0 auto 40px;
text-align:center;
color:#cbd5e1;
line-height:1.7;
}

.city-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.city-grid h3{
font-size:18px;
margin-bottom:6px;
color:#4aa3ff;
}

.city-grid p{
font-size:14px;
margin:0;
color:#cbd5e1;
text-align:left;
}

/* SHARED CARD HOVER POLISH */

.compare-card,
.faq-card,
.article-card,
.article-side-card,
.local-tech-card,
.contact-card,
.map-card,
.service-radius-card,
.help-intro-card,
.thank-you-card{
transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.compare-card:hover,
.faq-card:hover,
.article-card:hover,
.article-side-card:hover,
.local-tech-card:hover,
.contact-card:hover,
.map-card:hover,
.service-radius-card:hover,
.help-intro-card:hover{
transform:translateY(-4px);
box-shadow:0 20px 48px rgba(0,0,0,.42), 0 0 14px rgba(74,163,255,.06);
border-color:rgba(74,163,255,.28);
}

/* FOOTER */

footer{
background:#0b1624;
text-align:center;
padding:30px;
font-size:14px;
color:#ccc;
}

/* FLOATING BUTTONS */

.floating-buttons{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
z-index:1001;
}

.float-call,
.float-text{
padding:12px 20px;
border-radius:30px;
text-decoration:none;
color:white;
transition:transform .25s ease, box-shadow .25s ease;
}

.float-call{
background:#1e73be;
}

.float-text{
background:#16a34a;
}

.float-call:hover,
.float-text:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,.45);
}

/* RESPONSIVE */

@media(max-width:980px){
.header-inner{
flex-direction:column;
align-items:center;
gap:14px;
}

nav{
justify-content:center;
gap:16px;
}
}

@media(max-width:900px){
.article-layout{
grid-template-columns:1fr;
}

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-text{
text-align:center;
}

.hero-text p{
margin-left:auto;
margin-right:auto;
}

.hero-trust{
grid-template-columns:1fr;
max-width:100%;
}

.hero-trust div{
justify-content:center;
text-align:center;
}

.hero-visual-stack{
height:170px;
min-width:240px;
}

.monitor-icon{
font-size:120px;
}

.tower-icon{
font-size:50px;
left:68%;
top:64%;
}

.compare-grid{
grid-template-columns:1fr;
}

.local-tech-layout{
grid-template-columns:1fr;
}

.map-layout{
grid-template-columns:1fr;
}
}

@media(max-width:600px){
.logo{
gap:12px;
flex-direction:column;
text-align:center;
}

.logo-icon{
font-size:28px;
}

.logo-text h1{
font-size:24px;
}

.logo-text span{
font-size:12px;
}

nav{
gap:14px;
justify-content:center;
}

.hero{
padding:72px 20px 64px;
}

.hero-text h1{
font-size:32px;
}
}

/* HOMEPAGE ONLY CLEANUP */

.trust-section{
display:none;
}