/* ==========================================================================
   Treat Your Teacher -- Section Styles (sections.css)
   Layout and styling for all 8 page sections + FAQ + Nav.
   ========================================================================== */


/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-5);
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo wordmark */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo .logo-accent {
  color: var(--coral);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
  padding: var(--sp-2) 0;
  transition: color var(--dur-fast) ease;
}

.nav-link:hover {
  color: var(--coral);
}

/* Animated underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-fast) var(--ease-expo);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: var(--sp-7) var(--sp-5);
  z-index: 999;
  flex-direction: column;
  gap: var(--sp-4);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  padding: var(--sp-3) 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.nav-mobile-link:hover {
  color: var(--coral);
}

/* Responsive nav */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}


/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */

.hero {
  background: var(--bg-page);
  padding-top: calc(var(--nav-height) + var(--sp-10));
  padding-bottom: var(--sp-10);
  position: relative;
  overflow: hidden;
}

/* Warm radial gradient background -- cream center, warmer at edges */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(255, 248, 240, 1) 0%,
      rgba(255, 248, 240, 1) 30%,
      rgba(255, 240, 225, 0.6) 60%,
      rgba(244, 132, 95, 0.05) 100%
    );
  pointer-events: none;
  z-index: 0;
}

/* Secondary accent glow on right side */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(244, 132, 95, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-8);
  align-items: flex-start;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  margin-bottom: var(--sp-5);
}

.hero-headline {
  margin-bottom: var(--sp-5);
}

.hero-subheadline {
  font-size: var(--size-body-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

/* Hero visual (phone mockup + floating elements) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -20px;
  padding-top: var(--sp-2);
}

.hero-visual .phone-frame {
  transform: rotate(2deg) translateY(-10px);
  z-index: 2;
  /* Premium phone shadow */
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 20px 40px rgba(244, 132, 95, 0.12);
}

.hero-floating {
  position: absolute;
  z-index: 1;
}

.hero-floating--book  { top: 15%; left: -10%; }
.hero-floating--plant { bottom: 20%; left: -5%; }
.hero-floating--heart { top: 10%; right: -5%; }

/* Mobile hero */
@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--nav-height) + var(--sp-7));
    padding-bottom: var(--sp-8);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    text-align: center;
  }

  .hero-text {
    max-width: none;
  }

  .hero-subheadline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    order: -1;
  }

  .hero-visual .phone-frame {
    width: 60%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 1 / 2;
    transform: none;
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.15),
      0 12px 24px rgba(244, 132, 95, 0.1);
  }

  .trust-bar {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: var(--sp-7);
  }

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

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
}


/* ==========================================================================
   SECTION 2: PROBLEM STATEMENT
   ========================================================================== */

.problem {
  background: var(--bg-section-alt);
  position: relative;
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.problem-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.problem-header .lead {
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--sp-4);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}

.problem-connector {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--size-body-lg);
  font-style: italic;
  color: var(--coral);
  padding: var(--sp-5) 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Reframe sub-section (signature moment) */
.reframe-section {
  text-align: center;
  padding: var(--sp-7) 0;
  position: relative;
  min-height: 200px;
}

.reframe-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  min-height: 160px;
  position: relative;
}

.gift-card-visual {
  font-size: 64px;
  position: absolute;
}

.dollar-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--text-primary);
  position: absolute;
}

.book-reveal {
  font-size: 72px;
  position: absolute;
}

.reframe-caption {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--size-h2);
  color: var(--green);
  margin-top: var(--sp-4);
}

@media (max-width: 640px) {
  .problem {
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-8);
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .problem-cards .feature-card {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    text-align: left;
  }

  .problem-cards .feature-card__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}


/* ==========================================================================
   SECTION 3: HOW IT WORKS
   ========================================================================== */

.how-it-works {
  background: var(--bg-page);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.tab-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-7);
}

