/* ═══════════════════════════════════════════
   DESIGN SYSTEM
   ═══════════════════════════════════════════ */
:root {
  --black: #0b0e13;
  --dark: #414451;
  --charcoal: #363845;
  --slate: #52545f;
  --gray: #6b7280;
  --silver: #9ca3af;
  --light: #e5e7eb;
  --offwhite: #f5f6f8;
  --white: #ffffff;

  --blue: #3fb7e9;
  --blue-hover: #2da8db;
  --blue-light: #5cc4ed;
  --blue-glow: rgba(63, 183, 233, 0.10);
  --blue-glow-strong: rgba(63, 183, 233, 0.18);
  --green: #10b981;

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max-w: 1140px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); font-size: 16px; line-height: 1.65;
  color: var(--dark); background: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--blue-hover); }
h1,h2,h3,h4 { font-family: var(--font); font-weight: 700; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); letter-spacing: -0.01em; }
p { color: var(--slate); max-width: 60ch; font-size: 1.02rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section--alt { background: var(--offwhite); }
.text-center { text-align: center; }

/* ═══════ BADGES ═══════ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blue); background: var(--blue-glow);
  padding: 0.35rem 0.9rem; border-radius: 100px;
}
.sh { text-align: center; margin-bottom: 3rem; }
.sh .badge { margin-bottom: 0.75rem; }
.sh p { margin: 0.6rem auto 0; color: var(--gray); font-size: 1.05rem; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  padding: 0.75rem 1.6rem; border-radius: 8px; border: none;
  cursor: pointer; transition: all 0.2s; text-decoration: none; line-height: 1.4;
}
.btn--p { background: var(--blue); color: var(--white); }
.btn--p:hover { background: var(--blue-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(63,183,233,0.28); }
.btn--s { background: var(--white); color: var(--dark); border: 1.5px solid var(--light); }
.btn--s:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn--lg { font-size: 0.95rem; padding: 0.9rem 2rem; }
.btn--sm { font-size: 0.82rem; padding: 0.55rem 1.15rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.04); transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; height: 64px;
}
.nav__logo { font-size: 1.25rem; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; position: relative; }
.nav__logo span { color: var(--blue); }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { max-height: 40px; width: auto; }
.nav__logo::after {
  content: 'Double-click to upload logo'; position: absolute; bottom: -22px; left: 0;
  font-size: 0.62rem; font-weight: 500; color: var(--silver); white-space: nowrap;
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.nav__logo:hover::after { opacity: 1; }
.nav__links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav__links a {
  display: block; padding: 0.4rem 0.85rem; font-size: 0.87rem; font-weight: 500;
  color: var(--slate); border-radius: 6px; transition: color 0.15s;
}
.nav__links a:hover { color: var(--blue); }
.nav__links .active a { color: var(--blue); }
.nav__cta { margin-left: 0.75rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; }
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: block; }
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--white); padding: 5.5rem 2rem 2rem;
  flex-direction: column;
}
.mobile-nav.active { display: flex; }
.mobile-nav__links { list-style: none; }
.mobile-nav__links li { border-bottom: 1px solid var(--light); }
.mobile-nav__links a {
  display: block; padding: 0.9rem 0; font-size: 1.1rem; font-weight: 500; color: var(--dark);
}
.mobile-nav__footer {
  margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--light);
  font-size: 0.88rem; color: var(--gray);
}
.mobile-nav__footer a { color: var(--blue); font-weight: 600; }
.mobile-nav__footer p { margin-bottom: 0.3rem; }

/* Hamburger animation */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative; padding: 8.5rem 0 5rem;
  background: linear-gradient(145deg, #2d2f3a 0%, #363845 55%, #414451 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 550px 350px at 75% 35%, rgba(63,183,233,0.09), transparent),
    radial-gradient(ellipse 350px 250px at 25% 75%, rgba(63,183,233,0.04), transparent);
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue-light); background: rgba(63,183,233,0.1);
  padding: 0.4rem 1rem; border-radius: 100px; border: 1px solid rgba(63,183,233,0.18);
  margin-bottom: 1.25rem;
}
.hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero__sub { font-size: 1.08rem; color: #8896ab; margin-bottom: 2rem; max-width: 500px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2.5rem; }
.hero__stat-val { font-size: 1.35rem; font-weight: 800; color: var(--white); display: block; }
.hero__stat-lbl { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; color: #546478; text-transform: uppercase; letter-spacing: 0.08em; }

.hero__card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 2rem 2.25rem; max-width: 400px; margin-left: auto;
}
.hero__card-head {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: #546478; margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hc-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hc-row:last-child { border-bottom: none; }
.hc-label { font-size: 0.88rem; color: #7a8ba0; }
.hc-val { font-family: var(--mono); font-size: 0.88rem; font-weight: 600; color: var(--blue-light); }
.hero__card-foot { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 0.78rem; color: #546478; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__card { display: none; }
}

/* ═══════════════════════════════════════════
   INTERNET PLANS — TABBED (Rural / City)
   Matches spyr.ca layout
   ═══════════════════════════════════════════ */
.inet-tabs {
  display: flex; justify-content: center; gap: 0.35rem;
  margin-bottom: 2.5rem;
  background: var(--offwhite); border-radius: 100px; padding: 0.3rem;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.inet-tab {
  padding: 0.65rem 1.5rem; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  color: var(--gray); background: transparent; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.45rem;
}
.inet-tab:hover { color: var(--dark); }
.inet-tab.active { background: var(--blue); color: var(--white); box-shadow: 0 2px 8px rgba(63,183,233,0.25); }
.inet-tab .tab-emoji { font-size: 1rem; }

.inet-panel { display: none; }
.inet-panel.active { display: block; animation: fadeUp 0.35s ease; }

/* ─── Rural Panel: single detailed card ─── */
.rural-card {
  max-width: 780px; margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--light); border-radius: var(--radius-xl);
  overflow: hidden; transition: all 0.2s;
}
.rural-card:hover { border-color: var(--blue); box-shadow: 0 4px 28px rgba(63,183,233,0.08); }

.rural-card__top {
  background: linear-gradient(135deg, var(--dark), #363845);
  padding: 2.25rem 2.5rem; color: var(--white); position: relative; overflow: hidden;
}
.rural-card__top::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 300px 200px at 85% 50%, rgba(63,183,233,0.12), transparent);
}
.rural-card__label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blue-light); margin-bottom: 0.5rem; position: relative;
}
.rural-card__title {
  font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.25rem; position: relative;
}
.rural-card__metrics {
  display: flex; gap: 2.5rem; position: relative;
}
.rural-metric__val {
  font-family: var(--mono); font-size: 1.6rem; font-weight: 700; color: var(--blue-light); display: block; line-height: 1.2;
}
.rural-metric__lbl {
  font-size: 0.72rem; font-weight: 500; color: #7a8ba0; text-transform: uppercase; letter-spacing: 0.06em;
}

