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

html {
  background: #FAFAF7;
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  background: #FAFAF7;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0;
}

.page-wrap {
  position: relative;
  z-index: 1;
  background: #FAFAF7;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 0;
}

.content-area {
  position: relative;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1309px;
  max-width: calc(100% - 110px);
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(15, 22, 32, 0.07) 0,
    rgba(15, 22, 32, 0.07) 1px,
    transparent 1px,
    transparent calc((100% - 1px) / 6)
  );
}

.content-area .grid-overlay {
  bottom: -50px;
}


/* ─── Fixed Logo ─── */
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fixed-logo {
  position: fixed;
  top: 50px;
  left: 30px;
  z-index: 100;
  border-radius: 10px;
  height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease;
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.fixed-logo.scrolled {
  background: white;
}

.fixed-logo img {
  width: 182px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.fixed-logo.scrolled img {
  width: 120px;
}

.logo-dark {
  position: absolute;
  opacity: 0;
}

.fixed-logo.scrolled .logo-white {
  opacity: 0;
}

.fixed-logo.scrolled .logo-dark {
  opacity: 1;
}


/* ─── Fixed Navigation ─── */
.fixed-nav {
  position: fixed;
  top: 45px;
  right: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 100px;
  padding: 6px;
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  padding-right: 20px;
}

.nav-link {
  font-weight: 400;
  font-size: 17px;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #70A6C8;
}

.nav-link-active {
  color: #70A6C8;
}

.nav-cta {
  background: #0b1b33;
  color: white;
  font-weight: 400;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 100px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #1E3A6B;
}


/* ─── Page Hero ─── */
.page-hero {
  position: relative;
  width: 100vw;
  margin-left: -10px;
  height: 640px;
  background: #0b1b33;
  overflow: hidden;
  color: white;
}

.page-hero-vector {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ready .page-hero-vector {
  opacity: 1;
  transition-delay: 0.2s;
}

.page-hero-vector img {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero-vector-dark {
  inset: -41.83% 20.14% -84.33% -141.81%;
}

.page-hero-vector-light {
  inset: 33.17% -116.04% -132.5% 26.11%;
}

.page-hero-vector-stroke {
  top: 28%;
  left: calc(50% - 435.5px);
  bottom: -39.5%;
  width: 1399px;
  transform: translateX(-50%) translateY(var(--parallax-y));
}

.page-hero-mark {
  display: none;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 10px;
}

.hero-ready .page-hero-tag {
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.page-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.page-hero-tag span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-hero-content {
  position: absolute;
  left: 65px;
  bottom: 85px;
  width: 872px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-hero-heading {
  font-size: 60px;
  line-height: 1;
  color: white;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ready .page-hero-heading {
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.heading-light {
  font-weight: 300;
}

.heading-accent {
  font-weight: 400;
  color: #dcf2fd;
}

.page-hero-subtitle {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  color: white;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ready .page-hero-subtitle {
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}


/* ─── Our Story Section ─── */
.story-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 100px 55px 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  align-items: start;
}

.story-left {
  grid-column: 1 / 3;
  position: sticky;
  top: 140px;
  align-self: start;
  padding-right: 40px;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  margin-bottom: 30px;
}

.story-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.story-tag span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.story-heading {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  grid-column: 1 / 3;
}

.story-highlight {
  color: #70A6C8;
}

.story-body {
  grid-column: 3 / 7;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-body p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(11, 27, 51, 0.75);
}

.story-body p:first-child {
  color: #0b1b33;
  font-weight: 400;
}

.story-image {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
  height: 700px;
}

.story-image img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  /* Bias the crop right so the two men stay framed at narrow widths
     (the woman on the left is the expendable edge). */
  object-position: 72% center;
  display: block;
  position: absolute;
  top: -15%;
  left: 0;
  will-change: transform;
  transform: translateY(var(--parallax-img, 0px));
}


/* ─── Mission & Values Section ─── */
.values-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 50px 55px 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  row-gap: 60px;
  align-items: start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.values-left {
  grid-column: 1 / 3;
  padding-right: 40px;
}

.values-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  margin-bottom: 30px;
}

.values-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.values-tag span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.values-heading {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  margin-bottom: 30px;
}

.values-highlight {
  color: #70A6C8;
}

.values-mission {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(11, 27, 51, 0.75);
}

.values-grid {
  grid-column: 3 / 7;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.values-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2px;
  right: 2px;
  bottom: 0;
  background: #FAFAF7;
  z-index: -1;
}

.value-card {
  padding: 36px 0 36px 30px;
  border-top: 1px solid rgba(15, 22, 32, 0.07);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 30px;
  row-gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.value-card:last-child {
  border-bottom: 1px solid rgba(15, 22, 32, 0.07);
}

.value-number {
  grid-row: 1 / 3;
  font-size: 14px;
  font-weight: 400;
  color: #B41020;
  letter-spacing: 1px;
  padding-top: 4px;
}

.value-title {
  font-size: 24px;
  font-weight: 500;
  color: #0b1b33;
}

.value-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.65);
}


/* ─── Meet the Partners Section ─── */
.team-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 50px 55px 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.team-header {
  margin-bottom: 60px;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  margin-bottom: 30px;
}

.team-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.team-tag span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-heading {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
}

.team-highlight {
  color: #70A6C8;
}

.team-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.team-card {
  background: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:nth-child(2) {
  transition-delay: 0.2s;
}

.team-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #DCF2FD;
  overflow: hidden;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 300;
  color: #1E3A6B;
  letter-spacing: 3px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-name {
  font-size: 28px;
  font-weight: 400;
  color: #0b1b33;
}

.team-role {
  font-size: 15px;
  font-weight: 500;
  color: #70A6C8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-bio {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(11, 27, 51, 0.75);
}

.team-focus {
  padding-top: 12px;
}

.team-focus-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #0b1b33;
  margin-bottom: 6px;
}

.team-focus-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(11, 27, 51, 0.65);
}

.team-links {
  display: flex;
  gap: 24px;
  padding-top: 12px;
}

.team-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: 48px;
  padding: 4px 0;
}

.team-link:hover {
  color: #70A6C8;
}

.team-link img {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.team-link:hover img {
  opacity: 1;
}


/* ─── Combined Experience Section ─── */
.experience-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 50px 55px 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  row-gap: 60px;
  align-items: start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.experience-left {
  grid-column: 1 / 3;
  padding-right: 40px;
}

.experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  margin-bottom: 30px;
}

.experience-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.experience-tag span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.experience-heading {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  margin-bottom: 30px;
}

.experience-highlight {
  color: #70A6C8;
}

.experience-intro {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(11, 27, 51, 0.75);
}

.experience-stats {
  grid-column: 3 / 7;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 222px;
  padding-left: 30px;
}

.stat-card {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(15, 22, 32, 0.07);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.1s; }
.stat-card:nth-child(3) { transition-delay: 0.2s; }
.stat-card:nth-child(4) { transition-delay: 0.3s; }

.stat-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  color: #1E3A6B;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(11, 27, 51, 0.65);
  line-height: 1.4;
}

.experience-details {
  grid-column: 3 / 7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-left: 30px;
}

.experience-col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #0b1b33;
  margin-bottom: 24px;
}

.experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-list li {
  font-size: 17px;
  font-weight: 300;
  color: rgba(11, 27, 51, 0.75);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}


/* ─── Section 07 — CTA ─── */
.section-07 {
  position: relative;
  width: 100vw;
  padding: 50px 65px 150px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: visible;
  background: #FAFAF7;
  z-index: 2;
  clip-path: inset(-9999px 0 0 0);
}

.s07-decoration {
  position: absolute;
  left: calc(50% - 633.5px);
  bottom: -150px;
  width: 1267px;
  aspect-ratio: 1550 / 678;
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}

.s07-decoration img {
  width: 100%;
  height: 100%;
  display: block;
}

.s07-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.s07-heading {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  text-align: center;
  white-space: nowrap;
}

.s07-highlight {
  color: #70A6C8;
}

.s07-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: #0b1b33;
  max-width: 625px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

.s07-body.in-view {
  opacity: 1;
  transform: translateY(0);
}

.s07-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
}

