/* ============================================================
   AtoZ Telecom Solutions — Page & Section Styles
   ============================================================ */

/* ---------- HOME: Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(8.5rem, 14vh, 11rem) 0 4rem;
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; z-index: 0; }
.hero__canvas canvas { width: 100%; height: 100%; }
.hero__vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1000px 560px at 70% 20%, rgba(108,99,255,.14), transparent 60%),
    radial-gradient(900px 520px at 15% 75%, rgba(0,200,255,.11), transparent 60%),
    linear-gradient(180deg, rgba(5,8,22,.25), rgba(5,8,22,0) 30%, rgba(5,8,22,.9) 92%);
}
.hero .container { position: relative; z-index: 2; }

.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
@media (max-width: 1024px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__title { font-size: clamp(2.7rem, 6.2vw, 4.9rem); margin: 1.4rem 0 1.5rem; }
.hero__title .line { display: block; }
.hero__sub { max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: clamp(2.6rem, 5vh, 4rem); padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stats .stat__num { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }

/* Floating visual column */
.hero__visual { position: relative; min-height: 480px; }
@media (max-width: 1024px) { .hero__visual { display: none; } }
.hero-card {
  position: absolute; will-change: transform;
  padding: 1.15rem 1.35rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.7);
  display: flex; gap: .95rem; align-items: center;
}
.hero-card__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--primary);
  background: rgba(0,200,255,.12); border: 1px solid rgba(0,200,255,.25);
}
.hero-card__icon svg { width: 22px; height: 22px; }
.hero-card b { display: block; font-family: var(--font-heading); font-size: 1.05rem; }
.hero-card span { font-size: .78rem; color: var(--muted); }
.hero-card--speed { top: 6%; right: 8%; }
.hero-card--uptime { top: 38%; left: 0; }
.hero-card--secure { bottom: 14%; right: 3%; }

