/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  gap: 8px;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #374151;
  border: 2px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #2563eb;
  color: #2563eb;
}

.btn-white {
  background: white;
  color: #2563eb;
}

.btn-white:hover {
  background: #f9fafb;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: #2563eb;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
}

.contact-item i {
  color: #2563eb;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  color: #64748b;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  color: #2563eb;
}

.main-header {
  padding: 16px 0;
  position: relative;
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
}

.logo-accent {
  color: #2563eb;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2563eb;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background: #f3f4f6;
}

/* Mobile Navigation */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-nav-overlay.active {
  display: block;
}

.main-nav.mobile-nav-open {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: white;
  flex-direction: column;
  gap: 0;
  padding: 80px 0 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(0);
  z-index: 1001;
}

.main-nav.mobile-nav-open .nav-link {
  padding: 16px 32px;
  border-bottom: 1px solid #e5e7eb;
  display: block;
  font-size: 16px;
}

.main-nav.mobile-nav-open .nav-link:hover {
  background: #f8fafc;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  color: #6b7280;
}

.mobile-nav-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f9fafb 100%);
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1f2937;
}

.title-accent {
  color: #2563eb;
  display: block;
}

.hero-description {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #6b7280;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item i {
  color: #10b981;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  z-index: 10;
}

.image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.bg-circle-1 {
  width: 300px;
  height: 300px;
  background: #bfdbfe;
  top: -20px;
  right: -20px;
}

