* {
  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;
}

/* Optional hero background photo (e.g. Expertise page). Framed by object-fit:
   cover; object-position keeps both men in shot across viewports. */
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor to the top: both men's heads sit ~18% down, so top-anchoring keeps
     them in shot even on ultrawide (3:1) where the crop is heaviest. */
  object-position: center top;
  z-index: 0;
}

.page-hero-photo-mobile {
  display: none;
}

/* Darken bottom-left so the white heading/subtitle stay legible over the photo. */
.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 27, 51, 0.85) 0%, rgba(11, 27, 51, 0.45) 38%, rgba(11, 27, 51, 0) 72%),
    linear-gradient(0deg, rgba(11, 27, 51, 0.75) 0%, rgba(11, 27, 51, 0) 45%);
}

/* With a photo, drop the abstract vector composition for a clean image hero. */
.page-hero--photo .page-hero-vector,
.page-hero--photo .page-hero-mark {
  display: none;
}

.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;
}

/* Large dark blue vector — covers left side */
.page-hero-vector-dark {
  inset: -41.83% 20.14% -84.33% -141.81%;
}

/* Lighter blue accent vector — right side */
.page-hero-vector-light {
  inset: 33.17% -116.04% -132.5% 26.11%;
}

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

/* Logo mark — hidden, using fixed logo instead */
.page-hero-mark {
  display: none;
}

/* Tag — inside hero content */
.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;
}

/* Content — positioned right side */
.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;
  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;
}

.page-hero-actions {
  position: absolute;
  right: 65px;
  bottom: 85px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  z-index: 3;
}

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

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

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

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

.page-hero-actions .btn-get-started {
  background: #1E3A6B;
}

.page-hero-actions .arrow-bg {
  fill: #1E3A6B;
}

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


/* ─── Services Accordion ─── */
.services-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 100px 55px 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  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);
}

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

.services-left {
  grid-column: 1 / 3;
  position: sticky;
  top: 120px;
}

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

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

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

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

.services-left-image {
  margin-top: 36px;
  margin-right: 40px;
  max-width: 100%;
}

.services-left-image img {
  display: block;
  width: 100%;
  height: auto;
}

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

.services-accordion {
  grid-column: 3 / 7;
  border-top: 1px solid rgba(15, 22, 32, 0.1);
  border-left: 1px solid rgba(15, 22, 32, 0.07);
  border-right: 1px solid rgba(15, 22, 32, 0.07);
  background: #FAFAF7;
  position: relative;
  z-index: 1;
}

.accordion-item {
  border-bottom: 1px solid rgba(15, 22, 32, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 36px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-header:hover {
  padding-left: 20px;
}

.accordion-number {
  font-size: 14px;
  font-weight: 400;
  color: #B41020;
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 30px;
}

.accordion-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  flex: 1;
  transition: color 0.3s ease;
}

.accordion-header:hover .accordion-title {
  color: #1E3A6B;
}

.accordion-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 22, 32, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1b33;
  transition: background 0.3s ease, transform 0.3s ease;
}

.accordion-header:hover .accordion-icon {
  background: rgba(15, 22, 32, 0.08);
}

.accordion-icon .icon-v {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center;
}

.accordion-item.is-open .accordion-icon .icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-item.is-open .accordion-icon {
  background: #1E3A6B;
  color: white;
}

/* Accordion body - expand/collapse */
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.is-open .accordion-body {
  grid-template-rows: 1fr;
}

.accordion-body-inner {
  overflow: hidden;
  padding: 0 10px 0 70px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0s, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.is-open .accordion-body-inner {
  padding-bottom: 50px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #1E3A6B;
  margin-bottom: 20px;
  max-width: 700px;
}

.accordion-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.7);
  margin-bottom: 35px;
  max-width: 700px;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 60px;
  max-width: 800px;
}

.service-list li {
  font-size: 16px;
  font-weight: 400;
  color: #0b1b33;
  padding-left: 20px;
  position: relative;
}

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

