/* =========================================================
   CableTV Choice — Internet & TV Plans
   Core stylesheet
   ========================================================= */

:root {
  --navy: #0F1B3D;
  --navy-2: #16265A;
  --blue: #1B3FAE;
  --cyan: #00C2CC;
  --amber: #FFB020;
  --cloud: #F5F7FB;
  --paper: #FFFFFF;
  --ink: #131B33;
  --slate: #5C6579;
  --slate-light: #8A93A6;
  --line: #E4E8F1;

  --display: 'Inter', 'Segoe UI', sans-serif;
  --body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 26px;

  --shadow-soft: 0 20px 45px -25px rgba(15, 27, 61, 0.35);
  --shadow-card: 0 14px 34px -18px rgba(15, 27, 61, 0.28);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display);
  margin: 0;
  line-height: 1.12;
  color: var(--navy);
  font-weight: 600;
}

p {
  margin: 0;
}

button {
  font-family: var(--body);
  cursor: pointer;
}

input,
textarea,
select {
  font-family: var(--body);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--tight {
  padding: 72px 0;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--cloud {
  background: var(--cloud);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--blue);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
  border-radius: 2px;
}

.section--dark .eyebrow {
  color: var(--cyan);
}

.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
}

.head-row h2 {
  max-width: 640px;
}

.head-row p {
  max-width: 380px;
  color: var(--slate);
}

h2 {
  font-size: clamp(30px, 3.6vw, 44px);
}

h3 {
  font-size: 22px;
}

.lede {
  color: var(--slate);
  font-size: 17px;
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(27, 63, 174, .55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -12px rgba(27, 63, 174, .6);
}

.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.section--dark .btn-ghost {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

.section--dark .btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(255, 176, 32, .6);
}

.btn-amber:hover {
  transform: translateY(-3px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
}

.phone-pill .ring-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2.4s infinite;
  flex-shrink: 0;
}

.phone-pill .ring-dot svg {
  width: 16px;
  height: 16px;
}
.logo{
  max-width: 250px !important;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 176, 32, .55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 176, 32, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 176, 32, 0);
  }
}

.phone-pill small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  color: var(--slate);
  font-size: 11px;
  letter-spacing: .03em;
}

.section--dark .phone-pill {
  color: #fff;
}

.section--dark .phone-pill small {
  color: rgba(255, 255, 255, .6);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(15, 27, 61, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo .logo-mark svg {
  width: 20px;
  height: 20px;
}

.logo span {
  color: var(--cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
  text-decoration: none !important;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--cyan);
  transition: width .35s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-actions .phone-pill {
  color: #fff;
}

.header-actions .phone-pill small {
  color: rgba(255, 255, 255, .6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Brands Dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 0;
  border: 0; background: transparent; color: rgba(255,255,255,.82);
  font-family: var(--body); font-size: 14.5px; font-weight: 500; position: relative;
}
.nav-dropdown-toggle::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--cyan); transition: width .35s var(--ease);
}
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.nav-dropdown:hover .nav-dropdown-toggle, .nav-dropdown.is-open .nav-dropdown-toggle { color: #fff; }
.nav-dropdown:hover .nav-dropdown-toggle::after, .nav-dropdown.is-open .nav-dropdown-toggle::after { width: calc(100% - 20px); }
.nav-dropdown:hover .nav-dropdown-toggle svg, .nav-dropdown.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; min-width: 210px; padding: 10px;
  border-radius: var(--radius-m); background: #fff; box-shadow: var(--shadow-card); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; z-index: 1002;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu a {
  display: block; width: 100%; padding: 10px 14px; border-radius: 8px; color: var(--ink);
  font-size: 14px; font-weight: 500; white-space: nowrap; transition: background .2s, color .2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--cloud); color: var(--blue); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 700px at 78% -10%, #1c3a8f 0%, var(--navy) 55%), var(--navy);
  color: #fff;
  padding: 190px 0 130px;
  overflow: hidden;
}

.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}

.hero .blob-1 {
  width: 420px;
  height: 420px;
  background: var(--cyan);
  top: -120px;
  right: -80px;
  animation: float-a 12s ease-in-out infinite;
}

.hero .blob-2 {
  width: 360px;
  height: 360px;
  background: var(--amber);
  bottom: -140px;
  left: -60px;
  opacity: .22;
  animation: float-b 14s ease-in-out infinite;
}

@keyframes float-a {

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

  50% {
    transform: translate(-30px, 30px);
  }
}

