/* ============================================================
   HUSKY TALENT — Main Stylesheet
   ============================================================ */

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

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --primary: #1a56db;
  --primary-d: #1240b0;
  --accent: #f59e0b;
  --dark: #ffffff;
  --dark-2: #f8fafc;
  --dark-3: #f1f5f9;
  --text: #000000;
  --muted: #475569;
  --white: #000000;
  --card-bg: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --transition: 0.28s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block
}

/* Husky Talent wordmark — smooth scaling (no crisp-edges on brand art) */
.logo-img--nav {
  height: 135px;
  width: auto;
  max-height: 150px;
  display: block;
  image-rendering: auto;
}

.logo-img--footer {
  height: 135px;
  width: auto;
  max-height: 150px;
  display: block;
  image-rendering: auto;
}

/* Partner marks in navbar CTA */
.nav-cta .partner-logo-nav {
  height: 40px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  image-rendering: auto;
  flex-shrink: 0;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

/* ── Typography ──────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--white)
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700
}

h3 {
  font-size: 1.35rem;
  font-weight: 600
}

h4 {
  font-size: 1.1rem;
  font-weight: 600
}

p {
  color: var(--muted);
  line-height: 1.75
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 90px 0
}

.section-label {
  display: inline-block;
  background: rgba(26, 86, 219, 0.15);
  color: var(--primary);
  border: 1px solid rgba(26, 86, 219, 0.3);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  margin-bottom: 16px
}

.section-sub {
  font-size: 1.08rem;
  max-width: 600px;
  margin-bottom: 50px
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff !important;
}

.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.45)
}

.btn-accent {
  background: var(--accent);
  color: #111
}

.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.3)
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-2px)
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem
}

.btn-sm {
  padding: 9px 20px;
  font-size: .85rem
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 170px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #000000;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #000000;
  background: rgba(0, 0, 0, 0.05)
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 8px 0;
  backdrop-filter: blur(16px);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: rgba(0, 0, 0, 0.7);
  border-radius: 0;
  background: transparent;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  width: 34px;
  height: 34px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #000000;
  border-radius: 4px;
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 170px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 40%, #e2e8f0 100%);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 86, 219, 0.15);
  border: 1px solid rgba(26, 86, 219, 0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite
}

.hero h1 {
  margin-bottom: 22px;
  letter-spacing: -.01em
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 22px
}

.hero-zip-container {
  margin-bottom: 52px;
}

.hero-zip-form {
  display: flex;
  align-items: center;
  max-width: 500px;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}

.zip-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 10px 0 20px;
}

.zip-icon {
  font-size: 1.2rem;
  color: #666;
  margin-right: 8px;
}

.hero-zip-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 1.1rem;
  color: #333;
  outline: none;
  font-family: inherit;
  width: 100%;
}

.hero-zip-form button {
  border-radius: 40px;
  padding: 14px 28px;
  white-space: nowrap;
}

.hero-zip-sub {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 20px;
}

.hero-zip-sub a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.hero-zip-sub a:hover {
  text-decoration: underline;
}

@media(max-width: 500px) {
  .hero-zip-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 12px;
    gap: 10px;
  }

  .zip-input-wrap {
    width: 100%;
  }

  .hero-zip-form button {
    width: 100%;
  }
}

/* Screen-reader-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Providers page — ZIP toolbar (compare-by-ZIP flow) */
.zip-lookup-bar {
  background: linear-gradient(180deg, rgba(26, 86, 219, 0.12), rgba(255, 255, 255, 0.95));
  border-bottom: 1px solid var(--border);
  padding: 28px 0 32px;
}

.zip-lookup-heading {
  text-align: center;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
}

.zip-lookup-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto 14px;
}

.zip-lookup-form input[type="text"] {
  flex: 1;
  min-width: 160px;
  max-width: 280px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 22px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.zip-lookup-form input::placeholder {
  color: var(--muted)
}

.zip-lookup-context {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

.zip-contact-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  align-items: center;
}

.zip-contact-link {
  color: #1e40af;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .01em;
}

.zip-contact-link:hover {
  color: #bfdbfe
}

.zip-agent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(5, 150, 105, 0.4);
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
}

.zip-agent-btn:hover {
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.15);
}

.zip-call-btn-main {
  display: flex;
  width: 100%;
  max-width: 400px;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  background: #000000;
  color: #ffffff !important;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zip-call-btn-main:hover {
  background: #1a56db;
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(26, 86, 219, 0.25);
}

.zip-service-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.zip-service-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
}

.zip-service-nav a:hover {
  border-color: rgba(26, 86, 219, 0.45);
  color: var(--white);
  background: rgba(26, 86, 219, 0.15);
}

.zip-lookup-bottom {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}

.zip-lookup-bottom h2 {
  margin-bottom: 12px
}

.zip-lookup-bottom>.container>p {
  margin-bottom: 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap
}

.hero-stat {
  display: flex;
  flex-direction: column
}

.hero-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white)
}

.hero-stat span {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500
}

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(26, 86, 219, 0.04), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.015), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}

.trust-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
}

.trust-label::before,
.trust-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  vertical-align: middle;
  margin: 0 16px;
}

