/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #052415;
  --bg-dark: #0a3221;
  --bg-card: #0d3d28;
  --mint: #abffc0;
  --mint-dim: rgba(171, 255, 192, 0.12);
  --mint-glow: rgba(171, 255, 192, 0.06);
  --sage: #99b7ab;
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-pill: 9999px;
  --max-w: 1200px;
  --gap: 140px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Film-grain canvas */
.grain-canvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-family: var(--font-serif); font-style: italic; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mint); margin-bottom: 16px; text-align: center;
}
.section-eyebrow {
  font-size: 14px; font-weight: 500; color: var(--text-light); text-align: center; margin-bottom: 24px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px; text-align: center;
}
.section-subtitle {
  font-size: 17px; color: var(--text-light); max-width: 560px;
  line-height: 1.7; margin: 0 auto 56px; text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  transition: all 0.25s ease; text-decoration: none; gap: 8px; white-space: nowrap;
}
.btn--mint {
  background: var(--mint); color: var(--bg-deep); padding: 12px 28px;
}
.btn--mint:hover {
  background: #c2ffd4; transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(171,255,192,0.2);
}
.btn--ghost {
  background: transparent; color: var(--text-light); padding: 12px 28px;
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--mint); color: var(--mint); }
.btn--lg { padding: 14px 32px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  padding: 12px 0; background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: none; transition: all 0.3s;
}
.navbar.scrolled { background: transparent; border-bottom: none; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo {
  display: flex; align-items: center; line-height: 0;
}
.navbar__logo-img { height: 80px; width: auto; display: block; margin-bottom: -20px; margin-top: -10px; }
.navbar__links { display: flex; list-style: none; gap: 32px; align-items: center; }
.navbar__links a {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s; letter-spacing: 0.01em;
}
.navbar__links a:hover { color: var(--text-white); }
.navbar__cta { padding: 8px 20px; font-size: 13px; }
.navbar__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar__toggle span { display: block; width: 20px; height: 1.5px; background: var(--text-white); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; padding: 160px 0 80px; text-align: center; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--mint);
  border: 1px solid var(--mint-dim); background: var(--mint-glow);
  padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero__title {
  font-size: clamp(40px,7vw,76px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero__em { font-family: var(--font-serif); font-weight: 400; color: var(--mint); }
.hero__subtitle {
  font-size: 17px; color: var(--text-light); max-width: 580px;
  margin: 0 auto 40px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__gradient {
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(171,255,192,0.06), rgba(10,50,33,0.03) 50%, transparent 70%);
  pointer-events: none; z-index: 1;
}

/* ===== VIDEO ===== */
.video-block { padding: 0 0 80px; }
.video-placeholder {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--r-xl); width: 100%;
  display: block;
  position: relative; overflow: hidden;
}
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(171,255,192,0.03), transparent 60%);
}
.video-placeholder__play {
  width: 64px; height: 64px; border-radius: 50%; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-deep); transition: transform 0.3s, box-shadow 0.3s; position: relative; z-index: 1;
  cursor: pointer;
}
.video-placeholder__play:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(171,255,192,0.3); }

/* ===== TRUSTED MARQUEE ===== */
.trusted { padding: 80px 0; overflow: hidden; }
.trusted__marquee {
  overflow: hidden; margin-bottom: 40px;
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; gap: 20px; align-items: center;
  animation: marquee 30s linear infinite; width: max-content;
  font-size: 14px; color: var(--text-muted);
}
.marquee__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.trusted__logos { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.logo-pill {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  padding: 10px 24px; border: 1px solid var(--border); border-radius: var(--r-pill);
  transition: all 0.25s;
}
.logo-pill:hover { border-color: var(--mint); color: var(--mint); }

/* ===== IMPACT — BENTO GRID ===== */
.impact { padding: var(--gap) 0; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.bento__item {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: all 0.35s ease;
}
.bento__item:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.bento__item--hero {
  grid-column: span 4;
  text-align: center;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
}
.bento__description {
  font-size: 17px; color: var(--text-light); line-height: 1.8; max-width: 760px; margin: 0 auto;
}
.bento__stat { text-align: center; padding: 40px 20px; }
.bento__number {
  font-size: 44px; font-weight: 800; letter-spacing: -0.03em; color: var(--mint);
  display: inline;
}
.bento__prefix, .bento__suffix {
  font-size: 28px; font-weight: 700; color: var(--mint);
}
.bento__label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 8px; font-weight: 500; }

/* ===== RESULTS SHOWCASE ===== */
.showcase { padding: var(--gap) 0; }
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
  margin-top: 48px;
}
.showcase__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Bento positions */
.showcase__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.showcase__item:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.showcase__item:nth-child(3) { grid-column: 3; grid-row: 2; }
.showcase__item:nth-child(4) { grid-column: 4; grid-row: 2; }
.showcase__item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
.showcase__item:nth-child(6) { grid-column: 3 / 5; grid-row: 3; }

