/* ============================================
   Elentus — Static Site Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #080E1A;
  color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

p { font-family: 'Inter', sans-serif; }

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

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

/* ============================================
   Layout
   ============================================ */

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

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

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.4s ease;
  background: transparent;
}

.nav--scrolled {
  background: rgba(8, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 58, 94, 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__brand {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  color: #7A7A8C;
  transition: color 0.3s ease;
}

.nav__link:hover { color: #fff; }

.nav__link--active { color: #F5A623; }

.nav__toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
}

.nav__mobile {
  display: none;
  background: rgba(8, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(42, 58, 94, 0.5);
  padding: 16px 0;
}

.nav__mobile--open { display: block; }

.nav__mobile-link {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  color: #7A7A8C;
  transition: all 0.2s ease;
}

.nav__mobile-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav__mobile-link--active {
  color: #F5A623;
  background: rgba(245, 166, 35, 0.1);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background: #F5A623;
  color: #080E1A;
}

.btn--primary:hover {
  background: #D9910D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

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

.btn--outline:hover {
  background: #F5A623;
  color: #080E1A;
  transform: translateY(-2px);
}

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

/* ============================================
   Cards
   ============================================ */

.card {
  background: #1E2A4A;
  border: 1px solid #2A3A5E;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #F5A623;
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.08);
  transform: translateY(-4px);
}

/* ============================================
   Badges
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  color: #F5A623;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

/* ============================================
   Sections
   ============================================ */

.section { padding: 80px 0; }

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F5A623;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-heading { font-size: 36px; }
}

.section-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #7A7A8C;
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================
   Hero (Homepage)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 26, 0.7);
  z-index: 1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 14, 26, 0.4), transparent, #080E1A);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 24px;
}

@media (min-width: 768px) {
  .hero__title { font-size: 56px; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 68px; }
}

.hero__title span { color: #F5A623; }

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #7A7A8C;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero__scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(122, 122, 140, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  background: #F5A623;
  border-radius: 50%;
  animation: bounce 1.5s infinite;
}

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

/* ============================================
   App Card
   ============================================ */

.app-card {
  padding: 32px;
}

@media (min-width: 768px) {
  .app-card { padding: 48px; }
}

.app-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .app-card__grid { grid-template-columns: 1fr 1fr; }
}

.app-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.app-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
}

.app-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 768px) {
  .app-card__title { font-size: 40px; }
}

.app-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.app-card__image-wrap {
  position: relative;
}

.app-card__image {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(42, 58, 94, 0.5);
  width: 100%;
}

.app-card__trial {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #1E2A4A;
  border: 1px solid #2A3A5E;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F5A623;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Why Elentus (Pillars)
   ============================================ */

.pillars {
  background: #0B1326;
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .pillars__grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  padding: 40px;
}

.pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.4));
}

.pillar__icon svg {
  width: 24px;
  height: 24px;
  color: #F5A623;
}

.pillar__title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.7;
}

/* ============================================
   ReadingFox Hero
   ============================================ */

.rf-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
}

.rf-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
}

.rf-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(8, 14, 26, 0.8), #080E1A);
}

.rf-hero__grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .rf-hero__grid { grid-template-columns: 1fr 1fr; }
}

.rf-hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rf-hero__label-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.rf-hero__label-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F5A623;
}

.rf-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .rf-hero__title { font-size: 48px; }
}

.rf-hero__title span { color: #F5A623; }

.rf-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #7A7A8C;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.rf-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rf-hero__image {
  display: none;
}

@media (min-width: 1024px) {
  .rf-hero__image {
    display: flex;
    justify-content: center;
  }
  .rf-hero__image img {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(42, 58, 94, 0.5);
  }
}

/* ============================================
   Problem Statement
   ============================================ */

.problem {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  background: #0B1326;
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.step:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .step { grid-template-columns: 1fr 1fr; }
  .step--reverse .step__content { order: 2; }
  .step--reverse .step__image { order: 1; }
}

.step__number-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.4));
}

.step__icon svg {
  width: 24px;
  height: 24px;
  color: #F5A623;
}