.s07-actions.in-view {
  opacity: 1;
  transform: translateY(0);
}

.s07-actions::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #b41020;
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.s07-actions:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.s07-actions > * {
  position: relative;
  z-index: 1;
}

.s07-actions:hover .btn-arrow svg {
  transform: rotate(45deg);
}

.s07-actions .btn-get-started {
  background: #b41020;
}

.s07-actions .arrow-bg {
  fill: #b41020;
}

.btn-get-started {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: #70a6c8;
  color: white;
  font-weight: 400;
  font-size: 17px;
  padding: 0 30px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: -4px;
}

.btn-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrow-bg {
  fill: #70a6c8;
}


/* ─── Section 08 — Footer ─── */
.section-08 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #0f1620;
  overflow: hidden;
  color: white;
  z-index: 0;
}

.page-hero,
.story-section {
  position: relative;
  z-index: 1;
}

.s08-vector-tl {
  position: absolute;
  top: -130px;
  left: -600px;
  width: 1267px;
  pointer-events: none;
  opacity: 0.35;
}

.s08-vector-tl img {
  width: 100%;
  height: auto;
  display: block;
}

.s08-vector-br {
  position: absolute;
  bottom: -130px;
  right: -600px;
  width: 1267px;
  pointer-events: none;
  opacity: 0.35;
}

