:root {
  --primary: #0d6efd;
  --primary-dark: #063b91;
  --secondary: #00c2ff;
  --dark: #07142e;
  --dark-2: #0d1f45;
  --text: #213047;
  --muted: #68758d;
  --light: #f5f8ff;
  --white: #ffffff;
  --border: #e3eaf6;
  --shadow: 0 22px 60px rgba(7, 20, 46, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.wp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 234, 246, 0.9);
}

.wp-topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.topbar-inner i {
  color: var(--secondary);
  margin-right: 6px;
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
}

.brand span span {
  color: var(--primary);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.26);
}

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

.nav-links a {
  padding: 10px 14px;
  font-weight: 700;
  color: var(--text);
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--light);
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(13, 110, 253, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(13, 110, 253, 0.32);
}

.btn-light {
  background: var(--light);
  color: var(--dark);
  border-color: var(--border);
}

.btn-light:hover,
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark);
  border-color: var(--border);
}

.btn-lg {
  min-height: 54px;
  padding: 15px 28px;
}

.full {
  width: 100%;
}

.menu-toggle,
.menu-btn {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: radial-gradient(circle at 10% 10%, rgba(0, 194, 255, 0.2), transparent 34%), linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13, 110, 253, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 110, 253, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -3.2px;
  color: var(--dark);
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 20px;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.hero-trust i,
.check-list i,
.price-card li i {
  color: #00a96e;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(227, 234, 246, 0.95);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 24px;
  backdrop-filter: blur(18px);
}

.dash-top,
.strip-grid,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-top h3 {
  color: var(--dark);
  font-size: 24px;
  margin-top: 4px;
}

.status-pill,
.popular {
  background: rgba(0, 169, 110, 0.12);
  color: #00885a;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.stat-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.stat-box i {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 10px;
}

.stat-box strong {
  display: block;
  color: var(--dark);
  font-size: 26px;
  line-height: 1.1;
}

.stat-box span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.message-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.phone-frame,
.campaign-panel {
  background: var(--dark);
  border-radius: 26px;
  padding: 18px;
  min-height: 260px;
}

.phone-head {
  width: 60px;
  height: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  margin: 0 auto 22px;
}

.sms-bubble {
  background: #ffffff;
  color: var(--text);
  border-radius: 16px 16px 16px 4px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
}

.sms-bubble.alt {
  background: var(--secondary);
  color: var(--dark);
  border-radius: 16px 16px 4px 16px;
}

.campaign-panel {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.campaign-panel h4 {
  font-size: 20px;
  margin-bottom: 22px;
}

.field-line {
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 12px;
}

.field-line.short {
  width: 75%;
}

.campaign-panel button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 13px;
  margin-top: 18px;
  font-weight: 900;
  color: var(--primary-dark);
}

.logos-strip {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fbfdff;
}

.strip-grid {
  flex-wrap: wrap;
  justify-content: center;
}

.strip-grid span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.split-grid h2,
.api-grid h2,
.cta-box h2 {
  color: var(--dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  margin-bottom: 16px;
}

.section-heading p,
.split-grid p,
.api-grid p,
.cta-box p {
  color: var(--muted);
  font-size: 18px;
}

.features-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.price-card,
.testimonial-card,
.info-card,
.code-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(7, 20, 46, 0.06);
}

.feature-card:hover,
.price-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card,
.price-card,
.testimonial-card {
  transition: 0.25s ease;
}

.feature-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3,
.price-card h3,
.info-card h3 {
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card p,
.price-card p,
.testimonial-card p,
.footer p {
  color: var(--muted);
}

.split-section,
.pricing {
  background: var(--light);
}

.split-grid,
.api-grid,
.cta-box,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 42px;
  align-items: center;
}

.check-list {
  margin-top: 24px;
}

.check-list p {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 800;
}

.check-list i {
  margin-right: 8px;
}

.info-card {
  background: var(--dark);
  color: var(--white);
}

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

.use-case {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.use-case i {
  color: var(--secondary);
  font-size: 20px;
}

.price-card {
  position: relative;
  background: var(--white);
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
}

.price {
  margin: 24px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
}

.price strong {
  font-size: 34px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 26px;
}

.price-card li {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
}

.price-card li i {
  margin-right: 8px;
}

.api-section {
  background: var(--dark);
  color: var(--white);
}

.api-grid h2,
.api-grid p {
  color: var(--white);
}

.api-grid p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 26px;
}

.code-card {
  background: #061024;
  border-color: rgba(255, 255, 255, 0.12);
  overflow: auto;
}

.code-card pre {
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.8;
}

.testimonial-card p {
  font-size: 17px;
  margin-bottom: 20px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.cta-section {
  padding: 50px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.cta-box {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  color: var(--white);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  background: #061024;
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 26px;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  align-items: start;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--secondary);
}

.footer p i {
  color: var(--secondary);
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 992px) {
  .topbar-inner {
    justify-content: flex-start;
  }

  .navbar {
    height: auto;
    min-height: 74px;
    flex-wrap: wrap;
    position: relative;
  }

  .menu-btn {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--light);
    color: var(--dark);
    font-size: 20px;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 18px;
  }

  .menu-toggle:checked ~ .nav-links,
  .menu-toggle:checked ~ .nav-actions {
    display: flex;
  }

  .nav-links a,
  .nav-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-grid,
  .split-grid,
  .api-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .wp-topbar {
    display: none;
  }

  .brand {
    font-size: 24px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 62px 0 48px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .dashboard-card {
    padding: 16px;
    border-radius: 26px;
  }

  .message-preview,
  .stats-grid,
  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .feature-card,
  .price-card,
  .testimonial-card,
  .info-card,
  .code-card {
    padding: 24px;
  }

  .cta-box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .split-grid h2,
  .api-grid h2,
  .cta-box h2 {
    font-size: 32px;
  }

  .hero-trust {
    gap: 10px;
    flex-direction: column;
  }
}

/* Smart recharge pricing section */
.pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(7, 20, 46, 0.06);
}

.summary-card.highlight {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
}

.summary-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.summary-card.highlight span,
.summary-card.highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.summary-card strong {
  display: block;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -1.4px;
  margin-bottom: 8px;
}

.summary-card.highlight strong {
  color: var(--white);
}

.summary-card p {
  color: var(--muted);
  font-weight: 700;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.tier-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(7, 20, 46, 0.06);
  transition: 0.25s ease;
}

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

.tier-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -60px;
  top: -60px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 999px;
}