@keyframes float-b {

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

  50% {
    transform: translate(20px, -25px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  color: var(--cyan);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -.01em;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .15s forwards;
}

.hero-copy .lede {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  margin-top: 22px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .32s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .48s forwards;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .62s forwards;
}

.hero-stats .stat b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
}

.hero-stats .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Speed dial visual */
/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 700px at 78% -10%, #1c3a8f 0%, var(--navy) 55%), var(--navy);
  color: #fff;
  padding: 190px 0 130px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 27, 61, .22) 0%, rgba(15, 27, 61, .04) 58%, rgba(15, 27, 61, .18) 100%);
}

.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}

.hero .blob-1 {
  width: 420px;
  height: 420px;
  background: var(--cyan);
  top: -120px;
  right: -80px;
  animation: float-a 12s ease-in-out infinite;
}

.hero .blob-2 {
  width: 360px;
  height: 360px;
  background: var(--amber);
  bottom: -140px;
  left: -60px;
  opacity: .22;
  animation: float-b 14s ease-in-out infinite;
}

@keyframes float-a {

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

  50% {
    transform: translate(-30px, 30px);
  }
}

@keyframes float-b {

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

  50% {
    transform: translate(20px, -25px);
  }
}


/* ---------- Animated connectivity banner ---------- */
.hero-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .72;
}

.hero-network-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fiber-paths path {
  stroke-dasharray: 12 18;
  animation: fiber-flow 7s linear infinite;
}

.fiber-paths path:nth-child(2) {
  animation-duration: 9s;
  animation-delay: -2s;
}

.fiber-paths path:nth-child(3) {
  animation-duration: 8s;
  animation-delay: -4s;
}

.fiber-paths path:nth-child(4) {
  animation-duration: 11s;
  animation-delay: -5s;
}

.network-nodes circle {
  animation: node-pulse 2.8s ease-in-out infinite;
}

.network-nodes circle:nth-child(2n) {
  animation-delay: -1.2s;
}

.signal-rings circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: ring-expand 3.2s ease-out infinite;
}

.signal-rings circle:nth-child(2) {
  animation-delay: 1.6s;
}

.signal-rings circle:nth-child(3) {
  animation-delay: .8s;
  animation-duration: 2.8s;
}

.packet {
  filter: drop-shadow(0 0 7px rgba(143, 227, 232, .9));
}

.packet-a {
  offset-path: path("M-80 560 C180 470 180 170 430 230 S760 500 940 290 S1160 120 1280 180");
  animation: packet-move-a 6s linear infinite;
}

.packet-b {
  offset-path: path("M-100 610 C180 540 270 300 470 330 S720 610 970 420 S1110 250 1300 300");
  animation: packet-move-b 8s linear infinite;
}

.packet-c {
  offset-path: path("M-60 430 C160 360 260 80 510 170 S780 390 1030 210 S1160 70 1270 110");
  animation: packet-move-c 7s linear infinite;
}

.packet-d {
  offset-path: path("M40 690 C220 560 390 560 540 450 S790 240 970 310 S1120 540 1270 450");
  animation: packet-move-d 9s linear infinite;
}

@keyframes fiber-flow {
  to { stroke-dashoffset: -180; }
}