/* Speed ring */
.speed-ring { position: absolute; top: 22%; right: 24%; width: 210px; height: 210px; }
.speed-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.speed-ring circle { fill: none; stroke-width: 8; stroke-linecap: round; }
.speed-ring .ring-bg { stroke: rgba(255,255,255,.07); }
.speed-ring .ring-val { stroke: url(#ringGrad); filter: drop-shadow(0 0 8px rgba(0,200,255,.7)); }
.speed-ring__label {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
}
.speed-ring__label b { font-family: var(--font-heading); font-size: 2rem; display: block; }
.speed-ring__label small { color: var(--muted); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }

/* Availability checker */
.avail {
  margin-top: 2.2rem; max-width: 520px;
  display: flex; gap: .5rem; padding: .5rem;
  border-radius: 100px;
  background: rgba(11,18,32,.6); border: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: border-color .4s, box-shadow .4s;
}
.avail:focus-within { border-color: rgba(0,200,255,.5); box-shadow: 0 0 0 4px rgba(0,200,255,.08); }
.avail input {
  flex: 1; min-width: 0; background: none; border: 0; outline: 0;
  padding: .55rem 1.1rem; color: var(--text); font-size: .95rem;
}
.avail input::placeholder { color: var(--muted); }
.avail .btn { flex: none; }
.avail__msg { margin-top: .7rem; font-size: .86rem; color: var(--success); min-height: 1.2em; font-family: var(--font-alt); }

/* Scroll hint */
.scroll-hint {
  position: absolute; left: 50%; bottom: 2rem; z-index: 2; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
}
.scroll-hint__mouse {
  width: 24px; height: 38px; border: 1.5px solid rgba(148,163,184,.5); border-radius: 100px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-hint__mouse::before {
  content: ''; width: 3px; height: 8px; border-radius: 3px; background: var(--primary);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- HOME: Trusted logos band ---------- */
.trusted { padding-block: clamp(2.5rem, 5vw, 4rem); border-block: 1px solid var(--border); background: rgba(11,18,32,.4); }
.trusted__label {
  text-align: center; margin-bottom: 1.8rem;
  font-family: var(--font-alt); font-size: .78rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- HOME/ABOUT: split with visual ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__visual { position: relative; }

/* Abstract network illustration panel */
.net-panel {
  position: relative; aspect-ratio: 4 / 4.4; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(340px 260px at 30% 25%, rgba(0,200,255,.16), transparent 60%),
    radial-gradient(340px 280px at 75% 75%, rgba(108,99,255,.18), transparent 60%),
    linear-gradient(160deg, #0d1526, #080d1c);
  border: 1px solid var(--border);
}
.net-panel svg.netlines { position: absolute; inset: 0; width: 100%; height: 100%; }
.net-panel .node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--secondary); box-shadow: 0 0 14px rgba(0,229,255,.9);
}
.net-panel .node::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(0,229,255,.5); animation: node-pulse 2.6s ease-out infinite;
}
@keyframes node-pulse {
  0% { transform: scale(.5); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.split__badge {
  position: absolute; bottom: -1.4rem; right: -1rem;
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
  background: rgba(13,21,38,.9); border: 1px solid rgba(0,200,255,.28);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.7), var(--glow-primary);
  display: flex; align-items: center; gap: 1rem;
}
@media (max-width: 640px) { .split__badge { right: 0; } }
.split__badge b { font-family: var(--font-heading); font-size: 1.7rem; display: block; line-height: 1; }
.split__badge span { font-size: .78rem; color: var(--muted); }

.split .check-list { margin-top: 1.8rem; }
.split__actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 2rem; }
@media (max-width: 560px) { .mv-cards { grid-template-columns: 1fr; } }
.mv-cards .card { padding: 1.4rem; }
.mv-cards h3 { font-size: 1.02rem; display: flex; align-items: center; gap: .6rem; }
.mv-cards h3 svg { width: 18px; height: 18px; color: var(--primary); }
.mv-cards p { font-size: .88rem; margin-top: .5rem; }

/* ---------- Services grid ---------- */
.services-bg {
  position: relative;
}
.services-bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 50% 0%, rgba(0,200,255,.06), transparent 60%);
}

/* Tilt cards get perspective from JS transform */
[data-tilt] { transform-style: preserve-3d; }
[data-tilt] .card-icon, [data-tilt] h3 { transform: translateZ(24px); }

/* ---------- Horizontal scroll (why choose us / process) ---------- */
.hscroll { position: relative; overflow: hidden; }
.hscroll__track {
  display: flex; gap: 1.5rem; will-change: transform;
  padding-inline: max(var(--gutter), (100vw - var(--container)) / 2);
}
.hscroll__panel {
  flex: none; width: min(460px, 82vw);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hscroll__panel::before {
  content: attr(data-step); position: absolute; top: .6rem; right: 1.2rem;
  font-family: var(--font-heading); font-size: 5.5rem; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(0,200,255,.22);
}
.hscroll__panel h3 { font-size: 1.35rem; margin: 1.1rem 0 .7rem; }
.hscroll__panel p { color: var(--muted); font-size: .94rem; }
.hscroll__panel .card-icon { margin-bottom: 0; }
@media (max-width: 768px) {
  .hscroll__track { flex-direction: column; padding-inline: var(--gutter); }
  .hscroll__panel { width: 100%; }
}

/* ---------- Coverage map ---------- */
.coverage-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .coverage-wrap { grid-template-columns: 1fr; } }

.map-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(150deg, #0c1425, #070c1a);
  padding: clamp(1rem, 2vw, 2rem);
}
.map-panel svg { width: 100%; height: auto; }
.map-dot { fill: rgba(148,163,184,.28); }
.map-city { fill: var(--secondary); filter: drop-shadow(0 0 6px rgba(0,229,255,.9)); cursor: pointer; }
.map-pulse {
  fill: none; stroke: var(--secondary); stroke-width: 1; opacity: 0;
  transform-origin: center; transform-box: fill-box;
  animation: map-pulse 3s ease-out infinite;
}
@keyframes map-pulse {
  0% { transform: scale(.3); opacity: .9; }
  100% { transform: scale(3); opacity: 0; }
}
.map-line {
  fill: none; stroke: url(#mapLineGrad); stroke-width: 1.2; opacity: .75;
  stroke-dasharray: 6 8; animation: dash-flow 2.6s linear infinite;
}
@keyframes dash-flow { to { stroke-dashoffset: -14; } }

.map-tip {
  position: absolute; z-index: 5; pointer-events: none;
  padding: .5rem .9rem; border-radius: 10px;
  background: rgba(8,13,26,.95); border: 1px solid rgba(0,200,255,.35);
  font-family: var(--font-alt); font-size: .8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; transform: translate(-50%, -130%) scale(.9);
  transition: opacity .25s, transform .25s var(--ease-out);
}
.map-tip.is-visible { opacity: 1; transform: translate(-50%, -145%) scale(1); }
.map-tip small { display: block; color: var(--muted); font-weight: 400; }

.coverage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.2rem; }
@media (max-width: 480px) { .coverage-stats { grid-template-columns: 1fr; } }
.coverage-stats .card { padding: 1.3rem 1.5rem; }

/* ---------- Pricing ---------- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 1rem;
  margin: 0 auto 3rem; padding: .45rem;
  border-radius: 100px; border: 1px solid var(--border);
  background: rgba(255,255,255,.03); position: relative;
}
.billing-toggle button {
  position: relative; z-index: 1; padding: .6rem 1.6rem; border-radius: 100px;
  font-family: var(--font-alt); font-weight: 600; font-size: .9rem; color: var(--muted);
  transition: color .35s;
}
.billing-toggle button.is-active { color: #04101c; }
.billing-toggle__pill {
  position: absolute; top: .45rem; bottom: .45rem; left: .45rem;
  width: calc(50% - .45rem); border-radius: 100px;
  background: var(--grad-primary);
  transition: transform .45s var(--ease-io);
}
.billing-toggle.is-yearly .billing-toggle__pill { transform: translateX(100%); }
.billing-toggle .save-tag {
  position: absolute; top: -12px; right: -16px;
  font-size: .64rem; font-weight: 700; letter-spacing: .04em;
  background: var(--success); color: #032117;
  padding: .18rem .55rem; border-radius: 100px; transform: rotate(6deg);
}

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: stretch; }
@media (max-width: 1080px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }

.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 2.1rem 1.8rem; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.014));
  border: 1px solid var(--border); overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
}
.plan:hover { transform: translateY(-8px); border-color: rgba(0,200,255,.3); box-shadow: var(--glow-primary); }
.plan--popular { border-color: rgba(0,200,255,.45); background: linear-gradient(165deg, rgba(0,200,255,.09), rgba(108,99,255,.07)); }
.plan--popular::before {
  content: ''; position: absolute; inset: -40%; z-index: -1; opacity: .5;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(0,200,255,.5) 85%, transparent 100%);
  animation: border-rotate 6s linear infinite;
}
@keyframes border-rotate { to { transform: rotate(360deg); } }
.plan--popular::after {
  content: ''; position: absolute; inset: 1px; z-index: -1; border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(165deg, #0d1a2e, #0c1226);
}
.plan__tag {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #04101c; background: var(--grad-primary);
  padding: .3rem .8rem; border-radius: 100px;
  box-shadow: 0 0 16px rgba(0,200,255,.5);
}
.plan__name { font-family: var(--font-alt); font-weight: 700; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.plan__speed { font-family: var(--font-heading); font-size: 2rem; margin-top: .8rem; }
.plan__speed small { font-size: .95rem; color: var(--primary); }
.plan__price { display: flex; align-items: baseline; gap: .3rem; margin: 1.1rem 0 1.4rem; }
.plan__price .cur { font-size: 1.1rem; color: var(--muted); }
.plan__price .amt { font-family: var(--font-heading); font-size: 2.9rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__price .per { color: var(--muted); font-size: .88rem; }
.plan ul { flex: 1; display: flex; flex-direction: column; gap: .7rem; padding-block: 1.4rem; border-top: 1px solid var(--border); }
.plan ul li { display: flex; gap: .7rem; font-size: .89rem; color: var(--muted); }
.plan ul svg { flex: none; width: 17px; height: 17px; color: var(--success); margin-top: .15em; }
.plan .btn { width: 100%; margin-top: .6rem; }

/* ---------- Timeline (why choose us / about) ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before {
  content: ''; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0,200,255,.35) 8%, rgba(108,99,255,.35) 92%, transparent);
}
.timeline__item { position: relative; padding: 0 0 2.6rem 4.2rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 8px; top: .3rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--primary);
  display: grid; place-items: center;
  box-shadow: 0 0 0 5px rgba(0,200,255,.1);
}
.timeline__dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.timeline__year { font-family: var(--font-heading); color: var(--primary); font-size: .95rem; font-weight: 700; letter-spacing: .08em; }
.timeline__item h3 { font-size: 1.25rem; margin: .35rem 0 .5rem; }
.timeline__item p { color: var(--muted); font-size: .94rem; max-width: 58ch; }

/* ---------- Features band ---------- */
.features-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1024px) { .features-band { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-band { grid-template-columns: 1fr; } }
.feature-chip {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.4rem; border-radius: var(--radius);
  background: rgba(255,255,255,.032); border: 1px solid var(--border);
  transition: transform .45s var(--ease-out), border-color .45s, background-color .45s;
}
.feature-chip:hover { transform: translateY(-4px); border-color: rgba(0,200,255,.35); background: rgba(0,200,255,.05); }
.feature-chip svg { flex: none; width: 24px; height: 24px; color: var(--primary); }
.feature-chip b { display: block; font-family: var(--font-alt); font-size: .95rem; }
.feature-chip span { font-size: .78rem; color: var(--muted); }

/* ---------- Projects / case studies ---------- */
.project-card { display: flex; flex-direction: column; padding: 0; }
.project-card__media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
}
.project-card__media .img-fill {
  position: absolute; inset: 0;
  transition: transform .8s var(--ease-out);
}
.project-card:hover .project-card__media .img-fill { transform: scale(1.07); }
.project-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,8,22,.85));
}
.project-card__cat {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 100px;
  background: rgba(5,8,22,.7); border: 1px solid rgba(0,200,255,.35); color: var(--secondary);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.project-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.project-card__stats { display: flex; gap: 1.6rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.project-card__stats b { font-family: var(--font-heading); font-size: 1.25rem; color: var(--primary); display: block; }
.project-card__stats span { font-size: .74rem; color: var(--muted); }

/* Abstract media fills (pure CSS artwork, no image files) */
.img-fill { background-size: cover; background-position: center; }
.fill-1 { background: radial-gradient(300px 200px at 70% 30%, rgba(0,200,255,.35), transparent 65%), radial-gradient(340px 240px at 25% 80%, rgba(108,99,255,.4), transparent 60%), linear-gradient(150deg, #0e1830, #070c1a); }
.fill-2 { background: radial-gradient(280px 220px at 25% 25%, rgba(16,185,129,.28), transparent 60%), radial-gradient(320px 260px at 80% 70%, rgba(0,200,255,.32), transparent 60%), linear-gradient(150deg, #0c1a2a, #08101e); }
.fill-3 { background: radial-gradient(300px 220px at 75% 20%, rgba(245,158,11,.22), transparent 60%), radial-gradient(320px 250px at 20% 75%, rgba(108,99,255,.35), transparent 60%), linear-gradient(150deg, #131530, #0a0d20); }
.fill-4 { background: radial-gradient(300px 220px at 30% 30%, rgba(0,229,255,.3), transparent 60%), radial-gradient(300px 240px at 80% 80%, rgba(16,185,129,.25), transparent 60%), linear-gradient(150deg, #0b1c2e, #071018); }
.fill-5 { background: radial-gradient(300px 200px at 60% 70%, rgba(108,99,255,.4), transparent 65%), radial-gradient(280px 220px at 20% 20%, rgba(0,200,255,.3), transparent 60%), linear-gradient(150deg, #101336, #080a1e); }
.fill-6 { background: radial-gradient(320px 240px at 70% 60%, rgba(0,200,255,.28), transparent 60%), radial-gradient(280px 200px at 20% 30%, rgba(245,158,11,.18), transparent 60%), linear-gradient(150deg, #0d1626, #090e1e); }

/* Overlay circuit pattern for media fills */
.img-fill::before {
  content: ''; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ---------- Testimonials ---------- */
.testimonials .swiper { overflow: visible; padding-bottom: 3.4rem; }
.testi-card {
  height: auto; display: flex; flex-direction: column; gap: 1.4rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color .45s, box-shadow .45s, transform .45s var(--ease-out);
}
.testi-card:hover { border-color: rgba(0,200,255,.3); box-shadow: var(--glow-primary); transform: translateY(-5px); }
.testi-card__stars { display: flex; gap: .25rem; color: var(--warning); }
.testi-card__stars svg { width: 17px; height: 17px; }
.testi-card blockquote { color: var(--text); font-size: .98rem; line-height: 1.7; flex: 1; }
.testi-card footer { display: flex; align-items: center; gap: .9rem; }
.testi-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .95rem; color: #04101c;
  background: var(--grad-primary);
}
.testi-card footer b { display: block; font-family: var(--font-alt); font-size: .92rem; }
.testi-card footer span { font-size: .78rem; color: var(--muted); }

.swiper-pagination-bullet { background: var(--muted); opacity: .4; transition: width .35s var(--ease-out), opacity .35s, background-color .35s; }
.swiper-pagination-bullet-active { width: 26px; border-radius: 5px; background: var(--primary); opacity: 1; }

/* ---------- Blog cards ---------- */
.blog-card { padding: 0; display: flex; flex-direction: column; }
.blog-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card__media .img-fill { position: absolute; inset: 0; transition: transform .8s var(--ease-out); }
.blog-card:hover .blog-card__media .img-fill { transform: scale(1.08); }
.blog-card__cat {
  position: absolute; bottom: .9rem; left: .9rem; z-index: 2;
  font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 100px;
  background: rgba(5,8,22,.75); border: 1px solid rgba(0,200,255,.35); color: var(--secondary);
}
.blog-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; gap: 1rem; font-size: .76rem; color: var(--muted); margin-bottom: .7rem; font-family: var(--font-alt); }
.blog-card h3 { font-size: 1.12rem; line-height: 1.35; transition: color .3s; }
.blog-card:hover h3 { color: var(--primary); }
.blog-card p { margin-top: .6rem; flex: 1; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info .card { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.4rem 1.5rem; }
.contact-info .card-icon { width: 46px; height: 46px; margin: 0; flex: none; }
.contact-info b { font-family: var(--font-alt); display: block; margin-bottom: .2rem; }
.contact-info a, .contact-info p { color: var(--muted); font-size: .92rem; transition: color .3s; }
.contact-info a:hover { color: var(--primary); }
.form-panel { padding: clamp(1.8rem, 3.5vw, 2.8rem); border-radius: var(--radius-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-status { margin-top: 1rem; font-family: var(--font-alt); font-size: .9rem; color: var(--success); min-height: 1.4em; }

/* Live chat button */
.chat-fab {
  position: fixed; left: 1.6rem; bottom: 1.6rem; z-index: 1400;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.35rem; border-radius: 100px;
  background: var(--grad-primary); color: #04101c;
  font-family: var(--font-alt); font-weight: 700; font-size: .88rem;
  box-shadow: 0 14px 34px -10px rgba(0,200,255,.55);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.chat-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 44px -10px rgba(0,200,255,.7); }
.chat-fab svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .chat-fab span { display: none; } .chat-fab { padding: .85rem; } }

/* ---------- Careers ---------- */
.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 1.5rem 1.8rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid var(--border);
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s;
}
.job:hover { transform: translateX(6px); border-color: rgba(0,200,255,.32); box-shadow: var(--glow-primary); }
.job h3 { font-size: 1.15rem; }
.job__meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .6rem; }
.job__meta span {
  font-size: .74rem; font-family: var(--font-alt); font-weight: 600;
  padding: .28rem .75rem; border-radius: 100px;
  background: rgba(0,200,255,.07); border: 1px solid rgba(0,200,255,.18); color: var(--muted);
}
@media (max-width: 600px) { .job { grid-template-columns: 1fr; } }

.perks-grid .card { text-align: left; }

/* ---------- Industries ---------- */
.industry-card { min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; }
.industry-card .card-icon { position: absolute; top: 1.6rem; left: 1.6rem; }
.industry-card__num {
  position: absolute; top: 1.1rem; right: 1.4rem;
  font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(148,163,184,.25);
  transition: -webkit-text-stroke-color .4s;
}
.industry-card:hover .industry-card__num { -webkit-text-stroke-color: rgba(0,200,255,.5); }

/* ---------- Comparison table (plans page) ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare {
  width: 100%; min-width: 760px; border-collapse: collapse;
  font-size: .92rem;
}
.compare th, .compare td { padding: 1.05rem 1.3rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th {
  font-family: var(--font-alt); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.035); color: var(--text);
}
.compare thead th:first-child { width: 30%; }
.compare tbody th { font-weight: 500; color: var(--muted); }
.compare td { color: var(--text); }
.compare tbody tr { transition: background-color .3s; }
.compare tbody tr:hover { background: rgba(0,200,255,.04); }
.compare .yes { color: var(--success); } .compare .no { color: rgba(148,163,184,.5); }
.compare td.hl { color: var(--primary); font-weight: 600; }

/* ---------- Values (about) ---------- */
.value-num {
  font-family: var(--font-heading); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px rgba(0,200,255,.45);
  margin-bottom: 1rem;
}

/* Team */
.team-card { text-align: center; padding: 2rem 1.5rem; }
.team-card__avatar {
  width: 96px; height: 96px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; color: #04101c;
  background: var(--grad-primary);
  box-shadow: 0 0 0 4px rgba(5,8,22,1), 0 0 0 6px rgba(0,200,255,.35);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.team-card:hover .team-card__avatar { transform: scale(1.06) rotate(3deg); box-shadow: 0 0 0 4px rgba(5,8,22,1), 0 0 0 6px rgba(0,229,255,.8), var(--glow-primary); }
.team-card h3 { font-size: 1.1rem; }
.team-card span { display: block; font-size: .82rem; color: var(--primary); font-family: var(--font-alt); margin-top: .25rem; }
.team-card p { margin-top: .8rem; font-size: .86rem; }

/* ---------- SVG draw ---------- */
.draw-path { stroke-dasharray: var(--path-len, 600); stroke-dashoffset: var(--path-len, 600); }

/* ---------- Page transition veil ---------- */
.page-veil {
  position: fixed; inset: 0; z-index: 3800; pointer-events: none;
  background: linear-gradient(120deg, var(--bg) 0%, #0a1228 50%, var(--bg) 100%);
  transform: scaleY(0); transform-origin: top;
}

/* ---------- Blog featured post ---------- */
.featured-post {
  display: grid; grid-template-columns: 1.2fr 1fr; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  margin-bottom: 3rem;
  transition: border-color .45s, box-shadow .45s;
}
.featured-post:hover { border-color: rgba(0,200,255,.3); box-shadow: var(--glow-primary); }
@media (max-width: 860px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post__media { position: relative; min-height: 300px; overflow: hidden; }
.featured-post__media .img-fill { position: absolute; inset: 0; transition: transform .9s var(--ease-out); }
.featured-post:hover .featured-post__media .img-fill { transform: scale(1.06); }
.featured-post__body { padding: clamp(1.8rem, 3.5vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.featured-post h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: .8rem 0 1rem; }
.featured-post p { color: var(--muted); }

/* Category filter pills */
.filter-pills { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 3rem; }
.filter-pills button {
  padding: .55rem 1.35rem; border-radius: 100px;
  font-family: var(--font-alt); font-size: .86rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); background: rgba(255,255,255,.03);
  transition: color .3s, border-color .3s, background-color .3s, transform .3s var(--ease-out);
}
.filter-pills button:hover { transform: translateY(-2px); color: var(--text); }
.filter-pills button.is-active {
  color: #04101c; background: var(--grad-primary); border-color: transparent;
  box-shadow: 0 8px 22px -8px rgba(0,200,255,.6);
}
.card.is-filtered-out { display: none; }

/* ============================================================
   Mobile polish — full responsive refinements
   ============================================================ */

/* Grid children must be allowed to shrink below content size */
.hero__grid > *, .split > *, .contact-grid > *, .coverage-wrap > * { min-width: 0; }

@media (max-width: 640px) {
  /* --- Hero --- */
  .hero { padding-top: 6.5rem; }
  .hero__title { font-size: clamp(2.05rem, 10.5vw, 2.7rem); }
  .hero__sub { font-size: 1rem; }

  /* Availability checker stacks vertically */
  .avail {
    flex-direction: column; gap: .6rem;
    padding: .7rem; border-radius: 22px;
    max-width: 100%;
  }
  .avail input { width: 100%; padding: .8rem 1rem; }
  .avail .btn { width: 100%; }

  /* Hero action buttons go full-width */
  .hero__actions { margin-top: 1.8rem; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }

  .hero__stats { gap: 1.2rem 1.8rem; padding-top: 1.6rem; margin-top: 2.2rem; }
  .hero__stats .stat__num { font-size: 1.6rem; }
  .hero__stats .stat__label { font-size: .8rem; margin-top: .3rem; }

  .scroll-hint { display: none; }

  /* --- Header --- */
  .nav { margin-top: .75rem; padding: .7rem 1rem; border-radius: 14px; }
  .header.is-scrolled .nav { padding: .55rem 1rem; }
  .brand { font-size: 1.08rem; gap: .55rem; }
  .brand__mark { width: 32px; height: 32px; }

  /* --- Sections --- */
  .section-head { margin-bottom: 2.2rem; }
  .eyebrow { font-size: .72rem; }
  .lead { font-size: .98rem; }

  /* About visual: keep floating badge inside flow */
  .split { gap: 3.2rem; }
  .split__visual { margin-bottom: 1.8rem; }
  .split__badge { padding: .9rem 1.1rem; bottom: -1.2rem; }
  .split__badge b { font-size: 1.35rem; }
  .split__actions .btn { flex: 1 1 100%; justify-content: center; }

  /* Cards breathe a bit tighter */
  .card { padding: 1.4rem 1.3rem; }
  .card-icon { width: 48px; height: 48px; margin-bottom: 1.1rem; }

  /* Horizontal-scroll panels (stacked on mobile) */
  .hscroll__panel { padding: 1.5rem 1.4rem; }
  .hscroll__panel::before { font-size: 4rem; }

  /* Coverage */
  .coverage-stats { gap: .9rem; margin-top: 1.8rem; }
  .map-panel { padding: .8rem; }

  /* Feature chips */
  .feature-chip { padding: 1.05rem 1.15rem; }

  /* FAQ */
  .acc-item__head { padding: 1.05rem 1.15rem; font-size: .95rem; gap: .7rem; }
  .acc-item__body-inner { padding: 0 1.15rem 1.2rem; }

  /* Contact */
  .form-panel { padding: 1.5rem 1.2rem; }
  .contact-info .card { padding: 1.15rem 1.2rem; }

  /* CTA band */
  .cta-band__box { padding: 2.4rem 1.3rem; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .cta-band__actions .newsletter { max-width: 100%; }

  /* Footer */
  .footer__grid { gap: 2.2rem; padding-block: 3rem 2.2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .7rem; padding-block: 1.2rem 5.5rem; }

  /* Floating buttons: compact + clear of content */
  .chat-fab { left: 1rem; bottom: 1rem; padding: .8rem; }
  .chat-fab span { display: none; }
  .to-top { right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
}

/* Very small phones */
@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .hero__title { font-size: 1.9rem; }
  .badge { font-size: .68rem; padding: .35rem .8rem; }
  .btn--lg { padding: 1rem 1.6rem; font-size: .95rem; }
  .stat__num { font-size: 1.9rem; }
}

/* Short landscape phones: keep hero usable */
@media (max-height: 500px) and (max-width: 900px) {
  .hero { min-height: auto; padding-block: 7rem 3.5rem; }
  .scroll-hint { display: none; }
}
