/* ME-BUILD: 20260629-0135 | by: Klemens | scope: polish.network style.css — @import theme.css (push receiver) */
@import url('/themes/me-dark/theme.css?v=20260629-0135');
/* ================================================================
   Polish.Network v2.0 — Main Stylesheet
   Owner: Media Express LLC | https://polish.network/
   Design: Premium dark-navy + green — Media Express ecosystem
   No frameworks. Pure CSS only.
   ================================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-light: rgba(34,197,94,0.12);
  --dark:        #0f172a;
  --dark2:       #1e293b;
  --dark3:       #0a1020;
  --white:       #ffffff;
  --muted:       #94a3b8;
  --muted2:      #8899aa;
  --muted3:      #6b7d93;
  --border:      #334155;
  --border2:     #1e293b;
  --footer-bg:   #020617;
  --footer-bot:  #000000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

/* ── LIVING BACKGROUND — orbs + grid ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift ease-in-out infinite alternate;
}
.orb1 { width: 700px; height: 700px; background: rgba(34,197,94,.055);  top: -200px; right: -180px; animation-duration: 28s; }
.orb2 { width: 500px; height: 500px; background: rgba(212,33,61,.045);  bottom: -150px; left: -150px; animation-duration: 22s; animation-delay: -10s; }
.orb3 { width: 350px; height: 350px; background: rgba(99,102,241,.035); top: 45%; left: 38%; animation-duration: 35s; animation-delay: -16s; }

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(55px, 45px) scale(1.09); }
}

/* ── HERO ENTRANCE — kaskadowe wejście przy ładowaniu ── */
@keyframes hero-in {
  0%   { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: none; }
}
.hero .badge            { animation: hero-in .7s ease .05s both, heartbeat 3s ease-in-out 1.2s infinite; }
.hero h1                { animation: hero-in .9s ease .2s  both; }
.hero .hero-tagline     { animation: hero-in .9s ease .38s both; }
.hero .hero-slogan      { animation: hero-in .9s ease .52s both; }
.hero .hero-polish      { animation: hero-in .9s ease .62s both; }
.hero .hero-desc        { animation: hero-in .9s ease .75s both; }
.hero .btn-group-center { animation: hero-in .9s ease .9s  both; }

/* ── HEARTBEAT — pulsuje na elementach z klasą .heartbeat ── */
@keyframes heartbeat {
  0%, 100% { box-shadow: inset 0 0 8px rgba(34,197,94,.15); border-color: rgba(34,197,94,.55); }
  50%       { box-shadow: inset 0 0 22px rgba(34,197,94,.55), inset 0 0 6px rgba(34,197,94,.8); border-color: rgba(34,197,94,1); }
}
@keyframes heartbeat-red {
  0%, 100% { box-shadow: inset 0 0 8px rgba(212,33,61,.15); border-color: rgba(212,33,61,.55); }
  50%       { box-shadow: inset 0 0 22px rgba(212,33,61,.55), inset 0 0 6px rgba(212,33,61,.8); border-color: rgba(212,33,61,1); }
}
@keyframes border-breathe {
  0%, 100% { opacity: .4; }
  50%       { opacity: 1; }
}

/* Ensure content sits above orbs */
header, main, footer, section, .container, .container-wide { position: relative; z-index: 1; }

/* ── NETWORK-BASE NAV RESET — pn-nav.js puts <nav> inside <header>, not standalone.
 * Desktop-only. On mobile the @media (max-width:1024px) rule below turns nav into
 * off-canvas overlay (position:fixed + full viewport) — this reset must not clobber it. */
@media (min-width: 1025px) {
  nav {
    position: static !important;
    top: auto !important; left: auto !important; right: auto !important;
    min-height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    z-index: auto !important;
    transition: none !important;
  }
}
nav::after { display: none !important; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .35s; }

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--white); }

/* ── LAYOUT ── */
.container      { max-width: 960px;  margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }

