/* ============================================
   KOMOREBI CREATIVES — Stylesheet
   Colors: Dark Teal #0D2B2B · Lime #8FD43A
           Emerald #2ECC71 · Cream #EEE9D0
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #0D2B2B;
  --teal-mid: #143535;
  --teal-light: #1C4444;
  --lime:    #8FD43A;
  --lime-dark: #72AA2E;
  --emerald: #2EC87A;
  --cream:   #EEE9D0;
  --cream-dim: #C8C3AC;
  --white:   #FFFFFF;
  --font-display: 'Wix Madefor Display', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:  1rem;
  --radius-lg: 2rem;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--teal);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.section-label--light { color: var(--emerald); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.section-title em { color: var(--lime); font-style: normal; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--lime);
  color: var(--teal);
  border-color: var(--lime);
}
.btn--primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(238,233,208,0.3);
}
.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(238,233,208,0.06);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream-dim);
  border: none;
  padding-inline: 0.5rem;
}
.btn--ghost:hover { color: var(--cream); }
.btn--large { padding: 1rem 2.25rem; font-size: 1rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(13, 43, 43, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(143,212,58,0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--lime); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(143,212,58,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(46,200,122,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__bg-text {
  position: absolute;
  bottom: -4vw;
  left: -1vw;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 22rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143,212,58,0.06);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero__content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(143,212,58,0.25);
  background: rgba(143,212,58,0.06);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.hero__headline em {
  font-style: normal;
  color: var(--lime);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.hero__stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(238,233,208,0.15);
}

.hero__scroll {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--cream-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  background: var(--lime);
  padding: 1rem 0;
  border-top: 1px solid rgba(13,43,43,0.1);
  border-bottom: 1px solid rgba(13,43,43,0.1);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}
.marquee__dot { font-size: 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 8rem 0 6rem;
  background: var(--white);
}
.about * { color: var(--teal); }
.about .section-label { color: var(--lime-dark); }
.about .section-title em { color: var(--lime-dark); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(13,43,43,0.75);
  margin-bottom: 1.25rem;
}
.about__body strong { color: var(--teal); font-weight: 700; }

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(13,43,43,0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.about__word-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
  padding-top: 1rem;
  border-top: 1px solid rgba(13,43,43,0.08);
}
.about__word-row span {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}
.about__word--accent {
  background: var(--lime);
  color: var(--teal) !important;
  padding: 0.2em 0.7em;
  border-radius: 100px;
}
.about__word--arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 4.5vw, 4rem);
  height: clamp(2.5rem, 4.5vw, 4rem);
  background: var(--teal) !important;
  color: var(--lime) !important;
  border-radius: 50%;
  font-size: clamp(1.2rem, 2.5vw, 2rem) !important;
  flex-shrink: 0;
}
.about__word--faded { color: rgba(13,43,43,0.2) !important; }

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__word-row { gap: 0.8rem; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 8rem 0;
  background: var(--teal);
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services__sub {
  font-size: 1rem;
  color: var(--cream-dim);
  align-self: end;
  padding-bottom: 0.25rem;
}

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

.service-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); }

.service-card--dark {
  background: var(--teal-light);
  border: 1px solid rgba(143,212,58,0.1);
}
.service-card--dark:hover { box-shadow: 0 20px 60px rgba(143,212,58,0.08); }

.service-card--light {
  background: var(--cream);
}
.service-card--light .service-card__num,
.service-card--light .service-card__title { color: var(--teal); }
.service-card--light .service-card__desc { color: rgba(13,43,43,0.65); }
.service-card--light .service-card__icon { color: var(--lime-dark); }
.service-card--light .service-card__tags span {
  background: rgba(13,43,43,0.08);
  color: var(--teal);
}

.service-card--accent {
  background: var(--lime);
}
.service-card--accent .service-card__num,
.service-card--accent .service-card__title,
.service-card--accent .service-card__icon { color: var(--teal); }
.service-card--accent .service-card__desc { color: rgba(13,43,43,0.7); }
.service-card--accent .service-card__tags span {
  background: rgba(13,43,43,0.12);
  color: var(--teal);
}

.service-card--cream {
  background: var(--teal-mid);
  border: 1px solid rgba(238,233,208,0.08);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.service-card__icon {
  font-size: 1.75rem;
  color: var(--lime);
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.service-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(238,233,208,0.1);
  color: var(--cream-dim);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .services__header { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================
   MISSION
   ============================================ */
