/* ============================================================
   MyCableTVBundles.com — Main Stylesheet
   Clean. Professional. Conversion-Focused.
   ============================================================ */

/* 1. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--navy); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 2. VARIABLES */
:root {
  --navy:        #0A1628;
  --navy-2:      #112338;
  --navy-3:      #1A3050;
  --blue:        #1B4FD8;
  --blue-light:  #3B6FFF;
  --orange:      #FF6B1A;
  --orange-dk:   #E55800;
  --orange-glow: rgba(255,107,26,0.35);
  --white:       #FFFFFF;
  --off-white:   #F3F7FC;
  --border:      #E0E8F2;
  --muted:       #5E7A96;
  --font-h:      'Sora', sans-serif;
  --font-b:      'DM Sans', sans-serif;
  --r:           14px;
  --r-lg:        20px;
  --sh:          0 4px 24px rgba(10,22,40,0.08);
  --sh-lg:       0 12px 48px rgba(10,22,40,0.18);
  --tr:          all 0.3s cubic-bezier(.4,0,.2,1);
  --container:   1200px;
}
span.float-cta-icon {
    font-size: 18px;
    font-weight: 600;
}
a.cta-phone-big {
    font-size: 18px;
    padding: 10px 20px;
}
a.float-cta {
    width: 100%;
    text-align: center;
    border-radius: 0;
    bottom: 0;
    right: 0;
    padding: 10px 10px !important;
    height: 40px;
}
.hero-amount {
    font-size: 60px !important;
}
p.hero-sub {
    font-size: 16px !important;
    line-height: 30px !important;
}
/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-h); font-weight: 800; line-height: 1.18; }
h1 { font-size: clamp(2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
p { line-height: 1.72; }

/* 4. LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.section-title { color: var(--navy); margin-bottom: 1.1rem; }
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 22px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,107,26,0.5);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.38);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.1rem; }

/* 6. FLOATING CALL CTA */
.float-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    background: var(--orange);
    color: #fff;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 6px 28px var(--orange-glow);
    transition: var(--tr);
    animation: ctaPulse 2.5s ease-in-out infinite;
    width: 60px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-cta:hover {
  background: var(--orange-dk);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,107,26,0.6);
}
.float-cta-icon { font-size: 1.1rem; animation: ringBell 2.5s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(255,107,26,0.35); }
  50%       { box-shadow: 0 6px 48px rgba(255,107,26,0.65); }
}
@keyframes ringBell {
  0%, 80%, 100% { transform: rotate(0); }
  85% { transform: rotate(-20deg); }
  90% { transform: rotate(20deg); }
  95% { transform: rotate(-10deg); }
}

/* 7. HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--tr);
}
.header.scrolled {
  background: var(--navy);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
}
.logo-text .logo-orange { color: var(--orange); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--tr);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--tr);
  border-radius: 2px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: var(--tr);
}
.nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-phone {
  color: #fff;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--tr);
}
.nav-phone:hover { color: var(--orange); }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* 8. HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(27,79,216,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 25% 75%, rgba(255,107,26,0.12) 0%, transparent 60%),
    linear-gradient(150deg, #060D1C 0%, #0D1E38 55%, #060D1C 100%);
  z-index: 0;
  will-change: transform;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 0rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--orange);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.4rem;
  font-weight: 800;
      font-size: 50px;

}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-price-block {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}
.hero-price-from {
  color: rgba(255,255,255,0.45);
  font-family: var(--font-h);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.hero-price-main {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hero-dollar {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.6rem;
}
.hero-amount {
  font-family: var(--font-h);
  font-size: 5.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-cents-mo {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.hero-cents {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-mo {
  font-family: var(--font-h);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}
.hero-disclaimer {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-tv-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-tv-bg {
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-tv-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(27,79,216,0.25) 0%, transparent 65%);
}
.hero-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.3) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  pointer-events: none;
}
.hero-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--tr);
}
.hero-pkg-card:hover { background: rgba(255,255,255,0.07); }
.hero-pkg-card.hl {
  background: rgba(255,107,26,0.1);
  border-color: rgba(255,107,26,0.3);
}
.pkg-info { }
.pkg-name {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.pkg-inc { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.pkg-price {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange);
  white-space: nowrap;
}

/* 9. TRUST BAR */
.trust-bar {
  background: var(--orange);
  padding: 1.1rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: none;
}