.services-cta {
  grid-column: 3 / 7;
  padding: 50px 10px 0;
}

.accordion-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  border-radius: 50px;
  overflow: hidden;
}

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

.accordion-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.accordion-cta > * {
  position: relative;
  z-index: 1;
}

.accordion-cta .btn-get-started {
  background: #b41020;
}

.accordion-cta .arrow-bg {
  fill: #b41020;
}

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


/* ─── How We Engage ─── */
.engage-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 100px 55px 100px;
  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);
}

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

.engage-left {
  grid-column: 1 / 7;
}

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

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

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

.engage-heading {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  margin-bottom: 25px;
}

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

.engage-intro {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.7);
  max-width: 320px;
}

.engage-cards {
  grid-column: 1 / 7;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: #FAFAF7;
  position: relative;
  z-index: 1;
}

.engage-card {
  grid-column: span 2;
  padding: 50px 40px;
  border: none;
  display: flex;
  flex-direction: column;
  min-height: 458px;
}

.engage-card:nth-child(1) {
  background: #1E3A6B;
  color: white;
}


.engage-card:nth-child(1) .engage-card-title {
  color: white;
}

.engage-card:nth-child(1) .engage-card-desc {
  color: white;
}

.engage-card:nth-child(2) {
  background: #DCF2FD;
  color: #0B1B33;
}

.engage-card:nth-child(2) .engage-card-title {
  color: #0B1B33;
}

.engage-card:nth-child(2) .engage-card-desc {
  color: rgba(11, 27, 51, 0.65);
}

.engage-card:nth-child(3) {
  background: #B41020;
  color: white;
}

.engage-card:nth-child(3) .engage-card-title {
  color: white;
}

.engage-card:nth-child(3) .engage-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.engage-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.engage-card-number {
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
}

.engage-card-icon {
  width: 100px;
  height: 100px;
}

.engage-card-icon img,
.engage-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card 1 (Fixed Fee) and Card 3 (Project) use white icons on dark/red */
.engage-card:nth-child(1) .engage-card-icon img,
.engage-card:nth-child(3) .engage-card-icon img {
  filter: brightness(0) invert(1);
}

.engage-card:nth-child(1) .engage-icon,
.engage-card:nth-child(3) .engage-icon {
  color: white;
}

/* Card 2 (Retainer) uses dark icon on light blue */
.engage-card:nth-child(2) .engage-card-icon img {
  filter: brightness(0);
}

.engage-card:nth-child(2) .engage-icon {
  color: #0B1B33;
}

/* Stroke-draw animation — Fixed Fee + Project icons */
@keyframes engage-icon-draw {
  from { stroke-dashoffset: var(--path-length); }
  to { stroke-dashoffset: 0; }
}

.engage-icon-animated .icon-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  --path-length: 500;
}

.engage-card.in-view .icon-path-1 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards; }
.engage-card.in-view .icon-path-2 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards; }
.engage-card.in-view .icon-path-3 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s forwards; }
.engage-card.in-view .icon-path-4 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.9s forwards; }
.engage-card.in-view .icon-path-5 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 1.1s forwards; }
.engage-card.in-view .icon-path-6 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 1.3s forwards; }
.engage-card.in-view .icon-path-7 { animation: engage-icon-draw 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 1.5s forwards; }