.tab-panels {
  position: relative;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.how-math {
  text-align: center;
  margin-top: var(--sp-7);
  padding: var(--sp-6);
  background: var(--gold-light);
  border-radius: var(--r-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-math__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-h2);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.how-math__detail {
  font-size: var(--size-body);
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .how-it-works {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }
}


/* ==========================================================================
   SECTION 4: CLASS FEED FEATURE
   ========================================================================== */

.feed-section {
  background: var(--bg-section-alt);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.feed-visual {
  display: flex;
  justify-content: center;
}

.feed-text .callout {
  margin-top: var(--sp-6);
}

/* Generated image placeholder slots */
.generated-image-slot {
  max-width: 480px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.generated-image-slot .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F4845F 0%, #F9A66A 40%, #FFD4B8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  border-radius: 24px;
}

.generated-image-slot .img-placeholder-label {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.generated-image-slot .generated-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

/* Inline variant (inside text column) */
.generated-image-slot--inline {
  max-width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  margin: var(--sp-5) 0;
}

.generated-image-slot--inline .img-placeholder {
  border-radius: 20px;
}

.generated-image-slot--inline .generated-img {
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .feed-section {
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-8);
  }

  .feed-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .feed-visual {
    order: -1;
  }

  .feed-visual .phone-frame {
    width: 80%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1 / 2;
  }

  .generated-image-slot {
    max-width: 320px;
  }
}


/* ==========================================================================
   SECTION 5: SOCIAL PROOF
   ========================================================================== */

.social-proof {
  background: var(--bg-page);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.social-proof-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.testimonials-wrapper {
  max-width: 700px;
  margin: 0 auto var(--sp-7);
}

/* Left border accent on quote cards inside social proof */
.testimonials-wrapper .quote-card {
  border-left: 4px solid var(--coral);
  padding-left: var(--sp-5);
  text-align: left;
  position: relative;
}

.testimonials-wrapper .quote-card__text::before {
  left: -8px;
  font-size: 96px;
  color: var(--coral);
  opacity: 0.08;
}

@media (max-width: 640px) {
  .social-proof {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }
}


/* ==========================================================================
   SECTION 6: PRINCIPAL / SCHOOL
   ========================================================================== */

.principal-section {
  background: var(--bg-section-alt);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.principal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.principal-text .check-list {
  margin: var(--sp-5) 0;
}

.principal-quote {
  margin-top: var(--sp-6);
  font-style: italic;
  color: var(--text-secondary);
  border-left: 4px solid var(--coral);
  padding-left: var(--sp-4);
}

.principal-quote cite {
  display: block;
  font-style: normal;
  font-size: var(--size-sm);
  color: var(--text-muted);
  margin-top: var(--sp-2);
}

.principal-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Thermometer / progress bar (principal section) */
.thermo-wrapper {
  margin-top: var(--sp-7);
  max-width: 500px;
}

.thermo-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}

.thermo-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-h2);
  color: var(--coral);
}

.thermo-percent {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--size-body);
  color: var(--text-muted);
}

.thermo-track {
  width: 100%;
  height: 16px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: visible;
  position: relative;
}

.thermo-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  border-radius: var(--r-full);
  transition: width 2.2s var(--ease-expo);
}

.thermo-label {
  text-align: center;
  margin-top: var(--sp-3);
  font-size: var(--size-sm);
  color: var(--text-muted);
}

.teacher-avatars {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  flex-wrap: wrap;
}

.teacher-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .principal-section {
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-8);
  }

  .principal-grid {
    grid-template-columns: 1fr;
  }

  .principal-visual {
    order: 1;
  }
}


/* ==========================================================================
   SECTION 4b: APP PREVIEW (Phone Mockups)
   ========================================================================== */

.app-preview {
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
  overflow: hidden;
}

.app-preview-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.app-preview-header .lead {
  max-width: 600px;
  margin: 0 auto;
}

/* 3-phone layout */
.app-preview-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  padding: 24px 0 32px;
}

.app-preview-phone {
  text-align: center;
}

.app-preview-phone__frame {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.15),
    inset 0 0 0 1.5px rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}

