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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.text-navy { color: #0d2f73; }
.text-amber { color: #f49d25; }
.text-white { color: #ffffff; }
.text-slate-900 { color: #0f172a; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-slate-300 { color: #cbd5e1; }
.text-emerald { color: #10b981; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-sm {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}

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

.btn-primary {
  background-color: #0d2f73;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0a2460;
  color: #ffffff;
}

.btn-secondary {
  background-color: #f49d25;
  color: #0d2f73;
}

.btn-secondary:hover {
  background-color: #e08d15;
  color: #0d2f73;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-dark {
  background-color: #0f172a;
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #1e293b;
  color: #ffffff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-xl {
  padding: 22px 52px;
  font-size: 22px;
}

.btn-block {
  width: 100%;
  display: flex;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #0d2f73;
  letter-spacing: -0.5px;
}

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

.nav-desktop a {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #0d2f73;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-phone-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-phone-num {
  font-size: 17px;
  font-weight: 800;
  color: #0d2f73;
  text-decoration: none;
  transition: color 0.2s;
}

.header-phone-num:hover {
  color: #f49d25;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #475569;
}

.mobile-toggle svg {
  display: block;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.mobile-nav a:hover {
  background-color: #f8fafc;
  color: #0d2f73;
}

.mobile-nav-divider {
  border-top: 1px solid #e2e8f0;
  margin: 12px 0;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0d2f73;
  text-decoration: none;
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f172a 40%, transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background-color: rgba(244, 157, 37, 0.15);
  border: 1px solid rgba(244, 157, 37, 0.3);
  color: #f49d25;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f49d25;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #f49d25;
}

.hero-desc {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

.check-icon {
  color: #f49d25;
  font-size: 16px;
  line-height: 1;
}


.trust-bar {
  background-color: #0d2f73;
  padding: 28px 0;
  color: #ffffff;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}

.trust-bar-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-num {
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.trust-bar-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}


.section-heading {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-heading p {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}


.services-section {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-card {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-blue { background-color: #dbeafe; color: #0d2f73; }
.icon-amber { background-color: #fef3c7; color: #d97706; }
.icon-emerald { background-color: #d1fae5; color: #059669; }
.icon-rose { background-color: #ffe4e6; color: #e11d48; }
.icon-slate { background-color: #e2e8f0; color: #334155; }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  font-weight: 700;
  color: #0d2f73;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.card-link:hover {
  text-decoration: underline;
}

.split-section {
  background-color: #f8fafc;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.split-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.split-image-col {
  flex: 0 0 48%;
  position: relative;
}

.split-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.split-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.image-badge-icon {
  font-size: 32px;
  color: #059669;
}

.image-badge h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.image-badge p {
  font-size: 13px;
  color: #475569;
}

.split-text-col {
  flex: 1;
}

.split-text-col h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.split-text-col > p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 32px;
  line-height: 1.75;
}

.value-list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.value-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(13, 47, 115, 0.1);
  color: #0d2f73;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}

.value-list h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.value-list p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.packages-section {
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card.popular {
  background-color: #0d2f73;
  border-color: #f49d25;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(13, 47, 115, 0.25);
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f49d25;
  color: #0d2f73;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.package-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.package-card.popular h3 {
  color: #ffffff;
}

.package-card-desc {
  font-size: 14px;
  color: #64748b;
  min-height: 44px;
  margin-bottom: 24px;
  line-height: 1.55;
}

.package-card.popular .package-card-desc {
  color: rgba(255, 255, 255, 0.75);
}

.package-price {
  font-size: 44px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1;
}

.package-price sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: super;
}

.package-price .per-mo {
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
  margin-left: 2px;
}

.package-card.popular .package-price {
  color: #ffffff;
}

.package-card.popular .package-price .per-mo {
  color: rgba(255, 255, 255, 0.55);
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 12px;
}

.package-card.popular .package-features li {
  color: rgba(255, 255, 255, 0.9);
}

.feat-check {
  color: #f49d25;
  font-size: 16px;
  flex-shrink: 0;
}

.packages-link {
  text-align: center;
  margin-top: 40px;
}

.packages-link a {
  font-size: 17px;
  font-weight: 700;
  color: #0d2f73;
  text-decoration: none;
  transition: color 0.2s;
}

.packages-link a:hover {
  text-decoration: underline;
}


.testimonial-section {
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

.testimonial-quote-mark {
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(244, 157, 37, 0.35);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.75;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0d2f73;
  border: 2px solid #f49d25;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
}

.author-since {
  font-size: 13px;
  color: #94a3b8;
}

.testimonial-stats h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.testimonial-stats p {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 16px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f49d25;
  font-size: 20px;
}

.rating-label {
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
}

.rating-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
  display: block;
}


.steps-section {
  background-color: #f8fafc;
  padding-top: 80px;
  padding-bottom: 80px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-connector {
  display: block;
  position: absolute;
  top: 28px;
  left: calc(60% + 16px);
  width: calc(80% - 16px);
  height: 2px;
  background-color: #e2e8f0;
  z-index: 0;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0d2f73;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 4px solid #f8fafc;
}

.step-num.step-final {
  background-color: #f49d25;
  color: #0d2f73;
}

.step-item h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
}

/* =============================================
   CTA Section
   ============================================= */

.cta-section {
  background-color: #0d2f73;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}

.cta-box {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 64px 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
  font-size: 46px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  line-height: 1.1;
}

.cta-box p {
  font-size: 18px;
  color: #475569;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-phone-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}


.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-tagline {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f49d25;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: #f49d25;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-label {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-value:hover {
  color: #f49d25;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: #475569;
}

.page-hero {
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 72px;
  padding-bottom: 80px;
  text-align: center;
}

.page-hero.hero-navy {
  background-color: #0d2f73;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero h1 .highlight {
  color: #f49d25;
}

.page-hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}


.plans-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.plans-section.bg-light {
  background-color: #f8fafc;
}

.plans-section.bg-white {
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.plans-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.plans-heading-icon {
  color: #0d2f73;
  font-size: 24px;
}

.plans-heading h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
}

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

.plan-card {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s;
}

.plan-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.plan-card.highlighted {
  border-color: #f49d25;
  box-shadow: 0 12px 40px rgba(13, 47, 115, 0.12);
  transform: translateY(-8px);
}

.plan-card.highlighted-blue {
  border-color: #0d2f73;
  box-shadow: 0 12px 40px rgba(13, 47, 115, 0.12);
  transform: translateY(-8px);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-badge.amber {
  background-color: #f49d25;
  color: #0d2f73;
}

.plan-badge.navy {
  background-color: #0d2f73;
  color: #ffffff;
}

.plan-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.plan-speed {
  font-size: 15px;
  font-weight: 700;
  color: #0d2f73;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 52px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.plan-price sup {
  font-size: 24px;
  margin-top: 8px;
  margin-right: 2px;
}

.plan-price .per-mo {
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
  align-self: flex-end;
  margin-left: 3px;
  margin-bottom: 4px;
}

.plan-ideal {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #475569;
  margin-bottom: 20px;
}

.plan-ideal strong {
  color: #0f172a;
}

.plan-includes {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}

.plan-includes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0d2f73;
  margin-bottom: 6px;
}

.plan-includes-item:last-child {
  margin-bottom: 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 14px;
}

.plan-features li .check {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Custom Info Box */
.info-box {
  background-color: #fefce8;
  border: 1px solid #fcd34d;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.info-box-icon {
  font-size: 28px;
  color: #d97706;
  flex-shrink: 0;
}

.info-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
}

.info-box a {
  font-size: 15px;
  font-weight: 700;
  color: #0d2f73;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}


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

.feature-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: #f8fafc;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 34px;
}

.feature-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* TV Features split */
.features-split {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.features-split-img {
  flex: 0 0 48%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.features-split-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.features-split-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.features-split-text > p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 28px;
  line-height: 1.75;
}

.tv-feature-list {
  list-style: none;
  padding: 0;
}

.tv-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.tv-feature-item .check-circle {
  color: #f49d25;
  font-size: 20px;
  flex-shrink: 0;
}

.tv-feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.tv-feature-item p {
  font-size: 13px;
  color: #475569;
}

/* Dark CTA bar */
.cta-bar {
  background-color: #0f172a;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.cta-bar h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-bar p {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 112px;
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 19px;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.story-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background-color: #ffffff;
}

.story-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.story-content p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-values-heading {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 48px;
  margin-bottom: 24px;
}

.values-numbered {
  list-style: none;
  padding: 0;
}

.values-numbered li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.value-num {
  font-size: 20px;
  font-weight: 900;
  color: #0d2f73;
  flex-shrink: 0;
  min-width: 24px;
}

.values-numbered strong {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  display: block;
  margin-bottom: 4px;
}

.values-numbered p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.local-section {
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.local-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
}

.local-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  display: inline-block;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.local-card-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #334155;
  font-size: 15px;
}

.contact-detail-icon {
  color: #0d2f73;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-detail a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: #0d2f73;
}

.map-placeholder {
  width: 240px;
  height: 180px;
  background-color: #e2e8f0;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
}


.contact-section {
  background-color: #f8fafc;
  padding-top: 64px;
  padding-bottom: 96px;
}

.contact-page-heading {
  text-align: center;
  margin-bottom: 56px;
}

.contact-page-heading h1 {
  font-size: 48px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.contact-page-heading p {
  font-size: 18px;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background-color: #0d2f73;
  color: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(13, 47, 115, 0.2);
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item-icon {
  color: #f49d25;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-item-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item address {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: #f49d25;
}

.contact-tip-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-tip-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-tip-box p {
  font-size: 13px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 7px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f8fafc;
  color: #0f172a;
  font-family: 'Inter', Arial, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #0d2f73;
  box-shadow: 0 0 0 3px rgba(13, 47, 115, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 17px;
  font-size: 17px;
  font-weight: 700;
  background-color: #0d2f73;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background-color: #0a2460;
}


.legal-page {
  background-color: #ffffff;
  padding-top: 64px;
  padding-bottom: 96px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h1 {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.15;
}

.legal-date {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 48px;
  display: block;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
}

.legal-content p {
  font-size: 16px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 16px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content strong {
  color: #0f172a;
  font-weight: 700;
}

.legal-content a {
  color: #0d2f73;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .split-inner {
    flex-direction: column;
    gap: 40px;
  }

  .split-image-col {
    flex: none;
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-bar-item:nth-child(2) {
    border-right: none;
  }

  .trust-bar-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-split {
    flex-direction: column;
    gap: 40px;
  }

  .features-split-img {
    flex: none;
    width: 100%;
  }

  .local-card-inner {
    flex-direction: column;
    gap: 28px;
  }

  .map-placeholder {
    width: 100%;
    height: 160px;
  }
}

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

  .header-right {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .packages-grid,
  .plans-grid,
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card.popular,
  .plan-card.highlighted,
  .plan-card.highlighted-blue {
    transform: none;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .hero-desc {
    font-size: 16px;
  }

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

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

  .section-heading h2 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .contact-form-card {
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-content h1 {
    font-size: 30px;
  }

  .contact-page-heading h1 {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .step-connector {
    display: none;
  }

  .info-box {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar-item {
    padding: 0 12px;
  }

  .trust-bar-num {
    font-size: 22px;
  }
}