.s08-vector-br img {
  width: 100%;
  height: auto;
  display: block;
}

.s08-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 65px 150px;
  z-index: 1;
}

.s08-cols {
  display: grid;
  grid-template-columns: 240px auto auto auto auto;
  gap: 70px;
  margin-bottom: 100px;
}

.s08-col-logo .s08-logo img {
  width: 182px;
  height: 48px;
  display: block;
}

.s08-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 30px;
}

.s08-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.s08-list a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.s08-list a:hover {
  color: rgba(255, 255, 255, 1);
}

.s08-col-contact {
  position: relative;
}

.s08-socials {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.s08-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.s08-socials a:hover {
  opacity: 0.7;
}

.s08-socials img {
  width: 100%;
  height: 100%;
  display: block;
}

.s08-address {
  font-style: normal;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: white;
  margin-bottom: 18px;
}

.s08-contact-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s08-contact-icon {
  flex-shrink: 0;
  color: white;
}

.s08-contact-item a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 0;
}

.s08-contact-item a:hover {
  opacity: 0.7;
}

.s08-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.s08-copyright {
  font-size: 15px;
  font-weight: 300;
  color: white;
}

.s08-legal {
  list-style: none;
  display: flex;
  gap: 43px;
  justify-content: center;
}

.s08-legal a {
  font-size: 15px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.s08-legal a:hover {
  opacity: 0.7;
}

.s08-credit {
  font-size: 15px;
  font-weight: 400;
  color: white;
  text-align: right;
}

.s08-credit a {
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.footer-spacer {
  height: 684px;
  width: 100%;
  pointer-events: none;
  margin-top: -20px;
}


/* ─── Hamburger button (hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: #0b1b33;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger-line:first-child { top: 19px; }
.hamburger-line:last-child { bottom: 19px; }

.nav-hamburger.is-open .hamburger-line:first-child {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.nav-hamburger.is-open .hamburger-line:last-child {
  bottom: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

/* ─── Mobile menu overlay (hidden on desktop) ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #0b1b33;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.mobile-menu-link {
  font-size: 32px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.mobile-menu-link:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #70A6C8;
  color: white;
  font-weight: 400;
  font-size: 18px;
  padding: 0 36px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.mobile-menu.is-open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   TABLET — max-width: 1024px
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Section padding */
  .story-section,
  .values-section,
  .team-section,
  .experience-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .s08-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-07 {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* Hero */
  .page-hero-content {
    left: 40px;
    width: calc(100% - 80px);
  }

  .page-hero-heading {
    font-size: 50px;
  }

  .page-hero-subtitle {
    font-size: 20px;
  }

  /* Story */
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-left {
    grid-column: 1;
    position: static;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .story-body {
    grid-column: 1;
  }

  .story-heading {
    grid-column: 1;
    font-size: 40px;
  }

  /* Values */
  .values-section {
    grid-template-columns: 1fr;
  }

  .values-left {
    grid-column: 1;
    padding-right: 0;
  }

  .values-grid {
    grid-column: 1;
  }

  .values-heading {
    font-size: 40px;
  }

  /* Team */
  .team-heading {
    font-size: 40px;
  }

  .team-card {
    padding: 35px 30px;
  }

  /* Experience */
  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-left {
    grid-column: 1;
    padding-right: 0;
  }

  .experience-stats {
    grid-column: 1;
    margin-top: 0;
    padding-left: 0;
  }

  .experience-details {
    grid-column: 1;
    padding-left: 0;
  }

  .experience-heading {
    font-size: 40px;
  }

  /* CTA */
  .s07-heading {
    font-size: 44px;
    white-space: normal;
  }

  /* Footer */
  .s08-cols {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 40px;
  }

  .s08-col-logo {
    grid-column: 1 / -1;
  }

  .footer-spacer {
    height: 900px;
  }
}


/* ═══════════════════════════════════════════
   MOBILE — max-width: 768px
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  /* Navigation: show hamburger, hide desktop links */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .fixed-nav {
    padding: 4px;
    top: 30px;
    right: 20px;
    background: transparent;
  }

  .fixed-logo {
    top: 30px;
    left: 20px;
    height: 48px;
    padding: 0 10px;
  }

  .fixed-logo img {
    width: 140px;
  }

  .fixed-logo.menu-open {
    background: transparent;
  }

  .fixed-logo.scrolled img {
    width: 110px;
  }

  .mobile-menu {
    display: block;
  }

  /* Page wrap */
  .page-wrap {
    padding: 6px 6px 0;
  }

  /* Hero */
  .page-hero {
    width: calc(100% + 12px);
    margin-left: -6px;
    height: 500px;
  }

  .page-hero-vector-dark {
    inset: auto;
    top: -20px;
    left: -2042px;
    width: 3192px;
    height: 1357px;
    transform: translateY(var(--parallax-y)) rotate(-16.42deg);
  }

  .page-hero-vector-light {
    inset: auto;
    top: 60px;
    left: -62px;
    width: 1597px;
    height: 698px;
    transform: translateY(var(--parallax-y));
  }

  .page-hero-vector-stroke {
    top: 200px;
    left: calc(50% - 699.5px);
    bottom: auto;
    width: 1399px;
    height: 612px;
    transform: translateY(var(--parallax-y));
  }

  .page-hero-content {
    left: 24px;
    bottom: 50px;
    width: calc(100% - 48px);
    gap: 20px;
  }

  .page-hero-heading {
    font-size: 36px;
  }

  .page-hero-subtitle {
    font-size: 17px;
    max-width: 100%;
  }

  /* Grid overlay — fewer lines on mobile */
  .grid-overlay {
    max-width: calc(100% - 40px);
    background-image: repeating-linear-gradient(
      to right,
      rgba(15, 22, 32, 0.07) 0,
      rgba(15, 22, 32, 0.07) 1px,
      transparent 1px,
      transparent calc((100% - 1px) / 3)
    );
  }

  /* Tags — smaller on mobile */
  .page-hero-tag span:last-child,
  .story-tag span:last-child,
  .values-tag span:last-child,
  .team-tag span:last-child,
  .experience-tag span:last-child {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .page-hero-tag,
  .story-tag,
  .values-tag,
  .team-tag,
  .experience-tag {
    padding: 8px;
    gap: 8px;
    border-radius: 6px;
  }

  .page-hero-tag-dot,
  .story-tag-dot,
  .values-tag-dot,
  .team-tag-dot,
  .experience-tag-dot {
    width: 5px;
    height: 5px;
  }

  /* Story */
  .story-section {
    padding: 60px 20px 40px;
  }

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

  .story-left {
    grid-column: 1;
    position: static;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .story-body {
    grid-column: 1;
  }

  .story-heading {
    grid-column: 1;
    font-size: 34px;
  }

  .story-body p {
    font-size: 17px;
  }

  .story-image {
    margin-top: 40px;
    height: 400px;
  }

  /* Values */
  .values-section {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .values-left {
    grid-column: 1;
    padding-right: 0;
  }

  .values-grid {
    grid-column: 1;
  }

  .values-heading {
    font-size: 34px;
  }

  .values-mission {
    font-size: 17px;
  }

  .value-card {
    padding: 28px 0 28px 20px;
    column-gap: 20px;
  }

  .value-title {
    font-size: 20px;
  }

  .value-desc {
    font-size: 15px;
  }

  /* Team */
  .team-section {
    padding: 40px 20px;
  }

  .team-heading {
    font-size: 34px;
  }

  .team-header {
    margin-bottom: 40px;
  }

  .team-profiles {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-card {
    padding: 30px 24px;
  }

  .team-name {
    font-size: 24px;
  }

  .team-bio {
    font-size: 16px;
  }

  .team-focus-text {
    font-size: 15px;
  }

  .team-links {
    flex-direction: column;
    gap: 16px;
  }

  /* Experience */
  .experience-section {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .experience-left {
    grid-column: 1;
    padding-right: 0;
  }

  .experience-stats {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-left: 0;
    gap: 30px 0;
  }

  .experience-details {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 0;
  }

  .experience-heading {
    font-size: 34px;
  }

  .experience-intro {
    font-size: 17px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stat-card {
    padding: 0 20px;
  }

  /* CTA */
  .section-07 {
    padding: 40px 20px 120px;
    overflow: hidden;
  }

  .s07-heading {
    font-size: 34px;
    white-space: normal;
  }

  .s07-body {
    font-size: 17px;
  }

  .s07-decoration {
    left: calc(50% - 400px);
    width: 800px;
  }

  /* Footer — switch from fixed to static on mobile */
  .section-08 {
    position: relative;
    z-index: 1;
  }

  .footer-spacer {
    display: none;
  }

  .s08-inner {
    padding: 80px 20px 60px;
  }

  .s08-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .s08-col-logo {
    grid-column: 1 / -1;
  }

  .s08-col-logo .s08-logo img {
    width: 140px;
    height: 37px;
  }

  .s08-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .s08-legal {
    justify-content: center;
    gap: 24px;
  }

  .s08-credit {
    text-align: center;
  }
}


/* ═══════════════════════════════════════════
   SMALL MOBILE — max-width: 480px
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .page-hero {
    height: 440px;
  }

  .page-hero-heading {
    font-size: 30px;
  }

  .page-hero-subtitle {
    font-size: 16px;
  }

  .page-hero-content {
    bottom: 40px;
    gap: 16px;
  }

  /* Story */
  .story-heading {
    font-size: 28px;
  }

  .story-body p {
    font-size: 16px;
  }

  .story-image {
    height: 300px;
  }

  /* Values */
  .values-heading {
    font-size: 28px;
  }

  .values-mission {
    font-size: 16px;
  }

  .value-title {
    font-size: 18px;
  }

  .value-desc {
    font-size: 14px;
  }

  /* Team */
  .team-heading {
    font-size: 28px;
  }

  .team-name {
    font-size: 22px;
  }

  .team-bio {
    font-size: 15px;
  }

  .team-focus-text {
    font-size: 14px;
  }

  /* Experience */
  .experience-heading {
    font-size: 28px;
  }

  .experience-intro {
    font-size: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 13px;
  }

  .experience-list li {
    font-size: 15px;
  }

  /* CTA */
  .s07-heading {
    font-size: 28px;
  }

  .s07-body {
    font-size: 16px;
  }

  .s07-inner {
    gap: 30px;
  }

  .btn-get-started {
    font-size: 15px;
    padding: 0 24px;
    height: 44px;
  }

  .btn-arrow {
    width: 44px;
    height: 44px;
  }

  /* Footer */
  .s08-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s08-col-logo {
    grid-column: 1;
  }

  .s08-address {
    font-size: 15px;
  }

  .footer-spacer {
    height: 1400px;
  }
}
