@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a2558;
  --navy-2: #123474;
  --ink: #10213f;
  --muted: #5f6f8f;
  --line: rgba(10, 37, 88, 0.12);
  --soft: #f3f7ff;
  --white: #ffffff;
  --accent: #eaf1ff;
  --shadow: 0 18px 45px rgba(8, 25, 58, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--navy-2);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: rgba(16,33,63,0.72);
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.hero {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at top right, rgba(18,52,116,0.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--navy);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  margin: 1rem 0 0;
  letter-spacing: -0.03em;
}

.lead {
  margin-top: 1.4rem;
  max-width: 44rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: white; }
.btn-secondary { background: white; color: var(--navy); border-color: var(--line); }
.btn-light { background: white; color: var(--navy); }
.btn-block { width: 100%; }
.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }

.eyebrow-link {
  color: rgba(255,255,255,0.76);
  text-decoration: underline;
}

.price-period {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.6;
}

.hero-card {
  background: linear-gradient(180deg, #eff5ff 0%, #f7faff 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-media {
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-video {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 30px rgba(8, 25, 58, 0.18);
}
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lite-youtube {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
}
.lite-youtube-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.2s;
}
.lite-youtube:hover .lite-youtube-poster,
.lite-youtube:focus-visible .lite-youtube-poster { filter: brightness(0.7); }
.lite-youtube-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.lite-youtube-play svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  transition: transform 0.2s;
}
.lite-youtube:hover .lite-youtube-play svg { transform: scale(1.08); }
.lite-youtube.lyt-loaded > img,
.lite-youtube.lyt-loaded > .lite-youtube-play { display: none; }
.lite-youtube.lyt-loaded iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  margin: 0 0 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-proof-stars {
  color: #f5a623;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}
.hero-proof-text strong {
  font-weight: 700;
  color: var(--ink);
}

.hero-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 1rem 1.05rem;
}

.stat strong { display: block; font-size: 1.45rem; color: var(--navy); }
.stat span { color: var(--muted); font-size: 0.94rem; }

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid rgba(10,37,88,0.06);
  border-bottom: 1px solid rgba(10,37,88,0.06);
}

.section-dark {
  background: linear-gradient(180deg, #0a2558 0%, #081e49 100%);
  color: white;
}

.section-dark .section-kicker,
.section-dark p,
.section-dark .muted,
.section-dark label,
.section-dark .contact-side p,
.section-dark .contact-side li,
.section-dark .contact-side a,
.section-dark .video-card p,
.section-dark .about-empty { color: rgba(255,255,255,0.78); }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0;
}

.section h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0;
}

.section-intro {
  max-width: 48rem;
  color: var(--muted);
  margin-top: 1rem;
}

.grid-3, .grid-2 {
  display: grid;
  gap: 1.5rem;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--shadow);
}

.card h3 { margin: 0 0 0.55rem; font-size: 1.24rem; }
.card p { margin: 0; color: var(--muted); }

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), white);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  color: var(--navy);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.video-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), #1d4c9f);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
}

.video-body {
  padding: 1.4rem;
}