.rural-card__body { padding: 2rem 2.5rem; }
.rural-card__desc {
  font-size: 0.95rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.25rem; max-width: 100%;
}
.rural-card__highlight {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: #fefce8; border: 1px solid #fde68a; border-radius: var(--radius);
  padding: 0.85rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.88rem; color: #92400e; line-height: 1.5;
}
.rural-card__highlight strong { color: #78350f; }

.rural-card__checks {
  display: flex; gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.rural-check {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 500; color: var(--slate);
}
.rural-check::before {
  content: '✓'; font-weight: 700; color: var(--green); font-size: 0.85rem;
}

.rural-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid var(--light); flex-wrap: wrap; gap: 1rem;
}
.rural-card__price-block {}
.rural-card__from { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.rural-card__price {
  font-size: 2rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em;
}
.rural-card__price span { font-size: 0.9rem; font-weight: 500; color: var(--gray); }
.rural-card__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.rural-card__note {
  width: 100%; text-align: center; margin-top: 0.5rem;
  font-size: 0.78rem; color: var(--silver);
}

/* ─── City Panel: two side-by-side plan cards ─── */
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.plan {
  background: var(--white); border: 1.5px solid var(--light); border-radius: var(--radius-lg);
  padding: 1.75rem; position: relative; transition: all 0.2s; display: flex; flex-direction: column;
}
.plan:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(63,183,233,0.08); transform: translateY(-3px); }
.plan--pop { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.plan__tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem; border-radius: 100px; white-space: nowrap;
}
.plan__name { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 0.15rem; }
.plan__speed { font-size: 1.75rem; font-weight: 800; color: var(--blue); margin-bottom: 0.15rem; letter-spacing: -0.02em; }
.plan__desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; }
.plan__price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 0.15rem; }
.plan__amt { font-size: 1.85rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.plan__per { font-size: 0.85rem; color: var(--gray); }
.plan__term { font-size: 0.78rem; color: var(--silver); margin-bottom: 1.25rem; }
.plan__list { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.plan__list li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.88rem; color: var(--slate); padding: 0.3rem 0;
}
.plan__list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 0.82rem; }