@keyframes node-pulse {
  0%, 100% { opacity: .35; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes ring-expand {
  0% { opacity: .65; transform: scale(.55); }
  70%, 100% { opacity: 0; transform: scale(2.5); }
}

@keyframes packet-move-a {
  to { offset-distance: 100%; }
}

@keyframes packet-move-b {
  to { offset-distance: 100%; }
}

@keyframes packet-move-c {
  to { offset-distance: 100%; }
}

@keyframes packet-move-d {
  to { offset-distance: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-network *,
  .hero-network *::before,
  .hero-network *::after {
    animation: none !important;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  color: var(--cyan);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -.01em;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .15s forwards;
}

.hero-copy .lede {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  margin-top: 22px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .32s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .48s forwards;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) .62s forwards;
}

.hero-stats .stat b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
}

.hero-stats .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Speed dial visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(.92);
  animation: pop .9s var(--ease) .4s forwards;
}

@keyframes pop {
  to {
    opacity: 1;
    transform: none;
  }
}


/* ---------- Inner page banner ---------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 500px at 15% 0%, #1c3a8f 0%, var(--navy) 60%), var(--navy);
  color: #fff;
  padding: 180px 0 90px;
  text-align: left;
}

.page-banner .blob-1 {
  width: 340px;
  height: 340px;
  background: var(--cyan);
  top: -100px;
  right: -60px;
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .28;
  animation: float-a 12s ease-in-out infinite;
}

.page-banner .crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}

.page-banner .crumbs a:hover {
  color: #fff;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 50px);
  opacity: 0;
  transform: translateY(20px);
  animation: rise .7s var(--ease) .1s forwards;
}

.page-banner p {
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin-top: 16px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .7s var(--ease) .24s forwards;
}

/* ---------- Trust / logo marquee ---------- */
.trust-strip {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.trust-strip .marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 26s linear infinite;
  align-items: center;
}

.marquee-track span {
  font-family: var(--display);
  font-size: 19px;
  color: var(--slate-light);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 194, 204, .14), rgba(27, 63, 174, .14));
  margin-bottom: 22px;
  color: var(--blue);
  transition: transform .4s var(--ease);
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.06);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--slate);
  font-size: 15px;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.service-card .card-link svg {
  width: 14px;
  height: 14px;
  transition: transform .3s;
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ---------- About split ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .img-a {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-media .img-b {
  position: absolute;
  width: 52%;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-card);
  bottom: -36px;
  left: -40px;
}

.about-media .float-badge {
  position: absolute;
  top: -24px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 5s ease-in-out infinite;
}

@keyframes bob {

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

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

.float-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.float-badge .badge-icon svg {
  width: 18px;
  height: 18px;
}

.float-badge b {
  display: block;
  font-family: var(--display);
  font-size: 17px;
}

.float-badge span {
  font-size: 12px;
  color: var(--slate);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 28px 0 34px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}

.check-list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 194, 204, .15);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-list li svg {
  width: 11px;
  height: 11px;
}

/* ---------- Stat counters ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy);
  border-radius: var(--radius-l);
  padding: 46px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stat-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 260px at 90% 0%, rgba(0, 194, 204, .25), transparent 70%);
}

.stat-band .stat {
  position: relative;
  text-align: center;
}

.stat-band .stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 42px);
  color: #fff;
}

.stat-band .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item .why-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background .3s, color .3s, transform .3s;
}

.why-item:hover .why-ico {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.why-item .why-ico svg {
  width: 19px;
  height: 19px;
}

.why-item h4 {
  font-family: var(--display);
  font-size: 15.5px;
  margin-bottom: 4px;
  color: var(--navy);
}

.why-item p {
  font-size: 13.5px;
  color: var(--slate);
}

.why-panel {
  background: linear-gradient(160deg, var(--blue), var(--navy));
  border-radius: var(--radius-l);
  padding: 44px 38px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 194, 204, .28);
  filter: blur(50px);
  bottom: -60px;
  right: -60px;
}

.why-panel h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 14px;
  position: relative;
}

.why-panel p {
  color: rgba(255, 255, 255, .78);
  font-size: 14.5px;
  margin-bottom: 26px;
  position: relative;
}

/* ---------- Pricing ---------- */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 46px;
  background: var(--cloud);
  padding: 6px;
  border-radius: 999px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.plan-tab {
  border: none;
  background: transparent;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: all .3s var(--ease);
}

.plan-tab.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-card);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 38px 32px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.plan-card.is-popular {
  border-color: var(--blue);
  background: linear-gradient(180deg, #fff, #f4f8ff);
}

.plan-card .plan-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.plan-card .plan-name {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--blue);
  margin-bottom: 10px;
}

.plan-card .plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}

.plan-card .plan-price b {
  font-family: var(--display);
  font-size: 44px;
  color: var(--navy);
}

.plan-card .plan-price span {
  color: var(--slate);
  font-size: 14px;
  padding-bottom: 8px;
}

.plan-card .plan-sub {
  color: var(--slate);
  font-size: 13.5px;
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.plan-features li i {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(0, 194, 204, .15);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-features li svg {
  width: 10px;
  height: 10px;
}

/* ---------- Testimonials ---------- */
.testimonials-eyebrow {
  justify-content: center;
  display: flex;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testi-slide {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  padding: 0 12px;
  box-sizing: border-box;
}

.testi-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e7e9ef;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 28px;
  flex: 1;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #edf0f4;
}

.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-person div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-person b {
  font-size: 15px;
  color: #111827;
}

.testi-person span {
  font-size: 13px;
  color: #6b7280;
}


/* Arrows */

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.testi-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.testi-prev {
  left: 0;
}

.testi-next {
  right: 0;
}


/* Dots */

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #111827;
}


/* Tablet */

@media (max-width: 992px) {

  .testi-slide {
    flex: 0 0 50%;
    width: 50%;
  }

}


/* Mobile */

@media (max-width: 640px) {

  .testi-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 5px;
  }

  .testi-card {
    padding: 24px;
  }

  .testi-arrow {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--display);
  font-size: 16.5px;
  color: var(--navy);
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .35s var(--ease), background .35s;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform .35s var(--ease), opacity .35s;
}

