/* ═══════════════════════════════════════════════════════
   VIRTUAL NETWORK — FRONTEND STYLESHEET
   Extracted from final approved design
═══════════════════════════════════════════════════════ */
:root {
  --blue:      #1a56e8;
  --blue-d:    #1340c0;
  --blue-l:    #e8effe;
  --teal:      #0bb5a0;
  --sky:       #38bdf8;
  --bg:        #f4f7fd;
  --white:     #ffffff;
  --border:    #dde5f4;
  --text:      #0c1730;
  --sub:       #48567a;
  --muted:     #8494b8;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --sh-s: 0 2px 12px rgba(26,86,232,.07);
  --sh-m: 0 6px 32px rgba(26,86,232,.11);
  --sh-l: 0 18px 60px rgba(26,86,232,.13);
  --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── SCROLL PROGRESS ── */
#spb {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--teal));
  z-index: 9999; transition: width .1s linear;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--border); box-shadow: var(--sh-s);
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--blue), var(--sky));
  border-radius: 11px; display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(26,86,232,.3);
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-text strong { display: block; font-size: .98rem; font-weight: 800; color: var(--text); }
.nav-logo-text span { display: block; font-size: .6rem; font-weight: 500; color: var(--muted); letter-spacing: .04em; }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a {
  font-size: .875rem; font-weight: 600; color: var(--sub);
  text-decoration: none; transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--blue);
  border-radius: 2px; transition: width .25s var(--ease);
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a:hover::after { width: 100%; }
.nav-btn {
  background: var(--blue); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: .5rem 1.25rem;
  font-family: inherit; font-weight: 700; font-size: .85rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(26,86,232,.32);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-btn:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(26,86,232,.4); color: #fff; }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer; border: none; background: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 1.25rem 5% 1.5rem;
  box-shadow: 0 12px 32px rgba(26,86,232,.1);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease); z-index: 999;
}
.nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.nav-drawer a { display: block; padding: .6rem .5rem; font-size: .95rem; font-weight: 600; color: var(--sub); text-decoration: none; border-radius: 8px; transition: all .2s; }
.nav-drawer a:hover { color: var(--blue); background: var(--blue-l); }
.nav-drawer .nav-btn { width: 100%; justify-content: center; padding: .75rem; font-size: .95rem; }

/* ── HERO ── */
.hero {
  padding-top: 68px;
  display: flex; align-items: flex-start;
  background: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(56,189,248,.13) 0%, rgba(26,86,232,.07) 40%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 45%; height: 55%;
  background: radial-gradient(ellipse at 20% 80%, rgba(11,181,160,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-dot-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(26,86,232,.1) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 75% at 85% 35%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 85% 35%, black 0%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 5%; padding: 32px 0 48px;
}
.hero-copy { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-l); border: 1px solid rgba(26,86,232,.22);
  border-radius: 100px; padding: .32rem .9rem;
  font-size: .75rem; color: var(--blue); font-weight: 700; margin-bottom: 1.4rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,181,160,.25); animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.9rem);
  font-weight: 800; line-height: 1.12; color: var(--text); letter-spacing: -.02em;
}
.hero-copy h1 em {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; font-size: 108%;
  background: linear-gradient(105deg, var(--blue) 0%, var(--sky) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-copy p { margin-top: 1.1rem; font-size: 1.05rem; color: var(--sub); max-width: 470px; line-height: 1.7; }
.hero-ctas { margin-top: 1.75rem; display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.btn-solid {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: .82rem 1.85rem;
  font-family: inherit; font-weight: 700; font-size: .92rem;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,86,232,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-solid:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,86,232,.42); color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--blue); border: 2px solid var(--border);
  border-radius: var(--radius-sm); padding: .8rem 1.85rem;
  font-family: inherit; font-weight: 700; font-size: .92rem;
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-l); color: var(--blue); }
.hero-stats { margin-top: 2.25rem; display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; font-weight: 800; line-height: 1; color: var(--blue); letter-spacing: -.03em; }
.hero-stat-lbl { font-size: .73rem; color: var(--muted); margin-top: .25rem; font-weight: 500; }
.hero-stat-sep { width: 1px; background: var(--border); align-self: stretch; }
.hero-visual { width: min(400px, 42%); flex-shrink: 0; }