.city-footer {
  text-align: center; margin-top: 1.25rem;
  font-size: 0.85rem; font-weight: 600; color: var(--slate);
}

@media (max-width: 600px) {
  .city-grid { grid-template-columns: 1fr; max-width: 380px; }
  .rural-card__metrics { flex-direction: column; gap: 1rem; }
  .rural-card__footer { flex-direction: column; text-align: center; }
  .rural-card__actions { justify-content: center; }
}

/* ═══════ FEATURES ═══════ */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feat {
  background: var(--white); border: 1px solid var(--light); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: all 0.2s;
}
.feat:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.05); transform: translateY(-2px); }
.feat__ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-glow); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.feat h3 { margin-bottom: 0.4rem; }
.feat p { font-size: 0.88rem; color: var(--gray); line-height: 1.55; }
@media (max-width: 768px) { .feats { grid-template-columns: 1fr; } }

/* ═══════ ADD-ONS ═══════ */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.addon {
  display: flex; gap: 1rem; background: var(--white);
  border: 1px solid var(--light); border-radius: var(--radius-lg); padding: 1.5rem;
}
.addon__ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-glow); display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.addon h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.addon p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin-bottom: 0.3rem; }
.addon__price { font-family: var(--mono); font-size: 0.8rem; font-weight: 600; color: var(--blue); }
@media (max-width: 768px) { .addons { grid-template-columns: 1fr; } }

