/* =====================================
   RESET & BASE
===================================== */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2f2f2f;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.hero-thought {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
  max-width: 520px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.hero-subheading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #444444;
  margin-bottom: 1.2rem;
}

.hero-subheading span {
  color: #3949ab;
  font-weight: 600;
}

.hero-quote-small {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2.5rem;
}

/* BUTTONS */
.action-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Primary */
.btn.primary {
  background: #1a237e;
  color: #ffffff;
}

.btn.primary:hover {
  background: #283593;
}

/* Outline */
.btn.outline {
  background: transparent;
  color: #1a237e;
  border-color: #1a237e;
}

.btn.outline:hover {
  background: #1a237e;
  color: #ffffff;
}

/* Roadmap */
.btn.roadmap {
  background: #3949ab;
  color: #ffffff;
}

.btn.roadmap:hover {
  background: #5c6bc0;
}

/* =====================================
   RIGHT SIDE – THOUGHT CARDS
===================================== */

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.thought-card {
  background: #f9f9fc;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.thought-card p {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.8rem;
  color: #333333;
}

.thought-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a237e;
}

.thought-card.highlight {
  border-left: 4px solid #3949ab;
  background: #f4f6ff;
}

/* =====================================
   REFLECTION STRIP
===================================== */

.reflection-strip {
  background: #f4f6fb;
  padding: 3rem 0;
  text-align: center;
}

.reflection-strip p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #444444;
}

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

@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    align-items: center;
  }

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

  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subheading {
    font-size: 1.4rem;
  }

  .reflection-strip p {
    font-size: 1.1rem;
  }
}