/* 10. SERVICES */
.services { background: var(--off-white); }
.services-hd { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transition: var(--tr);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon-wrap {
  width: 78px; height: 78px;
  background: rgba(255,107,26,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  transition: var(--tr);
}
.svc-card:hover .svc-icon-wrap { background: rgba(255,107,26,0.14); transform: scale(1.1); }
.svc-icon { width: 36px; height: 36px; }
.svc-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.svc-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.75rem; line-height: 1.7; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--tr);
}
.svc-link:hover { gap: 0.6rem; }
.svc-link svg { width: 16px; height: 16px; transition: var(--tr); }

/* 11. ABOUT */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(27,79,216,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,107,26,0.15) 0%, transparent 50%);
}
.about-tv-svg { position: relative; z-index: 1; width: 60%; opacity: 0.85; }
.about-badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  background: var(--orange);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--r-lg);
  font-family: var(--font-h);
  text-align: center;
  box-shadow: 0 8px 40px rgba(255,107,26,0.45);
  z-index: 2;
}
.about-badge .big { font-size: 2.8rem; font-weight: 900; display: block; line-height: 1; }
.about-badge .sm { font-size: 0.78rem; font-weight: 700; opacity: 0.88; display: block; margin-top: 0.15rem; }
.about-content .section-title { text-align: left; }
.about-content .section-label { }
.about-desc { color: var(--muted); font-size: 1rem; line-height: 1.78; margin-bottom: 1.75rem; }
.about-checks { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.25rem; }
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.check-bullet {
  width: 22px; height: 22px;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 900;
}
.about-check-text { color: var(--navy); font-size: 0.95rem; }
.about-check-text strong { color: var(--navy); }

/* 12. PRICING */
.pricing { background: var(--navy); }
.pricing-hd { margin-bottom: 3.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  transition: var(--tr);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.06); }
.price-card.featured {
  background: rgba(255,107,26,0.07);
  border-color: rgba(255,107,26,0.4);
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(255,107,26,0.25), 0 20px 60px rgba(0,0,0,0.35);
}
.price-card.featured:hover { transform: translateY(-14px); }
.pop-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.price-name {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}
.price-tagline { color: rgba(255,255,255,0.45); font-size: 0.83rem; margin-bottom: 2rem; }
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0.5rem;
}
.price-dollar {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.6rem;
}
.price-num {
  font-family: var(--font-h);
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-cents {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  margin-top: 0.55rem;
}
.price-period { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin-bottom: 2rem; }
.price-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
}
.price-feats { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.price-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.feat-tick { color: var(--orange); font-size: 0.85rem; flex-shrink: 0; font-weight: 900; }
.price-feat.off { color: rgba(255,255,255,0.25); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.15); }
.price-feat.off .feat-tick { color: rgba(255,255,255,0.2); }
.price-cta { display: block; width: 100%; text-align: center; justify-content: center; }
.price-note { color: rgba(255,255,255,0.28); font-size: 0.75rem; margin-top: 1rem; text-align: center; }

/* 13. WHY US */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.why-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: var(--tr);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.why-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,107,26,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  transition: var(--tr);
}
.why-card:hover .why-icon-wrap { background: rgba(255,107,26,0.12); transform: scale(1.08); }
.why-card h4 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.why-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.68; }

