:root {
  /* ── Brand palette from logo ── */
  --violet: #7b2fbe; /* deep purple */
  --purple: #9b3fd4; /* mid purple  */
  --indigo: #4a2e8a; /* dark indigo */
  --electric: #3db8f5; /* bright blue */
  --sky: #6dd5fa; /* light blue  */
  --pink: #e040b8; /* hot pink accent */
  --navy: #0d0a1e; /* near-black navy */
  --deep-navy: #07051a; /* darkest bg  */
  --mid-navy: #160e35; /* section bg  */
  --slate: #1c1240; /* card bg     */

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f5f3ff; /* very pale lavender */
  --lavender: #eee8ff;
  --text: #1a1030;
  --text-muted: #6b5e8a;
  --text-light: #c4b8e8;

  /* Gradients */
  --grad-brand: linear-gradient(
    135deg,
    var(--indigo) 0%,
    var(--violet) 50%,
    var(--electric) 100%
  );
  --grad-purple: linear-gradient(135deg, #4a2e8a 0%, #7b2fbe 55%, #9b3fd4 100%);
  --grad-blue: linear-gradient(
    135deg,
    #2a7fc5 0%,
    var(--electric) 55%,
    var(--sky) 100%
  );
  --grad-pink: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ══════════════════════════════
     NAV
  ══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 4rem;
  background: rgba(245, 243, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(123, 47, 190, 0.15);
}
.logo-mark {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.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(--violet);
}
.nav-cta {
  background: var(--grad-purple);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: opacity 0.2s !important;
  box-shadow: 0 4px 18px rgba(123, 47, 190, 0.35);
}
.nav-cta:hover {
  opacity: 0.88;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: var(--lavender);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--indigo);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(245, 243, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  border-bottom: 2px solid rgba(123, 47, 190, 0.2);
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(123, 47, 190, 0.12);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--violet);
  padding-left: 6px;
}
.mobile-menu .mob-cta {
  margin-top: 1rem;
  display: block;
  background: var(--grad-purple);
  color: var(--white) !important;
  text-align: center;
  padding: 1rem;
  border-radius: 100px;
  border-bottom: none !important;
  box-shadow: 0 4px 18px rgba(123, 47, 190, 0.35);
}
.mobile-menu .mob-cta:hover {
  padding-left: 0 !important;
  opacity: 0.88;
}

/* ══════════════════════════════
     BUTTONS
  ══════════════════════════════ */
.btn-primary {
  background: var(--grad-purple);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(123, 47, 190, 0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123, 47, 190, 0.45);
  opacity: 0.92;
}
.btn-outline {
  background: transparent;
  color: var(--violet);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--violet);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-electric {
  background: var(--grad-blue);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(61, 184, 245, 0.35);
}
.btn-electric:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ══════════════════════════════
     SECTION BASE
  ══════════════════════════════ */
section {
  padding: 6rem 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  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(--text);
  line-height: 1.15;
}
h2 em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════
     HERO
  ══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 4rem 4rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    #f5f3ff 0%,
    #ede5ff 35%,
    #ddd0fa 60%,
    #e8e0ff 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 55% 65% at 95% 35%,
      rgba(123, 47, 190, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 50% at 5% 85%,
      rgba(61, 184, 245, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 35% 40% at 50% 5%,
      rgba(224, 64, 184, 0.08) 0%,
      transparent 60%
    );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(123, 47, 190, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(123, 47, 190, 0.1);
  color: var(--violet);
  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;
  border: 1px solid rgba(123, 47, 190, 0.25);
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--grad-brand);
  border-radius: 50%;
}
h1 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.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;
  line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.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(74, 46, 138, 0.22);
}
.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(74, 46, 138, 0.25);
  border: 4px solid #ede5ff;
}
.hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-pill {
  position: absolute;
  bottom: 110px;
  right: -8px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--electric) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px rgba(123, 47, 190, 0.45);
  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;
  opacity: 0.88;
}

/* ══════════════════════════════
     ABOUT — dark navy gradient
  ══════════════════════════════ */
