/* ======================
   GLOBAL STYLES
   ====================== */

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

/* ================================================================-- */
/* Footer overrides and enhancements                                  */
/* ================================================================== */

.footer {
  background: radial-gradient(circle at bottom left, rgba(18, 14, 10, 0.7) 0%, rgba(10, 8, 6, 1) 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  gap: 2rem;
}

.footer-left .footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 400px;
}

.footer-info p {
  margin: 0;
}

.footer-info a {
  color: #ffa500;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: #ffa500;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-note {
  font-size: 0.8rem;
  color: #888888;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f05 50%, #0d0a0a 100%);
  color: #e0e0e0;
  line-height: 1.6;
  background-attachment: fixed;
}

/* ======================
   HERO SECTION
   ====================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
}

/* ======================
   ENHANCED ANIMATED BACKGROUND
   ====================== */

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(45deg, rgba(255, 165, 0, 0.05), rgba(255, 140, 0, 0.02));
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.05), rgba(255, 140, 0, 0.02));
  }
  50% {
    background: linear-gradient(225deg, rgba(255, 140, 0, 0.08), rgba(255, 165, 0, 0.04));
  }
}

/* Animated Glow Rings */
.glow-ring {
  position: absolute;
  border: 2px solid rgba(255, 140, 0, 0.15);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(255, 165, 0, 0.1), inset 0 0 40px rgba(255, 165, 0, 0.05);
}

.glow-ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 25s ease-in-out infinite, pulse 4s ease-in-out infinite;
  border-color: rgba(255, 140, 0, 0.25);
  box-shadow: 0 0 60px rgba(255, 165, 0, 0.15), inset 0 0 40px rgba(255, 165, 0, 0.08);
}

.glow-ring-2 {
  width: 750px;
  height: 750px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 165, 0, 0.12);
  animation: float 30s ease-in-out infinite reverse, pulse 5s ease-in-out infinite reverse;
  box-shadow: 0 0 80px rgba(255, 140, 0, 0.12), inset 0 0 40px rgba(255, 165, 0, 0.06);
}

/* Animated Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.4), transparent);
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(255, 165, 0, 0.35), 0 0 120px rgba(255, 140, 0, 0.15);
}

.glow-orb-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite, orb-pulse 3s ease-in-out infinite;
}

.glow-orb-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.35), transparent);
  animation: float 12s ease-in-out infinite reverse, orb-pulse 4s ease-in-out infinite;
}

.glow-orb-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation: float 15s ease-in-out infinite, orb-pulse 3.5s ease-in-out infinite;
}

/* Enhanced floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(30px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes orb-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}

/* ======================
   SITE-WIDE HEADER - ENHANCED
   ====================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.site-header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.site-header .logo:hover {
  opacity: 0.8;
  transform: translateX(2px);
}

.site-header .logo-image {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 165, 0, 0.3);
  transition: all 0.3s ease;
}

.site-header .logo-image:hover {
  border-color: rgba(255, 165, 0, 0.8);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
}

.site-header .logo-text {
  display: inline;
  font-size: 18px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-left: 8px;
}

.site-header .nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 26px;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-header .nav-item {
  margin-left: 20px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.site-header .nav-item:hover {
  color: #ffa500;
}

.site-header .nav-item.active {
  color: #ffa500;
}

/* Mobile menu styling */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
  }
  .nav-toggle {
    display: block;
  }
  .site-header .nav {
    position: absolute;
    top: 100%;
    right: 20px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 15px 20px;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .site-header .nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header .nav-item {
    margin-left: 0;
    margin-top: 5px;
    font-size: 16px;
  }
}

/* ======================
   STATISTICS SECTION
   ====================== */
.stats-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(26, 15, 5, 0.3) 100%);
  border-top: 1px solid rgba(255, 165, 0, 0.1);
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: rgba(255, 165, 0, 0.05);
  border: 1px solid rgba(255, 165, 0, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  border-color: rgba(255, 165, 0, 0.4);
  background: rgba(255, 165, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #ffa500;
  margin-bottom: 10px;
  font-family: "Inter", monospace;
}

.stat-label {
  font-size: 14px;
  color: #a0a0a0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ======================
   FEATURES SECTION
   ====================== */
.features {
  position: relative;
  padding: 100px 20px 80px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(26, 15, 5, 0.5) 100%);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.features-subtitle {
  font-size: 18px;
  color: #b0b0b0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: rgba(255, 140, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.2), inset 0 0 20px rgba(255, 140, 0, 0.05);
  transform: translateY(-10px);
  background: rgba(255, 140, 0, 0.1);
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffa500;
}

.feature-card p {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
}

/* ======================
   TESTIMONIALS SECTION
   ====================== */
.testimonials-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(26, 15, 5, 0.4) 0%, rgba(10, 10, 10, 0.3) 100%);
  border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.testimonials-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 140, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px);
}

.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.15);
  transform: translateY(-8px);
  background: rgba(255, 140, 0, 0.12);
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: rgba(255, 165, 0, 0.3);
  display: block;
  margin-bottom: -20px;
  font-weight: 900;
}

