/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
/* TOPBAR */
.topbar {
  background: linear-gradient(90deg,#020617,#0f172a);
  color: #cbd5e1;
  font-size: 13px;
  padding: 6px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

/* LOGO */
.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

/* NAV */
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  position: relative;
}

/* HOVER UNDERLINE EFFECT */
.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #22c55e;
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CALL BUTTON */
.call-btn {
  background: linear-gradient(135deg,#ef4444,#dc2626);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.call-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .call-btn {
    display: none;
  }
}
.hero {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
  overflow: hidden;
}

.hero-modern {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.hero-left h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 15px 0;
  font-weight: 700;
}

.hero-left p {
  color: #94a3b8;
  margin-bottom: 25px;
  font-size: 17px;
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}

/* ZIP */
.zip-box {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.zip-box input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.zip-box button {
  padding: 14px 18px;
  background: #22c55e;
  border: none;
  color: #fff;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
}

.primary {
  background: #22c55e;
  color: #fff;
}

.ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

/* RIGHT GLASS CARD */
.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

/* MINI CARDS */
.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-top: 10px;
}

.mini-card i {
  font-size: 20px;
  color: #22c55e;
}

/* MOBILE */
@media(max-width:768px){
  .hero-modern {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

.providers {
  padding: 100px 0;
  background: #f8fafc;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-head p {
  color: #64748b;
}

/* GRID */
.provider-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.provider-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: 0.3s;
}

.provider-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* HIGHLIGHT */
.provider-box.highlight {
  border: 2px solid #22c55e;
}

.badge {
  position: absolute;
  top: 1px;
  right: 100px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* TOP */
.provider-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.provider-icon {
  width: 45px;
  height: 45px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  color: #22c55e;
}

/* INFO */
.provider-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.provider-info div {
  background: #f8fafc;
  padding: 10px;
  border-radius: 8px;
}

.provider-info strong {
  font-size: 12px;
  color: #64748b;
}

.provider-info p {
  font-size: 14px;
  font-weight: 500;
}

/* CTA */
.provider-cta {
  display: block;
  text-align: center;
  background: #0f172a;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.provider-cta:hover {
  background: #22c55e;
}

/* RESPONSIVE */
@media(max-width:992px){
  .provider-modern {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .provider-modern {
    grid-template-columns: 1fr;
  }
}
.benefits-premium {
  padding: 120px 0;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.benefits-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.benefits-header span {
  font-size: 12px;
  color: #22c55e;
  letter-spacing: 1px;
}

.benefits-header h2 {
  font-size: 40px;
  margin: 10px 0;
}

.benefits-header p {
  color: #94a3b8;
}

/* LAYOUT */
.benefits-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* LARGE CARD */
.feature-large {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-large::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.feature-content i {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* STACK */
.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SMALL CARDS */
.feature-small {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.feature-small:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

.feature-small i {
  font-size: 20px;
  color: #22c55e;
  min-width: 25px;
}

.feature-small h4 {
  margin-bottom: 4px;
}

.feature-small p {
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media(max-width:768px){
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .feature-large {
    text-align: center;
  }
}
/* SECTION */
.comparison {
  padding: 120px 0;
  background: #ffffff;
}

/* HEADER */
.comparison-head {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-head h2 {
  font-size: 38px;
  color: #0f172a;
}

.comparison-head p {
  color: #64748b;
}

/* WRAPPER */
.comparison-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.compare-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  width: 300px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
  position: relative;
}

.compare-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FEATURED */
.compare-card.featured {
  border: 2px solid #22c55e;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(34,197,94,0.15);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* TOP */
.compare-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.compare-top h3 {
  color: #0f172a;
}

.tag {
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
}

/* PRICE */
.price {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  color: #64748b;
}

/* FEATURES */
.features {
  list-style: none;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #334155;
}

.features i {
  color: #22c55e;
  margin-right: 8px;
}

/* BUTTON */
.compare-btn {
  display: block;
  text-align: center;
  background: #0f172a;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.compare-btn:hover {
  background: #22c55e;
}

/* RESPONSIVE */
@media(max-width:768px){
  .comparison-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.trust {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}

.trust-head h2 {
  font-size: 36px;
}

.trust-head p {
  color: #64748b;
  margin: 10px 0 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.trust-box h3 {
  font-size: 28px;
  color: #22c55e;
}

.trust-box p {
  font-size: 14px;
  color: #64748b;
}

@media(max-width:768px){
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
.how-works {
  padding: 110px 0;
  background: #ffffff;
  text-align: center;
}

.works-head h2 {
  font-size: 38px;
  color: #0f172a;
}

.works-head p {
  color: #64748b;
  margin: 10px 0 50px;
}

/* GRID */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.work-card {
  position: relative;
  background: #f8fafc;
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* STEP NUMBER */
.step {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #22c55e;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* ICON */
.work-card i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 15px;
}

/* TEXT */
.work-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.work-card p {
  font-size: 14px;
  color: #64748b;
}

/* RESPONSIVE */
@media(max-width:768px){
  .works-grid {
    grid-template-columns: 1fr;
  }
}
.cta-dark {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

/* WRAPPER */
.cta-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.cta-left h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.cta-left p {
  color: #94a3b8;
  margin-bottom: 25px;
}

.cta-points {
  list-style: none;
}

.cta-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

.cta-points i {
  color: #22c55e;
  margin-right: 8px;
}

/* FORM BOX */
.cta-form {
  background: rgba(255,255,255,0.05);
  padding: 35px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* INPUTS */
.cta-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* BUTTON */
.cta-form button {
  width: 100%;
  padding: 13px;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.cta-form button:hover {
  background: #16a34a;
}

/* NOTE */
.form-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer {
  background: #020617;
  color: #cbd5e1;
  padding-top: 70px;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* HEADINGS */
.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  color: #94a3b8;
}

/* LINKS */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #22c55e;
}

/* CONTACT */
.footer-contact p {
  margin-top: 10px;
}

/* CTA BUTTON */
.footer-call {
  display: inline-block;
  margin-top: 10px;
  background: #22c55e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

.footer-bottom .disclaimer {
  margin-top: 10px;
  color: #64748b;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.final-cta {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  padding: 50px 0;
  color: #fff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-text h2 {
  font-size: 30px;
  margin-bottom: 5px;
}

.cta-text p {
  font-size: 14px;
}

.cta-btn {
  background: #020617;
  color: #fff;
  padding: 14px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

@media(max-width:768px){
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
.disclaimer-section {
  background: #f8fafc;
  padding: 30px 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-section p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.6;
}
.provider-hero-v2 {
  padding: 120px 0;
  background: linear-gradient(135deg,#0f172a,#020617);
  color: #fff;
}

.hero-v2-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.provider-badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  color: #22c55e;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.hero-v2-left h1 {
  font-size: 46px;
  margin-bottom: 15px;
}

.hero-v2-left p {
  color: #94a3b8;
  margin-bottom: 25px;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.hero-stats strong {
  display: block;
  font-size: 16px;
}

.hero-stats span {
  font-size: 12px;
  color: #94a3b8;
}

/* ACTION */
.hero-actions {
  display: flex;
  gap: 15px;
}

.btn.primary {
  background: #22c55e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
}

/* RIGHT CARD */
.plan-highlight {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.plan-highlight .tag {
  font-size: 12px;
  color: #22c55e;
}

.plan-highlight h3 {
  margin: 10px 0;
}

.plan-highlight .speed {
  color: #94a3b8;
}

.price {
  font-size: 36px;
  margin: 15px 0;
}

.price span {
  font-size: 14px;
  color: #94a3b8;
}

.plan-highlight ul {
  list-style: none;
  margin-bottom: 20px;
}

.plan-highlight li {
  margin-bottom: 8px;
}

.plan-highlight i {
  color: #22c55e;
  margin-right: 6px;
}

.plan-btn {
  display: block;
  text-align: center;
  background: #22c55e;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-v2-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}
.plans-v2 {
  padding: 100px 0;
  background: #ffffff;
}

.plans-head {
  text-align: center;
  margin-bottom: 50px;
}

.plans-head h2 {
  font-size: 38px;
}

.plans-head p {
  color: #64748b;
}

/* TABLE STYLE */
.plans-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ROW */
.plan-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
  align-items: center;
  padding: 20px 25px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: 0.3s;
}

.plan-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* FEATURED */
.plan-row.featured {
  border: 2px solid #22c55e;
  background: #f0fdf4;
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* INFO */
.plan-info h3 {
  margin-bottom: 5px;
}

.plan-info span {
  font-size: 13px;
  color: #64748b;
}

/* SPEED */
.plan-speed strong {
  font-size: 16px;
}

.plan-speed span {
  font-size: 12px;
  color: #64748b;
}

/* PRICE */
.plan-price strong {
  font-size: 20px;
}

.plan-price span {
  font-size: 12px;
  color: #64748b;
}

/* FEATURES */
.plan-features ul {
  list-style: none;
}

.plan-features li {
  font-size: 13px;
  margin-bottom: 5px;
}

.plan-features i {
  color: #22c55e;
  margin-right: 5px;
}

/* BUTTON */
.plan-action a {
  background: #0f172a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .plan-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
}
.why-provider {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

/* LAYOUT */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT VISUAL */
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* CARDS */
.visual-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.visual-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* BIG CARD */
.visual-card.big {
  grid-column: span 2;
  padding: 35px;
}

.visual-card.big i {
  font-size: 30px;
  color: #22c55e;
  margin-bottom: 10px;
}

/* SMALL */
.visual-card.small i {
  color: #22c55e;
  margin-bottom: 6px;
}

/* RIGHT CONTENT */
.section-tag {
  font-size: 12px;
  color: #22c55e;
  letter-spacing: 1px;
}

.why-content h2 {
  font-size: 40px;
  margin: 10px 0;
}

.why-content p {
  color: #94a3b8;
  margin-bottom: 20px;
}

/* LIST */
.why-list {
  list-style: none;
  margin-bottom: 25px;
}

.why-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.why-list i {
  color: #22c55e;
  margin-right: 6px;
}

/* BUTTON */
.btn.primary {
  background: #22c55e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary:hover {
  background: #16a34a;
}

/* MOBILE */
@media(max-width:768px){
  .why-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-visual {
    grid-template-columns: 1fr;
  }
}
.about-provider {
  padding: 110px 0;
  background: #ffffff;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.about-left h2 {
  font-size: 38px;
  margin: 10px 0;
}

.about-left p {
  color: #64748b;
  margin-bottom: 15px;
}

/* RIGHT GRID */
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* BOX */
.about-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-5px);
}

.about-box i {
  font-size: 22px;
  color: #22c55e;
  margin-bottom: 8px;
}

.about-box h4 {
  margin-bottom: 5px;
}

.about-box p {
  font-size: 13px;
  color: #64748b;
}

/* MOBILE */
@media(max-width:768px){
  .about-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-right {
    grid-template-columns: 1fr;
  }
}
.faq-dark {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

/* HEADER */
.faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-head h2 {
  font-size: 38px;
}

.faq-head p {
  color: #94a3b8;
}

/* WRAPPER */
.faq-wrapper {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-question i {
  font-size: 14px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active i {
  transform: rotate(45deg);
}

.plans-hero {
  padding: 120px 0;
  background: linear-gradient(135deg,#0f172a,#020617);
  color: #fff;
}

.plans-hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.plans-left h1 {
  font-size: 44px;
  margin: 10px 0;
}

.plans-left p {
  color: #94a3b8;
  margin-bottom: 20px;
}

/* TAGS */
.plan-tags {
  display: flex;
  gap: 10px;
}

.plan-tags span {
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* RIGHT */
.plans-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MINI PLAN */
.mini-plan {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.mini-plan h4 {
  margin-bottom: 5px;
}

.mini-plan p {
  font-size: 13px;
  color: #94a3b8;
}

.mini-plan span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

/* HIGHLIGHT */
.mini-plan.highlight {
  border: 2px solid #22c55e;
}

.badge {
  position: absolute;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .plans-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plan-tags {
    justify-content: center;
  }
}

.plans-main {
  padding: 110px 0;
  background: #f8fafc;
}

/* HEAD */
.plans-main-head {
  text-align: center;
  margin-bottom: 50px;
}

.plans-main-head h2 {
  font-size: 36px;
}

.plans-main-head p {
  color: #64748b;
}

/* GRID */
.plans-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.plan-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 280px;
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.plan-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FEATURED */
.plan-box.featured {
  border: 2px solid #22c55e;
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* TEXT */
.plan-speed {
  font-size: 18px;
  margin: 10px 0;
}

.plan-price {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 14px;
  color: #64748b;
}

/* LIST */
.plan-list {
  list-style: none;
  margin-bottom: 20px;
}

.plan-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.plan-list i {
  color: #22c55e;
  margin-right: 6px;
}

/* BUTTON */
.plan-btn {
  display: block;
  background: #0f172a;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
}

.plan-btn.highlight {
  background: #22c55e;
}

/* MOBILE */
@media(max-width:768px){
  .plans-cards {
    flex-direction: column;
    align-items: center;
  }
}
.plan-guide.dark {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

/* HEADER */
.guide-head {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 12px;
  color: #22c55e;
  letter-spacing: 1px;
}

.guide-head h2 {
  font-size: 40px;
  margin: 10px 0;
}

.guide-head p {
  color: #94a3b8;
  margin-bottom: 10px;
}

.guide-subtext {
  font-size: 14px;
  color: #64748b;
}

/* GRID */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.guide-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.guide-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* ICON */
.guide-card i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 15px;
}

/* TEXT */
.guide-card h3 {
  margin-bottom: 10px;
}

.guide-card p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

/* HIGHLIGHT */
.guide-highlight {
  background: rgba(34,197,94,0.1);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){
  .guide-grid {
    grid-template-columns: 1fr;
  }
}
.plans-faq {
  padding: 110px 0;
  background: #ffffff;
}

/* HEAD */
.faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-head h2 {
  font-size: 36px;
}

.faq-head p {
  color: #64748b;
}

/* LIST */
.faq-list {
  max-width: 750px;
  margin: auto;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

/* QUESTION */
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #0f172a;
}

/* ICON */
.faq-q i {
  transition: 0.3s;
}

/* ANSWER */
.faq-a {
  display: none;
  padding-bottom: 15px;
  color: #64748b;
  font-size: 14px;
}

/* ACTIVE */
.faq-item.active .faq-a {
  display: block;
}

.faq-item.active i {
  transform: rotate(45deg);
}

.why-hero {
  padding: 120px 0;
  background: linear-gradient(135deg,#0f172a,#020617);
  color: #fff;
}

.why-hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.why-left h1 {
  font-size: 44px;
  margin: 10px 0;
}

.why-left p {
  color: #94a3b8;
  margin-bottom: 25px;
}

/* ACTIONS */
.why-actions {
  display: flex;
  gap: 15px;
}

.btn.primary {
  background: #22c55e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 22px;
  color: #fff;
  border-radius: 8px;
}

/* RIGHT */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-stat {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
}

.why-stat h3 {
  margin-bottom: 5px;
}

.why-stat p {
  font-size: 13px;
  color: #94a3b8;
}

/* MOBILE */
@media(max-width:768px){
  .why-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-actions {
    justify-content: center;
  }
}
.why-benefits {
  padding: 110px 0;
  background: #ffffff;
}

.why-benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.benefits-left h2 {
  font-size: 38px;
  margin: 10px 0;
}

.benefits-left p {
  color: #64748b;
}

/* RIGHT */
.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ROW */
.benefit-row {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.benefit-row:hover {
  transform: translateY(-5px);
}

/* ICON */
.benefit-row .icon {
  font-size: 22px;
  color: #22c55e;
  min-width: 30px;
}

/* TEXT */
.benefit-row h3 {
  margin-bottom: 5px;
}

.benefit-row p {
  font-size: 14px;
  color: #64748b;
}

/* MOBILE */
@media(max-width:768px){
  .why-benefits-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-row {
    text-align: left;
  }
}

.compare-dark {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

/* HEAD */
.compare-head {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.compare-head h2 {
  font-size: 40px;
  margin: 10px 0;
}

.compare-head p {
  color: #94a3b8;
}

/* TABLE */
.compare-table {
  max-width: 800px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
}

/* ROW */
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* HEADER */
.compare-row.header {
  background: rgba(255,255,255,0.05);
  font-weight: bold;
}

/* GOOD / BAD */
.good {
  color: #22c55e;
}

.bad {
  color: #f87171;
}

/* ICON */
.compare-row i {
  margin-right: 6px;
}

/* MOBILE */
@media(max-width:768px){
  .compare-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.why-final {
  padding: 120px 0;
  background: #ffffff;
}

.why-final-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* FAQ */
.final-faq h2 {
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-q {
  width: 100%;
  padding: 15px 0;
  text-align: left;
  border: none;
  background: none;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding-bottom: 10px;
  font-size: 14px;
  color: #64748b;
}

.faq-item.active .faq-a {
  display: block;
}

/* CTA BOX */
.final-cta-box {
  background: #0f172a;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}

.final-cta-box h3 {
  margin-bottom: 10px;
}

.final-cta-box p {
  color: #94a3b8;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn.primary {
  display: block;
  background: #22c55e;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
}

.btn.call {
  display: block;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.note {
  font-size: 12px;
  margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){
  .why-final-wrap {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  padding: 120px 0;
  background: #f8fafc;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-info h1 {
  font-size: 40px;
  margin: 10px 0;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 25px;
}

/* DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-item i {
  font-size: 20px;
  color: #22c55e;
}

.contact-item strong {
  display: block;
}

/* FORM */
.contact-form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.contact-form-box h3 {
  margin-bottom: 15px;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

/* BUTTON */
.contact-form-box button {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

/* NOTE */
.form-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }
}
.map-section {
  width: 100%;
  line-height: 0; /* removes gap under iframe */
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}
.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;
}