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

:root {
  --bg: #f6f8fb;
  --bg-2: #ffffff;
  --bg-3: #eaeff5;
  --ink: #101828;
  --muted: #57647c;
  --blue: #1656c9;
  --blue-dim: #0d3f96;
  --orange: #e2691a;
  --orange-dim: #b8540f;
  --glass: #ffffff;
  --glass-border: rgba(16, 24, 40, 0.1);
  --shadow-soft: 0 10px 30px -14px rgba(16, 24, 40, 0.18);
  --shadow-lift: 0 24px 48px -20px rgba(16, 24, 40, 0.22);
  --font-head: "Rubik", "Heebo", sans-serif;
  --font-body: "Heebo", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

#root {
  position: relative;
  z-index: 1;
}


h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p { line-height: 1.6; color: var(--muted); }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
  cursor: none;
}

::selection {
  background: var(--blue);
  color: #fff;
}

.section {
  position: relative;
  width: 100%;
  padding: 140px 8vw;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.gradient-text {
  color: var(--blue-dim);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(120deg, var(--orange), #f0863c);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(226, 105, 26, 0.5);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--glass-border);
}

.btn:active {
  transform: scale(0.94);
}

/* custom cursor */
.cursor-dot,
.cursor-ring,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
  opacity: 0;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--blue);
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
}
.cursor-dot.hover {
  width: 9px;
  height: 9px;
  background: var(--orange);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--blue);
  box-shadow: 0 6px 20px -4px rgba(16, 24, 40, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-ring.hover {
  width: 72px;
  height: 72px;
  background: rgba(226, 105, 26, 0.08);
  border-color: var(--orange);
}

.cursor-glow {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(22, 86, 201, 0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

@media (max-width: 860px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-glow { display: none; }
  .section { padding: 90px 6vw; }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(16, 24, 40, 0.18);
  border-radius: 10px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 8vw;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav-scrolled {
  padding: 14px 8vw;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px -10px rgba(16, 24, 40, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-on-dark {
  background: linear-gradient(to bottom, rgba(9, 20, 40, 0.55) 0%, rgba(9, 20, 40, 0.25) 70%, transparent 100%);
}
.nav-on-dark .nav-logo,
.nav-on-dark .nav-links {
  color: #fff;
}
.nav-on-dark .nav-logo b { color: #8fb4f5; }
.nav-on-dark .nav-links a:hover { color: #cfe0ff; }
.nav-on-dark .nav-burger span,
.nav-on-dark .nav-burger span::before,
.nav-on-dark .nav-burger span::after {
  background: #fff;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
}

.nav-logo b { color: var(--blue); font-weight: 900; }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a { transition: color 0.25s; }
.nav-links a:hover { color: var(--blue); }

.nav-cta { padding: 12px 26px; font-size: 14px; }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  position: relative;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s;
}
.nav-burger span { top: 19px; }
.nav-burger span::before { top: -8px; }
.nav-burger span::after { top: 8px; }
.nav-burger span.open { background: transparent; }
.nav-burger span.open::before { transform: translateY(8px) rotate(45deg); }
.nav-burger span.open::after { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 18px;
  font-weight: 600;
}
.nav-mobile.open { max-height: 400px; padding-top: 26px; padding-bottom: 24px; }
.nav:has(.nav-mobile.open) {
  background: var(--bg-2);
  box-shadow: var(--shadow-lift);
}
.nav:has(.nav-mobile.open) .nav-logo,
.nav:has(.nav-mobile.open) .nav-logo b,
.nav:has(.nav-mobile.open) .nav-mobile a:not(.btn) {
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-mobile { display: flex; }
}

/* ---------- Hero (editorial photo card) ---------- */
.hero-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 84px 12px 0;
  border-radius: 32px;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 64px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 20, 40, 0.72) 0%,
    rgba(9, 20, 40, 0.5) 40%,
    rgba(9, 20, 40, 0.82) 100%
  );
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow.eyebrow {
  color: #cfe0ff;
}
.hero-eyebrow.eyebrow::before {
  background: #cfe0ff;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  font-size: clamp(38px, 6.6vw, 80px);
  letter-spacing: -0.02em;
  max-width: 920px;
  margin: 20px 0 26px;
  color: #fff;
}
.hero-title span { display: inline-block; }
.hero-title-accent { color: #8fb4f5; }

.hero-sub {
  max-width: 560px;
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-outline-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}
.hero-badge-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-float-card {
  position: absolute;
  left: 8vw;
  bottom: 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -18px rgba(9, 20, 40, 0.6);
}
.hero-float-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-float-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-float-sub {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 8vw;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 860px) {
  .hero-photo { margin: 0; margin-inline: calc(50% - 50vw); width: 100vw; padding: 110px 6vw 160px; border-radius: 0; min-height: 92vh; }
  .hero-content { align-items: center; text-align: center; }
  .hero-title { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-scroll { display: none; }
  .hero-float-card { position: static; margin: 28px auto 0; align-items: center; text-align: center; width: fit-content; }
}

/* ---------- Trust band ---------- */
.trust-band {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 120px;
}

.trust-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.trust-percent {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  gap: 4px;
}
.trust-percent span {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-dim);
}
.trust-percent p {
  font-size: 10px;
  max-width: 7em;
  color: var(--muted);
}

.trust-badge {
  display: flex;
  gap: 20px;
  max-width: 460px;
  padding: 24px 28px;
  border-radius: 22px;
}
.trust-badge-num {
  flex-shrink: 0;
  background: var(--bg-3);
  border-radius: 12px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  height: fit-content;
}
.trust-badge h3 { font-size: 18px; margin-bottom: 8px; }
.trust-badge p { font-size: 13px; }

.trust-ghost {
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  max-width: 640px;
  margin: 50px auto 0;
  text-align: center;
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-ghost-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.trust-ghost-clip {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
}
.trust-ghost-word {
  display: block;
  color: #aab4cc;
}
.trust-ghost-ink { color: var(--ink); }

.trust-cluster {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  height: 300px;
  margin: -30px auto 0;
}

.trust-cluster-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lift);
}
.trust-cluster-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-cluster-photo-0 {
  width: 190px;
  aspect-ratio: 3 / 4;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3;
}
.trust-cluster-photo-1 {
  width: 150px;
  aspect-ratio: 3 / 4;
  left: 4%;
  top: 70px;
  transform: rotate(-9deg);
  z-index: 2;
}
.trust-cluster-photo-2 {
  width: 150px;
  aspect-ratio: 3 / 4;
  right: 4%;
  top: 70px;
  transform: rotate(8deg);
  z-index: 2;
}

@media (max-width: 860px) {
  .trust-top { justify-content: center; text-align: center; }
  .trust-badge { flex-direction: column; align-items: center; text-align: center; }
  .trust-band { padding-bottom: 90px; }
  .trust-cluster { height: 240px; max-width: 340px; margin-top: 24px; }
  .trust-cluster-photo-0 { width: 150px; }
  .trust-cluster-photo-1,
  .trust-cluster-photo-2 { width: 115px; top: 60px; }
}

@media (max-width: 560px) {
  .trust-ghost-row { gap: 8px; }
}

/* ---------- Services ---------- */
.services-title {
  font-size: clamp(30px, 4.4vw, 52px);
  max-width: 700px;
  margin-bottom: 90px;
}

.service-group { margin-bottom: 70px; }

.service-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.service-heading h3 {
  font-size: clamp(22px, 2.6vw, 30px);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px 16px;
}
.service-num.amber { color: var(--orange); }

.service-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 86, 201, 0.08);
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  border-top: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.service-group:last-of-type .service-list .service-row:last-child {
  border-bottom: 1px solid var(--glass-border);
}
.service-row:hover { background: rgba(22, 86, 201, 0.03); }

.service-row-num {
  width: 34px;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}

.service-row-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 86, 201, 0.08);
  color: var(--blue);
}

.service-row-text { flex: 1; min-width: 0; }
.service-row-text h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}
.service-row-text p {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-row-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0.55;
}

@media (max-width: 640px) {
  .service-row { gap: 14px; padding: 20px 4px; }
  .service-row-icon { display: none; }
  .service-row-text p { white-space: normal; }
  .service-row-arrow { width: 36px; height: 36px; }
}

/* ---------- Showcase (two-photo results) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.showcase-intro { max-width: 380px; }
.showcase-icon-img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 24px;
}
.showcase-intro h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 20px;
}
.showcase-intro p { font-size: 15px; }

.showcase-tiles {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.showcase-tile {
  position: relative;
  flex: 1;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-3);
}
.showcase-tile-offset { margin-bottom: 32px; }
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-tile:hover img { transform: scale(1.04); }

.showcase-tile figcaption {
  position: absolute;
  inset-inline: 12px;
  bottom: 12px;
  border-radius: 14px;
  background: rgba(9, 20, 40, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.showcase-tile figcaption strong { font-size: 14px; }
.showcase-tile figcaption span { font-size: 12px; color: rgba(255, 255, 255, 0.8); }

@media (max-width: 860px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 34px; }
  .showcase-intro { max-width: none; text-align: center; }
  .showcase-icon-img { margin-inline: auto; }
  .showcase-tile-offset { margin-bottom: 0; }
}

/* ---------- Photo fan (two symmetric stacked hover-reveal rows) ---------- */
.photo-fan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 70px 50px 90px 20px;
}