.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 10%, transparent);
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 10%, transparent);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 60s linear infinite;
  width: max-content;
  padding: 6px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f6 100%);
  border-radius: 14px;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
  width: 200px;
  height: 92px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.trust-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Per-logo visual balancing — boost logos with too much whitespace, shrink wide ones */
.trust-item img[src*="adt"] {
  transform: scale(1.18);
}

.trust-item img[src*="hughesnet"] {
  transform: scale(1.15);
}

.trust-item img[src*="vivint"] {
  transform: scale(1.12);
}

.trust-item img[src*="frontier"] {
  transform: scale(1.10);
}

.trust-item img[src*="att.png"] {
  transform: scale(1.08);
}

.trust-item img[src*="kinetic"] {
  transform: scale(0.95);
}

.trust-item img[src*="optimum"] {
  transform: scale(0.95);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04),
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 18px 32px rgba(26, 86, 219, 0.25);
}

.trust-item:last-child {
  border-right: none
}

.trust-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.06), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(26, 86, 219, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35)
}

.service-card:hover::before {
  opacity: 1
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--white)
}

.service-card p {
  font-size: .92rem;
  margin-bottom: 20px
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.service-link:hover {
  gap: 10px
}

/* ── Provider logos ──────────────────────────────────────── */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px
}

.provider-card {
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.provider-card:hover::before {
  opacity: 1
}

.provider-card:hover {
  border-color: rgba(26, 86, 219, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 86, 219, 0.2), 0 0 30px rgba(99, 102, 241, 0.1);
}

.provider-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
}

.provider-card h4 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.15rem
}

.provider-card p {
  font-size: .88rem;
  line-height: 1.6
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px
}

.testimonial-card p {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
}

.reviewer-info strong {
  color: var(--white);
  font-size: .9rem
}

.reviewer-info span {
  display: block;
  font-size: .78rem;
  color: var(--muted)
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
}

.faq-q:hover {
  color: #60a5fa
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform var(--transition);
  font-style: normal
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s
}

.faq-a p {
  padding-bottom: 18px;
  font-size: .95rem
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-item.open .faq-a {
  max-height: 300px
}

/* ── Lead Form ───────────────────────────────────────────── */
.lead-form-wrap {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.lead-form-wrap h2 {
  margin-bottom: 8px
}

.lead-form-wrap .form-sub {
  margin-bottom: 32px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text)
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  transition: border var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(26, 86, 219, 0.07);
}

.form-group select option {
  background: var(--dark-2)
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center
}

/* ── About sections ──────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative
}

.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.2), transparent);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white)
}

.stat-box span {
  font-size: .8rem;
  color: var(--muted)
}

/* ── Sticky CTA ──────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #111;
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.sticky-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.55)
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 380px;
}

.footer-description {
  margin: 20px 0 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.8;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  font-size: .92rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Tablet */
@media(max-width:1024px){

.footer-grid{
grid-template-columns:1fr 1fr;
gap:40px;
}

}

/* Mobile */
@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
gap:35px;
}

.footer-brand{
max-width:100%;
}

}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 170px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.18), transparent 70%);
}

.page-hero h1 {
  position: relative;
  z-index: 1
}

.page-hero p {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 1.1rem
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.breadcrumb a {
  color: var(--primary)
}

.breadcrumb span {
  color: var(--muted)
}

/* ── Gradient backgrounds ────────────────────────────────── */
.bg-dark {
  background: var(--dark)
}

.bg-dark-2 {
  background: var(--dark-2)
}

.bg-gradient {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3))
}

/* ── Utility ─────────────────────────────────────────────── */
.text-center {
  text-align: center
}

.text-accent {
  color: var(--accent)
}

.text-primary {
  color: var(--primary)
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}

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

.mt-16 {
  margin-top: 16px
}

.mt-24 {
  margin-top: 24px
}

