/* ═══════════════════════════════════════════════════════
   ALARME ATLAS — MASTER STYLESHEET v4
   One system. All pages. Full unity.
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --bg:      #07091f;
  --bg2:     #0b0e2a;
  --bg3:     #0f1335;
  --bg4:     #141840;
  --blue:    #29b6e3;
  --blue-g:  rgba(41,182,227,0.4);
  --blue-d:  rgba(41,182,227,0.1);
  --blue-xs: rgba(41,182,227,0.06);
  --border:  rgba(41,182,227,0.16);
  --gray:    #607090;
  --gray2:   #a0b4cc;
  --white:   #ffffff;
  --fd:      'Barlow Condensed', sans-serif;
  --fb:      'Barlow', sans-serif;
  --max:     1140px;
  --r:       8px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bg); color: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }
::selection { background: rgba(41,182,227,.22); }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(7,9,31,.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; filter: drop-shadow(0 0 8px rgba(41,182,227,.5)); }
.nav-logo-text { font-family: var(--fd); font-size: 18px; font-weight: 800; letter-spacing: 1px; color: var(--white); }
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--gray2); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.lang-toggle { display: flex; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.lang-btn { font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 5px 11px; cursor: pointer; border: none; font-family: var(--fb); transition: all .15s; background: transparent; color: var(--gray); }
.lang-btn.active { background: var(--blue); color: var(--bg); }
.btn-nav {
  background: var(--blue); color: var(--bg);
  border: none; padding: 9px 20px; border-radius: var(--r);
  font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  cursor: pointer; font-family: var(--fb); text-decoration: none; display: inline-block;
  box-shadow: 0 0 20px var(--blue-g); transition: all .2s;
  min-width: 160px; text-align: center; white-space: nowrap;
}
.btn-nav:hover { box-shadow: 0 0 35px var(--blue-g); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ══════════════════════════════════════════════
   PAGE HERO — same structure everywhere
══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: 64px; /* nav height */
}
/* Pure CSS dark background — no image bleed */
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(41,182,227,.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg4) 100%);
}
/* Decorative transparent logo watermark */
.page-hero-logo-bg {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px;
  background: url('images/logo-ring-t.png') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
/* Circuit line grid */
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(41,182,227,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,227,1) 1px, transparent 1px);
  background-size: 55px 55px; opacity: .025;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 4rem 2rem 3.5rem;
  animation: fadeUp .7s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* ── INDEX HERO (full viewport) ── */
.index-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.index-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,9,30,0.82) 0%, rgba(6,9,30,0.72) 50%, rgba(6,9,30,0.96) 100%), url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1920&q=80") center/cover no-repeat;
}
.index-hero-logo-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: url('images/logo-ring-t.png') center/contain no-repeat;
  opacity: .06; pointer-events: none;
}
.index-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(41,182,227,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,227,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .025;
}
/* Glow orbs */
.index-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 300px at 20% 20%, rgba(41,182,227,.04) 0%, transparent 70%),
    radial-gradient(circle 400px at 80% 70%, rgba(41,182,227,.04) 0%, transparent 70%);
}
.index-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 6rem 2rem 3rem;
  animation: fadeUp .9s ease both;
}

/* ══════════════════════════════════════════════
   HERO TYPOGRAPHY
══════════════════════════════════════════════ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,182,227,.1); border: 1px solid rgba(41,182,227,.28);
  color: var(--blue); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px; margin-bottom: 1.5rem;
  box-shadow: 0 0 14px rgba(41,182,227,.12);
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px rgba(41,182,227,.9); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800; line-height: 1.0; margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero-h1 em { color: var(--blue); font-style: normal; display: block; text-shadow: 0 0 40px rgba(41,182,227,.4); }
.hero-sub { font-size: 15px; color: var(--gray2); max-width: 500px; line-height: 1.78; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray2); }
.hero-trust-item b { color: var(--blue); }
.hero-cycle { transition: color .4s ease, text-shadow .4s ease, opacity .4s ease; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-p, .btn-g {
  display: inline-block; padding: 13px 26px; border-radius: var(--r);
  font-size: 13px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  cursor: pointer; font-family: var(--fb); text-decoration: none;
  transition: all .2s; border: none;
}
.btn-p {
  background: var(--blue); color: var(--bg);
  box-shadow: 0 0 22px var(--blue-g);
}
.btn-p:hover { box-shadow: 0 0 40px var(--blue-g); transform: translateY(-2px); }
.btn-g {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-g:hover { border-color: var(--blue); color: var(--blue); }

/* ══════════════════════════════════════════════
   SHARED STRIPS
══════════════════════════════════════════════ */
/* Ticker */
.ticker { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .75rem 0; overflow: hidden; }
.ticker-track { display: flex; gap: 2.5rem; white-space: nowrap; animation: ticker 26s linear infinite; }
.ticker-item { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); flex-shrink: 0; }
.ticker-sep { color: var(--blue); flex-shrink: 0; font-size: 8px; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* Counter row */
.counters-row { background: var(--bg2); border-bottom: 1px solid var(--border); }
.counters-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.counter-cell { padding: 2.25rem 1rem; border-right: 1px solid var(--border); text-align: center; }
.counter-cell:last-child { border-right: none; }
.counter-num { font-family: var(--fd); font-size: 3rem; font-weight: 800; color: var(--blue); line-height: 1; text-shadow: 0 0 28px rgba(41,182,227,.45); }
.counter-suf { font-family: var(--fd); font-size: 2rem; font-weight: 800; color: var(--blue); }
.counter-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-top: .35rem; }

