/* ═══════════════════════════════════════════════
   LOGICAL ONLINE SOLUTIONS — Main Stylesheet
   Brand: Black / Red / Blue / Green / White
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --black:   #070B14;    /* deep navy-black — the foundation */
  --card:    #0D1420;    /* cards: navy-tinted dark */
  --card2:   #111B2A;    /* alt cards: slightly lighter navy */
  --border:  #1A2840;    /* borders: navy shimmer */
  --red:     #CC1111;
  --red-dark:#a00d0d;
  --blue:    #2255BB;
  --green:   #1A7A1A;
  --white:   #FFFFFF;
  --grey:    #8899AA;    /* slightly blue-grey for text */
  --light:   #C8D4E0;    /* cool-light instead of warm-grey */
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --max:     1200px;
  --radius:  10px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  background-image:
    radial-gradient(ellipse 90% 50% at 0% 0%,   rgba(34,85,187,0.05)  0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 100% 30%, rgba(204,17,17,0.04)  0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(26,122,26,0.03)  0%, transparent 45%);
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
p { color: var(--light); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 24px;
}
.divider.center { margin: 16px auto 24px; }

.text-red   { color: var(--red); }
.text-blue  { color: var(--blue); }
.text-green { color: var(--green); }
.text-grey  { color: var(--grey); }
.text-center { text-align: center; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #e8e8e8; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,11,20,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,85,187,0.18);
  box-shadow: 0 1px 0 rgba(34,85,187,0.08);
  transition: var(--transition);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1;
}
.nav-logo-name span { color: var(--red); }
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: var(--black);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 40%, rgba(204,17,17,0.12)  0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 15% 70%, rgba(34,85,187,0.10)  0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50%  5%, rgba(34,85,187,0.06)  0%, transparent 40%),
    radial-gradient(ellipse 30% 40% at 90% 90%, rgba(26,122,26,0.05)  0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-note {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border);
}

/* ── Savings Strip ── */
.savings-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.savings-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.savings-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.savings-stat:last-child { border-right: none; }
.savings-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.savings-num.red { color: var(--red); }
.savings-num.white { color: var(--white); }
.savings-num.strikethrough {
  color: var(--grey);
  text-decoration: line-through;
  text-decoration-color: var(--red);
}
.savings-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ═══════════════════════════════════════
   WHO WE SERVE
   ═══════════════════════════════════════ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.serve-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.serve-card:hover::before,
.serve-card.active::before { transform: scaleX(1); }
.serve-card:hover {
  border-color: rgba(204,17,17,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(204,17,17,0.08), 0 0 0 1px rgba(204,17,17,0.1);
}
.serve-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.serve-card h3 { margin-bottom: 12px; }
.serve-short { font-size: 0.95rem; color: var(--light); }
.serve-expanded {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}
.serve-card.active .serve-expanded { display: block; }
.serve-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* ═══════════════════════════════════════
   SAVINGS TABLE
   ═══════════════════════════════════════ */
.savings-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.savings-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}
.savings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-head);
}
.savings-table th {
  background: var(--card2);
  padding: 18px 24px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 2px solid var(--border);
}
.savings-table th:first-child { border-radius: var(--radius) 0 0 0; }
.savings-table th:last-child { border-radius: 0 var(--radius) 0 0; text-align: right; }
.savings-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.savings-table td:last-child { text-align: right; }
.savings-table tr:hover td { background: rgba(255,255,255,0.02); }
.savings-table .col-them { color: var(--grey); text-decoration: line-through; }
.savings-table .col-us { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.savings-table .col-save { color: var(--red); font-weight: 800; font-size: 1.1rem; }
.savings-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════
   SERVICES GRID (What You Get)
   ═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  background: var(--card);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-item:hover {
  background: var(--card2);
}
.service-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.service-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-item p { font-size: 0.88rem; color: var(--grey); }

/* ═══════════════════════════════════════
   NETWORK TEASER
   ═══════════════════════════════════════ */
.network-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.network-tag {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--light);
  transition: var(--transition);
}
.network-tag:hover { border-color: var(--red); color: var(--red); }
.network-tag.live { border-color: var(--green); color: var(--green); }
.network-tag .badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 6px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   PORTFOLIO STRIP
   ═══════════════════════════════════════ */
.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: var(--radius);
}
.portfolio-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--card2);
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: grayscale(30%);
}
.portfolio-thumb:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.portfolio-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-thumb:hover .portfolio-thumb-overlay { opacity: 1; }
.portfolio-thumb-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