.app-preview-phone--side .app-preview-phone__frame {
  width: 220px;
  height: 440px;
}

.app-preview-phone--center .app-preview-phone__frame {
  width: 240px;
  height: 480px;
  box-shadow:
    0 24px 72px rgba(0,0,0,0.2),
    inset 0 0 0 1.5px rgba(0,0,0,0.06);
}

.app-preview-phone--left {
  transform: rotate(-3deg);
  margin-bottom: 12px;
}

.app-preview-phone--right {
  transform: rotate(3deg);
  margin-bottom: 12px;
}

.app-preview-phone__label {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--size-sm);
  color: var(--text-primary);
}

.app-preview-link {
  text-align: center;
  margin-top: var(--sp-6);
}

.app-preview-link a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--size-body);
  color: var(--coral);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

.app-preview-link a:hover {
  color: var(--coral-hover);
  text-decoration: underline;
}

/* Responsive: horizontal scroll on mobile */
@media (max-width: 768px) {
  .app-preview-phones {
    gap: 16px;
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }

  .app-preview-phone {
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .app-preview-phone--side .app-preview-phone__frame {
    width: 200px;
    height: 400px;
  }

  .app-preview-phone--center .app-preview-phone__frame {
    width: 220px;
    height: 440px;
  }
}

@media (max-width: 480px) {
  .app-preview-phones {
    gap: 12px;
    padding: 12px 8px;
  }

  .app-preview-phone--left,
  .app-preview-phone--right {
    transform: none;
  }

  .app-preview-phone--side .app-preview-phone__frame {
    width: 180px;
    height: 360px;
  }

  .app-preview-phone--center .app-preview-phone__frame {
    width: 200px;
    height: 400px;
  }
}


/* ==========================================================================
   SECTION 7: WAITLIST CAPTURE
   ========================================================================== */

.waitlist-section {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
  color: var(--white);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.waitlist-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.waitlist-header h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.waitlist-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--size-body-lg);
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-7);
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-primary);
}

.waitlist-card h3 {
  text-align: center;
  margin-bottom: var(--sp-5);
}

/* Below-form trust text */
.waitlist-trust {
  text-align: center;
  margin-top: var(--sp-5);
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Role-specific perks (shown/hidden by JS) */
.role-perks {
  display: none;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--cream);
  border-radius: var(--r-md);
  font-size: var(--size-sm);
}

.role-perks.active {
  display: block;
}

.role-perks h4 {
  font-size: 14px;
  color: var(--coral);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.role-perks ul {
  list-style: disc;
  padding-left: var(--sp-5);
}

.role-perks li {
  padding: 2px 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .waitlist-section {
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-8);
  }

  .waitlist-card {
    padding: var(--sp-5);
    margin-left: var(--sp-4);
    margin-right: var(--sp-4);
  }
}


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

.faq-section {
  background: var(--bg-page);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

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

@media (max-width: 640px) {
  .faq-section {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }
}


/* ==========================================================================
   SECTION 8: FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 248, 240, 0.6);
  padding: var(--sp-8) 0 var(--sp-6);
  /* Coral-tinted top border for visual separation */
  border-top: 3px solid var(--coral);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 248, 240, 0.1);
  margin-bottom: var(--sp-5);
}

.footer-brand .nav-logo {
  font-size: 22px;
  margin-bottom: var(--sp-3);
}

.footer-brand .nav-logo .logo-accent {
  color: var(--coral);
}

.footer-tagline {
  font-style: italic;
  font-size: var(--size-sm);
  margin-bottom: var(--sp-4);
  color: rgba(255, 248, 240, 0.7);
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 248, 240, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--size-sm);
  color: rgba(255, 248, 240, 0.6);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--coral);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(255, 248, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 240, 0.7);
  font-size: 16px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--size-xs);
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 248, 240, 0.5);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--coral);
}

.footer-made-with {
  color: rgba(255, 248, 240, 0.4);
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