/* ═══════ STEPS ═══════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { text-align: center; position: relative; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 0.85rem;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 800;
}
.step h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin: 0 auto; max-width: 200px; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 24px; left: calc(50% + 30px); right: calc(-50% + 30px);
  height: 2px; background: var(--light);
}
@media (max-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } .step::after { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ═══════ CTA ═══════ */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  border-radius: var(--radius-xl); padding: 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 280px 180px at 12% 50%, rgba(255,255,255,0.07), transparent),
    radial-gradient(ellipse 280px 180px at 88% 50%, rgba(255,255,255,0.04), transparent);
}
.cta h2 { color: var(--white); margin-bottom: 0.6rem; position: relative; }
.cta p { color: rgba(255,255,255,0.8); margin: 0 auto 1.5rem; position: relative; }
.cta__btns { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════ FOOTER ═══════ */
.footer { background: var(--dark); color: var(--light); padding: 3.5rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.footer__brand span { color: var(--blue-light); }
.footer__desc { font-size: 0.88rem; color: #7a8ba0; line-height: 1.55; max-width: 300px; }
.footer h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.85rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.4rem; }
.footer li a { font-size: 0.88rem; color: #7a8ba0; }
.footer li a:hover { color: var(--white); }
.footer__bar {
  margin-top: 2.5rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: #4b5c6f;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ═══════ INNER PAGES ═══════ */
.page-hero {
  background: linear-gradient(145deg, #2d2f3a, #414451);
  padding: 7.5rem 0 2.75rem; text-align: center; position: relative;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 400px 250px at 50% 60%, rgba(63,183,233,0.06), transparent); }
.page-hero h1 { color: var(--white); position: relative; margin-bottom: 0.4rem; }
.page-hero p { color: #7a8ba0; position: relative; margin: 0 auto; font-size: 1.05rem; }
.page-hero .badge { margin-bottom: 0.75rem; position: relative; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.ci { display: flex; gap: 0.85rem; margin-bottom: 1.35rem; }
.ci__ico { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; background: var(--blue-glow); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.ci__lbl { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.ci__val { font-size: 0.95rem; font-weight: 500; color: var(--dark); }
.ci__val a { color: var(--blue); }
.form-mock { background: var(--offwhite); border-radius: var(--radius-lg); padding: 2rem; }
.form-mock h3 { margin-bottom: 0.35rem; }
.form-mock > p { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.25rem; }
.fm-field { margin-bottom: 1rem; }
.fm-field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--slate); margin-bottom: 0.3rem; }
.fm-field input, .fm-field textarea {
  width: 100%; padding: 0.65rem 0.85rem; border: 1.5px solid var(--light); border-radius: 8px;
  font-family: var(--font); font-size: 0.9rem; background: var(--white); color: var(--dark);
  transition: border-color 0.15s; outline: none;
}
.fm-field input:focus, .fm-field textarea:focus { border-color: var(--blue); }
.fm-field textarea { min-height: 90px; resize: vertical; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Legal */
.ltabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
.ltab {
  padding: 0.55rem 1.1rem; border: 1.5px solid var(--light); border-radius: 8px;
  cursor: pointer; font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  color: var(--slate); background: var(--white); transition: all 0.15s;
}
.ltab:hover, .ltab.active { border-color: var(--blue); color: var(--blue); background: var(--blue-glow); }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h3 { margin: 1.75rem 0 0.5rem; font-size: 1.05rem; }
.legal-content p { font-size: 0.92rem; margin-bottom: 0.85rem; max-width: 100%; }

/* Page switching & preview nav */
.preview-tabs {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200;
  background: var(--dark); border-radius: 100px; padding: 0.35rem;
  display: flex; gap: 0.25rem; box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.preview-tab {
  padding: 0.5rem 1rem; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.78rem; font-weight: 600;
  color: #7a8ba0; background: transparent; transition: all 0.15s;
}
.preview-tab:hover { color: var(--white); }
.preview-tab.active { background: var(--blue); color: var(--white); }
.page-section { display: none; }
.page-section.active { display: block; }

/* ═══════ MOBILE BOTTOM NAV ═══════ */
.mob-bottom-nav {
  display: none;
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200;
  background: var(--dark); border-radius: 100px; padding: 0.35rem;
  gap: 0.25rem; box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.mob-bottom-nav a {
  padding: 0.55rem 1.1rem; border-radius: 100px; border: none;
  font-family: var(--font); font-size: 0.78rem; font-weight: 600;
  color: #7a8ba0; background: transparent; transition: all 0.15s;
  text-decoration: none; display: block; white-space: nowrap;
}
.mob-bottom-nav a:hover { color: var(--white); }
.mob-bottom-nav a.active { background: var(--blue); color: var(--white); }
@media (max-width: 768px) {
  .mob-bottom-nav { display: flex; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp 0.5s ease both; }
.anim-d1 { animation-delay: 0.08s; }
.anim-d2 { animation-delay: 0.16s; }
.anim-d3 { animation-delay: 0.24s; }
.anim-d4 { animation-delay: 0.32s; }

/* Inquiry Form Grid */
html { scroll-behavior: smooth; }
.inquiry-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: stretch; margin-top: 2rem; }
.inquiry-side { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; }
.inquiry-side > div:last-child { margin-top: auto; }
@media (max-width: 768px) { .inquiry-grid { grid-template-columns: 1fr; } }

/* Northern Network */
.page-hero--north { background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%); padding: 4rem 0 3rem; text-align: center; }
.page-hero--north .badge { background: rgba(63,183,233,0.15); color: var(--blue); }
.page-hero--north h1 { color: #fff; font-size: 2.5rem; margin: 0.75rem 0 0.5rem; }
.page-hero--north p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }
.north-communities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.north-comm { background: var(--white); border: 1.5px solid var(--light); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.north-comm__ico { font-size: 2rem; margin-bottom: 0.75rem; }
.north-comm h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.35rem; }
.north-comm p { font-size: 0.88rem; color: var(--gray); }
.north-term-toggle { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.north-term { padding: 0.6rem 1.5rem; border: 1.5px solid var(--light); border-radius: 999px; background: var(--white); font-size: 0.85rem; font-weight: 600; color: var(--gray); cursor: pointer; }
.north-term.active { border-color: var(--blue); background: rgba(63,183,233,0.1); color: var(--blue); }
.north-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.north-install-note { text-align: center; margin-top: 1.5rem; font-size: 0.88rem; color: var(--gray); background: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-lg); border: 1.5px solid var(--light); max-width: 600px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
  .north-communities { grid-template-columns: 1fr; }
  .north-plans-grid { grid-template-columns: 1fr; max-width: 380px; }
  .page-hero--north h1 { font-size: 1.75rem; }
}