/* ═══════════════════════════════════════
   ABOUT TEASER
   ═══════════════════════════════════════ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.about-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 500;
}
.about-visual {
  position: relative;
}
.about-visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.about-visual-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 32px;
  width: 60px; height: 3px;
  background: var(--red);
}
.checkmark-list { display: flex; flex-direction: column; gap: 14px; }
.checkmark-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--light);
}
.checkmark-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  background: var(--red);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(0,0,0,0.04) 40px, rgba(0,0,0,0.04) 80px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: #040810;
  border-top: 1px solid rgba(34,85,187,0.2);
  box-shadow: 0 -1px 0 rgba(34,85,187,0.06), inset 0 1px 0 rgba(34,85,187,0.06);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { height: 40px; }
.footer-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
}
.footer-logo-name span { color: var(--red); }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--light);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light);
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  font-size: 0.8rem;
  color: var(--grey);
}
.footer-bottom-right {
  display: flex;
  gap: 20px;
}
.footer-bottom-right a {
  font-size: 0.8rem;
  color: var(--grey);
  transition: var(--transition);
}
.footer-bottom-right a:hover { color: var(--red); }
.footer-powered {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--grey);
}

/* ═══════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════ */
.page-header {
  padding: 130px 0 70px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 80% 50%, rgba(204,17,17,0.09)  0%, transparent 55%),
    radial-gradient(ellipse 60%  80% at 10% 50%, rgba(34,85,187,0.08)  0%, transparent 50%),
    radial-gradient(ellipse 50%  50% at 50%  0%, rgba(34,85,187,0.05)  0%, transparent 40%);
}
.page-header .container { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   PRESENTATION PAGE
   ═══════════════════════════════════════ */
.slide {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.slide:nth-child(even) { background: var(--card); }
.slide-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-live { background: rgba(26,122,26,0.2); color: var(--green); border: 1px solid var(--green); }
.badge-soon { background: rgba(34,85,187,0.2); color: var(--blue); border: 1px solid var(--blue); }
.badge-new  { background: rgba(204,17,17,0.2);  color: var(--red);  border: 1px solid var(--red); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(34,85,187,0.45);
  box-shadow: 0 4px 32px rgba(34,85,187,0.08), 0 0 0 1px rgba(34,85,187,0.1);
}
.card-red-top {
  border-top: 3px solid var(--red);
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .serve-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-strip { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .four-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(7,11,20,0.98);
    border-top: 1px solid rgba(34,85,187,0.18);
    padding: 24px;
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .savings-strip-inner { grid-template-columns: 1fr; }
  .savings-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .savings-stat:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-strip { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .portfolio-strip { grid-template-columns: 1fr; }
  .savings-table th, .savings-table td { padding: 14px 12px; font-size: 0.85rem; }
}

/* ═══════════════════════════════════════
   HERO SPLIT LAYOUT
   ═══════════════════════════════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: 60px 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--light);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.hero-phone-wrap {
  position: relative;
  display: inline-block;
}
.hero-phone-img {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(204,17,17,0.25));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.hero-phone-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
}
.hero-phone-badge-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.hero-phone-badge-sub {
  font-size: 0.7rem;
  color: var(--grey);
}
.hero-app-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-app-btns img {
  border-radius: 6px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.hero-app-btns img:hover { opacity: 1; }

.branded-app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.branded-app-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Hero split responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-phone-img { max-width: 220px; }
  .hero-phone-badge { right: 0; bottom: 10px; }
}

/* ═══════════════════════════════════════
   AMBIENT COLOR ACCENTS & GLOW SYSTEM
   ═══════════════════════════════════════ */

/* Tri-color gradient divider — use on key sections */
.divider-tri {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 55%, var(--green) 100%);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.divider-tri.center { margin: 16px auto 24px; }

/* Sections with a subtle blue ambient glow */
.section-blue {
  position: relative;
}
.section-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(34,85,187,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(34,85,187,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Sections with a subtle red ambient glow */
.section-red {
  position: relative;
}
.section-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(204,17,17,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(204,17,17,0.04) 0%, transparent 45%);
  pointer-events: none;
}

/* Platform feature cards (services page) — blue glow on hover */
.platform-card:hover {
  background: var(--card2);
  box-shadow: inset 0 1px 0 rgba(34,85,187,0.15), 0 0 0 1px rgba(34,85,187,0.12);
}

/* CTA banner depth */
.cta-banner {
  background: linear-gradient(135deg, #a00d0d 0%, var(--red) 50%, #b50e0e 100%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Savings strip — subtle separator glow */
.savings-strip {
  position: relative;
}
.savings-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(34,85,187,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Active nav links — blue underline glow */
.nav-links a.active {
  color: var(--red);
  text-shadow: 0 0 20px rgba(204,17,17,0.4);
}

/* Eyebrow — subtle glow on red labels */
.eyebrow {
  text-shadow: 0 0 24px rgba(204,17,17,0.3);
}

/* Card red-top variant — glow the top bar */
.card-red-top {
  border-top: 3px solid var(--red);
  box-shadow: 0 -2px 12px rgba(204,17,17,0.12);
}

/* Portfolio thumb — subtle blue tint on img */
.portfolio-thumb {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
}

/* About stat cards — number glow */
.about-stat-num {
  text-shadow: 0 0 32px rgba(204,17,17,0.3);
}

/* Hero phone image — enhanced glow with blue tint */
.hero-phone-img {
  filter: drop-shadow(0 20px 60px rgba(204,17,17,0.22))
          drop-shadow(0 4px 20px rgba(34,85,187,0.15));
}

/* Badge hover — shimmer */
.badge-live { box-shadow: 0 0 12px rgba(26,122,26,0.15); }
.badge-soon { box-shadow: 0 0 12px rgba(34,85,187,0.15); }
.badge-new  { box-shadow: 0 0 12px rgba(204,17,17,0.15); }

/* Branded app image — glow */
.branded-app-img {
  box-shadow: 0 8px 48px rgba(34,85,187,0.15), 0 2px 12px rgba(0,0,0,0.4);
}

/* Network directory cards — glow on live */
.directory-card.live:hover {
  box-shadow: 0 4px 24px rgba(26,122,26,0.1);
}
.directory-card.soon:hover {
  box-shadow: 0 4px 24px rgba(34,85,187,0.1);
}
