/* ─────────────────────────────────────────────
   DIGIDOCO — Premium Landing Page Styles
   Independent Satellite Radio Support Agency
───────────────────────────────────────────── */

/* ── RESET & ROOT ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1d4ed8;
  --blue-light:  #3b82f6;
  --blue-dark:   #1e3a8a;
  --orange:      #f97316;
  --orange-dark: #ea6800;
  --dark:        #0a0e1a;
  --dark-2:      #0f172a;
  --dark-3:      #1e293b;
  --dark-4:      #334155;
  --slate:       #475569;
  --slate-light: #94a3b8;
  --white:       #ffffff;
  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --cyan:        #0891b2;
  --green:       #16a34a;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.35);
  --shadow-glow-blue: 0 0 40px rgba(29,78,216,.25);
  --shadow-glow-orange: 0 0 30px rgba(249,115,22,.3);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── DISCLAIMER BAR ──────────────────────── */
.disclaimer-bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #bfdbfe;
  text-align: center;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.disclaimer-icon { font-size: 1rem; }
.disclaimer-bar strong { color: var(--white); }

/* ── HEADER ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo-link { flex-shrink: 0; }
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.1;
}
.logo-sub {
  font-size: .68rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 20px rgba(249,115,22,.3);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}
.phone-icon-sm {
  width: 16px; height: 16px;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(10,14,26,.98);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mob-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--slate-light);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.mob-link:hover { color: var(--white); }
.mob-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,14,26,.97) 0%, rgba(15,23,42,.88) 50%, rgba(10,14,26,.82) 100%);
  z-index: 2;
}
.hero-dashboard-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-dashboard-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Signal rings */
.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(249,115,22,.15);
  z-index: 3;
  animation: ring-expand 4s ease-out infinite;
}
.ring-1 { width: 300px; height: 300px; top: 10%; right: 8%; animation-delay: 0s; }
.ring-2 { width: 500px; height: 500px; top: 0%; right: 3%; animation-delay: 1.3s; border-color: rgba(29,78,216,.1); }
.ring-3 { width: 700px; height: 700px; top: -10%; right: -5%; animation-delay: 2.6s; }

@keyframes ring-expand {
  0%   { transform: scale(0.8); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--orange);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}
.desktop-br { display: block; }

/* CTA buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(249,115,22,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(249,115,22,.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

.btn-icon { width: 20px; height: 20px; }

/* Trust row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--slate-light);
  font-weight: 500;
}
.trust-check { color: var(--green); font-weight: 700; font-size: 1rem; }

/* ── STATS BAND ──────────────────────────── */
.stats-band {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: #93c5fd;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* ── SERVICES SECTION ────────────────────── */
.services-section {
  padding: 96px 0 80px;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-label.light { color: #fbbf24; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-heading.left-align { text-align: left; }
.light-heading { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

.services-section > .container > .section-label,
.services-section > .container > .section-heading,
.services-section > .container > .section-sub {
  text-align: center;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.14);
  box-shadow: var(--shadow-card), 0 0 40px rgba(29,78,216,.15);
}
.service-card:hover::before { opacity: 1; }

.featured-card {
  background: linear-gradient(145deg, #1e3a8a 0%, #1d4ed8 100%);
  border-color: rgba(59,130,246,.3);
  box-shadow: var(--shadow-glow-blue);
}
.featured-card::before { opacity: 1 !important; }
.featured-card:hover {
  box-shadow: 0 8px 40px rgba(29,78,216,.5);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--blue-light));
  border: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.service-svg { width: 32px; height: 32px; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-desc {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.featured-card .service-desc { color: #bfdbfe; }

.service-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition), gap var(--transition);
  gap: 0;
  text-decoration: none;
}
.service-cta:hover { color: var(--orange); }
.service-cta.primary-cta {
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: background var(--transition), border-color var(--transition);
}
.service-cta.primary-cta:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
}

/* ── HOW IT WORKS ────────────────────────── */
.how-section {
  background: var(--dark-2);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 56px 0 48px;
}

.step-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform var(--transition);
}
.step-item:hover { transform: translateY(-4px); }

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.step-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--slate);
  font-weight: 300;
  flex-shrink: 0;
}

.how-cta-wrap { margin-top: 8px; }