.testimonial-author {
  font-size: 14px;
  color: #ffa500;
  font-weight: 700;
}

/* ======================
   PLAN CARD - FEATURED BADGE
   ====================== */
.plan-card.featured {
  transform: scale(1.05);
  border-color: rgba(255, 140, 0, 0.5);
  background: rgba(255, 140, 0, 0.12);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.2);
}

.plan-card.featured .plan-name {
  color: #ffb319;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* ======================
   PLANS SECTION
   ====================== */

.plans {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 15, 5, 0.6) 100%);
}

.plans-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plan-card {
  background: rgba(255, 140, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 20px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.plan-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.plan-card:hover {
  border-color: rgba(255, 140, 0, 0.5);
  transform: rotateY(8deg) rotateX(-5deg) translateZ(20px) translateY(-12px);
  box-shadow: 0 25px 40px rgba(255, 140, 0, 0.25), inset 0 0 20px rgba(255, 165, 0, 0.05);
  background: rgba(255, 140, 0, 0.1);
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffa500;
  text-align: center;
}

.plan-specs {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.5;
}

.plan-specs li {
  margin-bottom: 8px;
}

.plan-price {
  font-size: 20px;
  font-weight: 800;
  color: #ffa500;
  margin-bottom: 20px;
  text-align: center;
}

.plan-order {
  align-self: center;
  margin-top: auto;
}

/* ======================
   PRICING TOGGLE
   ====================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.plan-price .price-year {
  display: none;
}

#pricing-toggle:checked ~ .plans-container .plan-price .price-month {
  display: none;
}
#pricing-toggle:checked ~ .plans-container .plan-price .price-year {
  display: inline;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

#pricing-toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #ffa500;
  transition: 0.4s;
  border-radius: 50%;
}

#plans.yearly .pricing-toggle .slider {
  background-color: rgba(255, 165, 0, 0.4);
}

#plans.yearly .pricing-toggle .slider:before {
  transform: translateX(26px);
  background-color: #ffffff;
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggle-label {
  font-size: 14px;
  color: #ffa500;
  font-weight: 600;
}

.toggle-label-year {
  color: #ff8c00;
}

/* ======================
   BUTTONS - 3D EFFECTS
   ====================== */

.btn {
  padding: 12px 30px;
  border: 2px solid #ffa500;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.btn-primary {
  background: #ffa500;
  color: #000;
}

.btn-primary:hover {
  background: #ff8c00;
  border-color: #ff8c00;
  transform: translateY(-4px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.4), inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) rotateX(0deg);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffa500;
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.15), inset 0 0 0 2px rgba(255, 165, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 165, 0, 0.15);
  border-color: #ffb319;
  transform: translateY(-4px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.3), inset 0 0 0 2px rgba(255, 165, 0, 0.5);
}

.btn-secondary:active {
  transform: translateY(-1px) rotateX(0deg);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.15), inset 0 0 0 2px rgba(255, 165, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ======================
   TYPOGRAPHY
   ====================== */

.hero-title {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(255, 165, 0, 0.3), 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

#animated-text {
  color: #ffa500;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.8), 0 0 20px rgba(255, 140, 0, 0.6);
  font-weight: 700;
  animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8), 0 0 20px rgba(255, 140, 0, 0.6);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 165, 0, 1), 0 0 40px rgba(255, 140, 0, 0.8);
  }
}

.hero-subtitle {
  font-size: clamp(18px, 4vw, 28px);
  color: #b0b0b0;
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-tagline {
  font-size: 18px;
  color: #a0a0a0;
  margin-bottom: 30px;
  font-weight: 400;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 40px;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

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

  .stats-section {
    padding: 40px 20px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .features {
    padding: 60px 20px 40px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-container {
    gap: 20px;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .plans {
    padding: 60px 20px;
  }

  .plans-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .plans-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-card {
    padding: 25px 15px;
  }

  .plan-card.featured {
    transform: scale(1);
  }

  .plan-name {
    font-size: 18px;
  }

  .plan-specs {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .plan-price {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .cta-buttons {
    gap: 10px;
  }

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

  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-quote {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .footer-left {
    width: 100%;
    justify-content: center;
  }

  .footer-info {
    width: 100%;
    text-align: center;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px 30px;
  }

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

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

  .hero-tagline {
    font-size: 14px;
  }

  .site-header {
    padding: 12px 15px;
  }

  .site-header .logo-text {
    display: none;
  }

  .stat-card {
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

/* See global override for header overflow at the end of this file. */

  .stat-label {
    font-size: 11px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 20px;
  }

  .plan-specs li {
    margin-bottom: 6px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/*
 * Global override to ensure the mobile navigation dropdown isn't clipped.
 *
 * The `.site-header` originally had `overflow: hidden`, which caused
 * absolutely positioned elements (like the mobile navigation menu) to be
 * clipped when they extended outside the header’s bounds. By setting
 * `overflow: visible` here (with `!important` to override previous
 * declarations), we allow the navigation menu to drop down over the page
 * content on all screen sizes. This block is placed after all media
 * queries so it takes precedence in the cascade.
 */
.site-header {
  overflow: visible !important;
}