/* Speed card */
.net-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--sh-l); }
.net-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.net-card-title { font-weight: 700; font-size: .9rem; color: var(--text); }
.live-pill { display: flex; align-items: center; gap: 6px; background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: 100px; padding: .22rem .72rem; font-size: .7rem; font-weight: 700; color: #059669; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: blink 1.6s ease infinite; }
.ring-wrap { display: flex; justify-content: center; margin-bottom: 1.3rem; }
.ring { width: 148px; height: 148px; border-radius: 50%; background: conic-gradient(var(--blue) 0% 72%, var(--border) 72%); display: grid; place-items: center; position: relative; }
.ring::before { content: ''; position: absolute; inset: 11px; background: var(--white); border-radius: 50%; }
.ring-inner { position: relative; z-index: 1; text-align: center; }
.ring-num { font-size: 1.9rem; font-weight: 800; color: var(--blue); line-height: 1; }
.ring-unit { font-size: .65rem; color: var(--muted); font-weight: 600; margin-top: 2px; display: block; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.metric-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .7rem .85rem; }
.metric-label { font-size: .65rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; }
.metric-val { font-weight: 700; font-size: .92rem; color: var(--teal); }

/* ── TICKER ── */
.ticker { background: var(--blue); padding: 11px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 3.5rem; width: max-content; animation: ticker 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: .55rem; white-space: nowrap; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.88); }
.ticker-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.35); }

/* ── SECTIONS ── */
.section { padding: 90px 5%; }
.section-bg { background: var(--bg); }
.section-white { background: var(--white); }
.section-tag { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.section-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text); margin: .45rem 0 .85rem; letter-spacing: -.02em; }
.section-sub { font-size: .97rem; color: var(--sub); max-width: 510px; line-height: 1.7; }
.section-head-center { text-align: center; margin-bottom: 3.5rem; }
.section-head-center .section-sub { margin: 0 auto; }

/* ── PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.plan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s; position: relative; overflow: hidden; }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); border-color: rgba(26,86,232,.28); }
.plan-card.plan-featured { border-color: var(--blue); box-shadow: var(--sh-m); }
.plan-featured-badge { position: absolute; top: 16px; right: -30px; background: var(--blue); color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .08em; padding: .22rem 2.8rem; transform: rotate(35deg); text-transform: uppercase; }
.plan-icon { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1; }
.plan-name { font-weight: 700; font-size: .95rem; color: var(--text); }
.plan-speed { font-size: 2.75rem; font-weight: 800; line-height: 1; margin: .55rem 0 .15rem; }
.plan-speed-unit { font-size: .9rem; font-weight: 500; color: var(--muted); }
.plan-price { font-size: .86rem; color: var(--muted); margin-bottom: 1.25rem; }
.plan-price strong { font-size: .98rem; color: var(--text); font-weight: 700; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: .55rem; flex: 1; margin-bottom: 1.5rem; }
.plan-feats li { font-size: .85rem; color: var(--sub); display: flex; align-items: flex-start; gap: .6rem; line-height: 1.4; }
.plan-feats li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.plan-cta { width: 100%; padding: .72rem; border-radius: var(--radius-sm); border: 2px solid var(--border); background: transparent; color: var(--blue); font-family: inherit; font-weight: 700; font-size: .88rem; text-align: center; text-decoration: none; display: block; cursor: pointer; transition: all .25s; }
.plan-cta:hover, .plan-featured .plan-cta { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(26,86,232,.3); }

/* ── FEATURES ── */
.feats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.feat-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: all .28s var(--ease); }
.feat-card:hover { background: var(--white); border-color: rgba(26,86,232,.22); transform: translateY(-4px); box-shadow: var(--sh-m); }
.feat-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.45rem; margin-bottom: 1.1rem; }
.feat-card h3 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
.feat-card p { font-size: .84rem; color: var(--sub); line-height: 1.65; }

