* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.6) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.5) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.4) 0%, transparent 50%),
    linear-gradient(120deg, #BFECFF 0%, #F7CFD8 100%);
  color: #1E1E2E;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= Container ================= */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 60px;
}

/* ================= NAV ================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0;
}

.nav-wrapper {
  width: 100%;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  margin-left: -40px;
}

.nav-menu a {
  margin-right: 30px;
  text-decoration: none;
  color: #1E1E2E;
  opacity: 0.75;
  transition: 0.3s;
}

.nav-menu a:hover {
  opacity: 1;
}

.lang {
  margin-left: 15px;
  border: none;
  background: #BFECFF;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.lang:hover {
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;

  min-height: auto;   
  padding: 40px 0;
}

/* Left Side */
.hero-left {
  max-width: 620px;
}

.hero h1 {
  font-size: 82px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0;
}

.hero p {
  margin-top: 25px;
  font-size: 18px;
  opacity: 0.75;
}

.hero-buttons {
  margin-top: 50px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #BFECFF, #b5e5fd);
  box-shadow: 0 15px 40px rgba(110,200,243,0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: #F7CFD8;
  box-shadow: 0 15px 40px rgba(247,207,216,0.45);
  margin-left: 15px;
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

/* Right Side */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.15));

  transform: translate(40px, -30px);
}

/* ================= WHAT ================= */
.what {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  padding: 160px 0;
  align-items: center;
}

/* Left content */
.what-points {
  margin-top: 35px;
  padding-left: 22px;
  opacity: 0.85;
}

.what-points li {
  margin-bottom: 14px;
}

/* Right container */
.what-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Base Card */
.insight-card {
  padding: 45px 50px;
  border-radius: 30px;
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.4);
}

.insight-card h3 {
  margin: 0 0 10px 0;
}

.insight-card p {
  margin: 0;
  opacity: 0.85;
}

/* Hover effect */
.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

/* Emotion */
.insight-card:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.85),
    rgba(160,215,250,0.85)
  );
}

/* Critical Thinking */
.insight-card:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(247,207,216,0.85),
    rgba(255,182,193,0.85)
  );
}

/* Information */
.insight-card:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(170,220,250,0.85),
    rgba(140,205,240,0.85)
  );
}

/* ================= BIAS ================= */
.bias {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  padding: 140px 0;
}

.bias-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 40px;
}

.bias-card {
  padding: 45px;
  border-radius: 25px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.bias-card:hover {
  transform: translateY(-6px);
}

.bias-card.pink {
  background: rgba(247,207,216,0.8);
}

.small-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #1E1E2E;
  color: white;
  cursor: pointer;
}

.quiz-card {
  padding: 70px;
  border-radius: 35px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(25px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================= LEARNING ================= */
.learning {
  padding: 140px 0;
}

.center { 
  text-align: center; 
}

/* GRID */
.learning-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 70px;
}

/* CARD */
.learning-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  overflow: hidden; /* penting biar gambar nempel */
  text-align: center;
  transition: 0.35s ease;
}

/* IMAGE FULL WIDTH */
.learning-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENT DALAM CARD */
.learning-card h3 {
  margin-top: 30px;
}

.learning-card button {
  margin: 30px 0 40px 0;
}

/* HOVER EFFECT */
.learning-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

/* ================= FOOTER ================= */
.footer {
  padding: 140px 0 100px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.footer p {
  opacity: 0.7;
  margin: 8px 0;
  cursor: pointer;
}

.footer p:hover {
  opacity: 1;
}

.newsletter {
  margin-top: 90px;
  text-align: center;
}

.newsletter h3 {
  margin-bottom: 30px;
}

.newsletter input {
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  width: 320px;
}

.newsletter button {
  margin-left: 15px;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(110,200,243,0.45));
}

.logo-text {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

/* ================= WHY SECTION ================= */

.why {
  padding: 140px 0;
}

.why-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-header p {
  font-size: 18px;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
}

.why-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  padding: 50px 40px;
  border-radius: 30px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.why-card p {
  opacity: 0.7;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card.highlight {
  background: linear-gradient(135deg, #BFECFF, #F7CFD8);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.why-cta {
  margin-top: 80px;
}

/* Card 1 – Soft Blue Gradient */
.why-card:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.85),
    rgba(170,220,250,0.85)
  );
}

