/* ============================================================
   Big Muro — Design System  |  v20260610
   Paleta: Navy profundo + Azul Big Muro (#245CA6)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* === VARIABLES === */
:root {
  --bg:           #0c1824;
  --bg-2:         #111f2e;
  --bg-card:      #172536;
  --bg-card-2:    #1d2f42;
  --ink:          #f0ede8;
  --ink-soft:     #a8bcc8;
  --ink-mute:     #5e7a8f;
  --accent:       #245CA6;
  --accent-2:     #1a4a8a;
  --accent-glow:  rgba(36,92,166,.22);
  --line:         rgba(240,237,232,.07);
  --line-strong:  rgba(240,237,232,.14);
  --nav-h:        72px;
  --radius:       12px;
  --radius-sm:    8px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
}

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h3 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
p  { font-size: 1rem; line-height: 1.72; color: var(--ink-soft); }

.kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.kicker-accent {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === LAYOUT === */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section-pad { padding-block: clamp(4rem, 8vw, 6.5rem); }

/* Section heading block */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 52ch;
}
.section-head p { font-size: 1.05rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(36,92,166,.4);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
@media (hover: hover) {
  .btn-ghost:hover {
    border-color: rgba(36,92,166,.5);
    color: var(--accent);
    transform: translateY(-2px);
  }
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
@media (hover: hover) {
  .btn-white:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,.3);
  }
}

/* === NAV === */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  transition: background 0.45s var(--ease-out), box-shadow 0.45s;
}
.nav.is-scrolled {
  background: rgba(11,21,33,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(0,0,0,.25);
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Fallback mark if no logo image */
.nav-logo-mark {
  width: 38px; height: 38px;
  border: 2.5px solid var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: -0.06em;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }
}
.nav-links .is-active { color: var(--ink); }
.nav-links .is-active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1.25rem; }

/* Mobile hamburger */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,21,33,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 99;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 1.25rem; width: 100%; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Mobile: foto. Desktop: video */
.hero-bg-video { display: none; }
.hero-bg-img   { display: block; object-position: center 35%; }
@media (min-width: 768px) {
  .hero-bg-video { display: block; }
  .hero-bg-img   { display: none; }
}

/* Layered overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(12,24,36,.42) 0%,
      rgba(12,24,36,.78) 65%,
      rgba(12,24,36,.96) 100%),
    linear-gradient(90deg,
      rgba(12,24,36,.65) 0%,
      transparent 60%);
}

/* Mouse-reactive accent glow */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle 700px at var(--mx, 50%) var(--my, 60%),
    rgba(36,92,166,.2) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-kicker { margin-bottom: 1.4rem; color: #fff; font-size: 1rem; letter-spacing: 0.12em; }
.hero h1 { max-width: 18ch; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
  pointer-events: none;
}
.hero-scroll span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--ink-soft), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.55) translateY(8px); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 2.25rem;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
}
.trust-stat-num {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em;
}
.trust-stat-num .suffix { color: var(--accent); font-size: .75em; }
.trust-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.3rem;
}
.trust-div {
  width: 1px; height: 48px;
  background: var(--line-strong);
  flex-shrink: 0;
}

/* REPSE Badge */
.trust-repse {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.4rem;
  border: 1.5px solid rgba(36,92,166,.45);
  border-radius: var(--radius);
  background: rgba(36,92,166,.06);
  flex-shrink: 0;
}
.trust-repse-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-repse-icon svg { width: 20px; height: 20px; fill: #fff; }
.trust-repse-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-repse-text span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-quote {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.about-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.65;
}
.about-founder {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.25rem;
}
.about-founder-avatar {
  width: 44px; height: 44px;
  background: var(--bg-card-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  border: 2px solid rgba(36,92,166,.3);
  flex-shrink: 0;
}
.about-founder-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.about-founder-info span { font-size: 0.78rem; color: var(--ink-mute); font-family: 'IBM Plex Mono', monospace; }
.about-clients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-block: 0.5rem;
}
.about-clients-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.about-clients-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.about-photo {
  position: relative;
}
.about-photo {
  display: flex;
  justify-content: center;
}
.about-photo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  z-index: -1;
}

/* === CLIENTS === */
.clients { background: var(--bg-2); overflow: hidden; }
.clients-track-wrap {
  overflow: hidden;
  margin-top: 2.5rem;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.clients-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: max-content;
  animation: marquee 18s linear infinite;
}
.clients-row:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-name {
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  transition: opacity 0.25s;
  text-align: center;
}
@media (hover: hover) {
  .client-name:hover { opacity: 1; }
}

.client-logo-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
  width: clamp(120px, 18vw, 160px);
  height: 64px;
}
.client-logo-card img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (hover: hover) {
  .client-logo-card:hover { opacity: 1; transform: translateY(-2px); }
}