.about {
  background: linear-gradient(
    135deg,
    #0d0a1e 0%,
    #160e35 40%,
    #1c1240 70%,
    #0f0b25 100%
  );
  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 {
  background: linear-gradient(135deg, #c084fc, var(--electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about .section-label {
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about p {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.4rem;
  color: var(--text-light);
}
.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.vm-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 47, 190, 0.25);
  border-radius: 16px;
  padding: 1.4rem;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s;
}
.vm-card:hover {
  border-color: rgba(123, 47, 190, 0.5);
}
.vm-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #c084fc, var(--electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vm-card p {
  font-size: 0.88rem;
  color: rgba(196, 184, 232, 0.8);
  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.5);
  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, 10, 30, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.5;
  border: 1px solid rgba(123, 47, 190, 0.3);
}
.about-img-badge strong {
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

/* ══════════════════════════════
     PROBLEM — deep violet gradient
  ══════════════════════════════ */
.problem {
  background: linear-gradient(
    135deg,
    #2d1060 0%,
    #4a2e8a 40%,
    #6b30a8 70%,
    #3d1878 100%
  );
  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 h2 em {
  background: linear-gradient(135deg, var(--sky), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem .section-label {
  background: linear-gradient(135deg, var(--sky), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-box {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.problem-big {
  font-family: "Fraunces", serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  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.88);
}
.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.35);
}
.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ══════════════════════════════
     SOLUTION — pale lavender gradient
  ══════════════════════════════ */
.solution {
  background: linear-gradient(
    160deg,
    #f5f3ff 0%,
    #ede5ff 40%,
    #e0d5ff 70%,
    #eee8ff 100%
  );
}
.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(74, 46, 138, 0.22);
}
.sol-card-1 {
  background: linear-gradient(145deg, #4a2e8a 0%, #6b30a8 55%, #7b2fbe 100%);
  color: var(--white);
}
.sol-card-2 {
  background: linear-gradient(145deg, #2a7fc5 0%, #3db8f5 55%, #6dd5fa 100%);
  color: var(--navy);
}
.sol-card-3 {
  background: linear-gradient(145deg, #0d0a1e 0%, #160e35 50%, #1c1240 100%);
  color: var(--white);
}
.sol-num {
  font-family: "Fraunces", serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.12;
  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(7, 5, 26, 0.82);
}
.sol-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.sol-card-1 ul li::before {
  color: var(--sky);
}
.sol-card-2 ul li::before {
  color: var(--indigo);
}
.sol-card-3 ul li::before {
  color: var(--electric);
}

/* ══════════════════════════════
     PILOT — soft navy gradient
  ══════════════════════════════ */
.pilot {
  background: linear-gradient(
    150deg,
    #1c1240 0%,
    #160e35 40%,
    #0f0b25 70%,
    #1a1038 100%
  );
  color: var(--white);
}
.pilot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pilot-content .section-label {
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pilot-content h2 {
  color: var(--white);
}
.pilot-content h2 em {
  background: linear-gradient(135deg, #c084fc, var(--electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pilot-content p {
  font-size: 1rem;
  color: var(--text-light);
  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;
  color: var(--text-light);
}
.pilot-gain::before {
  content: "✓";
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--grad-purple);
  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(0, 0, 0, 0.35);
}
.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: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(123, 47, 190, 0.3);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.pstat .big {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pstat .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(196, 184, 232, 0.65);
  margin-top: 0.4rem;
}
.pstat-duration {
  background: var(--grad-purple);
  border: none;
}
.pstat-duration .big {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}
.pstat-duration .lbl {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════
     SERVE — white to lavender gradient
  ══════════════════════════════ */
.serve {
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    #f5f3ff 40%,
    #ede5ff 75%,
    #e4d8ff 100%
  );
}
.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(74, 46, 138, 0.18);
}
.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 #ede5ff;
  box-shadow: 0 12px 35px rgba(74, 46, 138, 0.22);
}
.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: linear-gradient(135deg, #f5f3ff 0%, #ede5ff 100%);
  border-radius: 16px;
  padding: 1.4rem;
  border-left: 4px solid var(--violet);
  transition: all 0.25s;
}
.serve-item:hover {
  background: linear-gradient(135deg, #ede5ff 0%, #ddd0fa 100%);
  border-left-color: var(--pink);
  transform: translateX(4px);
}
.serve-item .icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.serve-item .name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.serve-cta {
  margin-top: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(123, 47, 190, 0.08) 0%,
    rgba(61, 184, 245, 0.1) 100%
  );
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid rgba(123, 47, 190, 0.18);
}
.serve-cta p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}

/* ══════════════════════════════
     WHY — deep indigo to navy
  ══════════════════════════════ */
.why {
  background: linear-gradient(
    135deg,
    #2d1060 0%,
    #3d1878 30%,
    #160e35 65%,
    #0d0a1e 100%
  );
  color: var(--white);
}
.why h2 {
  color: var(--white);
}
.why h2 em {
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why .section-label {
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.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.4);
  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, 10, 30, 0.85) 0%,
    rgba(45, 16, 96, 0.2) 50%,
    transparent 75%
  );
}
.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.55);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.why-points {
  /* display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(123, 47, 190, 0.2);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  transition: all 0.2s;
  /* display: flex;
  gap: 1rem;
  align-items: flex-start; */
}
.why-item:hover {
  background: rgba(123, 47, 190, 0.15);
  border-color: rgba(123, 47, 190, 0.4);
}
.why-item .check {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-item p {
  font-size: 0.9rem;
  color: rgba(196, 184, 232, 0.85);
  line-height: 1.7;
}
.why-item strong {
  color: var(--white);
}

/* ══════════════════════════════
     VISION — brand gradient
  ══════════════════════════════ */
.vision {
  background: linear-gradient(
    135deg,
    #4a2e8a 0%,
    #7b2fbe 35%,
    #9b3fd4 60%,
    #3db8f5 100%
  );
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.vision h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  position: relative;
}
.vision h2 em {
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}
.vision > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.75rem auto 0;
  max-width: 480px;
  position: relative;
}
.vision .section-label {
  background: rgba(255, 255, 255, 0.6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.vision-nums {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
}
.vnum .n {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.vnum .l {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
}

/* ══════════════════════════════
     INVOLVE — pale lavender gradient
  ══════════════════════════════ */
.involve {
  background: linear-gradient(
    150deg,
    #eee8ff 0%,
    #e0d5ff 40%,
    #f0eaff 70%,
    #eee8ff 100%
  );
}
.involve-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.inv-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8f4ff 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(74, 46, 138, 0.1);
  transition: all 0.3s;
  border: 1px solid rgba(123, 47, 190, 0.12);
}
.inv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(74, 46, 138, 0.2);
}
.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(--navy);
  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 — deep navy gradient
  ══════════════════════════════ */
footer {
  background: linear-gradient(
    135deg,
    #07051a 0%,
    #0d0a1e 40%,
    #100830 70%,
    #07051a 100%
  );
  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(196, 184, 232, 0.5);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #c084fc, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  color: rgba(196, 184, 232, 0.55);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--sky);
}
.footer-contact li {
  color: rgba(196, 184, 232, 0.55);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(123, 47, 190, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(196, 184, 232, 0.3);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(123, 47, 190, 0.15);
  border: 1px solid rgba(123, 47, 190, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196, 184, 232, 0.6);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--grad-purple);
  color: var(--white);
  border-color: transparent;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 960px) {
  nav {
    padding: 0.85rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .problem,
  .vision {
    padding: 4rem 1.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
  }
  .hero-visual {
    height: 340px;
  }
  .hero-pill {
    display: none;
  }
  .hero-img-secondary {
    width: 130px;
    height: 155px;
  }
  .about-inner,
  .problem-inner,
  .pilot-inner,
  .serve-inner,
  .why-points {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .solution-grid,
  .involve-grid {
    grid-template-columns: 1fr;
  }
  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;
  }
  .serve-img-mini {
    width: 130px;
    height: 148px;
  }
  .why-img {
    height: 340px;
  }
  .about-img {
    height: 360px;
  }
  .problem-img {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    text-align: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .pilot-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .vision-nums {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