/* Card 2 – Mixed Blue Pink (yang tadi lu suka) */
.why-card:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.85),
    rgba(247,207,216,0.85)
  );
}

/* Card 3 – Soft Pink Gradient */
.why-card:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(247,207,216,0.85),
    rgba(255,182,193,0.85)
  );
}

.why-card {
  color: #1E1E2E;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

/* ================= LEARN HERO ================= */

.learn-hero {
  padding: 140px 0 80px 0;
  text-align: center;
}

.learn-hero h1 {
  font-size: 64px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.learn-hero p {
  font-size: 18px;
  opacity: 0.75;
  max-width: 720px;
  margin: 0 auto;
}


/* ================= LEARN CARDS ================= */

.learn-section {
  padding: 100px 0 140px 0;
}

.learn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.learn-card {
  padding: 50px;
  border-radius: 30px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

.learn-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
}

.learn-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.learn-card p {
  opacity: 0.75;
  margin-bottom: 30px;
  line-height: 1.6;
}

.small {
  padding: 12px 28px;
  font-size: 14px;
}


/* ================= HOW IT WORKS ================= */

.how {
  padding: 140px 0;
}

.how-header h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.how-header p {
  opacity: 0.75;
}

.how-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.how-step {
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.85),
    rgba(247,207,216,0.85)
  );
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.how-step:hover {
  transform: translateY(-8px);
}

.how-step h3 {
  margin-bottom: 15px;
}

.how-step p {
  opacity: 0.85;
  line-height: 1.6;
}

/* MODULE HERO */
.module-hero {
  padding: 120px 0 60px 0;
  text-align: center;
}

.module-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.module-hero p {
  opacity: 0.75;
}

/* INTRO */
.module-intro {
  padding: 80px 0;
  text-align: center;
  max-width: 800px;
}

/* FALLACY GRID */
.fallacy-grid {
  padding: 100px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fallacy-card {
  padding: 45px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.35),
    rgba(247,207,216,0.35)
  );

  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.fallacy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.12);
}

.learn-next {
  padding: 120px 0 80px 0;
  text-align: center;
}

.learn-next-box {
  padding: 70px;
  border-radius: 30px;

  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.5),
    rgba(247,207,216,0.5)
  );

  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.learn-next h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.learn-next p {
  opacity: 0.7;
  margin-bottom: 40px;
}

.btn-next {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, #BFECFF, #F7CFD8);
  color: #1E1E2E;
  transition: 0.3s ease;
}

.btn-next:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ================= LEARN HERO ================= */
.learn-hero {
  padding: 120px 0 60px 0;
  text-align: center;
}

.learn-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.learn-hero p {
  max-width: 600px;
  margin: auto;
  opacity: 0.7;
  font-size: 18px;
}

/* ================= BIAS GRID ================= */
.bias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0;
}

.bias-card {
  padding: 50px;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.bias-card:hover {
  transform: translateY(-6px);
}

.bias-card.blue {
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.6),
    rgba(191,236,255,0.3)
  );
}

.bias-card.pink {
  background: linear-gradient(
    135deg,
    rgba(247,207,216,0.6),
    rgba(247,207,216,0.3)
  );
}

.bias-card h3 {
  margin-bottom: 15px;
}

.bias-card p {
  opacity: 0.75;
}

/* ===== MODULE NAVIGATION ===== */

.module-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  margin-top: 60px;   
  margin-bottom: 80px; 
}

.nav-prev,
.nav-next {
  position: relative;
  padding: 20px 24px;
  border-radius: 18px;

  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  cursor: pointer;
}

/* ===== PREVIOUS (BLUE) ===== */
.nav-prev {
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.9),
    rgba(191,236,255,0.6)
  );
}

/* ===== NEXT (PINK) ===== */
.nav-next {
  background: linear-gradient(
    135deg,
    rgba(247,207,216,0.9),
    rgba(247,207,216,0.6)
  );
}

.nav-prev:hover,
.nav-next:hover {
  transform: translateY(-4px);
}

.nav-prev span,
.nav-next span {
  font-size: 12px;
  opacity: 0.6;
}

.nav-prev p,
.nav-next p {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
}

.nav-prev a,
.nav-next a {
  position: absolute;
  inset: 0;
  text-decoration: none;
}

