/* ============================================================
   TRENDI — styles.css
   Responsive breakpoints: 960px, 720px
   Font sizes use clamp() for smooth scaling
   CSS transitions are ONLY on hover states (GSAP-ready)
   ============================================================ */

:root {
  --navy:     #081929;
  --green:    #1FBF7A;
  --coral:    #FF6B47;
  --charcoal: #1A1A1A;
  --offwhite: #FAFAF7;
  --muted:    #6B6B6B;
  --display:  'Archivo Black', 'Arial Black', sans-serif;
  --body:     'Inter', 'Calibri', system-ui, sans-serif;
  --max-w:    1280px;
  --pad-x:    max(56px, calc((100% - var(--max-w)) / 2));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--offwhite);
  color: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ======================================
   NAV
   ====================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad-x);
  background: rgba(8, 25, 41, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 130px;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--offwhite);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { color: var(--green); opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--green);
  color: var(--navy);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--offwhite); color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#site-nav { transition: transform 0.4s ease; }
#site-nav.nav-hidden { transform: translateY(-100%); }

/* ======================================
   HERO
   ====================================== */
.hero {
  padding: 160px var(--pad-x) 100px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--offwhite);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero > *:not(.hero-canvas) {
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--offwhite);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 25px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: fit-content;
}
.hero-eyebrow .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
  vertical-align: middle;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 128px);
  line-height: 1.1;
  letter-spacing: -4px;
  color: var(--offwhite);
  max-width: 1200px;
  margin-bottom: 40px;
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: none;
}

.brand-dot::after {
  content: '';
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  background: currentColor;
  vertical-align: baseline;
  position: relative;
  margin-left: 5px;
}

.highlight .brand-dot {
  color: var(--coral);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--offwhite);
  max-width: 600px;
  margin-bottom: 48px;
  opacity: 0.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 18px 32px;
  background: var(--green);
  color: var(--navy);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--offwhite); color: var(--navy); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  padding: 18px 32px;
  background: transparent;
  color: var(--offwhite);
  border: 1.5px solid var(--green);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--offwhite); }

/* ======================================
   TRUST STRIP
   ====================================== */
.trust {
  background: var(--green);
  color: var(--navy);
  padding: 42px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.trust::before,
.trust::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 120px; height: 120px;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.trust::before { background: var(--coral); left: -40px; opacity: 0.85; }
.trust::after  { background: var(--navy); right: -40px; opacity: 0.15; }

.trust-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-prefix {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1;
}

.trust-rotator {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -1px;
}

.trust-word {
  display: inline-block;
  color: var(--offwhite);
  background: var(--navy);
  padding: 4px 14px 6px;
  border-radius: 10px;
  white-space: nowrap;
}

.trust-cursor {
  display: inline-block;
  width: 3px;
  height: 0.75em;
  background: var(--offwhite);
  margin-left: 2px;
  animation: blink 0.9s steps(1) infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

/* ======================================
   SECTION SHARED
   ====================================== */
section { padding: 120px var(--pad-x); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 20px;
}
.section-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--navy);
  max-width: 800px;
}
.section-head > p {
  font-size: 17px;
  color: var(--navy);
  opacity: 0.7;
  max-width: 600px;
}

/* ======================================
   SERVICES STORY SCROLL
   ====================================== */
.services-scroll { padding: 0; } /* override generic section rule */

.services-intro {
  padding: 120px var(--pad-x) 80px;
  background: var(--offwhite);
}

.services-stack { position: relative; }

.svc-panel {
  position: relative;
  min-height: 100vh;
  /* z-index set by GSAP */
}

.svc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  will-change: transform;
  /* transform-origin: bottom left — set by GSAP */
}

.svc-light .svc-inner { background: var(--offwhite); color: var(--navy); }
.svc-dark  .svc-inner { background: var(--navy);     color: var(--offwhite); }

.svc-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: clamp(40px, 5vw, 80px);
  padding-left: max(48px, calc((100vw - var(--max-w)) / 2));
}

.svc-right {
  position: relative;
  overflow: hidden;
}
.svc-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.svc-title {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 480px;
}

.svc-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  opacity: 0.80;
  max-width: 500px;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.svc-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.70;
}
.svc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ======================================
   ABOUT
   ====================================== */