section { padding: 4rem 1.25rem; scroll-margin-top: calc(var(--pn-bar-h, 37px) + 54px); }

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; }
h2 span { color: #f05050; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green); }
h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }

p { line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.text-green  { color: var(--green); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }

/* ── HEADER ── */
header {
  background: rgba(15,23,42,.02);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  padding: .65rem 1.5rem;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: var(--pn-bar-h, 37px);
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(234,179,8,.25) 15%, rgba(234,179,8,.7) 50%, rgba(234,179,8,.25) 85%, transparent 100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #eab308;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }

.logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-name span { color: var(--accent, #22c55e); }

.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(241,245,249,.85);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav — flex:1 + justify-content:center mirrors me-ui.css behavior (centers items between logo and CTA/lang) */
nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 1;
  order: 2;
}

nav a {
  color: rgba(241,245,249,.62);
  text-decoration: none;
  font-weight: 500;
  font-size: .875rem;
  white-space: nowrap;
  transition: color .2s;
  letter-spacing: 0.01em;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 4px;
}

nav a:not(.nav-cta):hover { color: var(--text, #f1f5f9); text-decoration: underline; text-underline-offset: 3px; }

/* CTA matches BOTH legacy (inside nav) AND new placement (header > a.nav-cta) — selectors use header for new location */
header a.nav-cta {
  background: var(--nav-cta-bg, #d97706);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
  transition: background .18s, transform .18s, box-shadow .18s;
  white-space: nowrap;
}

header a.nav-cta:hover { background: var(--nav-cta-hover, #b45309); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px var(--nav-cta-glow, rgba(217,119,6,.5)); }

nav a.nav-active { color: var(--nav-active, var(--accent, #22c55e)); }
nav a.nav-cta.nav-active { color: #0a0f1c; border-bottom-color: transparent; }
nav a.nav-start-here { color: #eab308; font-weight: 700; font-size: .78rem; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.6rem;
  opacity: 0.5;
  transition: transform 0.2s;
  line-height: 1;
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); opacity: 1; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a2537;
  border: 1px solid var(--border2);
  border-radius: 0.6rem;
  min-width: 210px;
  padding: 0.9rem 0.4rem 0.4rem;
  z-index: 400;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-pn:hover .nav-dropdown-menu { display: block !important; }
.nav-dropdown-menu a {
  display: block !important;
  padding: 0.55rem 0.9rem !important;
  border-bottom: none !important;
  border-radius: 0.4rem !important;
  white-space: nowrap;
  font-size: 0.82rem !important;
}
.nav-dropdown-menu a:hover { background: rgba(34,197,94,0.08) !important; border-bottom: none !important; }

@media (max-width: 1024px) {
  .nav-dropdown { display: contents; }
  .nav-dropdown-toggle::after { display: none; }
  .nav-dropdown-menu {
    display: contents;
    position: static;
    transform: none;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .nav-dropdown-menu a {
    background: rgba(255,255,255,0.02) !important;
    border-radius: 0.5rem !important;
    border: 1px solid var(--border2) !important;
    text-align: left !important;
    padding: 0.75rem 1rem 0.75rem 1.75rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--muted) !important;
  }
  .nav-dropdown-menu a:hover { color: var(--green) !important; background: rgba(34,197,94,0.05) !important; }
  .nav-dropdown-toggle { display: flex !important; justify-content: flex-start; }
}


@media (max-width: 1024px) {
  .nav-toggle { display: flex; margin-left: .5rem; order: 3; }
  .lang-switch { margin-left: auto; order: 2; }

  nav {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15,23,42,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 5rem 1.25rem 2rem;
    z-index: 250;
    overflow-y: auto;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
  }

  nav.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  nav a {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    padding: 0.75rem 1rem;
    line-height: 1.3;
    background: rgba(255,255,255,0.03);
    border-radius: 0.5rem;
    border: 1px solid var(--border2);
    color: var(--muted);
  }

  nav a:hover { color: var(--green); background: rgba(34,197,94,0.05); }
  nav a.nav-cta { color: #fff; background: var(--nav-cta-bg, #d97706); border-color: transparent; text-align: center; margin-top: 0.5rem; }
  nav a.nav-cta:hover { background: var(--nav-cta-hover, #b45309); color: #fff; }
  nav a.nav-cta.nav-active { color: #fff; }

  /* Anchor-only links scroll under the nav overlay — hide on mobile, easy to scroll manually */
  nav a[href^="#"] { display: none !important; }

  /* Hide Contact CTA on mobile — reachable via footer / bottom of menu */
  a.nav-cta,
  .nav-cta { display: none !important; }
}

/* ── BUTTONS ── */
/* .btn-primary: full definition here (PN HTML uses btn-primary without .btn base) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent, #22c55e);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  text-align: center;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow, rgba(34,197,94,.45));
}
.btn-primary:hover {
  background: var(--accent-hover, #16a34a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow, rgba(34,197,94,.45));
}

/* PN alias: .btn-secondary → same visual as .btn-outline (gold ghost) */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text, #f1f5f9);
  border: 1px solid var(--gold-border, rgba(234,179,8,.25));
  font-weight: 600;
  font-size: .875rem;
  padding: 9px 20px;
  border-radius: var(--r, 6px);
  text-decoration: none;
  transition: all .2s;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-secondary:hover {
  background: rgba(234,179,8,.07);
  border-color: var(--gold, #eab308);
  box-shadow: 0 0 0 1px var(--gold-border, rgba(234,179,8,.25)), 0 4px 24px var(--gold-dim, rgba(234,179,8,.12));
}

/* PN alias: .btn-white → same visual as .btn-gold (gold solid) */
.btn-white {
  display: inline-block;
  background: var(--gold, #eab308);
  color: #000;
  font-weight: 700;
  font-size: .875rem;
  padding: 9px 20px;
  border-radius: var(--r, 6px);
  text-decoration: none;
  transition: all .2s;
  text-align: center;
  white-space: nowrap;
}
.btn-white:hover { background: #f0c000; color: #000; transform: translateY(-2px); box-shadow: 0 6px 20px var(--gold-border, rgba(234,179,8,.25)); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  color: #e2eaf4;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r, 6px);
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.btn-ghost:hover { border-color: var(--accent, #22c55e); color: var(--accent, #22c55e); background: var(--accent-dim, rgba(34,197,94,.06)); }

.btn-group { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.btn-group-center { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .btn-group, .btn-group-center { flex-direction: column; align-items: center; }
  .btn-secondary, .btn-white, .btn-ghost { width: 100%; max-width: 320px; }
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: var(--green-light);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 0.4rem;
  animation: heartbeat 3s ease-in-out infinite;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(30,41,59,.88) 50%, rgba(15,23,42,.92) 100%);
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--pn-bar-h, 40px) - 52px);
  padding: 16px 1.25rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .container { width: 100%; }

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(34,197,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 { margin-bottom: 0.45rem; }
.hero h1 span { color: #f05050; }

.hero-tagline {
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  color: var(--muted);
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 0.6rem;
  line-height: 1.5;
  text-wrap: balance;
}

.hero-slogan {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.hero-polish {
  font-size: 0.875rem;
  color: var(--muted2);
  font-style: italic;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 1rem;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--muted2);
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust strong { color: #c8d6e4; }

/* ── PAGE HERO (shared subpage hero) ── */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  min-height: calc(100vh - var(--pn-bar-h, 40px) - 52px);
  padding: 16px 1.25rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(34,197,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.45rem; }
.page-hero h1 span { color: var(--green); }
.page-hero .btn-group, .page-hero .btn-group-center { margin-top: 1.1rem !important; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.hero-pill {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.hero-pill span { color: var(--green); }

/* logo wrap used in about.html hero */
.page-hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(34,197,94,0.55);
  box-shadow: 0 0 40px rgba(34,197,94,0.3), 0 0 0 8px rgba(34,197,94,0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.1);
  margin: 0 auto 1.25rem;
}
.page-hero-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.page-hero-arrow {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(34,197,94,0.8);
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  color: var(--green);
  background: rgba(10,16,30,0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(34,197,94,0.35);
  transition: border-color 0.2s, background 0.2s, opacity 0.3s;
  animation: hero-bounce 2.2s ease-in-out infinite;
  z-index: 100;
}
.page-hero-arrow:hover {
  border-color: var(--green);
  background: rgba(34,197,94,0.12);
  color: var(--green);
  animation: none;
  transform: translateX(-50%) translateY(4px);
}
.page-hero-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── WHY US ── */
.why-us-section {
  background: var(--dark);
  padding: 4.5rem 1.25rem;
  border-top: 1px solid var(--border2);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 1023px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .why-us-grid { grid-template-columns: 1fr; } }

.why-us-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.why-us-card:hover {
  border-color: rgba(234,179,8,.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(234,179,8,.08);
}

.why-us-card--cta {
  border-color: rgba(234,179,8,.3);
  background: rgba(234,179,8,.04);
}

.why-us-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1;
}

.why-us-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.why-us-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

.why-us-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(234,179,8,.08) 0%, rgba(34,197,94,.06) 100%);
  border: 1px solid rgba(234,179,8,.35);
  border-radius: 1rem;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.why-us-banner-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #eab308;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.why-us-banner-sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
}

.why-us-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.why-us-phone {
  font-size: 1.35rem;
  font-weight: 800;
  color: #eab308;
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s;
}

.why-us-phone:hover { color: #fde047; }

/* ── STATS ── */
.stats-section {
  background: var(--dark2);
  padding: 2.75rem 1.25rem;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: var(--green); transform: translateY(-3px); }

.card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.card h3 { color: var(--green); font-size: 1rem; margin-bottom: 0.4rem; }

.card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.card a:hover { color: var(--white); }

/* Platform cards (wider layout) */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.platform-card {
  background: var(--dark2);
  border: 1px solid var(--border2);
  border-left: 4px solid var(--green);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}

.platform-card:hover { border-color: var(--green); transform: translateY(-2px); }
.platform-card:hover .platform-card-domain { color: var(--white); }
.platform-card:hover .platform-card-desc { color: #c8d6e4; }

.platform-card-domain {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.platform-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── WHAT IS PN SECTION ── */
.what-is-section { background: var(--dark); }

.what-is-box {
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  max-width: 900px;
}

.what-is-box p { color: #e2e8f0; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.what-is-box p:last-child { margin-bottom: 0; }

/* ── ADVERTISING SECTION ── */
.advertising-section { background: var(--dark2); }

.ad-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.ad-option {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: 0.625rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ad-option-check {
  color: var(--green);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ad-option-text strong {
  display: block;
  font-size: 0.9rem;
  color: #c8d6e4;
  margin-bottom: 0.2rem;
}

.ad-option-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── RADIO SECTION ── */
.radio-section {
  background: linear-gradient(135deg, #0f172a 0%, #0d1f35 50%, #0f172a 100%);
  border-top: 1px solid #1e3a5f;
  border-bottom: 1px solid #1e3a5f;
}

.radio-section h2 span { color: #60a5fa; }
.radio-section h3 { color: #60a5fa; }

.radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.radio-card {
  background: rgba(30,58,95,0.45);
  border: 1px solid #1e3a8a;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.radio-card:hover { border-color: #60a5fa; transform: translateY(-3px); }
.radio-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.radio-card h3 { color: #60a5fa; }
.radio-card p { color: var(--muted); font-size: 0.875rem; }

.radio-highlight {
  background: rgba(34,197,94,0.07);
  border: 2px solid var(--green);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.radio-highlight-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.radio-highlight h3 { color: var(--green); font-size: 1.35rem; margin-bottom: 0.5rem; }
.radio-highlight p { color: var(--muted); max-width: 580px; margin: 0 auto; }

/* ── DIRECTORY SECTION ── */
.directory-section { background: var(--dark); }

.verified-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(34,197,94,0.08);
  border: 2px solid var(--green);
  border-radius: 0.75rem;
  padding: 1.25rem 2rem;
  margin: 2rem 0;
}

.verified-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--green);
  box-shadow: 0 0 16px rgba(34,197,94,0.3);
}
.verified-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

.verified-text strong { display: block; font-size: 1rem; color: #c8d6e4; margin-bottom: 0.25rem; }
.verified-text span { font-size: 0.875rem; color: var(--muted); }

/* ── JOBS / CLASSIFIEDS SECTION ── */
.jobs-section { background: var(--dark2); }

.platform-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.platform-list-item {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: 0.625rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--green);
}

.platform-list-item .domain {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.platform-list-item .desc {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── FACEBOOK SECTION ── */
.facebook-section { background: var(--dark); }

.fb-info-box {
  background: rgba(24,119,242,0.08);
  border: 1px solid rgba(24,119,242,0.3);
  border-radius: 0.75rem;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.fb-info-box p { color: #93c5fd; font-size: 0.95rem; line-height: 1.75; }

/* ── AGENCY SECTION ── */
.agency-section { background: var(--dark2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.service-item {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: 0.5rem;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
}

.service-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.service-item-text strong { display: block; color: #c8d6e4; margin-bottom: 0.15rem; }
.service-item-text span { color: var(--muted); font-size: 0.8rem; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

/* ── AT A GLANCE SECTIONS ── */
.glance-section { background: var(--dark); }
.glance-section-alt { background: var(--dark2); }

.glance-box {
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  margin-top: 1.75rem;
  max-width: 900px;
}

.glance-box p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.glance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.glance-list li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.glance-list li::before {
  content: '›';
  color: var(--green);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.glance-list li strong { color: #c8d6e4; }

/* ── NETWORK ENTITIES ── */
.entities-section { background: var(--dark2); }

.entities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.entity-card {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-left: 4px solid var(--green);
  border-radius: 0.625rem;
  padding: 1.25rem 1.5rem;
}

.entity-card .entity-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.entity-card .entity-url {
  font-size: 0.75rem;
  color: var(--muted2);
  margin-bottom: 0.5rem;
}

.entity-card .entity-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── SERVICES OFFERED SECTION ── */
.services-offered-section { background: var(--dark); }

.services-offered-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-block {
  background: var(--dark2);
  border: 1px solid var(--border2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.service-block h3 { font-size: 1rem; color: var(--green); margin-bottom: 0.5rem; }
.service-block p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── WHO WE SERVE ── */
.serve-section { background: var(--dark2); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.875rem;
  margin-top: 2rem;
}

.serve-item {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.serve-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── AI SECTION ── */
.ai-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1f35 50%, #0a0f1e 100%);
  border-top: 1px solid #1e3a5f;
  border-bottom: 1px solid #1e3a5f;
}

.ai-citation-box {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(34,197,94,0.25);
  border-left: 4px solid var(--green);
  border-radius: 0.625rem;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.ai-citation-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted3);
  margin-bottom: 0.75rem;
}

.ai-citation-box p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

.ai-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.ai-platform-chip {
  background: rgba(15,23,42,0.8);
  border: 1px solid var(--border2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
}

.ai-platform-chip.active { border-color: var(--green); background: rgba(34,197,94,0.05); }

.ai-platform-chip .chip-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.ai-platform-chip.active .chip-name { color: var(--green); }

.ai-platform-chip .chip-sub {
  font-size: 0.7rem;
  color: var(--muted2);
  margin-top: 0.15rem;
}

/* ── FAQ ── */
.faq-section { background: var(--dark); }

.faq-accordion {
  max-width: 820px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq-item:hover { border-color: rgba(234,179,8,.35); }

.faq-item.faq-open {
  border-color: rgba(234,179,8,.55);
  box-shadow: 0 0 18px rgba(234,179,8,.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  font-family: inherit;
  line-height: 1.4;
  transition: color .2s;
}

.faq-q:hover { color: #eab308; }
.faq-item.faq-open .faq-q { color: #eab308; }

.faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #000;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: auto;
  color: rgba(255,255,255,.35);
  transition: transform .3s ease, color .2s;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: #eab308;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a-inner {
  padding: 0 1.25rem 1.25rem calc(22px + 1.25rem + 0.75rem);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  text-align: center;
  padding: 5rem 1.25rem;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* ── MEGA FOOTER ── */
.mega-footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--green);
}

.footer-top {
  padding: 3.5rem 1.25rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--green);
}
.footer-logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

.footer-logo-text { font-size: 1rem; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: #f05050; }
.footer-logo-sub { font-size: 0.65rem; color: var(--muted2); letter-spacing: 0.06em; text-transform: uppercase; }

.footer-brand p {
  color: var(--muted2);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-since {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border2);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover { color: var(--green); }
.footer-col ul li a::before { content: '›'; color: var(--green); font-weight: 900; }

/* Footer network cards */
.footer-network {
  background: #010b18;
  border-top: 1px solid var(--border2);
  padding: 2.5rem 1.25rem;
}

.footer-network-inner { max-width: 1100px; margin: 0 auto; }

.footer-network-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted3);
  margin-bottom: 1.25rem;
}

.footer-network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.875rem;
}

.footer-site-card {
  background: #0f172a;
  border: 1px solid var(--border2);
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer-site-card:hover { border-color: var(--green); }
.footer-site-card:hover .footer-card-name { color: var(--green); }

.footer-site-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}

.footer-card-desc {
  font-size: 0.76rem;
  color: var(--muted2);
  line-height: 1.45;
}

/* Footer bottom — spectacular centered */
.footer-bottom {
  background: linear-gradient(to top, #030508, #0a0f1c);
  border-top: 1px solid rgba(234,179,8,.18);
  padding: 2rem 1.25rem 1.5rem;
}

.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-seo-links {
  font-size: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.footer-seo-links a { color: rgba(255,255,255,.35); text-decoration: none; transition: color 0.2s; }
.footer-seo-links a:hover { color: #eab308; }

.footer-mesh-strip { display:flex; flex-direction:column; align-items:center; gap:.55rem; }

.footer-heart-line { font-size:.82rem; color:rgba(255,255,255,.6); font-weight:500; }
.footer-heart-line a { color:#eab308; text-decoration:none; font-weight:700; transition:opacity .15s; }
.footer-heart-line a:hover { opacity:.8; }

.footer-mesh-line { display:flex; align-items:center; gap:.55rem; flex-wrap:wrap; justify-content:center; }

.footer-mesh-badge {
  display:inline-flex; align-items:center;
  background:rgba(234,179,8,.1); border:1px solid rgba(234,179,8,.35);
  border-radius:4px; padding:.15rem .55rem;
  font-size:.63rem; font-weight:800; letter-spacing:.1em; color:#eab308;
  font-family:'Courier New',monospace; text-decoration:none;
  transition:background .2s;
}
.footer-mesh-badge:hover { background:rgba(234,179,8,.2); }
.footer-mesh-name { font-size:.68rem; color:rgba(255,255,255,.3); }
.footer-build-info { font-size:.65rem; color:rgba(255,255,255,.2); }

.footer-copy { font-size:.7rem; color:rgba(255,255,255,.22); }
.footer-copy a { color:rgba(255,255,255,.32); text-decoration:none; transition:color .2s; }
.footer-copy a:hover { color:#eab308; }

/* ── FEATURED BUSINESSES ── */
.featured-biz-section {
  background: var(--dark2);
  padding: 4rem 1.25rem;
  border-top: 1px solid var(--border2);
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.biz-category-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
}

.biz-category-header:first-child { margin-top: 0; }

.biz-cat-line {
  flex: 1;
  height: 1px;
  background: var(--border2);
}

.biz-card {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: 0.6rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.biz-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  background: rgba(34,197,94,0.04);
}

.biz-check {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.05em;
}

.biz-domain {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--muted);
  transition: color 0.2s;
  word-break: break-all;
}

.biz-card:hover .biz-domain { color: var(--white); }

.biz-desc {
  font-size: 0.78rem;
  color: var(--muted2);
  line-height: 1.5;
  transition: color 0.2s;
}

.biz-card:hover .biz-desc { color: var(--muted); }

/* ── BRAND AUTHORITY BAR ── */
.brand-authority {
  background: #000;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 3.5rem 1.25rem;
}

.brand-authority-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-authority-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-authority-logo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--green);
  display: block;
  object-fit: cover;
}

.brand-authority-logo-name {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  white-space: nowrap;
  line-height: 1.6;
}

.brand-authority-content { display: flex; flex-direction: column; gap: 1rem; }

.brand-authority-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-authority-name span { color: var(--green); }

.brand-authority-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.brand-authority-text strong { color: #c8d6e4; font-weight: 700; }

.brand-authority-quote {
  border-left: 3px solid var(--green);
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--muted2);
  font-style: italic;
  line-height: 1.6;
}

.brand-authority-quote span { color: var(--green); font-style: normal; font-weight: 700; }

.brand-authority-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }

.brand-authority-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted3);
  border: 1px solid var(--border2);
  border-radius: 2rem;
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

.brand-authority-badge.green { color: var(--green); border-color: rgba(34,197,94,0.3); }

@media (max-width: 650px) {
  .brand-authority-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .brand-authority-logo { flex-direction: row; align-items: center; gap: 1rem; }
  .brand-authority-logo img { width: 64px; height: 64px; }
}

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--dark);
  height: calc(100vh - 37px - 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border2);
  box-sizing: border-box;
  overflow: hidden;
}

.video-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.video-title {
  margin-bottom: 1rem;
}

.video-title span { color: var(--green); }

.video-desc {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 0.9rem;
  line-height: 1.5;
}

.video-wrap {
  position: relative;
  width: min(900px, 92vw, calc((100vh - 37px - 58px - 170px) * 16 / 9));
  margin: 0 auto 0.9rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 3px solid rgba(34,197,94,0.6);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(34,197,94,0.15);
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}

.video-btn-row {
  text-align: center;
  margin: 1.25rem 0 0.5rem;
}

.btn-yt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff0000;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}

.btn-yt:hover { background: #cc0000; transform: translateY(-2px); }

.video-trust {
  font-size: 0.78rem;
  color: var(--muted2);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.video-trust strong { color: #c8d6e4; }

/* Footer media queries */
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } .footer-seo-links { display: none; } }
@media (max-width: 600px) { .footer-network-grid { grid-template-columns: 1fr; } }

/* Pricing grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── DIVIDERS ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
  border: none;
}

/* ── HIGHLIGHT BLOCK ── */
.highlight-block {
  background: var(--green-light);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 0.625rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-block p { color: #e2e8f0; font-size: 0.95rem; line-height: 1.75; }

/* ── MISC UTILITIES ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--green);
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: 700;
  z-index: 9999;
}

.skip-link:focus { top: 0; }

/* ── THIRD-PARTY WIDGET OVERRIDES ── */
/* reCAPTCHA badge — hidden globally; badge reappears after AJAX nav without this */
.grecaptcha-badge { visibility: hidden !important; width: 0 !important; }
