:root {
  --primary: #0A2540;
  --accent: linear-gradient(135deg, #5B6CFF, #7F53FF);
  --cta: #FF7A00;
  --light: #F8FAFC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--light);
}

/* HEADER */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  color: transparent;
}

/* MENU */
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #5B6CFF;
}

/* CTA BUTTON */
.cta-btn {
  background: var(--cta);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

/* MOBILE */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media(max-width: 900px) {
  .menu {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    transition: 0.3s;
  }

  .menu.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }
}
.hero-unique {
  position: relative;
  padding: 120px 20px 100px;
  background: #0A2540;
  color: #fff;
  overflow: hidden;
}

/* BACKGROUND BLOBS */
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #5B6CFF, transparent 70%);
  opacity: 0.4;
  filter: blur(80px);
}

.hero-bg::before {
  top: -100px;
  left: -100px;
}

.hero-bg::after {
  bottom: -100px;
  right: -100px;
}

/* CENTER CONTENT */
.hero-center {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* HEADING */
.hero-center h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 17px;
  color: #d1d5db;
  margin-bottom: 35px;
}

/* GLASS FORM */
.glass-box {
  display: flex;
  justify-content: center;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 10px;
  max-width: 420px;
  margin: auto;
}

.glass-box input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 6px;
}

.glass-box button {
  background: #FF7A00;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  margin-left: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.hero-stats h3 {
  font-size: 22px;
}

.hero-stats span {
  font-size: 14px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero-center h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .glass-box {
    flex-direction: column;
  }

  .glass-box button {
    margin-left: 0;
    margin-top: 10px;
  }
}
.plans {
  padding: 90px 20px;
  background: #F8FAFC;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  color: #0A2540;
}

.section-header p {
  color: #6b7280;
  margin-top: 10px;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.plan-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
}