.bg-circle-2 {
  width: 200px;
  height: 200px;
  background: #e5e7eb;
  bottom: -20px;
  left: -20px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: #2563eb;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.benefit-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Plans Section */
.plans {
  padding: 80px 0;
  background: #f8fafc;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-popular {
  transform: scale(1.05);
  border: 2px solid #2563eb;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

.plan-header {
  text-align: center;
  padding: 40px 32px 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}

.plan-period {
  color: #6b7280;
  margin-bottom: 16px;
}

.plan-speed {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
}

.plan-content {
  padding: 0 32px 32px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #374151;
}

.plan-features i {
  color: #10b981;
  font-size: 16px;
}

/* Compact Plans Styles */
.plans-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.plan-card-compact {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.plan-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.plan-card-compact.plan-popular {
  border-color: #2563eb;
  transform: scale(1.02);
}

.popular-badge-compact {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.plan-header-compact {
  text-align: center;
  padding: 24px 16px 16px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.plan-header-compact .plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.plan-header-compact .plan-speed {
  font-size: 24px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}

.plan-header-compact .plan-price {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
}

.plan-header-compact .plan-price span {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.plan-content-compact {
  padding: 16px;
}

.plan-features-compact {
  list-style: none;
  margin-bottom: 20px;
}

.plan-features-compact li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #374151;
  font-size: 14px;
}

.plan-features-compact i {
  color: #10b981;
  font-size: 12px;
  width: 12px;
}

.btn-compact {
  padding: 10px 16px;
  font-size: 14px;
}

/* Combo Plans Styles */
.combo-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.combo-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.combo-card.combo-popular {
  border-color: #2563eb;
  transform: scale(1.03);
}

.combo-card.combo-popular .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

.combo-header {
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.combo-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.combo-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.3;
}

.combo-price {
  margin-bottom: 12px;
}

.original-price {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.combo-price-value {
  font-size: 36px;
  font-weight: 800;
  color: #2563eb;
}

.combo-period {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

.combo-savings {
  background: #dcfce7;
  color: #16a34a;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.combo-content {
  padding: 24px;
}

.combo-section {
  margin-bottom: 24px;
}

.combo-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.combo-section h4 i {
  color: #2563eb;
}

.combo-section ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px;
}

.combo-section li {
  font-size: 14px;
  color: #374151;
  padding: 2px 0;
  position: relative;
  padding-left: 16px;
}

.combo-section li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.combo-benefits {
  margin-top: 60px;
  text-align: center;
}

.combo-benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.benefit-item-combo {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item-combo i {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #2563eb;
}

.benefit-item-combo h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.benefit-item-combo p {
  color: #6b7280;
  font-size: 14px;
}

/* Coverage Section */
.coverage {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  text-align: center;
}

.coverage-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.coverage-description {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.coverage-form {
  max-width: 500px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.coverage-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #1f2937;
}

.coverage-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.coverage-note {
  font-size: 14px;
  opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 16px;
}

.testimonial-text {
  font-style: italic;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #1f2937;
}

.author-location {
  font-size: 14px;
  color: #6b7280;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #9ca3af;
}

.footer-contact i {
  width: 16px;
  color: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #9ca3af;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Page Hero Styles */
.page-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-description {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Plans Page Styles */
.plans-page {
  padding: 80px 0;
  background: #f8fafc;
}

.plans-category {
  margin-bottom: 80px;
}

.category-header {
  text-align: center;
  margin-bottom: 48px;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.category-description {
  font-size: 18px;
  color: #6b7280;
}

.plan-comparison {
  margin-top: 80px;
}

.comparison-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 48px;
}

.comparison-table {
  overflow-x: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1f2937;
}

.comparison-table td {
  color: #374151;
}

.text-green-500 {
  color: #10b981;
}

.text-red-500 {
  color: #ef4444;
}

/* Coverage Page Styles */
.coverage-check {
  padding: 80px 0;
  background: white;
}

.coverage-check-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.coverage-check-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.coverage-check-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 48px;
}

.coverage-form-large {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  font-weight: 600;
  color: #374151;
  text-align: left;
}

.form-input {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.coverage-result {
  margin-top: 32px;
}

.result-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.result-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #16a34a;
}

.result-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.result-description {
  color: #6b7280;
  margin-bottom: 24px;
}

.coverage-map {
  padding: 80px 0;
  background: #f8fafc;
}

.map-header {
  text-align: center;
  margin-bottom: 48px;
}

.map-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.map-description {
  font-size: 18px;
  color: #6b7280;
}

.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-placeholder {
  position: relative;
}

.map-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-legend h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.legend-color.active {
  background: #10b981;
}

.legend-color.expansion {
  background: #f59e0b;
}

.legend-color.planned {
  background: #6b7280;
}

.coverage-areas {
  padding: 80px 0;
  background: white;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.area-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
}

.area-icon {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: #2563eb;
}

.area-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.area-neighborhoods {
  list-style: none;
  margin-bottom: 24px;
}

.area-neighborhoods li {
  padding: 4px 0;
  color: #6b7280;
}

.area-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.area-status.active {
  background: #dcfce7;
  color: #16a34a;
}

.area-status.expansion {
  background: #fef3c7;
  color: #d97706;
}

.area-status.planned {
  background: #f3f4f6;
  color: #6b7280;
}

.expansion-plans {
  padding: 80px 0;
  background: #f8fafc;
}

.expansion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.expansion-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.expansion-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

.expansion-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  gap: 24px;
}

.timeline-date {
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  height: fit-content;
}

.timeline-content h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #6b7280;
}

.expansion-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.not-covered-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  text-align: center;
}

.not-covered-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.not-covered-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.notification-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* About Page Styles */
.company-story {
  padding: 80px 0;
  background: white;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
}

.story-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.mvv-section {
  padding: 80px 0;
  background: #f8fafc;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.mvv-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #2563eb;
}

.mvv-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.mvv-description {
  color: #6b7280;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.member-role {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 16px;
}

.member-description {
  color: #6b7280;
  line-height: 1.6;
}

.infrastructure-section {
  padding: 80px 0;
  background: #f8fafc;
}

.infrastructure-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.infrastructure-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.infrastructure-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

.infrastructure-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item i {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
}

.feature-item h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.feature-item p {
  color: #6b7280;
}

.infrastructure-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.awards-section {
  padding: 80px 0;
  background: white;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.award-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.award-icon {
  width: 64px;
  height: 64px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #d97706;
}

.award-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.award-description {
  color: #6b7280;
  font-size: 14px;
}

/* Support Page Styles */
.support-options {
  padding: 80px 0;
  background: white;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.support-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
}

.support-icon {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: #2563eb;
}

.support-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.support-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.faq-category {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category.active,
.faq-category:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h4 {
  font-weight: 600;
  color: #1f2937;
}

.faq-question i {
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #6b7280;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.tutorials-section {
  padding: 80px 0;
  background: white;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.tutorial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tutorial-card:hover {
  transform: translateY(-4px);
}

.tutorial-image {
  position: relative;
}

.tutorial-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tutorial-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.tutorial-content {
  padding: 24px;
}

.tutorial-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.tutorial-description {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-support {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-support-content {
  text-align: center;
  margin-bottom: 48px;
}

.contact-support-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.contact-support-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 48px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact-method {
  background: white;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.method-icon {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.method-info h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.method-info p {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 4px;
}

.method-info span {
  color: #6b7280;
  font-size: 14px;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-container {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.form-description {
  color: #6b7280;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-container {
  padding: 40px;
}

.info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.info-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
}

.info-content h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.info-content p {
  color: #374151;
  margin-bottom: 4px;
}

.info-content span {
  color: #6b7280;
  font-size: 14px;
}

.quick-actions {
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
}

.quick-actions h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.action-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.action-btn i {
  font-size: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #2563eb;
  border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.map-section {
  padding: 80px 0;
  background: #f8fafc;
}

.map-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 48px;
}

.location-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 300px;
}

.location-card h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.location-card p {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.5;
}

.office-hours {
  padding: 80px 0;
  background: white;
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hours-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 32px;
}

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

.hours-item {
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
}

.hours-item h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.hours-item p {
  color: #6b7280;
  margin-bottom: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.status.online {
  background: #dcfce7;
  color: #16a34a;
}

.status.online::before {
  content: "●";
  color: #16a34a;
}

.status.offline {
  background: #fee2e2;
  color: #dc2626;
}

.status.offline::before {
  content: "●";
  color: #dc2626;
}

.hours-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.emergency-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.emergency-icon {
  font-size: 64px;
  color: #fbbf24;
}

.emergency-text {
  flex: 1;
}

.emergency-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.emergency-text p {
  font-size: 16px;
  opacity: 0.9;
}

.emergency-actions {
  display: flex;
  gap: 16px;
}

/* Mobile Menu Animations */
.main-nav {
  transition: transform 0.3s ease;
}

.mobile-nav-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.main-nav.mobile-nav-open {
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Header improvements for mobile */
@media (max-width: 768px) {
  .main-header {
    padding: 12px 0;
  }

  .header-content {
    min-height: 60px;
  }

  .logo {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 10px 0;
  }

  .header-content {
    min-height: 56px;
  }

  .container {
    padding: 0 12px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .coverage-title,
  .cta-title {
    font-size: 2.5rem;
  }

  /* Compact plans adjustments for tablet */
  .plans-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .combo-plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
}

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

  .top-bar {
    display: none;
  }

  .header-left {
    gap: 0;
  }

  .main-nav {
    display: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .header-right {
    gap: 12px;
  }

  .header-right .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .header-right .btn-outline {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 2rem;
  }

  .coverage-title,
  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Mobile optimizations for plans */
  .page-title {
    font-size: 2.5rem;
  }

  .category-title {
    font-size: 2rem;
  }

  .category-description {
    font-size: 16px;
  }

  /* Compact plans for mobile */
  .plans-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .plan-card-compact {
    border-radius: 8px;
  }

  .plan-header-compact {
    padding: 16px 12px 12px;
  }

  .plan-header-compact .plan-name {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .plan-header-compact .plan-speed {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .plan-header-compact .plan-price {
    font-size: 22px;
  }

  .plan-header-compact .plan-price span {
    font-size: 12px;
  }

  .plan-content-compact {
    padding: 12px;
  }

  .plan-features-compact li {
    padding: 4px 0;
    font-size: 12px;
  }

  .plan-features-compact i {
    font-size: 10px;
    width: 10px;
  }

  .btn-compact {
    padding: 8px 12px;
    font-size: 12px;
  }

  .popular-badge-compact {
    font-size: 10px;
    padding: 2px 12px;
    top: -6px;
  }

  /* Combo plans for mobile */
  .combo-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .combo-card {
    border-radius: 12px;
  }

  .combo-header {
    padding: 20px 16px;
  }

  .combo-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .combo-price-value {
    font-size: 28px;
  }

  .combo-content {
    padding: 16px;
  }

  .combo-section {
    margin-bottom: 20px;
  }

  .combo-section h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .combo-section ul {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .combo-section li {
    font-size: 13px;
    padding: 1px 0;
  }

  /* Benefits row for mobile */
  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-item-combo {
    padding: 16px 12px;
  }

  .benefit-item-combo i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .benefit-item-combo h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .benefit-item-combo p {
    font-size: 12px;
  }

  /* Comparison table mobile */
  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .comparison-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .header-right .btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .mobile-menu-btn {
    font-size: 18px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .coverage-title,
  .cta-title {
    font-size: 1.75rem;
  }

  .plan-price {
    font-size: 36px;
  }

  .plan-speed {
    font-size: 24px;
  }

  .input-group {
    flex-direction: column;
  }

  /* Extra small mobile optimizations */
  .page-title {
    font-size: 2rem;
  }

  .page-description {
    font-size: 16px;
  }

  .category-title {
    font-size: 1.75rem;
  }

  .category-description {
    font-size: 14px;
  }

  /* Single column for very small screens */
  .plans-grid-compact {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
    margin: 0 auto;
  }

  .plan-card-compact {
    max-width: 100%;
  }

  .plan-header-compact {
    padding: 20px 16px 16px;
  }

  .plan-header-compact .plan-name {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .plan-header-compact .plan-speed {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .plan-header-compact .plan-price {
    font-size: 28px;
  }

  .plan-header-compact .plan-price span {
    font-size: 14px;
  }

  .plan-content-compact {
    padding: 16px;
  }

  .plan-features-compact li {
    padding: 6px 0;
    font-size: 14px;
  }

  .plan-features-compact i {
    font-size: 12px;
    width: 12px;
  }

  .btn-compact {
    padding: 12px 16px;
    font-size: 14px;
  }

  .popular-badge-compact {
    font-size: 12px;
    padding: 4px 16px;
    top: -8px;
  }

  /* Combo adjustments for very small screens */
  .combo-title {
    font-size: 16px;
  }

  .combo-price-value {
    font-size: 24px;
  }

  .combo-savings {
    font-size: 12px;
    padding: 4px 8px;
  }

  .combo-section h4 {
    font-size: 13px;
  }

  .combo-section li {
    font-size: 12px;
  }

  /* Single column benefits for very small screens */
  .benefits-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item-combo {
    padding: 20px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .benefit-item-combo i {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0;
    flex-shrink: 0;
  }

  .benefit-item-combo div {
    flex: 1;
  }

  .benefit-item-combo h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .benefit-item-combo p {
    font-size: 14px;
  }

  /* Comparison table very small screens */
  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 4px;
  }

  .comparison-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  /* CTA buttons mobile */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .plans-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

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

  .benefits-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }

  .btn-compact {
    min-height: 40px;
    padding: 10px 16px;
  }

  .plan-card-compact {
    margin-bottom: 8px;
  }

  .combo-card {
    margin-bottom: 12px;
  }

  /* Increase touch targets */
  .faq-question {
    min-height: 60px;
    padding: 20px 24px;
  }

  .action-btn {
    min-height: 60px;
    padding: 16px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .plan-card-compact,
  .combo-card {
    border-width: 0.5px;
  }
}

/* Accessibility improvements for mobile */
@media (prefers-reduced-motion: reduce) {
  .plan-card-compact,
  .combo-card,
  .benefit-item-combo {
    transition: none;
  }

  .plan-card-compact:hover,
  .combo-card:hover {
    transform: none;
  }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) {
  .plan-card-compact,
  .combo-card {
    background: #1f2937;
    color: #f9fafb;
    border-color: #374151;
  }

  .plan-header-compact {
    background: linear-gradient(135deg, #374151, #1f2937);
  }

  .combo-header {
    background: linear-gradient(135deg, #374151, #1f2937);
    border-color: #4b5563;
  }
}

/* Mobile-specific combo improvements */
@media (max-width: 768px) {
  .combo-benefits-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .combo-badge {
    font-size: 11px;
    padding: 3px 10px;
  }

  .original-price {
    font-size: 12px;
  }

  .combo-period {
    font-size: 14px;
  }

  .combo-savings {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* Improve combo section spacing */
  .combo-section h4 {
    padding-bottom: 6px;
    border-bottom-width: 1px;
  }

  .combo-section li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    margin-right: 6px;
  }

  .combo-section li {
    padding-left: 0;
    position: relative;
  }
}

@media (max-width: 480px) {
  /* Stack combo content vertically on very small screens */
  .combo-content {
    padding: 12px;
  }

  .combo-section {
    margin-bottom: 16px;
  }

  .combo-section ul {
    gap: 2px;
  }

  .combo-section li {
    font-size: 11px;
    line-height: 1.4;
  }

  /* Improve button sizing */
  .combo-card .btn {
    padding: 12px 16px;
    font-size: 13px;
    margin-top: 8px;
  }

  /* Better spacing for popular badge */
  .combo-card.combo-popular .popular-badge {
    font-size: 10px;
    padding: 4px 12px;
    top: -8px;
  }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
  .plan-card-compact,
  .combo-card {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
  }

  .plan-card-compact:active,
  .combo-card:active {
    transform: scale(0.98);
  }

  .btn-compact,
  .combo-card .btn {
    min-height: 44px;
    font-weight: 600;
  }
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
  .plans-category {
    margin-bottom: 60px;
  }

  .category-header {
    margin-bottom: 32px;
  }

  .plan-comparison {
    margin-top: 60px;
  }

  .combo-benefits {
    margin-top: 40px;
  }
}

/* Loading states for mobile */
.plan-card-compact.loading,
.combo-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.plan-card-compact.loading::after,
.combo-card.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
