/* Hero Section */
.hero {
  padding: clamp(8rem, 16vw, 11rem) 2rem clamp(4rem, 8vw, 6rem);
  text-align: center;
  background: #fbfaf7;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: #edebe7;
  color: rgba(18, 17, 17, 0.64);
  font-size: 0.85rem;
  font-weight: 650;
}

.hero h1 {
  color: #121111;
  font-size: clamp(2.75rem, 6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(18, 17, 17, 0.58);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #121111;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(18, 17, 17, 0.55);
}

/* Shared Section Scaffolding */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  width: min(100%, 920px);
  margin: 0 auto clamp(2.75rem, 6vw, 4.5rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #edebe7;
  color: rgba(18, 17, 17, 0.64);
  font-size: 0.85rem;
  font-weight: 650;
}

.section-header h2 {
  color: #121111;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 1rem;
}

/* Mission Section */
.mission {
  padding: clamp(5rem, 9vw, 8rem) 2rem;
  background: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mission-card {
  background: #fbfaf7;
  padding: 2.25rem;
  border-radius: 8px;
  border: 1px solid rgba(18, 17, 17, 0.08);
  transition:
    transform 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 22px 52px rgba(18, 17, 17, 0.09);
}

.mission-icon {
  width: 44px;
  height: 44px;
  background: var(--primary_color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.mission-icon svg {
  width: 22px;
  height: 22px;
  color: white;
  stroke-width: 2;
}

.mission-card h3 {
  color: #121111;
  font-size: 1.4rem;
  font-weight: 650;
  margin-bottom: 0.7rem;
}

.mission-card p {
  color: rgba(18, 17, 17, 0.62);
  line-height: 1.6;
}

/* Problem & Solution */
.problem-solution {
  padding: clamp(5rem, 9vw, 8rem) 2rem;
  background: #f6f4ef;
}

.content-block {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  background: #fff;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 8px;
  border: 1px solid rgba(18, 17, 17, 0.08);
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h3 {
  color: #121111;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 650;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.content-block h3 svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 8px;
  background: var(--primary_color);
  color: #fff;
  stroke-width: 2;
}

.content-block p {
  color: rgba(18, 17, 17, 0.66);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-block ul,
.content-block ol {
  margin: 0 0 1.5rem 1.25rem;
  line-height: 1.7;
  color: rgba(18, 17, 17, 0.66);
}

.content-block li {
  margin-bottom: 1rem;
  padding-left: 0.35rem;
}

.content-block li::marker {
  color: rgba(18, 17, 17, 0.4);
  font-weight: 600;
}

.content-block strong {
  color: #121111;
  font-weight: 650;
}

.content-block code {
  background: #f6f4ef;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(18, 17, 17, 0.08);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: #121111;
}

.content-block a {
  color: #0375f6;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.content-block a:hover {
  border-bottom-color: #0375f6;
}

/* Story / Testimonial Section */
.story {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  background: var(--primary_color);
  color: white;
}

.story-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.story h2 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 2.25rem;
}

.story-quote {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

.story-author {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* Values Section */
.values {
  padding: clamp(5rem, 9vw, 8rem) 2rem;
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fbfaf7;
  border: 1px solid rgba(18, 17, 17, 0.08);
  border-radius: 8px;
  transition:
    transform 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 22px 52px rgba(18, 17, 17, 0.09);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary_color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(18, 17, 17, 0.04);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  color: white;
  stroke-width: 2;
}

.value-card h3 {
  color: #121111;
  font-size: 1.3rem;
  font-weight: 650;
  margin-bottom: 0.7rem;
}

.value-card p {
  color: rgba(18, 17, 17, 0.62);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  background: var(--primary_color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 1.25rem;
}

.cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.66);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.btn-primary {
  min-height: 48px;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 650;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  background: #fff;
  color: #121111;
  transition:
    transform 260ms ease,
    background 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0375f6;
  color: #fff;
  box-shadow: 0 18px 34px rgba(3, 117, 246, 0.28);
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }

  .content-block {
    padding: 2rem 1.5rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