.about {
  background: var(--offwhite);
  position: relative;
  height: 350vh;
  padding: 0;
}

.about-inner {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
  padding: 72px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
}

.about-header {
  flex-shrink: 0;
  margin-bottom: 36px;
}

.about-header .section-heading {
  color: var(--navy);
}

.about-stage {
  position: relative;
  flex: 1;
  min-height: 0;
}

.about-dot {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.about-block {
  position: absolute;
  width: 40%;
  margin: 0;
  opacity: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

.about-block--left  { left: 0; }
.about-block--right { right: 0; text-align: right; }

#about-p1          { top: 8%; }
#about-p2          { top: 28%; }
#about-p3          { top: 45%; }
#about-p4          { top: 62%; }
#about-quote-block { top: 78%; }

.about-path-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.about-quote {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.8px;
  color: var(--navy);
  padding: 20px 0 20px 20px;
  border-left: 4px solid var(--green);
}

#about-quote-block {
  top: 78%;
}

/* ======================================
   TEAM
   ====================================== */
.team {
  padding: 0;
}

.team-intro {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 1;
}

.team-intro-heading {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1.05;
  letter-spacing: -4px;
  text-align: center;
  color: var(--offwhite);
}

.team-intro-logo {
  display: block;
  width: 550px;
  height: auto;
  margin: 0 auto;
  margin-top: 10px;
}

.team-intro-word {
  display: inline-block;
}

.team-intro-word--green {
  color: var(--green);
}

.team-grid {
  display: grid;
  background: var(--navy);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
  gap: 0;
  position: relative;
  z-index: 2;
}

.team-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.team-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.team-card:hover .team-bg { transform: scale(1.04); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 25, 41, 0.72);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.team-card:hover .team-overlay { opacity: 1; }

.team-info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.team-name {
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--offwhite);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-role {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: right;
}

.team-bio {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--offwhite);
  max-width: 55%;
  opacity: 0;
  transition: opacity 0.4s ease;
  margin: 0;
}

.team-insta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: var(--offwhite);
  opacity: 0;
  transition: opacity 0.4s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-insta:hover { color: var(--green); }

.team-card:hover .team-name,
.team-card:hover .team-role,
.team-card:hover .team-bio,
.team-card:hover .team-insta { opacity: 1; }

/* ======================================
   WORK — intro + horizontal filmstrip
   ====================================== */
#work {
  background: #080f14;
  padding: 0;
}

/* — Intro panel — */
.work-intro {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 1;
}

.work-intro-headline {
  font-family: 'Archivo Black', 'Arial Black', sans-serif;
  font-size: clamp(72px, 20vw, 240px);
  line-height: 0.9;
  letter-spacing: -4px;
  text-align: center;
}

.work-intro-word--charcoal { color: var(--charcoal); }
.work-intro-word--green    { color: var(--green); }

/* — Filmstrip — */
.work-filmstrip {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.work-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.work-card {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.work-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transition: filter 0.5s ease, transform 0.6s ease;
  display: block;
}
.work-card:hover .work-card-bg {
  filter: brightness(0.65);
  transform: scale(1.03);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 20, 0.85) 0%,
    rgba(8, 15, 20, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
}

.work-card-info {
  position: absolute;
  inset: 0;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  z-index: 2;
}

.work-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.2em;
  color: #1FBF7A;
  text-transform: uppercase;
}