/* === SERVICES === */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,.35);
    border-color: rgba(36,92,166,.4);
  }
}
.service-icon {
  width: 46px; height: 46px;
  background: rgba(36,92,166,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.05rem; }
.service-card p  { font-size: 0.86rem; line-height: 1.6; color: var(--ink-mute); margin: 0; }

/* === PROCESS === */
.process { background: var(--bg-2); }
.process-steps {
  display: flex;
  align-items: flex-start;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(10% + 23px);
  right: calc(10% + 23px);
  height: 1px;
  background: var(--line-strong);
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding-inline: 0.5rem;
}
.process-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-mute);
  position: relative;
  z-index: 1;
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}
.process-step.is-active .process-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(36,92,166,.18);
}
.process-step h3 { font-size: 0.88rem; font-weight: 600; }
.process-step p  { font-size: 0.78rem; color: var(--ink-mute); max-width: 13ch; margin: 0; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.06); }
}
/* First item tall */
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(1) img { min-height: 420px; }
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img { min-height: 200px; }
.gallery-item:nth-child(4) img,
.gallery-item:nth-child(5) img { min-height: 200px; }

/* === CTA BAND === */
.cta-band {
  background: var(--accent);
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-band h2 { color: #fff; max-width: 30ch; }
.cta-band p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 48ch; }

/* === GRACIAS PAGE === */
.gracias-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 12vw, 9rem);
}
.gracias-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.gracias-icon svg {
  width: 48px;
  height: 48px;
}
.gracias-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}
.gracias-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.7;
}
.gracias-sub a { color: var(--accent); }
.gracias-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* === FOOTER === */
.footer {
  background: #07101a;
  border-top: 1px solid var(--line);
}
.footer-top {
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand-desc { font-size: 0.875rem; color: var(--ink-mute); max-width: 28ch; line-height: 1.65; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.25rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; fill: currentColor; }
@media (hover: hover) {
  .footer-social a:hover { border-color: var(--accent); color: var(--accent); }
}

.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.25rem;
}
.footer-col a { font-size: 0.875rem; color: var(--ink-soft); transition: color 0.2s; }
@media (hover: hover) {
  .footer-col a:hover { color: var(--ink); }
}
.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--accent);
}
.footer-col address p { font-size: 0.875rem; color: var(--ink-soft); }
.footer-col address a { font-size: 0.875rem; color: var(--ink-soft); transition: color 0.2s; }
@media (hover: hover) {
  .footer-col address a:hover { color: var(--accent); }
}

.footer-bottom {
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--ink-mute);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(36,92,166,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.page-hero-content { display: flex; flex-direction: column; gap: 0.9rem; max-width: 60ch; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }

/* === TESTIMONIALS === */
.testimonials-intro { max-width: 54ch; margin-top: 0.75rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
@media (hover: hover) {
  .testimonial-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
  }
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars span { color: #f59e0b; font-size: 0.88rem; }
.testimonial-quote {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink-soft);
  flex: 1;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: -0.25rem;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.testimonial-info span  { font-size: 0.76rem; color: var(--ink-mute); font-family: 'IBM Plex Mono', monospace; }

/* === PHOTOS MARQUEE === */
.photos-marquee-section { overflow: hidden; padding-bottom: 0; }
.photos-track-wrap {
  overflow: hidden;
  margin-top: 1.5rem;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.photos-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: photos-marquee 40s linear infinite;
}
.photos-track:hover { animation-play-state: paused; }
@keyframes photos-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.photo-slide {
  width: clamp(260px, 30vw, 400px);
  height: clamp(180px, 22vw, 280px);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.photo-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.photo-slide:hover img { transform: scale(1.04); }

/* === VIDEO TESTIMONIAL === */
.video-testimonial-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.video-testimonial-player {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.video-testimonial-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background 0.2s;
  cursor: pointer;
}
.video-play-btn svg {
  width: 56px; height: 56px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform 0.2s var(--ease-out);
}
.video-play-btn:hover { background: rgba(0,0,0,.2); }
.video-play-btn:hover svg { transform: scale(1.12); }
.video-play-btn.is-hidden { display: none; }
.video-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.video-testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 700px) {
  .video-testimonial-wrap { grid-template-columns: 1fr; }
}

/* === CONTACT === */
.contact-section-head {
  margin-bottom: 3rem;
}
.contact-section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-form-title {
  font-size: 0.72rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.contact-grid .contact-form { order: -1; }
.contact-grid .contact-info { order: 1; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(36,92,166,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; font-family: 'IBM Plex Mono', monospace; margin-bottom: 0.2rem; }
.contact-info-text a,
.contact-info-text p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }
@media (hover: hover) {
  .contact-info-text a:hover { color: var(--accent); }
}

.contact-zones {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.contact-zones-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.75rem;
}
.contact-zones-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.zone-tag {
  background: var(--bg-card-2);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 0.25rem; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-mute); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(36,92,166,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--ink); }
.form-submit .btn { width: 100%; margin-top: 0.25rem; padding-block: 1rem; }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* safety */

.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }
.reveal[data-delay="5"] { transition-delay: 0.35s; }
.reveal[data-delay="6"] { transition-delay: 0.42s; }

/* === PAGE FADE === */
body { animation: pageFadeIn 0.45s var(--ease-out) both; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; justify-content: center; }
  .about-photo img { width: 60%; max-width: 280px; height: auto; aspect-ratio: unset; }
  .about-photo::after { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps::before { display: none; }
  .process-steps { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .process-step { flex-direction: row; text-align: left; gap: 1rem; }
  .process-step p { max-width: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(1) img { min-height: 220px; }
  .gallery-item img { min-height: 200px; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .trust-div { display: none; }
  .trust-inner { justify-content: center; }
  .trust-repse { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .clients-row { gap: 1.5rem; }
}