.faq-q .plus::before {
  width: 10px;
  height: 2px;
}

.faq-q .plus::after {
  width: 2px;
  height: 10px;
}

.faq-item.is-open .faq-q .plus {
  background: var(--blue);
  transform: rotate(0deg);
}

.faq-item.is-open .faq-q .plus::before,
.faq-item.is-open .faq-q .plus::after {
  background: #fff;
}

.faq-item.is-open .faq-q .plus::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.faq-a p {
  padding: 0 34px 24px 4px;
  color: var(--slate);
  font-size: 14.5px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-l);
  padding: 56px 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue), var(--navy) 70%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 260px at 90% 110%, rgba(255, 176, 32, .35), transparent 70%);
}

.cta-banner h3 {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  max-width: 480px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, .75);
  margin-top: 8px;
  position: relative;
}

.cta-banner .cta-actions {
  position: relative;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-actions .btn-ghost{
  background-color: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

.cta-actions .btn-ghost:hover{
  background-color: var(--paper);
  border-color: var(--paper);
  color: var(--navy);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding-top: 84px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand p {
  font-size: 14px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, .6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}

.footer-social a:hover {
  background: var(--cyan);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.site-footer h5 {
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  margin-bottom: 20px;
}

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  transition: color .3s, padding-left .3s;
}

.site-footer ul a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 16px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Misc page bits (About / Contact / Plans) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.value-card .service-icon {
  margin: 0 auto 20px;
}

.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item b {
  font-family: var(--display);
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.timeline-item span {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

.timeline-item p {
  color: var(--slate);
  font-size: 14.5px;
  margin-top: 6px;
  max-width: 480px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .3s, transform .3s;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.contact-info-card .service-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--display);
  font-size: 15.5px;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--slate);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 42px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
  background: var(--cloud);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 63, 174, .12);
  outline: none;
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.map-frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 340px;
  margin-top: 60px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.15);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s, transform .35s, visibility .35s, background .35s;
  box-shadow: var(--shadow-card);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--blue);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .plan-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 979px) {

  .main-nav,
  .header-actions .phone-pill {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    gap: 14px;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }

  .main-nav.is-open {
    display: flex;
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none !important;
  }
  .main-nav .nav-dropdown { width: 100%; }
  .main-nav .nav-dropdown-toggle {
    width: 100%; justify-content: space-between; padding: 14px 0; font-size: 16px;
    color: rgba(255,255,255,.82); border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav .nav-dropdown-toggle::after { display: none; }
  .main-nav .nav-dropdown-toggle svg { width: 16px; height: 16px; }
  .main-nav .nav-dropdown-menu {
    position: static; width: 100%; min-width: 0; padding: 4px 0 6px 14px;
    border: 0; border-radius: 0; background: transparent; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; display: none;
  }
  .main-nav .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .main-nav .nav-dropdown-menu a {
    width: 100%; padding: 10px 0; border-bottom: 0; color: rgba(255,255,255,.68); font-size: 14px;
  }
  .main-nav .nav-dropdown-menu a:hover { background: transparent; color: var(--cyan); }


  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 27, 61, .55);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu{
    transform: translate(0%, 0);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 76px 0;
  }

  .head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .plan-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-media .img-b {
    width: 48%;
    left: -16px;
    bottom: -24px;
  }

  .about-media .float-badge {
    right: -8px;
  }

  .cta-banner {
    padding: 40px 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-band {
    padding: 34px 22px;
    grid-template-columns: 1fr 1fr;
  }

  .plan-tabs {
    flex-wrap: wrap;
    width: auto;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

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

  .hero {
    padding: 150px 0 90px;
  }

  .page-banner {
    padding: 150px 0 70px;
  }

  .hero-stats {
    flex-wrap: wrap;
    row-gap: 22px;
  }

  .dial-card {
    padding: 26px;
  }
}

.for-padd {
    padding-bottom: 20px;
    padding-top: 20px;
}