/* Hover spotlight: dim siblings, brighten hovered */
.showcase__grid:hover .showcase__item {
  opacity: 0.35;
  filter: blur(1px);
}
.showcase__grid:hover .showcase__item:hover {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.03);
  border-color: rgba(171,255,192,0.3);
  box-shadow: 0 0 32px rgba(171,255,192,0.1);
  z-index: 2;
}

.showcase__caption {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-light);
}
.showcase__caption span {
  color: var(--mint);
  margin-right: 6px;
}

/* ===== TIMELINE ===== */
.timeline-section { padding: var(--gap) 0 80px; }
.timeline {
  position: relative;
  margin-top: 56px;
  padding: 40px 0;
}
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
  transform: translateX(-50%);
}
.timeline__line-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--mint), rgba(171,255,192,0.4));
  border-radius: 1px;
  box-shadow: 0 0 16px rgba(171,255,192,0.25);
  transition: height 0.05s linear;
}
.timeline__step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}
.timeline__step:last-child { margin-bottom: 0; }
.timeline__content h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.18);
  transition: color 0.6s cubic-bezier(.16,1,.3,1);
}
.timeline__content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.12);
  transition: color 0.6s cubic-bezier(.16,1,.3,1);
  max-width: 380px;
}
.timeline__step[data-side="left"] .timeline__content { text-align: right; }
.timeline__step[data-side="left"] .timeline__content p { margin-left: auto; }
.timeline__step[data-side="right"] .timeline__content { text-align: left; }
.timeline__marker {
  position: relative;
  z-index: 2;
}
.timeline__marker span {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
/* Active states */
.timeline__step.active .timeline__content h3 { color: var(--text-white); }
.timeline__step.active .timeline__content p { color: var(--text-light); }
.timeline__step.active .timeline__marker span {
  background: var(--mint);
  color: var(--bg-deep);
  border-color: var(--mint);
  box-shadow: 0 0 28px rgba(171,255,192,0.3);
}
.timeline__empty { /* grid placeholder */ }

/* ===== SERVICES — EXPANDING ROWS ===== */
.services {
  padding: var(--gap) 0;
  background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.services__list { margin-top: 16px; }
.service-row {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row__header {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 0; cursor: pointer; transition: color 0.2s;
}
.service-row__header:hover { color: var(--mint); }
.service-row__header:hover .service-row__number { color: var(--mint); }
.service-row__number {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.05em; min-width: 28px; transition: color 0.2s;
}
.service-row__header h3 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em; flex-grow: 1;
}
.service-row__icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--mint-dim); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s ease;
}
.service-row:hover .service-row__icon { background: rgba(171,255,192,0.2); }
.service-row__toggle {
  color: var(--text-muted); transition: all 0.35s ease; flex-shrink: 0;
}
.service-row.open .service-row__toggle { transform: rotate(45deg); color: var(--mint); }
.service-row__body {
  max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(.16,1,.3,1), padding 0.45s ease;
  padding: 0 0 0 48px;
}
.service-row.open .service-row__body { max-height: 200px; padding: 0 0 28px 48px; }
.service-row__body p { font-size: 15px; color: var(--text-light); line-height: 1.7; max-width: 560px; }

/* ===== MID CTA ===== */
.mid-cta { padding: var(--gap) 0; }
.mid-cta__card {
  text-align: center; background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 80px 40px; position: relative; overflow: hidden;
}
.mid-cta__card::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(171,255,192,0.06), transparent 70%);
  pointer-events: none;
}
.mid-cta__card h2 {
  font-size: clamp(24px,4vw,36px); font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 32px; position: relative;
}
.mid-cta .btn { position: relative; }

/* ===== WHY US — STAGGERED ===== */
.why-us {
  padding: var(--gap) 0;
  background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.why-us__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 64px; }