/* Trust row */
.trust-row { background: var(--bg3); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; padding: 1rem 2rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: 12px; font-weight: 600; color: var(--gray2); }
.trust-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-d); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

/* Insurance bar */
.ins-bar { background: rgba(41,182,227,.05); border-bottom: 1px solid var(--border); padding: .85rem 2rem; display: flex; align-items: center; justify-content: center; gap: .75rem; text-align: center; }
.ins-bar p { font-size: 13px; color: var(--gray2); }
.ins-bar strong { color: var(--blue); }

/* Icon nav strip */
.icon-strip { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.icon-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: .75rem; }
.icon-strip-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .9rem .5rem; text-decoration: none; color: var(--gray2); font-size: 11px; font-weight: 600; letter-spacing: .5px; border: 1px solid var(--border); border-radius: var(--r); transition: all .25s; text-align: center; background: var(--bg3); }
.icon-strip-item:hover { background: var(--blue-d); color: var(--blue); border-color: rgba(41,182,227,.45); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.25), 0 0 20px rgba(41,182,227,.1); }
.icon-strip-item .si { font-size: 1.4rem; }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.sect { padding: 2rem 0; }
.sect.bg2 { background: var(--bg2); }
.sect.bg3 { background: var(--bg3); }
.sect-w { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.sect-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: .6rem; }
.sect-h { font-family: var(--fd); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 800; line-height: 1.05; margin-bottom: .75rem; }
.sect-h em { color: var(--blue); font-style: normal; }
.sect-p { font-size: 15px; color: var(--gray2); max-width: 540px; line-height: 1.75; }
.sect-center { text-align: center; }
.sect-center .sect-p { margin: 0 auto; }

/* ── Two column ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.two-col.rev { direction: rtl; }
.two-col.rev > * { direction: ltr; }

/* ── Image block ── */
.img-block { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.img-block img { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: var(--bg2); display: block; }
.img-badge { background: rgba(7,9,31,.92); border-top: 1px solid var(--border); padding: .9rem 1.25rem; }
.img-badge-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: .2rem; }
.img-badge-val { font-family: var(--fd); font-size: 1.3rem; font-weight: 800; }
.img-badge-val span { color: var(--blue); }
.img-badge-sub { font-size: 11px; color: var(--gray); margin-top: .1rem; }

/* ── Checklist ── */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem; list-style: none; margin: 1.75rem 0; }
.checklist li { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--gray2); }
.checklist li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 11px; flex-shrink: 0; transition: text-shadow .5s ease; }