.work-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.work-card-cat {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ======================================
   WORK — SERVICE TAGS
   ====================================== */
.work-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-tag {
  font-family: var(--body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  cursor: default;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.work-tag:hover {
  border-color: #1FBF7A;
  color: #1FBF7A;
}

/* ======================================
   WORK — SERVICE TAG HOVER PANEL
   ====================================== */
.work-hover-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 900px;
  background: #0d1821;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #1FBF7A;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.work-hover-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* — Image area — */
.whp-image-area--single .whp-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.whp-image-area--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.whp-image-area--dual .whp-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.whp-image-area--single img,
.whp-image-area--dual img {
  height: 420px;
}

/* — Content area — */
.whp-content {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whp-label {
  font-family: var(--body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1FBF7A;
  line-height: 1;
}

.whp-headline {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.2;
  color: #ffffff;
}

.whp-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.whp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.whp-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: #1FBF7A;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ======================================
   PROCESS
   ====================================== */
.process {
  background: var(--green);
  min-height: 100vh;
  padding: 4rem var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-inner {
  display: grid;
  grid-template-columns: 3fr 2.5fr;
  gap: 0 80px;
  align-items: start;
}

.process-col-left {

  top: 40%;
  align-self: center;
}

.process-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--offwhite);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.process-heading {
  font-family: var(--display);
  font-size: clamp(80px, 3.5vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
}

/* — Card row — */
.process-cards {
  display: flex;
  width: 100%;
  height: calc(100vh - 16rem);
  gap: 8px;
}

.process-card {
  flex: 1;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /*border-right: 1px solid rgba(255, 255, 255, 0.06);*/
  border-radius: 16px ;
  outline: none;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-card:last-child { border-right: none; }
/*.process-card:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }*/

.process-cards.has-active .process-card        { flex: 0 0 64px; }
.process-cards.has-active .process-card.active { flex: 1; }

/* — Collapsed strip — */
.pcard-strip {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.process-card.active .pcard-strip { opacity: 0; }

.pcard-strip-num {
  writing-mode: vertical-lr;
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 8px;
  color: var(--green);
  text-transform: uppercase;
  user-select: none;
}

.pcard-strip-title {
  writing-mode: vertical-lr;
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 8px;
  color: var(--offwhite);
  text-transform: uppercase;
  user-select: none;
}

/* — Expanded body — */
.pcard-body {
  position: absolute;
  inset: 0;  
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0.25s;
}
.process-card.active .pcard-body {
  opacity: 1;
  pointer-events: auto;
}

.pcard-num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -3px;
  color: var(--green);
}

.pcard-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--offwhite);
}

.pcard-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}

.pcard-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}

/* ======================================
   FAQ
   ====================================== */
.faq { background: var(--navy); }
.faq .section-heading { color: var(--offwhite); }
.faq .section-tag { color: var(--green); }
.faq .section-head > p { color: var(--offwhite); opacity: 0.7; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }
.faq-item.open { background: rgba(31, 191, 122, 0.08); }

.faq-question {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.5px;
  color: var(--offwhite);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-family: var(--body);
  font-size: 28px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--green); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  padding: 0 40px;
  overflow: hidden;
  color: var(--offwhite);
  opacity: 0.8;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.4s ease;
}
.faq-item.open .faq-answer > p { padding-bottom: 32px; }
.faq-answer p {
  font-size: 16px;
  line-height: 1.65;
}
.faq-answer a {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}
.faq-answer a:hover { opacity: 0.8; }

/* ======================================
   CONTACT MODAL
   ====================================== */
.cmol {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cmol-panel {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: #081929;
  border-radius: 16px;
  padding: 56px 48px 40px;
  min-height: 400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cmol-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.cmol-progress-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
}

.cmol-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.cmol-close:hover { background: rgba(255, 255, 255, 0.16); }

.cmol-steps {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.contact-step {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 4px;
}

.contact-question {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.contact-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.contact-input:focus { border-color: var(--green); }
.contact-input::placeholder { color: rgba(255, 255, 255, 0.35); }

.contact-textarea {
  width: 100%;
  min-height: 130px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--body);
  font-size: 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.contact-textarea:focus { border-color: var(--green); }
.contact-textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
}

.contact-field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.contact-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.contact-pill:hover { border-color: rgba(255, 255, 255, 0.45); }
.contact-pill.selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
}

.cmol-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.cmol-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}
.cmol-back:hover { color: #fff; }

.cmol-cont {
  background: var(--green);
  color: var(--navy);
  font-family: var(--display);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cmol-cont:hover { background: #17a869; transform: translateY(-1px); }

.contact-final {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 20px;
}
.contact-final-icon {
  width: 64px; height: 64px;
  background: var(--green);
  color: var(--navy);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-final-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}
.contact-done-btn {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-done-btn:hover { background: rgba(255, 255, 255, 0.15); }

@media (max-width: 640px) {
  .cmol-panel { padding: 48px 24px 32px; }
}

/* ======================================
   FOOTER
   ====================================== */
footer {
  background: var(--navy);
  color: var(--offwhite);
  padding: 80px var(--pad-x) 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  width: 160px;
  margin-bottom: 20px;
}
.footer-brand p {
  opacity: 0.7;
  max-width: 340px;
  font-size: 15px;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  opacity: 0.5;
}

/* ======================================
   MODALS
   ====================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 25, 41, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--offwhite);
  border-radius: 28px;
  max-width: 880px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 56px;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--offwhite);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-close:hover { background: var(--green); color: var(--navy); transform: rotate(90deg); }

/* ======================================
   FLOATING CTA
   ====================================== */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  width: 140px;
  height: 140px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.float-cta:hover { transform: scale(1.08); }

.float-cta-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}
.float-cta-ring text {
  fill: var(--coral);
  filter: drop-shadow(0 0 2.5px rgba(255,107,71,.3));
  font-size: 16px;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.float-cta-dot {
  width: 52px;
  height: 52px;
  background: var(--coral);
  filter: drop-shadow(0 0 2.5px rgba(255,107,71,.3));
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .float-cta { width: 110px; height: 110px; }
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta-section {
  background: var(--offwhite);
  padding: 0; /* override generic section rule */
}

.cta-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 100vh;
  align-items: stretch;
  padding: 0 var(--pad-x);
  gap: 80px;
}

.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 120px 0;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.cta-headline {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
}

.cta-sub {
  font-family: var(--body);
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.55);
  max-width: 460px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.cta-btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--navy);
  font-family: var(--display);
  font-size: 15px;
  border: none;
  border-radius: 100px;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn-primary:hover { background: #17a869; transform: translateY(-2px); }

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--navy);
  border-radius: 100px;
  padding: 16px 36px;
  font-size: 15px;
  font-family: var(--body);
  transition: border-color 0.2s, transform 0.2s;
}
.cta-btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

.cta-btn-social {
  border: none;
  padding: 0;
  color: var(--green);
}

.cta-social-label {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* — Right column: vertical marquee — */
.cta-right {
  position: relative;
  overflow: hidden;
}

.cta-right::before,
.cta-right::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 28%;
  z-index: 2;
  pointer-events: none;
}
.cta-right::before {
  top: 0;
  background: linear-gradient(to bottom, var(--offwhite) 0%, transparent 100%);
}
.cta-right::after {
  bottom: 0;
  background: linear-gradient(to top, var(--offwhite) 0%, transparent 100%);
}

.cta-marquee-track {
  position: relative;
  height: 100%;
  width: 100%;
}

.cta-marquee-item {
  position: absolute;
  width: 100%;
  font-family: var(--display);
  font-size: clamp(40px, 3vw, 42px);
  color: var(--navy);
  line-height: 1.15;
  white-space: nowrap;
  animation: cta-scroll-up 14s linear infinite;
  animation-delay: calc(14s / 6 * var(--i) * -1);
  top: 100%;
}

@keyframes cta-scroll-up {
  0%   { top: 85%; opacity: 0; }
  25%   { opacity: 1; }
  50%  { opacity: 1; }
  75%  { opacity: 0; }
  100% { top: -15%; opacity: 0; }
}



/* ======================================
   RESPONSIVE — 960px
   ====================================== */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 25, 41, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 130px 24px 80px; min-height: 100svh; }
  .hero-rec { top: 88px; right: 20px; font-size: 10px; padding: 6px 12px; }
  .hero-title { letter-spacing: -2px; }

  section { padding: 80px 24px; }

  .services-intro { padding: 60px 20px 0px 20px; }
  .svc-panel { min-height: auto; padding-bottom: 0; }
  .svc-panel.svc-light { padding-bottom: 0; height: auto; }
  .svc-inner { display: flex; flex-direction: column; min-height: auto; padding-top: 20px; padding-bottom: 20px; }
  .svc-left { display: contents; }
  .svc-num   { order: 1; padding: 40px 24px 0; }
  .svc-title { order: 2; padding: 8px 24px 0; margin-bottom: 42px; }
  .svc-right { order: 3; height: 280px; margin-bottom: 24px; }
  .svc-desc  { order: 4; padding: 24px 24px 0; }
  .svc-list  { order: 5; padding: 16px 24px 48px; grid-template-columns: 1fr; }

  .about-block { width: 46%; }

  .team-intro-heading { letter-spacing: -2px; }
  .team-name { top: 24px; left: 24px; }
  .team-role { top: 24px; right: 24px; }
  .team-bio  { bottom: 24px; left: 24px; font-size: 15px; max-width: 60%; }
  .team-insta { bottom: 24px; right: 24px; }

  .process { padding: 5rem 24px; }
  .process-inner { grid-template-columns: 1fr; gap: 40px 0; }
  .process-col-left { position: static; }
  .process-cards { height: 60vh; }
  .process-cards.has-active .process-card { flex: 0 0 56px; }
  .pcard-body { padding: 40px 32px; }

  .faq-question { padding: 24px 28px; }
  .faq-answer { padding: 0 28px; }
  .faq-item.open .faq-answer > p { padding-bottom: 24px; }

  .cta-inner { grid-template-columns: 1fr; gap: 0; padding: 80px 24px; }
  .cta-right { height: 340px; align-self: auto; }
  .cta-left { padding: 0 0 60px; }

  footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .modal { padding: 40px 28px; }
}

/* ======================================
   RESPONSIVE — 720px
   ====================================== */
@media (max-width: 720px) {
  .hero { padding: 110px 20px 60px; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .trust { padding: 32px 20px; }
  .trust-wrap { gap: 12px; }

  .about {
    height: auto;
    overflow: visible;
  }
  .about-inner { padding: 64px 20px 48px; }
  .about-stage { display: flex; flex-direction: column; gap: 28px; }
  .about-block {
    position: static;
    width: 100%;
    opacity: 1;
  }
  .about-block--right { text-align: left; }
  .about-dot { display: none; }
  .about-path-svg { display: none; }

  section { padding: 64px 20px; }

  .section-head { margin-bottom: 48px; flex-direction: column; align-items: flex-start; }
  .section-head > p { max-width: 100%; }

  .svc-num   { padding: 32px 20px 0; }
  .svc-title { padding: 6px 20px 0; }
  .svc-right { height: 220px; }
  .svc-desc  { padding: 16px 20px 0; }
  .svc-list  { padding: 12px 20px 40px; }

  .team-intro { padding: 0 20px; }
  .team-intro-heading { letter-spacing: -1.5px; }
  .team-grid { grid-template-columns: 1fr; height: auto; grid-template-rows: repeat(4, 60vw); }
  .team-name { font-size: clamp(36px, 10vw, 56px); top: 20px; left: 20px; }
  .team-role { top: 20px; right: 20px; }
  .team-bio  { bottom: 20px; left: 20px; font-size: 14px; max-width: 70%; }
  .team-insta { bottom: 20px; right: 20px; }

  .process { padding: 4rem 20px; }
  .process-inner { grid-template-columns: 1fr; gap: 24px 0; }
  .process-col-left { position: static; }
  .process-cards { flex-direction: column; height: auto; }
  .process-card,
  .process-cards.has-active .process-card,
  .process-cards.has-active .process-card.active { flex: 0 0 auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pcard-strip { flex-direction: row; gap: 12px; min-height: 72px; }
  .pcard-strip-num, .pcard-strip-title { writing-mode: horizontal-tb; }
  .pcard-strip-title { font-size: 11px; }
  .pcard-body { padding: 32px 24px; position: relative; inset: auto; opacity: 0; height: 0; overflow: hidden; }
  .process-card.active .pcard-body { opacity: 1; height: auto; }
  .pcard-accent { position: static; width: 40px; height: 3px; border-radius: 2px; margin-top: 4px; }

  .faq-question { padding: 20px; font-size: 16px; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer > p { padding-bottom: 20px; }

  .cta-inner { padding: 64px 20px; }
  .cta-right { display: none; }
  .cta-actions { align-items: stretch; }
  .cta-btn-primary { text-align: center; }
  .cta-btn-ghost { justify-content: center; }
  .cta-social-row { flex-direction: column; }

  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .modal { padding: 32px 20px; }

  .stats { grid-template-columns: 1fr; gap: 24px; }
}