.video-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.portfolio-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: white;
  padding: 1.7rem;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  background: linear-gradient(180deg, #0a2558 0%, #123474 100%);
  color: white;
  transform: translateY(-8px);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .price-name { color: rgba(255,255,255,0.82); }
.price-card.featured .price-tag { color: white; }
.price-card.featured .btn-primary { background: white; color: var(--navy); }

.price-tag {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.55rem;
}

.price-volume {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin: 0.4rem 0 0.6rem;
}
.price-volume strong {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.price-volume span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}
.price-card.featured .price-volume strong { color: white; }
.price-card.featured .price-volume span { color: rgba(255,255,255,0.78); }

.price-cost {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.price-card.featured .price-cost { color: white; }
.price-cost .price-period { font-size: 0.9rem; font-weight: 600; opacity: 0.7; margin-left: 0.1rem; }

.price-name { color: var(--muted); font-weight: 700; }
.price-card ul { padding-left: 1rem; margin: 1rem 0 0; }
.price-card li { margin: 0.5rem 0; color: var(--muted); }

.price-per {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.price-card.featured .price-per {
  color: #ffd66b;
  font-weight: 600;
}

.price-badge {
  display: inline-block;
  background: #ffd66b;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-lede {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  font-weight: 500;
}

.billing-toggle {
  display: flex;
  width: max-content;
  margin: 0 auto 1rem;
  background: #f1f3f8;
  border-radius: 999px;
  padding: 0.3rem;
  gap: 0.25rem;
}
.bill-btn {
  border: none;
  background: transparent;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.bill-btn.active {
  background: var(--navy);
  color: white;
}
.bill-btn:hover:not(.active) {
  color: var(--navy);
}

.pricing-soft-cta {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 2rem;
}
.pricing-soft-cta a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.price-card.featured + .price-card .pricing-soft-cta a {
  color: white;
}

.price-tag-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}
.price-old {
  font-size: 1rem;
  font-weight: 600;
  color: #c0392b;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  display: none;
}
.pricing-grid[data-billing="annual"] .price-old:not(:empty) {
  display: inline-block;
}
.price-card.featured .price-old {
  color: #ffb3a7;
}

.band {
  margin: 2rem 0 0;
  padding: 1.3rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf1ff, #f8fbff);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-side,
.form-shell {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 1.6rem;
}

.contact-side ul { padding-left: 1.1rem; }

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.92rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

input, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  padding: 0.95rem 1rem;
  font: inherit;
}

textarea { min-height: 150px; resize: vertical; }

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 28px;
  text-align: center;
  padding: 2rem;
}

.policy-card {
  max-width: 860px;
}

.small-note {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ── Form states ── */
input.field-error,
textarea.field-error {
  border-color: rgba(239, 68, 68, 0.7) !important;
  background: rgba(239, 68, 68, 0.04) !important;
}

.form-success,
.form-error {
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #86efac;
}

.form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.cf-turnstile {
  margin-top: 0.25rem;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ── Logo marquee ── */
.section-logos {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  overflow: hidden;
}

.logos-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.logos-marquee-wrap {
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.logos-marquee-wrap::before,
.logos-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logos-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 56s linear infinite;
}

.logos-track .logo-pill {
  margin-right: 1.25rem;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  white-space: nowrap;
  transition: border-color 0.22s, box-shadow 0.22s;
  cursor: default;
  min-width: 100px;
}

.logo-pill:hover {
  border-color: rgba(10,37,88,0.22);
  box-shadow: 0 4px 16px rgba(10,37,88,0.07);
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 160px;
  display: block;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.25s;
}

.logo-pill:hover .logo-img {
  filter: grayscale(0%) opacity(1);
}

.logo-pill.logo-missing {
  display: none;
}

@media (max-width: 720px) {
  .section-logos { padding: 1.75rem 0; }
  .logos-label { font-size: 0.65rem; letter-spacing: 0.18em; padding: 0 1rem; line-height: 1.4; }
  .logo-pill { padding: 0.45rem 1rem; }
  .logo-img { height: 28px; max-width: 110px; }
  .logos-track .logo-pill { margin-right: 0.75rem; }
  .logos-track { animation-duration: 44s; }
  .logos-marquee-wrap::before,
  .logos-marquee-wrap::after { width: 50px; }
}

/* ── About page ── */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  margin-top: 0.5rem;
}

.about-text .lead {
  color: rgba(255,255,255,0.78);
}

.about-text p {
  color: rgba(255,255,255,0.78);
  margin-top: 1.1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-photo {
  position: sticky;
  top: 100px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--navy-2) 0%, #0d2d68 100%);
  display: grid;
  place-items: center;
}

.about-panel {
  align-items: start;
  padding: 2rem;
  gap: 1rem;
}

.about-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-panel-title {
  margin: 0;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-panel-text {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.about-panel-points {
  display: grid;
  gap: 0.8rem;
  width: 100%;
  margin-top: 0.5rem;
}

.about-panel-point {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 0.9rem 1rem;
  font-weight: 700;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.18) brightness(1.04);
  position: relative;
  z-index: 0;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #1d4c9f 0%, #0a2558 100%);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 1;
}

.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem;
}

.about-photo-placeholder svg {
  opacity: 0.3;
}

.about-photo-placeholder span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.about-stat {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  padding: 1.1rem 1.15rem;
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}

.about-stat span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.15rem;
  display: block;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-team-strip {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-team-strip .team-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.about-team-cta {
  margin-left: auto;
  white-space: nowrap;
}

.feature-glyph {
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.feature-glyph svg { width: 26px; height: 26px; }
.about-team-strip .team-icon svg { width: 26px; height: 26px; color: var(--navy); }

.about-team-strip .team-icon.team-icon-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.section-top-0 {
  padding-top: 0;
}

.section-tight {
  padding: 4rem 0;
}

.centered-copy {
  text-align: center;
  max-width: 640px;
}

.centered-row {
  justify-content: center;
}

.notfound-section {
  padding: 8rem 0 7rem;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.notfound-section .centered-copy {
  margin-left: auto;
  margin-right: auto;
}

.notfound-code {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(7rem, 22vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 720px) {
  .notfound-section { padding: 5rem 0 4rem; min-height: 0; }
}


.about-team-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-team-strip strong {
  color: var(--ink);
}


/* ── About responsive ── */
@media (max-width: 960px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
    aspect-ratio: 4 / 3;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }


}

@media (max-width: 960px) {
  .hero-grid,
  .contact-layout,
  .grid-2,
  .grid-3,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-wrap { align-items: flex-start; padding: 1rem 0; }
  .nav-links { gap: 0.85rem 1rem; }
  .hero { padding-top: 4rem; }
  .stats { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ── Reviews ── */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-score {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}

.reviews-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.review-card-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.review-text {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.review-author strong {
  font-size: 0.9rem;
  color: var(--navy);
}

.review-author span {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-score { font-size: 2.8rem; }
}

/* ── Language switcher ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--navy);
}

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

.portfolio-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-short {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.video-short iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 520px) {
  .portfolio-videos {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.services-timeline {
  margin: 2.5rem auto 0;
  max-width: 760px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-1px);
}
.timeline-step:last-child::before { display: none; }
.timeline-step .step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}
.timeline-content {
  padding-top: 0.4rem;
}
.timeline-outcome {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--accent, #ffd66b);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.timeline-content h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.25;
}
.timeline-content p {
  color: var(--muted);
  margin: 0 0 0.85rem;
  line-height: 1.6;
}
.timeline-content ul {
  padding-left: 1.1rem;
  margin: 0;
}
.timeline-content li {
  color: var(--muted);
  margin: 0.4rem 0;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .services-timeline { padding: 0; }
  .timeline-step { grid-template-columns: 2.5rem 1fr; gap: 1rem; padding-bottom: 2rem; }
  .timeline-step::before { left: 1.25rem; top: 2.5rem; }
  .timeline-step .step-num { width: 2.5rem; height: 2.5rem; font-size: 0.85rem; }
  .timeline-content h3 { font-size: 1.15rem; }
}