/* ── Package box ── */
.pkg-box { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.4rem; margin: 1.5rem 0; transition: border-color .3s, box-shadow .3s, transform .3s; cursor: default; }
.pkg-box:hover { border-color: rgba(41,182,227,.75); transform: translateY(-3px); box-shadow: 0 0 25px rgba(41,182,227,.35), 0 0 60px rgba(41,182,227,.15), inset 0 0 25px rgba(41,182,227,.04); }
.pkg-box-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: .4rem; }
.pkg-box p { font-size: 13px; color: var(--gray2); line-height: 1.7; }
.alarm-checklist li, .surv-checklist li, .checklist.cycle li, .alarm-sys-checklist li { transition: color .4s ease, opacity .4s ease, text-shadow .4s ease; opacity: .45; }
.alarm-checklist li.active, .surv-checklist li.active, .checklist.cycle li.active, .alarm-sys-checklist li.active { opacity: 1; color: var(--blue) !important; text-shadow: 0 0 12px rgba(41,182,227,.7), 0 0 25px rgba(41,182,227,.3); }
.alarm-checklist li.active::before, .surv-checklist li.active::before, .checklist.cycle li.active::before, .alarm-sys-checklist li.active::before { color: var(--blue); text-shadow: 0 0 8px rgba(41,182,227,.9); }
.hero-cycle { transition: color .4s ease, text-shadow .4s ease, opacity .4s ease; opacity: .55; }
.hero-cycle.active { opacity: 1; color: var(--blue) !important; text-shadow: 0 0 12px rgba(41,182,227,.7), 0 0 25px rgba(41,182,227,.3); }
.hero-cycle.active b { text-shadow: 0 0 8px rgba(41,182,227,.9); }

/* ── Feature tiles ── */
.feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 2.5rem; }
.feat-tile { background: var(--bg2); padding: 1.5rem 1.25rem; text-align: center; transition: background .2s; }
.feat-tile:hover { background: var(--bg3); }
.feat-icon { font-size: 1.75rem; margin-bottom: .55rem; display: block; filter: drop-shadow(0 0 8px rgba(41,182,227,.35)); }
.feat-h { font-size: 13px; font-weight: 700; margin-bottom: .2rem; }
.feat-p { font-size: 11px; color: var(--gray); line-height: 1.5; }

/* ── Monitoring plans ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; align-items: stretch; }
.plan { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 2.25rem 2rem; position: relative; transition: border-color .25s, box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.plan:hover { border-color: rgba(41,182,227,.35); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.plan.hot { border-color: var(--blue); box-shadow: 0 0 50px rgba(41,182,227,.15); }
.plan.hot:hover { box-shadow: 0 0 60px rgba(41,182,227,.25), 0 8px 32px rgba(0,0,0,.25); }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--bg); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 16px; border-radius: 10px; white-space: nowrap; box-shadow: 0 0 16px rgba(41,182,227,.55); }
.plan-name { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.plan-price { font-family: var(--fd); font-size: 3.8rem; font-weight: 800; line-height: 1; display: flex; align-items: flex-start; gap: 2px; }
.plan-price sup { font-size: 1.4rem; color: var(--blue); padding-top: .5rem; }
.plan-price sub { font-size: 0.9rem; color: var(--gray); font-weight: 400; align-self: flex-end; padding-bottom: .35rem; margin-left: 2px; }
.plan-conn { font-size: 12px; color: var(--gray); margin: .4rem 0 1.4rem; }
.plan-div { height: 1px; background: var(--border); margin-bottom: 1.4rem; }
.plan-feats { flex: 1; }
.plan-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray2); margin-bottom: .6rem; line-height: 1.4; }
.plan-check { color: var(--blue); flex-shrink: 0; margin-top: 1px; font-size: 11px; font-weight: 700; }
.plan-btn { display: block; width: 100%; margin-top: 1.75rem; text-align: center; background: transparent; border: 1px solid var(--border); color: var(--white); padding: 13px 11px; border-radius: var(--r); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: var(--fb); text-decoration: none; transition: all .25s; }
.plan-btn:hover { border-color: var(--blue); color: var(--blue); }
.plan.hot .plan-btn { background: var(--blue); border-color: var(--blue); color: var(--bg); box-shadow: 0 0 20px rgba(41,182,227,.3); }

/* ── Product cards (promotions) ── */
.promo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.promo-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; text-align: center; transition: all .2s; position: relative; }
.promo-card:hover { border-color: rgba(41,182,227,.35); transform: translateY(-3px); }
.promo-card.best { border-color: var(--blue); box-shadow: 0 0 30px rgba(41,182,227,.1); }
.promo-card img { width: 100%; max-height: 150px; object-fit: contain; background: var(--bg2); border-radius: 6px; padding: 1rem; margin-bottom: 1rem; }
.promo-card h3 { font-size: 15px; font-weight: 700; margin-bottom: .4rem; }
.price-old { font-size: 13px; color: var(--gray); text-decoration: line-through; }
.price-new { font-family: var(--fd); font-size: 2.2rem; font-weight: 800; color: var(--blue); line-height: 1.1; }
.price-save { display: inline-block; font-size: 10px; background: rgba(41,182,227,.15); color: var(--blue); padding: 2px 9px; border-radius: 2px; font-weight: 700; margin-top: .2rem; }
.promo-card p { font-size: 12px; color: var(--gray); margin: .85rem 0; line-height: 1.55; }

