/* TG TELECOMM - Modern Tornet-Inspired Stylesheet */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette - TG Telecomm Brand Colors */
  --coral-red: #E74C3C;
  --bright-red: #FF3838;
  --aqua-teal: #4ECDC4;
  --turquoise: #45B7D1;
  --sage-green: #A8C5B5;
  --soft-coral: #F08080;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --off-white: #FAFAFA;
  --mid-gray: #8E8E93;
  --dark-text: #2C3E50;
  --darker-text: #1D1D1F;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.9);
  
  /* Typography */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 80px;
  --container-max: 1280px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

a {
  color: var(--coral-red);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--aqua-teal);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--coral-red) 0%, var(--aqua-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lime-text {
  color: var(--aqua-teal);
}

/* ============================================
   HEADER & NAVIGATION (Glassmorphism)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--darker-text);
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.logo-img {
  height: 45px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo:hover {
  color: var(--coral-red);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coral-red);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral-red);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    backdrop-filter: blur(16px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-spring);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 3px solid var(--coral-red);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--coral-red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
  background: var(--bright-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-text);
  border: 2px solid var(--dark-text);
}

.btn-secondary:hover {
  background: var(--aqua-teal);
  color: var(--white);
  border-color: var(--aqua-teal);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(78, 205, 196, 0.1);
  color: var(--dark-text);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.btn-ghost:hover {
  background: var(--aqua-teal);
  border-color: var(--aqua-teal);
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(255, 200, 200, 0.5) 0%, rgba(255, 255, 255, 0.65) 40%, rgba(200, 240, 240, 0.5) 100%),
    url('https://images.unsplash.com/photo-1506966953602-c20cc11f75e3?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  padding-top: 80px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  z-index: 1;
}


@keyframes pulse {
  0%, 100% {
    transform: scale(1) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1) translateY(-20px);
    opacity: 0.8;
  }
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-subheadline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--dark-text);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.badge {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-text);
}

.badge::before {
  content: '✓';
  color: var(--aqua-teal);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

/* ============================================
   PLAN CARDS
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-spring);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aqua-teal) 0%, var(--coral-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--aqua-teal);
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.2),
              0 12px 40px rgba(0, 0, 0, 0.1);
}

.plan-card:hover::before {
  transform: scaleX(1);
}

.plan-card.featured {
  border-color: var(--aqua-teal);
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.25);
}

.plan-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--darker-text);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plan-price .currency {
  font-size: 1.5rem;
  color: var(--coral-red);
  font-weight: 700;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--coral-red);
  font-variant-numeric: tabular-nums;
}

.plan-price .period {
  font-size: 1.125rem;
  color: var(--mid-gray);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: var(--dark-text);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--aqua-teal);
  font-weight: 700;
  font-size: 1.125rem;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-spring);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--aqua-teal);
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--aqua-teal), var(--coral-red));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-spring);
}

.feature-card:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--darker-text);
}

.feature-description {
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, rgba(255, 200, 200, 0.15) 0%, rgba(200, 240, 240, 0.15) 100%);
  position: relative;
}

.testimonial-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: 400px;
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(90%);
    min-width: 300px;
  }
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua-teal), var(--coral-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.testimonial-name {
  font-weight: 600;
  color: var(--darker-text);
  margin-bottom: 0.25rem;
}

.testimonial-title {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 200, 200, 0.3) 0%, rgba(200, 240, 240, 0.3) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-text);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-section h4 {
  color: var(--aqua-teal);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--aqua-teal);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  color: var(--white);
}

.social-icon:hover {
  background: var(--aqua-teal);
  color: var(--white);
  border-color: var(--aqua-teal);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--darker-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--white);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--aqua-teal);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 50px;
  color: var(--aqua-teal);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--darker-text);
}

.section-description {
  font-size: 1.125rem;
  color: var(--dark-text);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--darker-text);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--coral-red);
}

.faq-icon {
  transition: var(--transition-smooth);
  font-size: 1.5rem;
  color: var(--coral-red);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--dark-text);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   COVERAGE CHECKER
   ============================================ */
.coverage-checker {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.coverage-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.coverage-form .form-input {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 600px) {
  .coverage-form {
    flex-direction: column;
  }
  
  .coverage-form .btn {
    width: 100%;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animations for children */
.stagger-children > * {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--coral-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 9999;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
}

/* High contrast focus states */
*:focus-visible {
  outline: 3px solid var(--coral-red);
  outline-offset: 3px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 600px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 601px) {
  .show-mobile {
    display: none !important;
  }
}

/* ============================================
   LOADING STATES
   ============================================ */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--coral-red);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Plans Page */
.plan-comparison {
  margin: 4rem 0;
}

.comparison-table {
  width: 100%;
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--dark-text);
}

.comparison-table th {
  background: rgba(78, 205, 196, 0.1);
  color: var(--aqua-teal);
  font-weight: 700;
  font-family: var(--font-display);
}

/* Coverage Map */
.coverage-map {
  height: 500px;
  background: var(--light-gray);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  color: var(--mid-gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Support Channels */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.support-card {
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-spring);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--aqua-teal);
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-spring);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--aqua-teal), var(--coral-red));
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--darker-text);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--coral-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  gap: 0.75rem;
}

/* Metrics Display */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.metric {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--coral-red);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--dark-text);
}