/* Rotate-in animation — Retainer icon (filled shape) */
@keyframes engage-icon-rotate-in {
  from { opacity: 0; transform: rotate(-90deg) scale(0.5); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

.engage-icon-rotate {
  opacity: 0;
  transform-origin: center;
}

.engage-card.in-view .engage-icon-rotate {
  animation: engage-icon-rotate-in 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

.engage-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.engage-card-title {
  font-size: 32px;
  font-weight: 300;
  color: #0b1b33;
  line-height: 1.15;
}

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


/* ─── FAQ Section ─── */
.faq-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 100px 55px 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  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);
}

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

.faq-left {
  grid-column: 1 / 3;
  position: sticky;
  top: 120px;
}

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

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

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

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

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

.faq-accordion {
  grid-column: 3 / 7;
  border-top: 1px solid rgba(15, 22, 32, 0.1);
  border-left: 1px solid rgba(15, 22, 32, 0.07);
  border-right: 1px solid rgba(15, 22, 32, 0.07);
  background: #FAFAF7;
  position: relative;
  z-index: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 22, 32, 0.1);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-header:hover {
  padding-left: 30px;
}

.faq-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #0b1b33;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-header:hover .faq-title {
  color: #1E3A6B;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 22, 32, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1b33;
  transition: background 0.3s ease;
}

.faq-header:hover .faq-icon {
  background: rgba(15, 22, 32, 0.08);
}

.faq-icon .icon-v {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center;
}