/* ── Testimonials ── */
.testis { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.testi { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; position: relative; transition: border-color .3s, box-shadow .3s, transform .3s; }
.testi:hover { border-color: rgba(41,182,227,.75); transform: translateY(-4px); box-shadow: 0 0 25px rgba(41,182,227,.35), 0 0 60px rgba(41,182,227,.15), 0 0 100px rgba(41,182,227,.06), inset 0 0 30px rgba(41,182,227,.04); }
.testi-q { position: absolute; top: 1rem; right: 1.25rem; font-size: 3.5rem; color: rgba(41,182,227,.1); font-family: Georgia, serif; line-height: 1; }
.testi-stars { color: var(--blue); letter-spacing: 2px; margin-bottom: .9rem; font-size: 14px; }
.testi-text { font-size: 13px; color: var(--gray2); line-height: 1.72; margin-bottom: 1.25rem; font-style: italic; }
.testi-name { font-size: 13px; font-weight: 700; }
.testi-src { font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ── Switch banner ── */
.switch-box { background: linear-gradient(115deg, var(--bg3) 0%, rgba(41,182,227,.07) 100%); border: 1px solid rgba(41,182,227,.22); border-radius: 12px; padding: 2.5rem 3rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; margin-top: 3rem; }
.switch-box h3 { font-family: var(--fd); font-size: 1.8rem; font-weight: 800; margin-bottom: .5rem; }
.switch-box p { font-size: 14px; color: var(--gray2); line-height: 1.65; margin-bottom: 1.25rem; }
.switch-price { text-align: center; flex-shrink: 0; }
.switch-price-num { font-family: var(--fd); font-size: 4rem; font-weight: 800; color: var(--blue); line-height: 1; text-shadow: 0 0 30px rgba(41,182,227,.45); }
.switch-price-lbl { font-size: 10px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-top: .25rem; }
.switch-price-sub { font-size: 11px; color: var(--gray2); margin-top: .4rem; }

/* ── Pillars ── */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 2.5rem; }
.pillar { border-left: 2px solid rgba(41,182,227,.18); padding-left: 1.25rem; opacity: .45; transition: opacity .5s ease, border-color .5s ease; }
.pillar.active { border-left-color: var(--blue); opacity: 1; }
.pillar-n { font-family: var(--fd); font-size: 2.5rem; font-weight: 800; color: rgba(41,182,227,.18); line-height: 1; transition: color .5s ease; }
.pillar.active .pillar-n { color: rgba(41,182,227,.5); }
.pillar-icon { width: 30px; height: 30px; color: rgba(41,182,227,.35); margin-bottom: .6rem; transition: color .5s ease, filter .5s ease; }
.pillar.active .pillar-icon { color: var(--blue); filter: drop-shadow(0 0 8px rgba(41,182,227,.8)) drop-shadow(0 0 18px rgba(41,182,227,.4)); }
.pillar h4 { font-size: 14px; font-weight: 700; margin: .25rem 0 .4rem; transition: color .5s ease; }
.pillar.active h4 { color: var(--white); }
.pillar p { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── CTA box ── */
.cta-box { background: var(--bg3); border: 1px solid rgba(41,182,227,.22); border-radius: 14px; padding: 4rem; text-align: center; position: relative; overflow: hidden; margin: 4rem 2rem; }
.cta-box::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 280px; border-radius: 50%; background: radial-gradient(ellipse, rgba(41,182,227,.08), transparent 70%); pointer-events: none; }
.cta-box h2 { font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin-bottom: .9rem; position: relative; }
.cta-box p { color: var(--gray2); font-size: 15px; margin-bottom: 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Service cards (svc grid) ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 2.5rem; }
.svc-card { background: var(--bg2); padding: 1.75rem 1.5rem; transition: background .2s; position: relative; cursor: default; }
.svc-card:hover { background: var(--bg3); }
.svc-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--blue-d); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 1rem; transition: background .2s; }
.svc-card:hover .svc-icon { background: rgba(41,182,227,.18); }
.svc-card h3 { font-size: 15px; font-weight: 700; margin-bottom: .4rem; }
.svc-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── Access control grid ── */
.card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); transition: border-color .3s, box-shadow .3s, transform .3s; }
.card:hover { border-color: rgba(41,182,227,.9); transform: translateY(-4px); box-shadow: 0 0 25px rgba(41,182,227,.5), 0 0 60px rgba(41,182,227,.22), 0 0 100px rgba(41,182,227,.09), inset 0 0 30px rgba(41,182,227,.08); }
.ac-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.ac-tile { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 1rem; text-align: center; transition: border-color .3s, box-shadow .3s, transform .3s; display: block; }
.ac-tile:hover { border-color: rgba(41,182,227,.9); transform: translateY(-4px); box-shadow: 0 0 25px rgba(41,182,227,.5), 0 0 60px rgba(41,182,227,.22), 0 0 100px rgba(41,182,227,.09), inset 0 0 30px rgba(41,182,227,.08); }
.ac-tile img { width: 72px; height: 72px; object-fit: contain; margin-bottom: .6rem; }
.ac-tile p { font-size: 11px; color: var(--gray2); font-weight: 500; }