.nav-prev.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.fallacy-card {
  padding: 45px;
  border-radius: 26px;

  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.6);

  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.fallacy-card:hover {
  transform: translateY(-8px);
}

/* Kolom 1 & 4 – Pink */
.fallacy-card:nth-child(3n+1) {
  background: linear-gradient(
    135deg,
    rgba(247,207,216,0.85),
    rgba(247,207,216,0.55)
  );
}

/* Kolom 2 & 5 – Blue */
.fallacy-card:nth-child(3n+2) {
  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.9),
    rgba(191,236,255,0.55)
  );
}

/* Kolom 3 & 6 – Pink lagi */
.fallacy-card:nth-child(3n+3) {
  background: linear-gradient(
    135deg,
    rgba(247,207,216,0.85),
    rgba(247,207,216,0.55)
  );
}

/* ================= QUIZ ================= */

.quiz-section {
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.quiz-card {
  width: 100%;
  max-width: 750px;
  padding: 60px;
  border-radius: 30px;

  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.6),
    rgba(247,207,216,0.6)
  );

  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.quiz-progress {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 25px;
}

.answers {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.answer-btn {
  padding: 16px 24px;
  border-radius: 40px;
  border: none;
  background: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: 0.25s;
}

.answer-btn:hover {
  transform: translateY(-3px);
}

.answer-btn.selected {
  background: #BFECFF;
}

#nextBtn {
  margin-top: 40px;
}

/* ================= RESOURCES ================= */

.resources-hero {
  padding: 120px 0 80px 0;
  max-width: 850px;
}

.resources-hero h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.resources-hero p {
  font-size: 18px;
  opacity: 0.75;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0 140px 0;
}

.resource-card {
  padding: 40px;
  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.5),
    rgba(247,207,216,0.5)
  );

  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
}

.resource-card ul {
  margin-top: 20px;
  padding-left: 20px;
  opacity: 0.85;
}

.resource-card li {
  margin-bottom: 10px;
}

/* ================= CONTACT ================= */

.contact-hero {
  padding: 120px 0 80px 0;
  max-width: 850px;
}

.contact-hero h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.75;
}

.contact-section {
  padding: 80px 0 140px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  opacity: 0.75;
  margin-bottom: 15px;
}

.contact-form {
  padding: 50px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(191,236,255,0.5),
    rgba(247,207,216,0.5)
  );

  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  border-radius: 18px;
  border: none;
  font-family: inherit;
  background: rgba(255,255,255,0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #BFECFF;
}

.contact-form button {
  margin-top: 10px;
}

.back-btn {
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
}

.toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #BFECFF, #F7CFD8);
  color: #333;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.footer > p {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  font-size: 20px;
  font-weight: 600;

  background: linear-gradient(135deg, #BFECFF, #F7CFD8);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s ease;

  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* ================= NAV BASE ================= */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin-left: 0;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 11000;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #1f1f2e;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .container {
    padding: 0 20px;
  }

  .nav {
    flex-direction: row;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    margin-top: 110px;
  }

  /* FULLSCREEN MENU */

  .nav-menu {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100dvh;

    
    background: linear-gradient(
      135deg,
      #BFECFF,
      #F7CFD8
    );

    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     

    gap: 32px;

    transform: translateY(-100%);
    transition: transform 0.4s ease;

    z-index: 10000;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    margin: 0;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
  }

  .lang {
    margin-top: 20px;
  }

  /* HERO FIX */

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-img {
    max-width: 100%;
    transform: none;
  }

  /* GRID FIX */

  .what,
  .why-cards,
  .learn-cards,
  .fallacy-grid,
  .bias-grid,
  .resources-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .what {
    gap: 60px;
    padding: 100px 0;
  }

  .footer-grid {
    gap: 60px;
  }
}

/* ================= FOOTER SPACING ================= */

.footer {
  margin-top: 120px;
  padding-bottom: 60px;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.newsletter input {
  width: 100%;
  max-width: 420px;
}

.newsletter button {
  width: 200px;
}

.learn-hero,
.about-hero,
.resources-hero,
.contact-hero,
.module-hero,
.quiz-section {
  margin-top: 100px;
}

.fallacy-grid,
.bias-grid {
  margin-top: 80px;
}