/* ── COVERAGE ── */
.coverage-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.coverage-map-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; aspect-ratio: 1; position: relative; overflow: hidden; box-shadow: var(--sh-s); display: flex; align-items: center; justify-content: center; }
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.map-pin { position: absolute; width: 14px; height: 14px; background: var(--blue); border-radius: 50%; transform: translate(-50%, -50%); animation: ripple 2.2s ease infinite; }
.map-pin.hq { width: 18px; height: 18px; }
.map-pin.sec { background: var(--teal); }
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(26,86,232,.5)} 70%{box-shadow:0 0 0 16px rgba(26,86,232,0)} 100%{box-shadow:0 0 0 0 rgba(26,86,232,0)} }
.map-tag { position: absolute; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: .18rem .6rem; font-size: .67rem; font-weight: 700; color: var(--blue); white-space: nowrap; box-shadow: var(--sh-s); }
.area-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.25rem 0 1.75rem; }
.area-chip { background: var(--blue-l); border: 1px solid rgba(26,86,232,.2); border-radius: 100px; padding: .28rem .85rem; font-size: .78rem; color: var(--blue); font-weight: 600; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.testi-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.65rem; transition: all .28s var(--ease); display: flex; flex-direction: column; }
.testi-card:hover { background: var(--white); box-shadow: var(--sh-m); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: .88rem; letter-spacing: 1.5px; margin-bottom: .85rem; }
.testi-text { font-size: .88rem; color: var(--sub); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(140deg, var(--blue), var(--sky)); display: grid; place-items: center; font-weight: 700; font-size: .95rem; color: #fff; }
.testi-name { font-weight: 700; font-size: .88rem; color: var(--text); }
.testi-loc { font-size: .73rem; color: var(--muted); margin-top: .1rem; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(115deg, #1340c0 0%, var(--blue) 45%, var(--sky) 100%); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 26px 26px; }
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800; color: #fff; margin-bottom: .65rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: .98rem; max-width: 500px; margin: 0 auto 2rem; position: relative; }
.btn-white { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--blue); border: none; border-radius: var(--radius-sm); padding: .85rem 2.25rem; font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; text-decoration: none; position: relative; box-shadow: 0 4px 22px rgba(0,0,0,.18); transition: transform .2s, box-shadow .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.22); color: var(--blue); }

/* ── CONTACT ── */
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.ci-row { display: flex; align-items: flex-start; gap: .95rem; }
.ci-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--blue-l); border: 1px solid rgba(26,86,232,.18); display: grid; place-items: center; font-size: 1.1rem; }
.ci-label { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .22rem; }
.ci-val { font-size: .9rem; color: var(--text); line-height: 1.55; }
.ci-val a { color: var(--text); text-decoration: none; transition: color .2s; }
.ci-val a:hover { color: var(--blue); }
.form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--sh-m); }
.form-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: .95rem; }
.form-label { display: block; font-size: .78rem; font-weight: 600; color: var(--sub); margin-bottom: .38rem; }
.form-input { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .72rem 1rem; font-family: inherit; font-size: .88rem; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; -webkit-appearance: none; appearance: none; }
.form-input::placeholder { color: var(--muted); }
.form-input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(26,86,232,.09); }
.form-input.error { border-color: #ef4444; }
textarea.form-input { resize: vertical; min-height: 92px; }
.form-error { font-size: .73rem; color: #ef4444; margin-top: .3rem; display: none; }
.form-submit { width: 100%; padding: .9rem; border-radius: var(--radius-sm); border: none; background: var(--blue); color: #fff; font-family: inherit; font-weight: 700; font-size: .97rem; cursor: pointer; margin-top: .5rem; box-shadow: 0 4px 18px rgba(26,86,232,.35); transition: background .2s, transform .2s, box-shadow .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,86,232,.42); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── FOOTER ── */
.footer { background: #081428; padding: 64px 5% 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-desc { color: #6a7ea8; font-size: .84rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 250px; }
.footer-socials { display: flex; gap: .6rem; }
.footer-social { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; text-decoration: none; color: #6a7ea8; font-size: .8rem; font-weight: 700; transition: all .2s; }
.footer-social:hover { background: rgba(26,86,232,.25); border-color: var(--blue); color: #fff; }
.footer-col-title { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .95rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .82rem; color: #6a7ea8; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: #4a5e82; }
.footer-bottom a { color: var(--sky); text-decoration: none; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9998; padding: .85rem 1.4rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .88rem; color: #fff; opacity: 0; transform: translateY(16px) scale(.97); transition: all .38s var(--ease); pointer-events: none; max-width: 340px; box-shadow: var(--sh-m); }
.toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast.success { background: linear-gradient(135deg, #059669, #0bb5a0); }
.toast.error   { background: linear-gradient(135deg, #dc2626, #f97316); }

/* ── REVEAL ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-menu, .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-visual { display: none; }
  .hero-inner { padding: 24px 0 36px; }
  .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .hero-inner { padding: 20px 0 32px; }
  .hero-copy h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .plans-grid, .feats-grid, .testi-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 5%; }
  .cta-banner { padding: 56px 5%; }
}

/* ── MOBILE HERO SPACING FIX ── */
@media (max-width: 960px) {
  .hero {
    min-height: unset !important;
    padding-top: 68px !important;
    padding-bottom: 0 !important;
    align-items: flex-start !important;
  }
  .hero-inner {
    padding: 36px 0 44px !important;
  }
}
@media (max-width: 540px) {
  .hero-inner {
    padding: 28px 0 36px !important;
  }
}