.mission {
  padding: 8rem 0;
  background: var(--lime);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '光';
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30vw;
  font-weight: 900;
  color: rgba(13,43,43,0.04);
  pointer-events: none;
  line-height: 1;
}

.mission__inner {
  max-width: 820px;
}

.mission__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--teal);
  margin-bottom: 1.75rem;
}
.mission__title em { font-style: normal; text-decoration: underline; text-decoration-color: rgba(13,43,43,0.3); }

.mission__body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(13,43,43,0.75);
  max-width: 640px;
  margin-bottom: 3rem;
}

.mission__values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.mission__value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 180px;
}
.mission__value-icon {
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1;
  margin-top: 0.1rem;
}
.mission__value-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.2rem;
}
.mission__value-text span {
  font-size: 0.875rem;
  color: rgba(13,43,43,0.65);
}

/* ============================================
   WHY
   ============================================ */
.why {
  padding: 8rem 0;
  background: var(--white);
}
.why * { color: var(--teal); }
.why .section-label { color: var(--lime-dark); }

.why__header {
  margin-bottom: 4rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why__card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(13,43,43,0.08);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why__card:hover {
  border-color: var(--lime-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(143,212,58,0.12);
}
.why__card-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--lime-dark) !important;
  margin-bottom: 1rem;
}
.why__card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.why__card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(13,43,43,0.6);
}

@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 8rem 0;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.cta__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(143,212,58,0.25);
  background: rgba(143,212,58,0.06);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.cta__title em { font-style: normal; color: var(--lime); }

.cta__sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta__deco {
  position: absolute;
  bottom: -5vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 18rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143,212,58,0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--teal-light);
  border-top: 1px solid rgba(143,212,58,0.1);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(238,233,208,0.08);
}

.footer__brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.footer__brand p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.65;
  max-width: 260px;
}

.footer__links {
  display: flex;
  gap: 4rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col strong {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(238,233,208,0.35);
}

@media (max-width: 768px) {
  .footer__top { flex-direction: column; gap: 2.5rem; }
  .footer__links { flex-wrap: wrap; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--teal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.mobile-nav__links a:hover { color: var(--lime); }

.mobile-nav__cta { margin-top: 1rem; }

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__headline { font-size: clamp(1.85rem, 6vw, 4rem); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  .hero__headline  { font-size: clamp(1.85rem, 8.5vw, 2.8rem); }
  .section-title   { font-size: clamp(1.75rem, 6.5vw, 2.4rem); }
  .mission__title  { font-size: clamp(1.75rem, 6.5vw, 2.4rem); }
  .cta__title      { font-size: clamp(1.75rem, 6.5vw, 2.4rem); }

  /* Sections: less vertical padding */
  .hero    { padding-top: 6rem; padding-bottom: 4rem; }
  .about, .services, .mission, .why, .cta { padding: 5rem 0; }

  /* Hero stats */
  .hero__stats { gap: 1.25rem; margin-top: 3rem; }
  .hero__stat-num { font-size: 2rem; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__word-row { gap: 0.6rem; overflow-x: auto; padding-bottom: 0.5rem; }
  .about__word-row span { font-size: clamp(1.6rem, 7vw, 3rem); }
  .about__word--arrow {
    width: 2.5rem !important;
    height: 2.5rem !important;
    font-size: 1.2rem !important;
  }

  /* Services */
  .services__header { grid-template-columns: 1fr; gap: 0.75rem; }
  .services__grid   { grid-template-columns: 1fr; }

  /* Why */
  .why__grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { text-align: center; justify-content: center; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  /* Typography */
  .hero__headline { font-size: 1.85rem; }
  .section-title  { font-size: 1.75rem; }
  .mission__title { font-size: 1.75rem; }
  .cta__title     { font-size: 1.75rem; }

  /* Hero */
  .hero { padding-top: 5rem; padding-bottom: 3rem; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .hero__stat-divider { display: none; }
  .hero__scroll { display: none; }

  /* Nav */
  .nav { padding: 1rem 1.25rem; }

  /* Services cards */
  .service-card { padding: 1.75rem; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__links { flex-direction: column; gap: 2rem; }

  /* About word-row */
  .about__word--faded { display: none; }
}