.photo-fan-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 26px;
}
.photo-fan-row:nth-child(2) { margin-inline-start: 55px; }

.photo-fan-item {
  position: relative;
  flex-shrink: 0;
  width: 195px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  margin-inline-start: -88px;
  border: 4px solid #fff;
  box-shadow: 0 18px 34px -14px rgba(9, 20, 40, 0.42);
  transform: rotate(var(--rot)) translateY(0) scale(1);
  z-index: var(--z);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, z-index 0s;
  cursor: none;
}
.photo-fan-item:first-child { margin-inline-start: 0; }

.photo-fan-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-fan-item:hover {
  transform: rotate(0deg) translateY(-50px) scale(1.16);
  z-index: 50;
  box-shadow: 0 34px 58px -18px rgba(9, 20, 40, 0.55);
}

.photo-fan-caption {
  position: absolute;
  inset-inline: 10px;
  bottom: 10px;
  border-radius: 12px;
  background: rgba(9, 20, 40, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 9px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.photo-fan-caption strong { font-size: 13px; line-height: 1.25; }
.photo-fan-caption span { font-size: 11px; color: rgba(255, 255, 255, 0.75); }
.photo-fan-item:hover .photo-fan-caption { opacity: 1; }

@media (max-width: 860px) {
  .photo-fan { padding: 30px 0 30px; row-gap: 46px; }
  .photo-fan-item {
    width: 130px;
    margin-inline-start: -46px;
    transform: rotate(var(--rot)) translateY(0) scale(1);
  }
  .photo-fan-item:hover {
    transform: rotate(0deg) translateY(-22px) scale(1.15);
  }
}

/* ---------- Process (simple reveal grid) ---------- */
.process-header { margin-bottom: 60px; }
.process-header h2 { font-size: clamp(28px, 4vw, 46px); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  padding: 44px 38px;
  border-radius: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step-num {
  position: absolute;
  top: 24px;
  left: 34px;
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.07);
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 86, 201, 0.14), rgba(226, 105, 26, 0.1));
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.process-card h3 { font-size: 22px; margin-bottom: 12px; }
.process-card p { font-size: 15px; max-width: 400px; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats & Testimonials ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 100px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 22px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.stat-item-big {
  grid-column: span 2;
  justify-content: center;
  background: linear-gradient(140deg, var(--blue), var(--blue-dim));
  border-color: transparent;
  box-shadow: 0 20px 40px -18px rgba(22, 86, 201, 0.5);
}
.stat-item-big .stat-label { color: rgba(255, 255, 255, 0.85); }
.stat-item-big .stat-num,
.stat-item-big .gradient-text { color: #fff; }

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-item-big .stat-num { font-size: clamp(32px, 4vw, 48px); }

.stat-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.testimonials h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 50px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 34px 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.testimonial-card p { font-size: 15px; }

.testimonial-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  margin-top: auto;
}
.testimonial-name strong { color: var(--ink); }
.testimonial-name span { color: var(--muted); }

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

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item-big { grid-column: span 1; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-col h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 16px 0 20px; }

.contact-text { max-width: 420px; margin-bottom: 40px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

.contact-form {
  padding: 40px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  background: #f3f5f9;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  resize: none;
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border: none;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-col { text-align: center; }
  .contact-text { margin-inline: auto; }
  .contact-info-item { margin-inline: auto; }
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  margin: 12px 12px 12px;
  border-radius: 32px;
  background: var(--blue-dim);
  color: #fff;
  padding: 56px 8vw 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow-light::before { background: #8fb4f5; }

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-cta h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  margin-top: 10px;
  color: #fff;
}
.footer-cta-btn {
  background: #fff;
  color: var(--blue-dim);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col-brand { max-width: 300px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer-logo b { color: #8fb4f5; }

.footer-tag {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-top: 16px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-address a,
.footer-address span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-address a:hover { color: #8fb4f5; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-col ul a:hover { color: #8fb4f5; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.footer-legal a:hover { color: #fff; }

@media (max-width: 860px) {
  .footer { margin: 8px; border-radius: 24px; padding: 48px 6vw 28px; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-col-brand { max-width: none; grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer-columns { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: span 1; }
}

/* ---------- Service detail page ---------- */
.service-detail {
  padding-top: 140px;
}

.sd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
.sd-breadcrumb a:hover { color: var(--blue); }
.sd-breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

.sd-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 50px;
}
.sd-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--blue);
}
.sd-header h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 6px;
}

.sd-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.sd-paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 640px;
}

.sd-bullets { margin: 40px 0; }
.sd-bullets h2,
.sd-gallery h2,
.sd-related h2,
.sd-process h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.sd-bullets ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.sd-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.sd-process { margin: 44px 0; }
.sd-process ol {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.sd-process li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
}
.sd-process li:last-child { border-bottom: 1px solid var(--glass-border); }
.sd-process-num {
  flex-shrink: 0;
  width: 34px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--blue);
}
.sd-process h3 { font-size: 16px; margin-bottom: 4px; }
.sd-process p { font-size: 14px; }

.sd-gallery { margin-bottom: 40px; }
.sd-gallery-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.sd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sd-gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1.5px dashed var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(16, 24, 40, 0.02);
}

.sd-gallery-item-photo {
  position: relative;
  border: none;
  overflow: hidden;
}
.sd-gallery-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-gallery-item-photo span {
  position: absolute;
  inset-inline: 10px;
  bottom: 10px;
  border-radius: 10px;
  background: rgba(9, 20, 40, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
}

.sd-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sd-related-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.25s;
}
.sd-related-link:hover { border-color: var(--blue); color: var(--blue); }

.sd-cta {
  position: sticky;
  top: 110px;
  padding: 32px 28px;
  border-radius: 24px;
}
.sd-cta h3 { font-size: 19px; margin-bottom: 8px; }
.sd-cta p { font-size: 14px; margin-bottom: 20px; }
.sd-cta-phone {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}

.sd-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--glass-border);
  padding-top: 22px;
}
.sd-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.sd-form input,
.sd-form textarea {
  background: #f3f5f9;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  resize: none;
  transition: border-color 0.25s;
}
.sd-form input:focus,
.sd-form textarea:focus { border-color: var(--blue); }
.sd-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.sd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.sd-back:hover { color: var(--blue); }

@media (max-width: 960px) {
  .sd-grid { grid-template-columns: 1fr; }
  .sd-cta { position: static; }
  .sd-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .sd-header { flex-direction: column; align-items: flex-start; }
  .service-detail { padding-top: 120px; }
}

/* ---------- Shared secondary-page layout (About / Areas / FAQ / Projects) ---------- */
.about-page,
.areas-page,
.faq-page,
.projects-page {
  padding-top: 140px;
  max-width: 980px;
}

.about-page h1,
.areas-page h1,
.faq-page h1,
.projects-page h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  margin-bottom: 30px;
  max-width: 700px;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 34px 36px;
  border-radius: 24px;
  margin-top: 60px;
}
.about-cta h2 { font-size: 22px; margin-bottom: 8px; }
.about-cta p { font-size: 15px; margin: 0; }

@media (max-width: 640px) {
  .about-cta { flex-direction: column; text-align: center; }
}

/* ---------- About ---------- */
.about-intro {
  max-width: 700px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-intro p { font-size: 16px; }

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.about-value {
  padding: 28px 22px;
  border-radius: 20px;
}
.about-value h3 { font-size: 16px; margin: 16px 0 8px; }
.about-value p { font-size: 14px; }

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
}
.about-links a:hover { color: var(--blue); }

@media (max-width: 1100px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ---------- Service Areas ---------- */
.areas-intro { max-width: 640px; font-size: 16px; margin-bottom: 40px; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.areas-card {
  padding: 32px 26px;
  border-radius: 20px;
}
.areas-card h3 { font-size: 20px; margin: 16px 0 10px; }
.areas-card p { font-size: 14px; margin-bottom: 16px; }

@media (max-width: 640px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer p {
  overflow: hidden;
  min-height: 0;
  font-size: 15px;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer p {
  padding: 0 24px 22px;
}

/* ---------- Projects ---------- */
.projects-intro { max-width: 640px; font-size: 16px; margin-bottom: 50px; }
.projects-group { margin-bottom: 46px; }
.projects-group h2 { font-size: 20px; margin-bottom: 20px; }
.projects-grid { grid-template-columns: repeat(3, 1fr); }

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

/* ---------- Section rhythm: alternating tint + wave dividers ---------- */
.services,
.stats {
  background: var(--bg-3);
}

.section-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
  pointer-events: none;
}
.section-wave-bottom { bottom: -1px; }
.section-wave-top { top: -1px; transform: scaleY(-1); }

@media (max-width: 640px) {
  .section-wave { height: 40px; }
}