/* FEATURED */
.plan-card.featured {
  border: 2px solid #5B6CFF;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* TEXT */
.plan-card h3 {
  color: #0A2540;
  margin-bottom: 10px;
}

.plan-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.plan-card h2 span {
  font-size: 14px;
  color: #6b7280;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.plan-card ul li {
  margin: 8px 0;
  color: #555;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #FF7A00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: scale(1);
  }
}
.why {
  padding: 90px 20px;
  background: #ffffff;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #F8FAFC;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ICON */
.why-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h3 {
  font-size: 18px;
  color: #0A2540;
  margin-bottom: 10px;
}

.why-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.smart {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  text-align: center;
}

/* OPTIONS */
.usage-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.usage-options button {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.usage-options button.active,
.usage-options button:hover {
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  border: none;
}

/* RESULT */
.usage-result {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.usage-result h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0A2540;
}

.usage-result p {
  color: #6b7280;
  margin-bottom: 15px;
}

.speed {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #5B6CFF;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .usage-options {
    flex-direction: column;
  }
}
.trust {
  padding: 100px 20px;
  background: #0A2540;
  color: #fff;
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.testimonial-card p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #fff;
}

/* STATS */
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.trust-stats h3 {
  font-size: 26px;
}

.trust-stats span {
  font-size: 13px;
  color: #9ca3af;
}

/* CTA BOX */
.cta-box2 {
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
}

.cta-box2 h2 {
  margin-bottom: 10px;
}

.cta-box2 p {
  margin-bottom: 20px;
  color: #e5e7eb;
}

/* FORM */
.cta-form2 {
  display: flex;
  justify-content: center;
}

.cta-form2 input {
  padding: 12px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  width: 200px;
}

.cta-form2 button {
  padding: 12px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta-form2 {
    flex-direction: column;
  }

  .cta-form2 input,
  .cta-form2 button {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}
.faq {
  padding: 90px 20px;
  background: #ffffff;
}

/* LIST */
.faq-list {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
  cursor: pointer;
}

/* QUESTION */
.faq-question {
  font-weight: 600;
  color: #0A2540;
  position: relative;
  padding-right: 25px;
}

/* PLUS ICON */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  transition: 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.faq-item.active .faq-question::after {
  content: "-";
}
.disclaimer {
  padding: 80px 20px;
  background: #F8FAFC;
}

.disclaimer-box {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HEADING */
.disclaimer-box h2 {
  margin-bottom: 20px;
  color: #0A2540;
}

/* TEXT */
.disclaimer-box p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* HIGHLIGHT */
.disclaimer-box .highlight {
  font-weight: 600;
  color: #FF7A00;
  margin-top: 10px;
}

.footer {
  background: #0A2540;
  color: #fff;
  padding: 70px 20px 30px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* LOGO */
.footer-logo {
  font-size: 22px;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #9ca3af;
  margin: 5px 0;
}

.mini-disclaimer {
  font-size: 12px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about-hero {
  position: relative;
  padding: 120px 20px 100px;
  background: linear-gradient(135deg, #0A2540, #1e3a8a);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Subtle glow effect */
.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(91,108,255,0.4), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.about-hero::before {
  top: -100px;
  left: -100px;
}

.about-hero::after {
  bottom: -100px;
  right: -100px;
}

/* Keep content above glow */
.about-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

/* Heading */
.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Paragraph */
.about-hero p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 90px 15px 70px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-hero p {
    font-size: 15px;
  }
}
.about-intro {
  padding: 90px 20px;
  background: #F8FAFC;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.intro-text h2 {
  font-size: 32px;
  color: #0A2540;
  margin-bottom: 15px;
}

.intro-text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* RIGHT CARD */
.intro-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.intro-card:hover {
  transform: translateY(-8px);
}

.intro-card h3 {
  margin-bottom: 12px;
  color: #0A2540;
}

.intro-card p {
  color: #6b7280;
  margin-bottom: 15px;
}

.intro-card ul {
  list-style: none;
}

.intro-card ul li {
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}
.about-different {
  padding: 100px 20px;
  background: #ffffff;
}

/* CENTER HEADER */
.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.section-header.center h2 {
  font-size: 34px;
  color: #0A2540;
}

.section-header.center p {
  color: #6b7280;
  margin-top: 10px;
}

/* GRID */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.diff-card {
  background: #F8FAFC;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.diff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* ICON */
.diff-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.diff-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0A2540;
}

.diff-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}
.about-cta-pro {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0A2540, #1e3a8a);
  color: #fff;
}

/* WRAPPER */
.cta-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.cta-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-text p {
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* INPUT */
.cta-actions {
  display: flex;
  max-width: 420px;
}

.cta-actions input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.cta-actions button {
  padding: 14px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: 600;
}

/* RIGHT BOX */
.cta-highlight {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.cta-highlight h3 {
  margin-bottom: 15px;
}

.cta-highlight ul {
  list-style: none;
}

.cta-highlight ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions input,
  .cta-actions button {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}

.coverage-hero {
  padding: 110px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.coverage-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.coverage-text h1 {
  font-size: 40px;
  color: #0A2540;
  margin: 15px 0;
}

.coverage-text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* FORM */
.coverage-form {
  display: flex;
  max-width: 400px;
}

.coverage-form input {
  flex: 1;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.coverage-form button {
  padding: 14px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: 600;
}

/* NOTE */
.coverage-note {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

/* RIGHT CARD */
.coverage-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.coverage-card h3 {
  margin-bottom: 20px;
  color: #0A2540;
}

/* STATS */
.coverage-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.coverage-stats h4 {
  font-size: 22px;
  color: #5B6CFF;
}

.coverage-stats span {
  font-size: 12px;
  color: #6b7280;
}

/* SMALL TEXT */
.coverage-small {
  font-size: 12px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .coverage-wrap {
    grid-template-columns: 1fr;
  }

  .coverage-text {
    text-align: center;
  }

  .coverage-form {
    flex-direction: column;
    margin: auto;
  }

  .coverage-form input,
  .coverage-form button {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}
.coverage-regions {
  padding: 100px 20px;
  background: #ffffff;
}

/* GRID */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.region-card {
  background: #F8FAFC;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid #eef2f7;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* TEXT */
.region-card h3 {
  color: #0A2540;
  margin-bottom: 10px;
}

.region-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* TAG */
.region-card .tag {
  display: inline-block;
  font-size: 12px;
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
}
.coverage-steps {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.step-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* NUMBER */
.step-number {
  font-size: 14px;
  font-weight: 600;
  color: #5B6CFF;
  margin-bottom: 10px;
}

/* TEXT */
.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0A2540;
}

.step-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
.coverage-cta {
  padding: 110px 20px;
  background: #0A2540;
  color: #fff;
}

/* WRAPPER */
.coverage-cta-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.cta-left h2 {
  font-size: 36px;
  margin: 15px 0;
}

.cta-left p {
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* TAG */
.cta-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* FORM */
.cta-form {
  display: flex;
  max-width: 420px;
}

.cta-form input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.cta-form button {
  padding: 14px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: 600;
}

/* CALL BUTTON */
.call-btn {
  display: inline-block;
  padding: 14px 20px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #16a34a;
}

/* TRUST TEXT */
.cta-trust {
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

/* RIGHT SIDE */
.cta-right {
  position: relative;
  display: flex;
  justify-content: center;
}

/* PULSE EFFECT */
.pulse-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #5B6CFF, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s infinite;
  opacity: 0.5;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* CARD */
.cta-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  max-width: 320px;
}

.cta-card h3 {
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 15px;
}

.cta-card ul {
  list-style: none;
}

.cta-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .coverage-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-form input,
  .cta-form button,
  .call-btn {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}
.compare-hero {
  padding: 110px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.compare-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.compare-text h1 {
  font-size: 40px;
  color: #0A2540;
  margin: 15px 0;
}

.compare-text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* SELECTOR */
.compare-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.compare-selector select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.compare-selector button {
  padding: 12px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* NOTE */
.compare-note {
  font-size: 13px;
  color: #6b7280;
}

/* RIGHT CARD */
.compare-preview {
  display: flex;
  justify-content: center;
}

.compare-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 320px;
}

.compare-card h3 {
  margin-bottom: 15px;
  color: #0A2540;
}

.compare-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.compare-card ul li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  color: #374151;
}

/* BUTTON */
.compare-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .compare-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .compare-selector {
    justify-content: center;
  }
}
.compare-table-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* WRAPPER */
.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

/* TABLE */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

/* HEAD */
.compare-table thead {
  background: #F8FAFC;
}

.compare-table th {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  color: #0A2540;
}

/* BODY */
.compare-table td {
  padding: 15px;
  border-top: 1px solid #eef2f7;
  font-size: 14px;
  color: #374151;
}

/* HIGHLIGHT COLUMN */
.compare-table .highlight {
  background: rgba(91,108,255,0.08);
  font-weight: 600;
}

/* BUTTON */
.table-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #FF7A00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .compare-table th,
  .compare-table td {
    font-size: 13px;
    padding: 10px;
  }
}
.compare-recommend {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* GRID */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.recommend-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
}

.recommend-card:hover {
  transform: translateY(-10px);
}

/* FEATURED */
.recommend-card.featured {
  border: 2px solid #5B6CFF;
  transform: scale(1.05);
}

/* TAG */
.recommend-card .tag {
  display: inline-block;
  font-size: 12px;
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.recommend-card h3 {
  margin-bottom: 10px;
  color: #0A2540;
}

.recommend-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

.recommend-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.recommend-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* BUTTON */
.recommend-btn {
  display: inline-block;
  padding: 12px 18px;
  background: #FF7A00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .recommend-card.featured {
    transform: scale(1);
  }
}
.compare-cta {
  padding: 110px 20px;
  background: linear-gradient(135deg, #0A2540, #1e3a8a);
  color: #fff;
}

/* WRAPPER */
.compare-cta-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.cta-left h2 {
  font-size: 36px;
  margin: 15px 0;
}

.cta-left p {
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* TAG */
.cta-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* CALL BUTTON */
.call-btn {
  padding: 14px 22px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #16a34a;
}

/* FORM */
.cta-form {
  display: flex;
}

.cta-form input {
  padding: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.cta-form button {
  padding: 14px 16px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* TRUST */
.cta-trust {
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

/* RIGHT CARD */
.cta-card {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.cta-card h3 {
  margin-bottom: 15px;
}

.cta-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.cta-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* PHONE */
.cta-number {
  font-size: 18px;
  font-weight: 600;
  color: #22c55e;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .compare-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-form input,
  .cta-form button,
  .call-btn {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}
.internet-hero {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0A2540, #1e3a8a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.internet-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.internet-text h1 {
  font-size: 44px;
  margin: 15px 0;
}

.internet-text p {
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* ACTIONS */
.internet-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* FORM */
.internet-form {
  display: flex;
}

.internet-form input {
  padding: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.internet-form button {
  padding: 14px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: 600;
}

/* CALL BUTTON */
.call-btn {
  padding: 14px 20px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

/* TRUST */
.internet-trust {
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

/* RIGHT VISUAL */
.internet-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SPEED CARD */
.speed-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  text-align: center;
  margin-bottom: 20px;
}

.speed-card h3 {
  font-size: 26px;
}

/* SIGNAL BARS */
.signal-bars {
  display: flex;
  gap: 8px;
}

.signal-bars span {
  width: 10px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.signal-bars span.active {
  height: 35px;
  background: #22c55e;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .internet-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .internet-actions {
    flex-direction: column;
  }

  .internet-form {
    flex-direction: column;
    width: 100%;
  }

  .internet-form input,
  .internet-form button,
  .call-btn {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}
.internet-features {
  padding: 110px 20px;
  background: #F8FAFC;
}

.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT VISUAL */
.features-visual {
  position: relative;
}

/* MAIN CARD */
.feature-card.main {
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* SMALL FLOATING CARDS */
.feature-card.small {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card.small.one {
  top: -20px;
  right: -20px;
}

.feature-card.small.two {
  bottom: -20px;
  left: -20px;
}

/* RIGHT */
.features-text h2 {
  font-size: 34px;
  color: #0A2540;
  margin: 15px 0;
}

.features-text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* LIST */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item h4 {
  color: #0A2540;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .features-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-card.small {
    position: static;
    margin-top: 10px;
  }
}

.internet-plans {
  padding: 110px 20px;
  background: #ffffff;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.plan-card {
  background: #F8FAFC;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border: 1px solid #eef2f7;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* FEATURED */
.plan-card.featured {
  border: 2px solid #5B6CFF;
  transform: scale(1.05);
  background: #fff;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5B6CFF, #7F53FF);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* TEXT */
.plan-card h3 {
  color: #0A2540;
  margin-bottom: 10px;
}

.plan-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.plan-card h2 span {
  font-size: 14px;
  color: #6b7280;
}

/* LIST */
.plan-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.plan-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #FF7A00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* CALL BUTTON */
.call-btn.small {
  display: inline-block;
  padding: 10px 16px;
  background: #22c55e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
}

/* ACTIONS */
.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: scale(1);
  }
}
.internet-final-cta {
  padding: 120px 20px;
  background: #0A2540;
  color: #fff;
}

/* WRAPPER */
.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.cta-content h2 {
  font-size: 36px;
  margin: 15px 0;
}

.cta-content p {
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* TAG */
.cta-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* FORM */
.cta-form {
  display: flex;
}

.cta-form input {
  padding: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.cta-form button {
  padding: 14px 18px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* CALL BUTTON */
.call-btn {
  padding: 14px 20px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

/* TRUST */
.cta-trust {
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

/* RIGHT */
.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* GLOW */
.cta-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #5B6CFF, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}

/* CARD */
.cta-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.cta-card h3 {
  margin-bottom: 15px;
}

.cta-card ul {
  list-style: none;
}

.cta-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-form input,
  .cta-form button,
  .call-btn {
    width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }
}

.contact-hero {
  padding: 110px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.contact-text h1 {
  font-size: 42px;
  color: #0A2540;
  margin: 15px 0;
}

.contact-text p {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* ACTIONS */
.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.call-btn {
  padding: 14px 22px;
  background: #22c55e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.secondary-btn {
  padding: 14px 22px;
  border: 1px solid #5B6CFF;
  color: #5B6CFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* TRUST */
.contact-trust {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

/* RIGHT CARDS */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-card h3 {
  color: #0A2540;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 5px;
}

.contact-card span {
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }
}
.contact-main {
  padding: 110px 20px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* FORM BOX */
.contact-form-box {
  background: #F8FAFC;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-box h2 {
  margin-bottom: 10px;
  color: #0A2540;
}

.contact-form-box p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #FF7A00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 14px;
  border: none;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.policy-page {
  padding: 100px 0;
  background: #ffffff;
}

.policy-page h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.policy-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.policy-page p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 10px;
}

.policy-page ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-page li {
  margin-bottom: 5px;
}