.mb-0 {
  margin-bottom: 0
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .8rem;
  color: var(--muted);
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-up {
  animation: fadeUp .65s ease forwards
}

.fade-up-d1 {
  animation-delay: .1s;
  opacity: 0
}

.fade-up-d2 {
  animation-delay: .22s;
  opacity: 0
}

.fade-up-d3 {
  animation-delay: .36s;
  opacity: 0
}

/* ── Mobile nav ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 170px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-dropdown {
  display: block;
}

.mobile-sub {
  display: none;
  background: rgba(0, 0, 0, 0.03);
  padding-left: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-dropdown.active .mobile-sub {
  display: block;
}

.mobile-dropdown.active .mobile-parent i {
  transform: rotate(180deg);
}

.mobile-parent i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.mobile-sub a {
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-sub a:last-child {
  border-bottom: none;
}

.mobile-menu a:last-child {
  border-bottom: none
}

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .about-img {
    display: none
  }
}

@media(max-width:768px) {
  .section {
    padding: 64px 0
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    gap: 24px
  }

  .lead-form-wrap {
    padding: 32px 20px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .stat-row {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .sticky-cta {
    bottom: 16px;
    right: 16px
  }

  [style*="display:grid;grid-template-columns:1fr 1fr"],
  [style*="display:grid;grid-template-columns:1fr 380px"],
  [style*="display:grid;grid-template-columns:80px 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:80px 1fr"] {
    text-align: center;
  }

  [style*="grid-template-columns:80px 1fr"]>div:first-child {
    margin: 0 auto;
  }

  .nav-inner {
    height: 100px;
  }

  .logo-img--nav {
    height: 70px;
    max-height: 85px;
  }

  .mobile-menu {
    top: 100px;
  }

  .hero {
    padding-top: 100px;
  }

  .page-hero {
    padding-top: 100px;
  }
}

@media(max-width:480px) {
  h1 {
    font-size: 2rem
  }

  .hero-actions {
    flex-direction: column
  }

  .btn-lg {
    width: 100%;
    justify-content: center
  }
}

/* ── Chatbot UI ──────────────────────────────────────────── */
.chatbot-widget {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 340px;
  max-height: 520px;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.chatbot-widget.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.chat-header h4 {
  margin: 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.chat-close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.chat-body {
  height: 260px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  animation: fadeUp 0.3s ease forwards;
}

.chat-msg.bot {
  background: rgba(0, 0, 0, 0.08);
  color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-options {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-option-btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.chat-option-btn:hover {
  background: rgba(26, 86, 219, 0.15);
  border-color: rgba(26, 86, 219, 0.4);
  color: var(--white);
}

.chat-toggle-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
}

@media(max-width:768px) {
  .chatbot-widget {
    bottom: 80px;
    right: 16px;
    width: calc(100% - 32px);
  }

  .chat-toggle-btn {
    bottom: 80px;
    right: 16px;
  }
}

/* Scrollbar for chat body */
.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Live Agent button */
.live-agent-btn {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1)) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  color: #34d399 !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem !important;
  padding: 12px 16px !important;
}

.live-agent-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.2)) !important;
  border-color: rgba(16, 185, 129, 0.6) !important;
  color: #6ee7b7 !important;
  transform: translateY(-1px);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: livePulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.agent-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: livePulse 1.5s infinite;
}

.chat-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.chat-divider::before,
.chat-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.chat-divider span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

/* ── Premium Logo Styles ─────────────────────────────────── */
/* ── Premium Logo Styles (Transparent & Larger) ───────────────────── */
.provider-badge {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  height: 72px;
  min-width: 96px;
}

.provider-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, .45);
  background: rgba(255, 255, 255, .09);
}

.provider-badge img {
  height: auto !important;
  width: auto !important;
  max-height: 52px;
  max-width: 120px;
  object-fit: contain;
  image-rendering: auto;
}


.provider-card .provider-logo {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.045), rgba(0, 0, 0, 0.03)) !important;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  padding: 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
  width: 100%;
  height: 184px;
  margin: 0 auto 22px;
  overflow: hidden;
  transition: border-color .28s ease, background .28s ease, transform .28s ease;
}

.provider-card:hover .provider-logo {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.04)) !important;
  border-color: rgba(96, 165, 250, 0.4);
}

.provider-card .provider-logo img {
  width: auto !important;
  height: auto !important;
  max-height: 86%;
  max-width: 88%;
  object-fit: contain;
  image-rendering: auto;
}

/* ── Promo Modal ─────────────────────────────────────────── */
.promo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal-container {
  width: 90%;
  max-width: min(500px, 90vw);
  background: #ffffff;
  border: 3px solid #f59e0b;
  border-radius: 28px;
  position: relative;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-modal-overlay.active .promo-modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: #000000;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.modal-close:hover {
  background: #ef4444;
  transform: scale(1.1) rotate(90deg);
}

.promo-modal-container .modal-body {
  padding: 50px 30px 40px;
  text-align: center;
}

.skew-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
}

.skew-sub {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #334155;
}

.yellow {
  color: #f59e0b;
}

.white {
  color: var(--white)fff;
}

.router {
  width: 220px;
  margin: 0 auto 25px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  animation: floatRouter 4s ease-in-out infinite;
}

@keyframes floatRouter {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.skew-tag {
  background: #1a56db;
  color: var(--white);
  display: inline-block;
  padding: 8px 20px;
  transform: skewX(-15deg);
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 1rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.skew-cta {
  background: #f59e0b;
  color: #000;
  font-weight: 900;
  font-size: 1.8rem;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
}

.pulse {
  animation: modalPulse 2s infinite;
}

@keyframes modalPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
    filter: brightness(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.agent-banner {
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 0;
  margin: 10px -30px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.promo-modal-container .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a56db;
  text-decoration: none;
  transition: color 0.2s;
}

.promo-modal-container .phone:hover {
  color: #f59e0b;
}

@media (max-width: 480px) {
  .skew-title {
    font-size: 2.2rem;
  }

  .skew-sub {
    font-size: 1.2rem;
  }

  .promo-modal-container .phone {
    font-size: 1.8rem;
  }

  .router {
    width: 160px;
  }
}

/* ── Hero Phone Highlight ───────────────────────────────── */
.hero-phone-highlight {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-phone-highlight {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero-phone-highlight {
    font-size: 1.2rem;
  }
}