/* 14. TESTIMONIALS */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--tr);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.testi-quote-icon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.1;
  font-family: var(--font-h);
  line-height: 1;
}
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-text { color: var(--muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #1B4FD8, #FF6B1A); }
.av-2 { background: linear-gradient(135deg, #059669, #1B4FD8); }
.av-3 { background: linear-gradient(135deg, #7C3AED, #FF6B1A); }
.testi-name { font-family: var(--font-h); font-weight: 700; color: var(--navy); font-size: 0.93rem; }
.testi-loc { color: var(--muted); font-size: 0.78rem; margin-top: 0.1rem; }

/* 15. CTA BANNER */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--navy-2);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 15% 50%, rgba(27,79,216,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(255,107,26,0.15) 0%, transparent 60%);
  background-attachment: fixed;
  z-index: 0;
}
.cta-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
}
.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 2.75rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 8px 48px rgba(255,107,26,0.45);
  transition: var(--tr);
  margin-bottom: 1.25rem;
}
.cta-phone-big:hover { background: var(--orange-dk); transform: scale(1.03) translateY(-2px); }
.cta-phone-big svg { width: 26px; height: 26px; }
.cta-sub { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* 16. FOOTER */
.footer { background: #060C18; }
.footer-top { padding: 4.5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
}
.footer-brand .logo-text { font-size: 1.05rem; }
.footer-brand p { color: rgba(255,255,255,0.48); font-size: 0.88rem; line-height: 1.75; margin-top: 1rem; max-width: 270px; }
.footer-col h5 {
  font-family: var(--font-h);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: var(--tr);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--orange); }
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 1.25rem;
  transition: var(--tr);
}
.footer-phone-link:hover { background: var(--orange-dk); }
.footer-phone-link svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.82rem; transition: var(--tr); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* 17. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.up { transform: translateY(28px); }
.reveal.left { transform: translateX(-28px); }
.reveal.right { transform: translateX(28px); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
section.cta-banner {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 18. RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
  .hero .container { gap: 2rem; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.75rem 0; }
  .hero .container { grid-template-columns: 1fr; padding-top: 6.5rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
    .hero h1 {
        font-size: 30px;
    }  .hero-amount { font-size: 4rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -1.25rem; right: -0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .trust-inner { gap: 1.25rem; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 1000;
    padding: 6rem 2rem 3rem;
    gap: 1.5rem;
    overflow-y: auto;
  }
  .nav.open .nav-link { font-size: 1.3rem; color: rgba(255,255,255,0.85); }
  .nav.open .nav-phone { font-size: 1.1rem; margin-top: 1rem; }
  .nav.open .nav-cta { padding: 0.8rem 2rem; font-size: 1rem; }
  .menu-toggle { display: flex; }
  .cta-phone-big { font-size: 1.15rem; padding: 1rem 2rem; }
  .nav.open .nav-link {
    font-size: 16px;
    line-height: 14px;
}
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  .hero-price-block { flex-direction: column; gap: 0; }
  .hero-amount { font-size: 3.5rem; }
  .float-cta { bottom: 0.85rem; right: 1rem; padding: 0.8rem 1.25rem; font-size: 0.88rem; }
  .btn-lg {
    padding: 10px 10px;
    font-size: 16px;
}
.policy-section {
    padding: 0 !important;
    margin-bottom: 20px !important;
}


a.float-cta {
    width: 100%;
    text-align: center;
    border-radius: 0;
    bottom: 0;
    right: 0;
    padding: 10px 10px !important;
    height: 60px;
}
.hero .container {
    padding-top: 3.5rem;
    padding-bottom: 0.5rem;
}
section.faCtoRs {
    padding-bottom: 0px !important;
    padding-top: 50px ! IMPORTANT;
}
.section-sub {
    font-size: 16px;
    line-height: 22px;
}
.cta-banner p {
    margin: 0 !important;
}

.policy-body {
    padding-bottom: 0;
}
section.cta-banner {
    padding-top: 50px;
    padding-bottom: 30px;
}
h2 {
    font-size: 22px;
}
.Ready-Box {
    margin-top: 30px;
}
section.faCtoRs .faCtoRs-Inner {
    display: block !important;
}
a.cta-phone-big {
    font-size: 14px;
    padding: 6px 20px;
    margin-top: 10px;
}
}