/* ── TRUST SECTION ───────────────────────── */
.trust-section {
  padding: 96px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-text .section-heading { margin-bottom: 28px; }

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  color: var(--text-muted);
}
.check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mt-btn { margin-top: 8px; }

/* Visual cards */
.trust-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.visual-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.visual-card:hover { transform: translateX(6px); }

.vc-top { transform: translateX(-20px); }
.vc-mid { transform: translateX(0); }
.vc-bot { transform: translateX(-20px); }
.vc-top:hover, .vc-bot:hover { transform: translateX(-14px); }

.vc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.visual-card > div { flex: 1; }
.visual-card strong { display: block; font-size: .95rem; color: var(--white); }
.visual-card p { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.vc-badge {
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.vc-badge.green {
  background: rgba(22,163,74,.15);
  color: #4ade80;
  border: 1px solid rgba(22,163,74,.3);
}

.orbit-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(29,78,216,.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: slow-spin 20s linear infinite;
  pointer-events: none;
}
@keyframes slow-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ── FAQ ──────────────────────────────────── */
.faq-section {
  background: var(--dark-2);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(255,255,255,.14); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 600;
  color: var(--white);
  padding: 20px 24px;
  text-align: left;
  transition: color var(--transition);
  font-family: var(--font-sans);
}
.faq-q:hover { color: var(--blue-light); }
.faq-q[aria-expanded="true"] { color: var(--blue-light); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--slate);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--blue-light);
}

.faq-a {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ── CONTACT CTA ─────────────────────────── */
.contact-section {
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-inner { position: relative; z-index: 1; }

.contact-sub {
  font-size: 1.1rem;
  color: #93c5fd;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: 60px;
  border: 3px solid rgba(255,255,255,.2);
  box-shadow: 0 8px 40px rgba(249,115,22,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: .02em;
}
.btn-hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 60px rgba(249,115,22,.6);
}

.contact-note {
  margin-top: 20px;
  font-size: .85rem;
  color: #60a5fa;
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: #060911;
  border-top: 2px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.footer-logo-icon svg { width: 100%; height: 100%; }
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.1;
}
.footer-brand-sub {
  display: block;
  font-size: .65rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-about {
  font-size: .88rem;
  color: var(--slate-light);
  line-height: 1.68;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.footer-phone:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-orange); }

.footer-col-head {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .88rem;
  color: var(--slate-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue-light); }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--slate-light);
}
.footer-contact-list a { color: var(--blue-light); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--orange); }
.fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Legal block */
.footer-legal-block {
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 28px 0;
}
.legal-text {
  font-size: .8rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-text:last-child { margin-bottom: 0; }
.legal-text a { color: var(--blue-light); }
.legal-text a:hover { text-decoration: underline; }

/* Footer bottom */
.footer-bottom {
  background: rgba(0,0,0,.5);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--slate);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: .78rem;
  color: var(--slate);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--blue-light); }

/* ── FLOATING CTA ────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 30px rgba(249,115,22,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.float-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(249,115,22,.65);
}
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0; }
}
.float-phone-icon { width: 20px; height: 20px; }

/* ── MOBILE STICKY BAR ───────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-top: 2px solid var(--orange);
  padding: 0;
}
.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: none;
}
.sticky-phone-icon { width: 22px; height: 22px; }

/* ── MODAL ───────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,.6), var(--shadow-glow-blue);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--slate-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.18); color: var(--white); }

.modal-icon { font-size: 3rem; margin-bottom: 16px; }

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.modal-desc {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-phone-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(249,115,22,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.modal-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(249,115,22,.6);
}

.modal-sub {
  margin-top: 14px;
  font-size: .8rem;
  color: var(--slate);
}

.modal-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.modal-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
}
.modal-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-visual { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px 14px; }

  .hero { min-height: 100vh; padding: 60px 0 100px; }
  .desktop-br { display: none; }

  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 20px; }
  .step-arrow { transform: rotate(90deg); }
  .step-item { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .float-cta { display: none; }
  .mobile-sticky-bar { display: block; }

  .modal-box { padding: 36px 24px; }

  .btn-hero-cta { font-size: 1.1rem; padding: 16px 28px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .section-heading { font-size: 1.7rem; }
  .stat-item { min-width: 100%; }
}

/* ── SCROLL ANIMATION HELPERS ────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