.step__number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #2A3A5E;
}

.step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.step__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.7;
}

.step__image {
  padding: 12px;
}

.step__image img {
  border-radius: 12px;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   For Parents
   ============================================ */

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

@media (min-width: 768px) {
  .for-parents__grid { grid-template-columns: 1fr 1fr; }
  .for-parents__grid .for-parents__image { order: 1; }
  .for-parents__grid .for-parents__content { order: 2; }
}

.for-parents__image {
  padding: 12px;
}

.for-parents__image img {
  border-radius: 12px;
  max-width: 280px;
  margin: 0 auto;
}

.for-parents__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat {
  padding: 24px;
}

.stat__icon {
  width: 20px;
  height: 20px;
  color: #F5A623;
  margin-bottom: 12px;
}

.stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #7A7A8C;
}

/* ============================================
   Games Section
   ============================================ */

.games {
  background: #0B1326;
}

.games__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .games__grid { grid-template-columns: 1fr 1fr; }
}

.games__feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.games__feature-num {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #F5A623;
}

.games__feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.games__feature-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.7;
}

.games__screenshot {
  display: flex;
  justify-content: center;
  padding: 12px;
}

.games__screenshot img {
  border-radius: 12px;
  max-width: 260px;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
  text-align: center;
}

.pricing__card {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px;
  text-align: left;
}

@media (min-width: 768px) {
  .pricing__card { padding: 56px; }
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.pricing__period {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #7A7A8C;
}

.pricing__note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #F5A623;
  margin-bottom: 32px;
}

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

.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  padding: 8px 0;
  border-bottom: 1px solid rgba(42, 58, 94, 0.5);
}

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

.pricing__features svg {
  width: 18px;
  height: 18px;
  color: #F5A623;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7A7A8C;
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: #0B1326;
}

.faq__list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq__item {
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq__question svg {
  width: 20px;
  height: 20px;
  color: #F5A623;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__question svg {
  transform: rotate(180deg);
}

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

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.7;
}

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

.cta__card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta__card { padding: 64px; }
}

.cta__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 256px;
  height: 256px;
  background: rgba(245, 166, 35, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.cta__icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin: 0 auto 24px;
}

.cta__title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta__title { font-size: 36px; }
}

.cta__body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #7A7A8C;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #F5A623;
  margin-bottom: 32px;
  transition: opacity 0.2s ease;
}

.legal__back:hover { opacity: 0.8; }

.legal__back svg {
  width: 16px;
  height: 16px;
}

.legal__title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.legal__date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A8C;
  margin-bottom: 40px;
}

.legal__content {
  max-width: 720px;
}

.legal__content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal__content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F5A623;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal__content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal__content ul li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal__content strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.legal__content a {
  color: #F5A623;
  text-decoration: none;
}

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

.legal__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.legal__content th {
  text-align: left;
  padding: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: #1E2A4A;
  border-bottom: 1px solid #2A3A5E;
}

.legal__content td {
  padding: 12px;
  font-family: 'Inter', sans-serif;
  color: #7A7A8C;
  border-bottom: 1px solid rgba(42, 58, 94, 0.5);
}

.legal__content .contact-box {
  background: #1E2A4A;
  border: 1px solid #2A3A5E;
  border-radius: 12px;
  padding: 24px;
  margin: 16px 0;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  border-top: 1px solid rgba(42, 58, 94, 0.5);
  background: #080E1A;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

.footer__brand {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.footer__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A8C;
}

.footer__email a:hover { color: #F5A623; }

.footer__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7A7A8C;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7A7A8C;
  transition: color 0.2s ease;
}

.footer__links a:hover { color: #F5A623; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(42, 58, 94, 0.5);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7A7A8C;
}

/* ============================================
   Utilities
   ============================================ */

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

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-lg { max-width: 480px; }
.max-w-xl { max-width: 560px; }
.max-w-2xl { max-width: 640px; }
.max-w-3xl { max-width: 720px; }
.max-w-4xl { max-width: 960px; }

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.hidden { display: none; }

@media (min-width: 768px) {
  .md\\:block { display: block; }
}