/* ── Camera tiles (surveillance sections) ── */
.cam-tile { background: var(--navy3); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem 1rem 1rem; text-align: center; transition: border-color .25s, box-shadow .25s, transform .25s; cursor: pointer; }
.cam-tile:hover { border-color: rgba(41,182,227,.9); box-shadow: 0 0 25px rgba(41,182,227,.5), 0 0 60px rgba(41,182,227,.22), 0 0 100px rgba(41,182,227,.09), inset 0 0 30px rgba(41,182,227,.08); transform: translateY(-4px); }
.cam-img-wrap { width: 100%; height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: .85rem; }
.cam-img-wrap img { max-width: 90%; max-height: 120px; object-fit: contain; transition: transform .25s, filter .25s; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.cam-tile:hover .cam-img-wrap img { transform: scale(1.06); filter: drop-shadow(0 4px 16px rgba(41,182,227,.25)); }
.cam-label { font-size: 13px; font-weight: 700; color: var(--gray2); transition: color .25s; }
.cam-tile:hover .cam-label { color: var(--blue); }

/* ── Team cards ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; margin-top: 2.5rem; }
.team-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-align: center; transition: border-color .25s, box-shadow .25s, transform .25s; }
.team-card:hover { border-color: rgba(41,182,227,.9); box-shadow: 0 0 25px rgba(41,182,227,.5), 0 0 60px rgba(41,182,227,.22), 0 0 100px rgba(41,182,227,.09); transform: translateY(-4px); }
.team-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.team-body { padding: 1.5rem; }
.team-body h3 { font-size: 18px; font-weight: 700; margin-bottom: .25rem; }
.team-role { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: .75rem; }
.team-body p { font-size: 13px; color: var(--gray2); line-height: 1.6; }

/* ── Contact grid ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon { width: 42px; height: 42px; background: var(--blue-d); border: 1px solid rgba(41,182,227,.35); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); box-shadow: 0 0 16px rgba(41,182,227,.3), inset 0 0 12px rgba(41,182,227,.06); }
.contact-icon svg { width: 17px; height: 17px; filter: drop-shadow(0 0 4px rgba(41,182,227,.6)); }
.contact-item h4 { font-size: 12px; font-weight: 700; letter-spacing: .5px; margin-bottom: .25rem; }
.contact-item a, .contact-item p { font-size: 14px; color: var(--gray2); text-decoration: none; line-height: 1.55; }
.contact-item a:hover { color: var(--blue); }
.form-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; }
.form-title { font-family: var(--fd); font-size: 1.5rem; font-weight: 800; margin-bottom: .3rem; }
.form-sub { font-size: 13px; color: var(--gray); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gray2); margin-bottom: .45rem; transition: color .2s, text-shadow .2s; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg2); border: 1px solid var(--border); border-radius: 5px; color: var(--white); padding: 11px 13px; font-size: 14px; font-family: var(--fb); outline: none; transition: border-color .2s, color .2s; -webkit-appearance: none; appearance: none; }
.form-group select option { background: var(--bg2); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--bg2); color: var(--blue); box-shadow: 0 0 0 3px rgba(41,182,227,.08); }
.form-group input:not(:placeholder-shown), .form-group textarea:not(:placeholder-shown) { color: var(--blue); }
.form-group:focus-within label, .form-group.has-value label { color: var(--blue); text-shadow: 0 0 8px rgba(41,182,227,.4); }
.form-group.has-value input, .form-group.has-value select, .form-group.has-value textarea { color: var(--blue); }
.form-group select option { background: var(--bg2); color: var(--blue); }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 1000px var(--bg2) inset !important; -webkit-text-fill-color: var(--blue) !important; caret-color: var(--blue); transition: background-color 9999s ease-in-out 0s; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--blue); color: var(--bg); border: none; padding: 14px; border-radius: var(--r); font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; cursor: pointer; font-family: var(--fb); box-shadow: 0 0 22px var(--blue-g); transition: all .2s; margin-top: .5rem; }
.form-submit:hover { box-shadow: 0 0 40px var(--blue-g); transform: translateY(-1px); }

/* ── Index choices ── */
.choices { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin: 1.5rem 0 2.5rem; }
.choice { background: rgba(11,14,42,.8); border: 1px solid var(--border); backdrop-filter: blur(16px); border-radius: 14px; padding: 2.25rem 3.25rem; text-decoration: none; color: var(--white); text-align: center; transition: all .3s; min-width: 200px; }
.choice:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(41,182,227,.18), 0 0 0 1px rgba(41,182,227,.25); }
.choice-icon { margin-bottom: .9rem; display: flex; justify-content: center; color: var(--blue); filter: drop-shadow(0 0 10px rgba(41,182,227,.5)); }
.choice h2 { font-family: var(--fd); font-size: 1.6rem; font-weight: 800; margin-bottom: .3rem; }
.choice p { font-size: 12px; color: var(--gray2); line-height: 1.5; }
.choice-cta { display: block; margin-top: 1rem; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); text-shadow: 0 0 12px rgba(41,182,227,.5); }