.faq-item.is-open .faq-icon .icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-icon {
  background: #1E3A6B;
  color: white;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
  padding: 0 20px 0 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0s, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-body-inner {
  padding-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(11, 27, 51, 0.7);
  max-width: 650px;
}


/* ─── 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;
}

.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;
}

.char-reveal {
  color: #C8CDD6;
  transition: color 0.15s ease;
}

.char-reveal.revealed {
  color: #0b1b33;
}

.s07-heading .char-reveal {
  color: #C8CDD6;
}

.s07-heading .s07-highlight .char-reveal {
  color: #C8CDD6;
}

.s07-heading .char-reveal.revealed {
  color: #0b1b33;
}

.s07-heading .s07-highlight .char-reveal.revealed {
  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,
.services-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;
}


/* ─── Intro Loader ─── */
.intro-loader {
  position: fixed;
  inset: 0;
  background: #0b1b33;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease;
}

.intro-loader.hide {
  transform: translateY(-100%);
}

.intro-loader-logo {
  width: 560px;
  height: auto;
  display: block;
  overflow: visible;
}

.intro-logo-text {
  opacity: 0;
  animation: intro-text-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.intro-logo-caret {
  opacity: 0;
  transform: translateY(-12px);
  animation: intro-caret-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes intro-text-in {
  to {
    opacity: 1;
  }
}

@keyframes intro-caret-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─── 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) {

  /* Hero */
  .page-hero-content {
    left: 40px;
    width: 700px;
  }

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

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

  .page-hero-actions {
    right: 40px;
  }

  /* Services accordion */
  .services-section {
    padding: 80px 30px;
  }

  .services-heading {
    font-size: 44px;
  }

  .accordion-title {
    font-size: 30px;
  }

  /* How We Engage */
  .engage-section {
    padding: 80px 30px;
  }

  .engage-heading {
    font-size: 44px;
  }

  .engage-card {
    padding: 35px 30px;
    min-height: 400px;
  }

  .engage-card-title {
    font-size: 28px;
  }

  .engage-card-desc {
    font-size: 16px;
  }

  /* FAQ */
  .faq-section {
    padding: 80px 30px;
  }

  .faq-heading {
    font-size: 44px;
  }

  /* Section 07 — CTA */
  .section-07 {
    padding-left: 30px;
    padding-right: 30px;
  }

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

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

  .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;
  }

  /* Swap to the portrait mobile crop; anchor to the top so heads aren't cut. */
  .page-hero-photo {
    object-position: center top;
  }

  .page-hero-photo-desktop {
    display: none;
  }

  .page-hero-photo-mobile {
    display: block;
  }

  .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%;
  }

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

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

  /* 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 */
  .services-tag span:last-child,
  .engage-tag span:last-child,
  .faq-tag span:last-child,
  .page-hero-tag span:last-child {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .services-tag,
  .engage-tag,
  .faq-tag,
  .page-hero-tag {
    padding: 8px;
    gap: 8px;
    border-radius: 6px;
  }

  .services-tag-dot,
  .engage-tag-dot,
  .faq-tag-dot,
  .page-hero-tag-dot {
    width: 5px;
    height: 5px;
  }

  /* Services accordion — stack to single column */
  .services-section {
    padding: 60px 20px;
    grid-template-columns: 1fr;
  }

  .services-left {
    grid-column: 1;
    position: static;
    margin-bottom: 40px;
  }

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

  .services-accordion {
    grid-column: 1;
    width: calc(100% - 40px);
    margin: 0 20px;
    border-left: none;
    border-right: none;
  }

  .services-accordion .accordion-item {
    position: relative;
    border-bottom: none;
  }

  .services-accordion .accordion-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background: rgba(15, 22, 32, 0.1);
  }

  .accordion-header {
    gap: 16px;
    padding: 24px 0;
  }

  .accordion-header:hover {
    padding-left: 10px;
  }

  .accordion-title {
    font-size: 22px;
  }

  .accordion-number {
    font-size: 13px;
    width: 24px;
  }

  .accordion-icon {
    width: 32px;
    height: 32px;
  }

  .accordion-icon svg {
    width: 14px;
    height: 14px;
  }

  .accordion-body-inner {
    padding: 0 0 0 40px;
  }

  .accordion-item.is-open .accordion-body-inner {
    padding-bottom: 40px;
  }

  .accordion-desc {
    font-size: 17px;
  }

  .accordion-text {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  /* How We Engage — stack cards */
  .engage-section {
    padding: 60px 20px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .engage-left {
    grid-column: 1;
  }

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

  .engage-intro {
    font-size: 16px;
    max-width: none;
  }

  .engage-cards {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .engage-card {
    grid-column: 1;
    padding: 35px 25px;
    min-height: auto;
  }

  .engage-card-top {
    margin-bottom: 30px;
  }

  .engage-card-icon {
    width: 70px;
    height: 70px;
  }

  .engage-card-title {
    font-size: 26px;
  }

  .engage-card-desc {
    font-size: 16px;
  }

  .engage-card-bottom {
    gap: 20px;
  }

  /* FAQ — stack to single column */
  .faq-section {
    padding: 60px 20px;
    grid-template-columns: 1fr;
  }

  .faq-left {
    grid-column: 1;
    position: static;
    margin-bottom: 40px;
  }

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

  .faq-accordion {
    grid-column: 1;
    width: calc(100% - 40px);
    margin: 0 20px;
    border-left: none;
    border-right: none;
  }

  .faq-accordion .faq-item {
    position: relative;
    border-bottom: none;
  }

  .faq-accordion .faq-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background: rgba(15, 22, 32, 0.1);
  }

  .faq-header {
    padding: 20px 0;
    gap: 14px;
  }

  .faq-header:hover {
    padding-left: 10px;
  }

  .faq-title {
    font-size: 17px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
  }

  .faq-body-inner {
    padding: 0 0 0 0;
  }

  .faq-item.is-open .faq-body-inner {
    padding-bottom: 24px;
  }

  .faq-body-inner p {
    font-size: 15px;
  }

  /* Section 07 — 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-heading {
    font-size: 30px;
  }

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

  .page-hero {
    height: 440px;
  }

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

  /* Services */
  .services-heading {
    font-size: 28px;
  }

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

  .accordion-desc {
    font-size: 16px;
  }

  .accordion-text {
    font-size: 15px;
  }

  .service-list li {
    font-size: 14px;
  }

  .accordion-body-inner {
    padding-left: 24px;
  }

  /* Engage */
  .engage-heading {
    font-size: 28px;
  }

  .engage-card-title {
    font-size: 24px;
  }

  .engage-card-desc {
    font-size: 15px;
  }

  /* FAQ */
  .faq-heading {
    font-size: 28px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-body-inner p {
    font-size: 14px;
  }

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

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

  .s07-inner {
    gap: 30px;
  }

  /* Buttons */
  .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;
  }
}