.why-card {
  background: var(--bg-deep); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px; transition: all 0.35s ease;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.why-card__icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--mint-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--mint);
}
.why-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.why-us__help { text-align: center; }
.why-us__help-label { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-bottom: 16px; text-align: center; }
.help-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.help-tags span {
  font-size: 13px; font-weight: 500; color: var(--text-white);
  padding: 8px 20px; border: 1px solid var(--border); border-radius: var(--r-pill);
  background: var(--mint-glow); transition: all 0.25s;
}
.help-tags span:hover { border-color: var(--mint); color: var(--mint); }

/* ===== PROJECTS — BENTO MASONRY ===== */
.projects { padding: var(--gap) 0; }
.projects__bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto; gap: 16px; margin-top: 56px;
}
.project-card {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: all 0.35s ease; display: flex; flex-direction: column;
}
.project-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.project-card--tall { grid-row: span 2; }
.project-card--wide { grid-column: span 3; }
.project-card__tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--mint); background: var(--mint-dim);
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 16px; width: fit-content;
}
.project-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.project-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.project-card__stats { display: flex; gap: 16px; flex-wrap: wrap; }
.project-stat { display: flex; flex-direction: column; }
.project-stat strong { font-size: 18px; font-weight: 700; color: var(--mint); }
.project-stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== TESTIMONIALS — HORIZONTAL SCROLL ===== */
.testimonials { padding: var(--gap) 0; background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials__scroll {
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 48px 0 24px;
}
.testimonials__scroll::-webkit-scrollbar { display: none; }
.testimonials__track {
  display: flex; gap: 16px;
  padding: 0 max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  width: max-content;
}
.testimonial-card {
  flex: 0 0 360px; background: var(--bg-deep); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  display: flex; flex-direction: column; transition: all 0.35s ease;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testimonial-card__stars { color: var(--mint); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.7; color: var(--text-light);
  flex-grow: 1; margin-bottom: 24px; font-style: normal;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--mint-dim);
  color: var(--mint); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial-card__author span { font-size: 12px; color: var(--text-muted); }

/* ===== TEAM ===== */
.team { padding: var(--gap) 0; }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.team-card {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  transition: all 0.35s ease;
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.team-card__avatar { margin: 0 auto 20px; }
.team-card__avatar-inner {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--mint-dim); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; margin: 0 auto;
}
.team-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.team-card__role { font-size: 12px; color: var(--mint); font-weight: 500; margin-bottom: 12px; }
.team-card__bio { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing { padding: var(--gap) 0; background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; align-items: start; }
.pricing-card {
  background: var(--bg-deep); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px; position: relative;
  transition: all 0.35s ease;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.pricing-card--featured { border-color: var(--mint); background: var(--bg-card); }
.pricing-card--featured:hover { border-color: var(--mint); }
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--bg-deep); background: var(--mint);
  padding: 4px 16px; border-radius: var(--r-pill); white-space: nowrap;
}
.pricing-card__header { margin-bottom: 24px; }
.pricing-card__header h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-card__desc { font-size: 13px; color: var(--text-muted); }
.pricing-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; }
.pricing-card__amount { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.pricing-card__term { font-size: 14px; color: var(--text-muted); }
.pricing-card__features { list-style: none; margin-bottom: 28px; }
.pricing-card__features li {
  font-size: 14px; color: var(--text-light); padding: 8px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.pricing-card__features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
.pricing-card__features li:last-child { border-bottom: none; }

/* ===== FAQ ===== */
.faq { padding: var(--gap) 0; text-align: center; }
.faq__list { max-width: 680px; margin: 56px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 22px 0; font-size: 16px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--mint);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--mint); }
.faq-item p { padding: 0 0 22px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta { padding: var(--gap) 0; }
.final-cta__card {
  text-align: center; background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 100px 40px; position: relative; overflow: hidden;
}
.final-cta__card::before {
  content: ''; position: absolute; top: -250px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(171,255,192,0.06), transparent 70%);
  pointer-events: none;
}
.final-cta__title { font-size: clamp(32px,5vw,52px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; position: relative; }
.final-cta__subtitle { font-size: 17px; color: var(--text-light); margin-bottom: 40px; position: relative; }
.final-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.calendly-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.footer { padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { margin-top: 12px; font-size: 13px; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.footer__links h4 { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer__links a { display: block; font-size: 14px; color: var(--text-light); margin-bottom: 10px; transition: color 0.2s; }
.footer__links a:hover { color: var(--mint); }
.footer__bottom { border-top: 1px solid var(--border); padding: 24px 0; }
.footer__bottom p { font-size: 12px; color: var(--text-muted); }

/* ===== AUTO-HIDE NAVBAR ===== */
.navbar.nav-hidden { transform: translateY(-100%); }

/* ===== HOVER GLOW BORDER ===== */
.bento__item:hover,
.why-card:hover,
.project-card:hover,
.team-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  border-color: rgba(171,255,192,0.25);
  box-shadow: 0 0 24px rgba(171,255,192,0.07), 0 0 60px rgba(171,255,192,0.03);
}
.pricing-card--featured:hover {
  border-color: var(--mint);
  box-shadow: 0 0 32px rgba(171,255,192,0.12), 0 0 80px rgba(171,255,192,0.05);
}

/* ===== TEXT SPLIT REVEAL (letter by letter) ===== */
.split-word-wrap {
  display: inline-block;
  white-space: nowrap;
}
.split-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s cubic-bezier(.16,1,.3,1), transform 0.4s cubic-bezier(.16,1,.3,1);
}
.split-visible .split-letter {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NUMBER MORPH ===== */
.bento__number.counting {
  filter: blur(3px);
  transition: filter 0.2s;
}
.bento__number.counted {
  filter: blur(0);
  animation: numberPop 0.5s cubic-bezier(.16,1,.3,1);
}
@keyframes numberPop {
  0% { transform: scale(1.2); filter: blur(1px); }
  100% { transform: scale(1); filter: blur(0); }
}

/* ===== FLOATING ELEMENTS ===== */
.floaters {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.floater {
  position: absolute;
  border-radius: 50%;
  background: rgba(171,255,192,0.04);
  animation: floatUp linear infinite;
}
.floater--diamond {
  border-radius: 2px;
  transform: rotate(45deg);
  background: rgba(171,255,192,0.03);
}
@keyframes floatUp {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--hero { grid-column: span 2; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__item:nth-child(1) { grid-column: 1; grid-row: auto; }
  .showcase__item:nth-child(2) { grid-column: 2; grid-row: auto; }
  .showcase__item:nth-child(3) { grid-column: 1; grid-row: auto; }
  .showcase__item:nth-child(4) { grid-column: 2; grid-row: auto; }
  .showcase__item:nth-child(5) { grid-column: 1; grid-row: auto; }
  .showcase__item:nth-child(6) { grid-column: 2; grid-row: auto; }
  .services__list { margin-top: 8px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__bento { grid-template-columns: repeat(2, 1fr); }
  .project-card--wide { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  :root { --gap: 100px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,36,21,0.96); backdrop-filter: blur(24px);
    padding: 20px 24px; gap: 14px; border-bottom: 1px solid var(--border);
  }
  .hero { padding: 140px 0 60px; }
  .section-title { font-size: clamp(24px, 5vw, 36px); }
  .hero__title { font-size: clamp(30px, 7vw, 48px); }
  .final-cta__title { font-size: clamp(24px, 5vw, 36px); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--hero { grid-column: span 2; }
  .service-row__header h3 { font-size: 17px; }
  .why-us__grid { grid-template-columns: 1fr; }
  .why-card[style] { margin-top: 0 !important; }
  .projects__bento { grid-template-columns: 1fr; }
  .project-card--tall { grid-row: span 1; }
  .project-card--wide { grid-column: span 1; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .mid-cta__card, .final-cta__card { padding: 56px 24px; }
  .video-placeholder { height: 260px; }
  .timeline__step { grid-template-columns: 1fr; gap: 16px; margin-bottom: 60px; }
  .timeline__line { left: 20px; transform: none; }
  .timeline__step[data-side="left"] .timeline__content,
  .timeline__step[data-side="right"] .timeline__content { text-align: left; }
  .timeline__step[data-side="left"] .timeline__content p { margin-left: 0; }
  .timeline__step[data-side="left"] { grid-template-columns: auto 1fr; }
  .timeline__step[data-side="right"] { grid-template-columns: auto 1fr; }
  .timeline__step[data-side="left"] .timeline__content { order: 2; }
  .timeline__step[data-side="left"] .timeline__marker { order: 1; }
  .timeline__step[data-side="left"] .timeline__empty { display: none; }
  .timeline__step[data-side="right"] .timeline__empty { display: none; }
  .testimonial-card { flex: 0 0 300px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; text-align: center; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--hero { grid-column: span 1; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}