/* ── Trust pills (index) ── */
.trust-pills { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; }
.trust-pill { display: flex; align-items: center; gap: 5px; background: rgba(41,182,227,.07); border: 1px solid rgba(41,182,227,.18); border-radius: 50px; padding: 5px 13px; font-size: 11px; font-weight: 600; color: var(--gray2); }
.trust-pill b { color: var(--blue); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { border-top: 1px solid var(--border); background: var(--bg); padding: 3.5rem 2rem 1.5rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: .6rem; }
.footer-brand img { height: 44px; filter: drop-shadow(0 0 8px rgba(41,182,227,.5)); }
.footer-brand-name { font-family: var(--fd); font-size: 22px; font-weight: 800; letter-spacing: 1px; }
.footer-brand-name span { color: var(--blue); }
.footer-tagline { font-size: 12px; color: var(--gray); margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .5rem; }
.footer-soc { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; font-size: 12px; font-weight: 700; transition: all .25s; }
.footer-soc:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 12px rgba(41,182,227,.3); transform: translateY(-2px); }
.footer-soc svg { width: 18px; height: 18px; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: .9rem; }
.footer-col a { display: block; font-size: 13px; color: var(--gray); text-decoration: none; margin-bottom: .45rem; transition: color .2s, text-shadow .2s; }
.footer-col a:hover { color: var(--blue); text-shadow: 0 0 10px rgba(41,182,227,.6), 0 0 22px rgba(41,182,227,.25); }
.footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--gray); flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(7,9,31,.98); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1.25rem; z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.rev { direction: ltr; }
  .plans-grid { grid-template-columns: 1fr; }
  .testis { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .counters-inner { grid-template-columns: repeat(2,1fr); }
  .switch-box { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-box { padding: 2.5rem 1.5rem; margin: 3rem 1rem; }
}
@media (max-width: 600px) {
  .nav { padding: 0 1.25rem; }
  .checklist { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .icon-strip-item span:not(.si) { display: none; }
  .trust-inner { gap: 1.25rem; }
}

/* ══════════════════════════════════════════════
   DROPDOWN NAV
══════════════════════════════════════════════ */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: .6; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: rgba(7,9,31,.98); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: .5rem 0; min-width: 210px; list-style: none;
  z-index: 300;
  box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(41,182,227,.08);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; animation: dropIn .18s ease both; }
@keyframes dropIn { from { opacity:0; transform:translateX(-50%) translateY(-6px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.dropdown li a {
  display: flex; align-items: center; gap: .55rem; padding: .65rem 1.25rem;
  font-size: 13px; font-weight: 500; color: var(--gray2);
  text-decoration: none; white-space: nowrap;
  transition: all .15s;
}
.dropdown li a:hover { color: var(--blue); background: rgba(41,182,227,.06); padding-left: 1.5rem; }
.dropdown li + li { border-top: 1px solid rgba(41,182,227,.06); }

/* Panel page styles */
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.panel-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
  text-align: center; text-decoration: none; color: var(--white);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: block; overflow: hidden;
}
.panel-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 0 25px rgba(41,182,227,.18); }
.panel-card img { width: 100%; max-height: 140px; object-fit: contain; background: var(--bg2); border-radius: 6px; padding: .75rem; margin-bottom: 1rem; }
.panel-fill-img { max-height: none !important; height: 220px !important; padding: .35rem !important; margin-bottom: 0 !important; border-radius: 6px 6px 0 0 !important; }
.panel-card h3 { font-size: 14px; font-weight: 700; margin-bottom: .25rem; }
.panel-card p { font-size: 11px; color: var(--gray); }

/* Benefit tiles */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.benefit-tile {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem;
  transition: border-color .2s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.benefit-tile:hover { border-color: rgba(41,182,227,.6); box-shadow: 0 0 20px rgba(41,182,227,.2); transform: translateY(-3px); }
.benefit-icon { font-size: 1.75rem; margin-bottom: .75rem; filter: drop-shadow(0 0 6px rgba(41,182,227,.3)); }
.benefit-tile h4 { font-size: 13px; font-weight: 700; margin-bottom: .35rem; }
.benefit-tile p { font-size: 12px; color: var(--gray); line-height: 1.6; }
.benefit-svg { width: 32px; height: 32px; color: var(--blue); margin-bottom: .75rem; display: block; filter: drop-shadow(0 0 6px rgba(41,182,227,.5)); will-change: filter; }
.benefit-tile:hover .benefit-svg { filter: drop-shadow(0 0 8px rgba(41,182,227,.8)); }
.benefit-tooltip {
  position: absolute; inset: 0;
  background: rgba(7,9,31,.92);
  border-radius: var(--r);
  padding: 1.25rem;
  font-size: 12px; color: var(--gray2); line-height: 1.7;
  display: flex; align-items: center; justify-content: center; text-align: center;
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
  border: 1px solid rgba(41,182,227,.3);
}
.benefit-tile:hover .benefit-tooltip { opacity: 1; }

/* Floating hover tooltip (reusable across pages) */
.ac-tip { position: fixed; z-index: 9999; pointer-events: none; max-width: 220px; background: rgba(7,9,31,0.97); border: 1px solid rgba(41,182,227,0.35); border-radius: 8px; padding: 10px 14px; font-size: 12px; line-height: 1.6; color: #a0b4cc; box-shadow: 0 0 20px rgba(41,182,227,0.15), 0 8px 32px rgba(0,0,0,0.5); opacity: 0; transform: translateY(4px) scale(0.97); transition: opacity .18s ease, transform .18s ease; }
.ac-tip.show { opacity: 1; transform: translateY(0) scale(1); }

/* Panel detail page */
.panel-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.panel-detail-img { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; text-align: center; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.panel-detail-img img { width: 100%; max-height: 460px; object-fit: contain; }
.panel-detail-logo { max-height: 150px; max-width: 420px; width: auto; object-fit: contain; margin-bottom: 0; }
.panel-actions { display: grid; gap: 1rem; margin-top: 2rem; }
.panel-action-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-decoration: none;
  transition: border-color .2s;
}
.panel-action-card:hover { border-color: var(--blue); }
.panel-action-card-text h4 { font-size: 14px; font-weight: 700; margin-bottom: .2rem; }
.panel-action-card-text p { font-size: 12px; color: var(--gray); }
.panel-action-card-img { width: 80px; height: 60px; object-fit: contain; flex-shrink: 0; }
.panel-action-btn { flex-shrink: 0; }

@media (max-width: 768px) {
  .panel-detail { grid-template-columns: 1fr; gap: 2rem; }
  .dropdown { left: 0; transform: none; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; position: static; border: none; background: var(--bg3); box-shadow: none; padding: 0; margin: .25rem 0 .25rem 1rem; }
}

/* ══════════════════════════════════════════════
   SPACE HERO BACKGROUND
══════════════════════════════════════════════ */
.page-hero-bg {
  /* Override — space + dark overlay */
  background:
    linear-gradient(105deg, rgba(6,9,30,0.97) 0%, rgba(6,9,30,0.75) 45%, rgba(6,9,30,0.3) 100%),
    url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1920&q=80') center/cover no-repeat !important;
}

/* Earth globe glow — bottom right */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%,
      rgba(41,182,227,0.18) 0%,
      rgba(20,80,140,0.22) 30%,
      rgba(6,20,60,0.35) 60%,
      transparent 75%
    );
  box-shadow:
    inset -30px -30px 80px rgba(0,0,0,0.6),
    inset 20px 20px 60px rgba(41,182,227,0.12),
    0 0 80px rgba(41,182,227,0.08),
    0 0 160px rgba(41,182,227,0.04);
  border: 1px solid rgba(41,182,227,0.12);
  pointer-events: none;
  z-index: 1;
  animation: earthGlow 8s ease-in-out infinite alternate;
}
@keyframes earthGlow {
  from { box-shadow: inset -30px -30px 80px rgba(0,0,0,0.6), inset 20px 20px 60px rgba(41,182,227,0.12), 0 0 80px rgba(41,182,227,0.08); }
  to   { box-shadow: inset -30px -30px 80px rgba(0,0,0,0.5), inset 20px 20px 60px rgba(41,182,227,0.18), 0 0 120px rgba(41,182,227,0.14); }
}

/* Logo watermark on right side */
.page-hero-logo-bg {
  right: 4%;
  bottom: 50%;
  transform: translateY(50%);
  width: 480px;
  height: 480px;
  opacity: 0.07 !important;
  z-index: 2;
}

/* Stars overlay */
.page-hero-grid {
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 35%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 55%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 90%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 45%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 75%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 30%, rgba(41,182,227,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 50%, rgba(41,182,227,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 10%, rgba(255,255,255,0.9) 0%, transparent 100%) !important;
  background-size: 100% 100% !important;
  opacity: 0.9 !important;
}

/* Index hero space background */
.index-hero-bg {
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(10,14,48,0.4) 0%, rgba(6,9,30,0.95) 70%) !important;
}
.index-hero-logo-bg {
  background: url('images/logo-ring-t.png') center/contain no-repeat !important;
  opacity: 0.07 !important;
}

/* Atmospheric glow line at hero bottom */
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(41,182,227,0.3) 20%,
    rgba(41,182,227,0.6) 50%,
    rgba(41,182,227,0.3) 80%,
    transparent 100%
  );
  z-index: 3;
}