.popular-tier {
  border: 2px solid var(--primary);
}

.premium-tier {
  background: linear-gradient(160deg, #07142e, #063b91);
  color: var(--white);
  border-color: transparent;
}

.tier-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 169, 110, 0.12);
  color: #00885a;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}

.tier-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.premium-tier .tier-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--secondary);
}

.tier-label {
  display: block;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.premium-tier .tier-label,
.premium-tier p {
  color: rgba(255, 255, 255, 0.78);
}

.tier-card h3 {
  color: var(--dark);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.premium-tier h3,
.premium-tier .unit-price,
.premium-tier .unit-range {
  color: var(--white);
}

.unit-price {
  color: var(--dark);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.unit-price span {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.premium-tier .unit-price span {
  color: rgba(255, 255, 255, 0.68);
}

.tier-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.unit-range {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.premium-tier .unit-range {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-table-wrap {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(7, 20, 46, 0.06);
  overflow: hidden;
}

.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
}

.table-head h3 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 4px;
}

.table-head p {
  color: var(--muted);
}

.table-scroll {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: #fbfdff;
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-table td {
  color: var(--text);
  font-weight: 700;
}

.pricing-table td strong {
  color: var(--primary-dark);
}

.pricing-table tbody tr:hover {
  background: var(--light);
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 992px) {
  .pricing-summary,
  .pricing-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .pricing-summary,
  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .table-head {
    padding: 22px;
  }

  .table-head .btn {
    width: 100%;
  }

  .tier-card,
  .summary-card {
    padding: 24px;
  }
}
