:root {
  --blue-primary: #1E3A5F;
  --blue-secondary: #2B5280;
  --blue-dark: #142942;
  --red-primary: #C8102E;
  --red-hover: #A00D24;
  --gold-primary: #C9983A;
  --gold-light: #E8D4A8;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --gray-medium: #e8ecef;
  --text-dark: #1f2933;
  --text-muted: #5f6c7b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

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

.navbar-logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-logo span {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.5px;
}

.navbar-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--blue-primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  background: var(--red-primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.navbar-cta:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

.nav-moodle {
  background: var(--gold-primary);
  color: var(--blue-dark) !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-moodle:hover {
  background: var(--blue-primary);
  color: var(--white) !important;
}

.nav-moodle::after {
  display: none !important;
}

/* Mobile Menu Button */
.navbar-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.navbar-mobile-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--blue-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-mobile-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-mobile-btn.active span:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile CTA in menu */
.mobile-cta {
  display: none;
}

.btn-mobile-wa {
  background: var(--red-primary) !important;
  color: var(--white) !important;
  padding: 15px 30px !important;
  border-radius: 50px !important;
  font-size: 1.1rem !important;
  margin-top: 20px !important;
}

.btn-mobile-wa:hover {
  background: var(--red-hover) !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 78, 121, 0.9) 0%, rgba(15, 47, 74, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-text h1 span {
  color: var(--gold-primary);
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--red-primary);
}

.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-image {
  position: relative;
  transform: scale(1.1);
  margin-right: -30px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  min-height: 300px;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 25px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  display: flex;
  gap: 40px;
}

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

.stat-item .number {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-primary);
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--blue-primary);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 4px;
  background: var(--gold-primary);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
  position: relative;
}

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

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

.feature-card {
  background: var(--white);
  padding: 45px 30px 40px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(31, 78, 121, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(30, 58, 95, 0.18);
  border-color: var(--blue-primary);
}

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

.feature-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(145deg, var(--red-primary), #E02040);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.4);
  animation: rotate 20s linear infinite;
}

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

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--blue-primary);
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== LEVELS ===== */
.levels {
  padding: 100px 40px;
  background: var(--white);
}

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

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

.level-card {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  padding: 50px 35px;
  border-radius: 24px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.level-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(30, 58, 95, 0.35);
}

.level-card:hover::before {
  transform: scale(1.5);
}

.level-card:nth-child(2) {
  background: linear-gradient(135deg, var(--red-primary), #E02040);
}

.level-card:nth-child(3) {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}

.level-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

.level-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.level-card p {
  opacity: 0.9;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.level-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--blue-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ===== DATES ===== */
.dates {
  padding: 100px 40px;
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.dates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dates-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dates .section-header h2 {
  color: var(--white);
}

.dates .section-header p {
  color: rgba(255,255,255,0.7);
}

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

.date-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.date-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.date-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
}

.date-card:nth-child(2) .date-circle {
  background: var(--gold-primary);
  color: var(--blue-dark);
}

.date-card:nth-child(3) .date-circle {
  background: var(--blue-secondary);
}

.date-circle .day {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.date-circle .month {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.date-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}

.date-card p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--red-primary), #E02040);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

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

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--red-primary);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 18px 45px;
}

.cta .btn-primary:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--blue-dark);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 60px 40px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-container.footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-centered .footer-brand {
  max-width: 500px;
}

.footer-centered .footer-social {
  justify-content: center;
}

.footer-brand img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold-primary);
  color: var(--blue-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--gold-primary);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: bounce 2s ease infinite;
}

.wa-float svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* WhatsApp icon in buttons */
.wa-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-social .wa-icon {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }

.levels-grid .level-card:nth-child(1) { transition-delay: 0s; }
.levels-grid .level-card:nth-child(2) { transition-delay: 0.15s; }
.levels-grid .level-card:nth-child(3) { transition-delay: 0.3s; }

.dates-grid .date-card:nth-child(1) { transition-delay: 0s; }
.dates-grid .date-card:nth-child(2) { transition-delay: 0.15s; }
.dates-grid .date-card:nth-child(3) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    margin: 0 auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 40px auto 0;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 30px;
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-20px);
    z-index: 999;
  }

  .navbar-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-links li {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
  }

  .navbar-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .navbar-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .navbar-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .navbar-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .navbar-links.active li:nth-child(5) { transition-delay: 0.3s; }
  .navbar-links.active li:nth-child(6) { transition-delay: 0.35s; }
  .navbar-links.active li:nth-child(7) { transition-delay: 0.4s; }

  .navbar-links .nav-moodle {
    background: var(--gold-primary);
    color: var(--blue-dark) !important;
    padding: 12px 30px;
    border-radius: 30px;
    margin-top: 10px;
  }

  .navbar-links a {
    font-size: 1.5rem;
    color: var(--blue-primary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

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

  .navbar-links a::after {
    display: none;
  }

  .navbar-mobile-btn {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .navbar-mobile-btn.active span {
    background: var(--blue-primary);
  }

  .navbar-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .features,
  .levels,
  .dates,
  .cta {
    padding: 70px 20px;
  }

  .features-grid,
  .levels-grid,
  .dates-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  footer {
    padding: 40px 20px 20px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }
}