/* Ensure hero content is above pseudo elements */
.page-hero-content { z-index: 4 !important; }

/* Index space stars */
.index-hero-grid {
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 50%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 65%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 20%, rgba(41,182,227,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 40%, rgba(41,182,227,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 75%, rgba(255,255,255,0.4) 0%, transparent 100%) !important;
  background-size: 100% 100% !important;
  opacity: 0.85 !important;
}

/* Earth orb on index page bottom right */
.index-hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%,
    rgba(41,182,227,0.15) 0%,
    rgba(15,60,120,0.2) 30%,
    rgba(6,15,50,0.3) 60%,
    transparent 72%
  );
  box-shadow:
    inset -40px -40px 100px rgba(0,0,0,0.7),
    inset 25px 25px 80px rgba(41,182,227,0.1),
    0 0 100px rgba(41,182,227,0.06);
  border: 1px solid rgba(41,182,227,0.1);
  pointer-events: none;
  animation: earthGlow 10s ease-in-out infinite alternate;
}

/* Uniform promo card images */
.promo-card img {
  width: 100%;
  height: 200px !important;
  max-height: 200px !important;
  object-fit: cover !important;
  padding: 0 !important;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* ── PLAN CARD BUTTON ALIGNMENT + GLOW ── */
.plans-grid {
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
}
.plan-feats {
  flex: 1;
}
.plan-btn {
  margin-top: auto !important;
  padding: 13px 11px !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
}
.plan.hot .plan-btn:hover {
  box-shadow: 0 0 30px rgba(41,182,227,.8), 0 0 60px rgba(41,182,227,.3) !important;
  transform: translateY(-2px);
}
.plan:not(.hot) .plan-btn:hover {
  background: rgba(41,182,227,.08);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(41,182,227,.25), 0 0 40px rgba(41,182,227,.1);
  transform: translateY(-2px);
}
.plan-btn {
  transition: all .25s ease !important;
}

.industry-grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.industry-tag { border: 1px solid var(--border); border-radius: 4px; padding: 7px 16px; font-size: 12px; font-weight: 600; color: var(--gray2); opacity: .45; transition: opacity .4s ease, color .4s ease, border-color .4s ease, text-shadow .4s ease; }
.industry-tag.active { opacity: 1; color: var(--blue); border-color: rgba(41,182,227,.7); text-shadow: 0 0 10px rgba(41,182,227,.6), 0 0 22px rgba(41,182,227,.25); }
