:root {
  --saffron: #f4a527;
  --coral: #e8553e;
  --forest: #1a6b4a;
  --deep: #0d2b1f;
  --cream: #fdf6ed;
  --mist: #f0ebe1;
  --gold-light: #fde8b0;
  --white: #ffffff;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(253, 246, 237, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 165, 39, 0.2);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
}
.logo-text {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text span {
  color: var(--saffron);
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--forest);
}
.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
}
.nav-cta:hover {
  background: var(--coral) !important;
}

/* BUTTONS */
.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(26, 107, 74, 0.3);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--forest);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-saffron {
  background: var(--saffron);
  color: var(--deep);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(244, 165, 39, 0.3);
  display: inline-block;
}
.btn-saffron:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* SECTION */
section {
  padding: 6rem 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--deep);
  line-height: 1.15;
}
h2 em {
  font-style: italic;
  color: var(--forest);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 100% 50%,
      rgba(244, 165, 39, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 0% 80%,
      rgba(26, 107, 74, 0.07) 0%,
      transparent 60%
    );
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--forest);
  border-radius: 50%;
}
h1 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--deep);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-item .num {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}
.stat-item .desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 580px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-img-main {
  position: absolute;
  top: 0;
  left: 20px;
  right: 0;
  bottom: 60px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 43, 31, 0.18);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 43, 31, 0.2);
  border: 4px solid var(--cream);
}
.hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-pill {
  position: absolute;
  bottom: 110px;
  right: -8px;
  background: var(--saffron);
  color: var(--deep);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px rgba(244, 165, 39, 0.4);
  text-align: center;
}
.hero-pill .big {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.hero-pill .lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  max-width: 110px;
}

/* ABOUT */
.about {
  background: var(--deep);
  color: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about h2 {
  color: var(--white);
}
.about h2 em {
  color: var(--saffron);
}
.about .section-label {
  color: var(--saffron);
}
.about p {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
}
.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.vm-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.4rem;
}
.vm-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.vm-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-top: 0;
}
.about-img {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(13, 43, 31, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-img-badge strong {
  color: var(--saffron);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

/* PROBLEM */
.problem {
  background: var(--coral);
  color: var(--white);
  padding: 5rem 4rem;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem h2 {
  color: var(--white);
}
.problem .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.problem-box {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  margin-top: 1.5rem;
}
.problem-big {
  font-family: "Fraunces", serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}
.problem-box p {
  font-size: 1.02rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
}
.problem-box strong {
  color: var(--white);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.6rem;
}
.problem-img {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* SOLUTION */
.solution {
  background: var(--cream);
}
.solution-header {
  text-align: center;
  margin-bottom: 4rem;
}
.solution-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sol-card {
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 43, 31, 0.15);
}
.sol-card-1 {
  background: var(--forest);
  color: var(--white);
}
.sol-card-2 {
  background: var(--saffron);
  color: var(--deep);
}
.sol-card-3 {
  background: var(--deep);
  color: var(--white);
}
.sol-num {
  font-family: "Fraunces", serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.13;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.sol-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.sol-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.sol-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sol-card ul li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}
.sol-card-1 ul li,
.sol-card-3 ul li {
  color: rgba(255, 255, 255, 0.85);
}
.sol-card-2 ul li {
  color: rgba(13, 43, 31, 0.8);
}
.sol-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.sol-card-1 ul li::before {
  color: var(--saffron);
}
.sol-card-2 ul li::before {
  color: var(--forest);
}
.sol-card-3 ul li::before {
  color: var(--saffron);
}

/* PILOT */
.pilot {
  background: var(--mist);
}
.pilot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pilot-content .section-label {
  color: var(--forest);
}
.pilot-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
}
.pilot-gains {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.pilot-gain {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.pilot-gain::before {
  content: "✓";
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.pilot-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pilot-img {
  border-radius: 24px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 16px 50px rgba(13, 43, 31, 0.12);
}
.pilot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.pilot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pstat {
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 4px 20px rgba(13, 43, 31, 0.06);
  text-align: center;
}
.pstat .big {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
}
.pstat .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.pstat-duration {
  background: var(--forest);
}
.pstat-duration .big {
  color: var(--saffron);
}
.pstat-duration .lbl {
  color: rgba(255, 255, 255, 0.65);
}

/* SERVE */
.serve {
  background: var(--white);
}
.serve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.serve-imgs {
  position: relative;
  height: 480px;
}
.serve-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(13, 43, 31, 0.14);
}
.serve-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.serve-img-mini {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 185px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 12px 35px rgba(13, 43, 31, 0.18);
}
.serve-img-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.serve-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.4rem;
  border-left: 4px solid var(--forest);
  transition: all 0.25s;
}
.serve-item:hover {
  background: var(--gold-light);
  border-left-color: var(--coral);
}
.serve-item .icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.serve-item .name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--deep);
}
.serve-cta {
  margin-top: 1.5rem;
  background: var(--gold-light);
  border-radius: 16px;
  padding: 1.3rem;
}
.serve-cta p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.7;
}

/* WHY */
/* .why {
  background: var(--forest);
  color: var(--white);
}
.why h2 {
  color: var(--white);
}
.why h2 em {
  color: var(--saffron);
}
.why .section-label {
  color: var(--saffron);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img {
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 43, 31, 0.75) 0%,
    transparent 55%
  );
}
.why-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--white);
}
.why-img-caption .q {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
  max-width: 260px;
}
.why-img-caption .attr {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.why-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  transition: background 0.2s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.why-item .check {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.why-item strong {
  color: var(--white);
} */

/* ─── WHY ─── */
.why {
  background: var(--forest);
  color: var(--white);
}
.why h2 {
  color: var(--white);
}
.why h2 em {
  color: var(--saffron);
}
.why .section-label {
  color: var(--saffron);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  transition: background 0.2s;
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.why-item .check {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.why-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* VISION */
.vision {
  background: var(--saffron);
  padding: 5rem 4rem;
  text-align: center;
}
.vision h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep);
}
.vision > p {
  font-size: 1rem;
  color: rgba(13, 43, 31, 0.7);
  margin: 0.75rem auto 0;
  max-width: 480px;
}
.vision-nums {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.vnum .n {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--deep);
  line-height: 1;
}
.vnum .l {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 43, 31, 0.65);
  margin-top: 0.3rem;
}

/* GET INVOLVED */
.involve {
  background: var(--cream);
}
.involve-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.inv-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 43, 31, 0.07);
  transition: all 0.3s;
}
.inv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(13, 43, 31, 0.14);
}
.inv-card-img {
  height: 230px;
  overflow: hidden;
}
.inv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.inv-card:hover .inv-card-img img {
  transform: scale(1.05);
}
.inv-card-body {
  padding: 1.8rem;
}
.inv-card-body .icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.inv-card-body h3 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--deep);
  margin-bottom: 0.6rem;
}
.inv-card-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

/* FOOTER */
footer {
  background: var(--deep);
  color: var(--white);
  padding: 4rem 4rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--saffron);
}
.footer-contact li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--saffron);
  color: var(--deep);
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
  }

  .hero-actions {
    gap: 0.5rem;
  }
  .hero-visual {
    height: 340px;
  }
  .hero-pill {
    display: none;
  }
  .about-inner,
  .problem-inner,
  .pilot-inner,
  .serve-inner,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .problem {
    padding: 4rem 1.5rem;
  }
  .problem-img,
  .about-img {
    height: 320px;
  }

  .solution-grid,
  .involve-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 4rem 2rem 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .vision-nums {
    gap: 2rem;
  }
  .serve-imgs {
    height: 320px;
  }
}
