/* ========================================
   LIMPIEZAS ALTAMIRANO — Bilbao · Bizkaia
   Corporativo limpio · Azul Pantone + Blanco + Gris
   ======================================== */

:root {
  /* Paleta corporativa azul/blanco/gris */
  --c-bg:           #FFFFFF;
  --c-bg-2:         #F5F7FA;     /* off-white secciones alternas */
  --c-bg-3:         #EDF1F7;     /* gris claro divisiones */
  --c-border:       #E1E7EF;
  --c-border-2:     #CDD5E0;

  --c-blue:         #003DA5;     /* Pantone 286 C — azul principal */
  --c-blue-deep:    #002A78;     /* Hover / sombras */
  --c-blue-mid:     #0057D9;     /* Botones activos */
  --c-blue-soft:    #E5EEFB;     /* Fondo highlight muy claro */
  --c-cyan:         #00A4E0;     /* Acento secundario */

  --c-ink:          #0A1F3F;     /* Tinta principal */
  --c-ink-2:        #2A3852;     /* Tinta secundaria */
  --c-ink-3:        #5A6779;     /* Captions */
  --c-ink-4:        #8A93A4;     /* Muted */

  /* Tipografía */
  --font-display:   'Fraunces', 'Source Serif Pro', Georgia, serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Tamaños fluidos */
  --fs-xs:    0.78rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --fs-2xl:   clamp(1.5rem, 1.25rem + 1.2vw, 2rem);
  --fs-3xl:   clamp(2rem, 1.6rem + 2.2vw, 3rem);
  --fs-4xl:   clamp(2.5rem, 1.8rem + 3.5vw, 4.25rem);
  --fs-5xl:   clamp(3rem, 2.2rem + 4.5vw, 5.5rem);

  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Otros */
  --radius:   6px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --maxw:     1280px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 63, 0.04), 0 1px 3px rgba(10, 31, 63, 0.06);
  --shadow-md: 0 6px 18px rgba(10, 31, 63, 0.07), 0 2px 6px rgba(10, 31, 63, 0.04);
  --shadow-lg: 0 24px 60px -10px rgba(10, 31, 63, 0.18), 0 8px 24px -8px rgba(10, 31, 63, 0.1);
  --shadow-blue: 0 14px 40px -8px rgba(0, 61, 165, 0.35);
  --duration-base: 280ms;
  --duration-slow: 600ms;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

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

/* Tipografía */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
  color: var(--c-ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: var(--fs-5xl); font-weight: 350; }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); font-weight: 500; font-family: var(--font-sans); letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-sm); color: var(--c-ink-2); }
strong { font-weight: 600; color: var(--c-ink); }

.italic { font-style: italic; }
.serif { font-family: var(--font-display); font-weight: 400; }
.accent { color: var(--c-blue); }
.underline { text-decoration: underline; text-decoration-thickness: 0.07em; text-underline-offset: 0.08em; text-decoration-color: var(--c-blue); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}
.eyebrow--ink { color: var(--c-ink-3); }
.eyebrow--white { color: rgba(255, 255, 255, 0.85); }

/* Container */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 720px) {
  .container { padding: 0 2rem; }
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: var(--space-lg) 0; }
}
.section--alt { background: var(--c-bg-2); }
.section--blue { background: var(--c-blue); color: #fff; }
.section--blue h1, .section--blue h2, .section--blue h3 { color: #fff; }
.section--blue p { color: rgba(255, 255, 255, 0.85); }
.section--dark { background: var(--c-ink); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255, 255, 255, 0.8); }

.section-head {
  max-width: 760px;
  margin: 0 auto var(--space-md);
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 0.85rem; }
.section-head p { font-size: var(--fs-lg); color: var(--c-ink-3); }
.section--blue .section-head p, .section--dark .section-head p { color: rgba(255, 255, 255, 0.75); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-base);
  letter-spacing: -0.005em;
  transition: transform var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-soft),
              box-shadow var(--duration-base) var(--ease-soft);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--c-blue-deep); box-shadow: 0 18px 50px -10px rgba(0, 61, 165, 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-border-2);
}
.btn-ghost:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.btn-white {
  background: #fff;
  color: var(--c-blue);
}
.btn-white:hover { background: var(--c-bg-2); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-outline-white:hover { background: #fff; color: var(--c-blue); border-color: #fff; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  transition: background var(--duration-base) var(--ease-soft),
              border-color var(--duration-base) var(--ease-soft),
              backdrop-filter var(--duration-base) var(--ease-soft),
              padding var(--duration-base) var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--c-border);
  padding: 0.75rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__sub { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--c-ink-3); display: block; margin-top: -2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.95rem;
  color: var(--c-ink-2);
  font-weight: 500;
  transition: color var(--duration-base) var(--ease-soft);
  position: relative;
}
.nav__link:hover { color: var(--c-blue); }
.nav__link.is-active { color: var(--c-blue); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-blue);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  margin: 5px auto;
  transition: transform var(--duration-base) var(--ease-soft),
              opacity var(--duration-base) var(--ease-soft);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    padding: 3rem;
    transform: translateY(-100%);
    transition: transform 380ms var(--ease-out);
    pointer-events: none;
  }
  .nav.is-open { transform: translateY(0); pointer-events: auto; }
  .nav__link { font-size: 1.5rem; font-family: var(--font-display); }
  body.nav-open { overflow: hidden; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  background: var(--c-bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(0, 61, 165, 0.07), transparent);
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero { min-height: auto; padding: 9rem 0 4rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hero__content h1 {
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: var(--fs-lg);
  color: var(--c-ink-3);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-md);
}
.hero__badge svg {
  width: 24px; height: 24px;
  color: var(--c-blue);
  flex-shrink: 0;
}
.hero__badge-text {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--c-ink-2);
}
.hero__badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c-ink);
  font-weight: 600;
}

.hero__trust {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hero__trust-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-blue);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero__trust-item .label {
  font-size: 0.82rem;
  color: var(--c-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Floating element */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__visual { animation: floatY 6s ease-in-out infinite; }

/* Page hero */
.page-hero {
  position: relative;
  padding: 9rem 0 4rem;
  background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg));
  border-bottom: 1px solid var(--c-border);
}
.page-hero__inner { max-width: 800px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: var(--fs-lg); color: var(--c-ink-3); max-width: 600px; }
.page-hero__crumbs {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.page-hero__crumbs a { color: var(--c-blue); }
.page-hero__crumbs a:hover { text-decoration: underline; }

/* Services grid (homepage) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out),
              border-color var(--duration-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-border-2);
}
.service-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body {
  padding: 1.85rem 1.85rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.85rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.service-card__desc { color: var(--c-ink-2); margin-bottom: 1.5rem; flex: 1; }
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}
.service-card__list li {
  font-size: 0.92rem;
  color: var(--c-ink-2);
  padding-left: 1.5rem;
  position: relative;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.7rem; height: 0.4rem;
  border-left: 2px solid var(--c-blue);
  border-bottom: 2px solid var(--c-blue);
  transform: rotate(-45deg);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-blue);
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap var(--duration-base) var(--ease-soft);
}
.service-card__link:hover { gap: 0.7rem; }
.service-card__link svg { width: 18px; height: 18px; }

/* Features (por qué) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 1.5rem 1rem 1rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}
.feature__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue-soft);
  color: var(--c-blue);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.feature p { font-size: 0.95rem; color: var(--c-ink-3); margin: 0; }

/* Proceso */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: transform var(--duration-base) var(--ease-out),
              border-color var(--duration-base);
}
.step:hover { transform: translateY(-3px); border-color: var(--c-blue); }
.section--blue .step { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); }
.section--blue .step:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.32); }
.section--blue .step h4 { color: #fff; }
.section--blue .step p { color: rgba(255, 255, 255, 0.78); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--c-blue);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.section--blue .step__num { color: var(--c-cyan); }
.step h4 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.step p { font-size: 0.9rem; margin: 0; color: var(--c-ink-3); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.8rem + 2.5vw, 4rem);
  font-weight: 350;
  color: var(--c-blue);
  display: block;
  line-height: 1;
  margin-bottom: 0.55rem;
}
.section--blue .stat__num, .section--dark .stat__num { color: #fff; }
.stat__label {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.section--blue .stat__label, .section--dark .stat__label { color: rgba(255, 255, 255, 0.7); }

/* Sectores / Zona */
.zona {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .zona { grid-template-columns: 1fr; gap: 2.5rem; } }
.zona__visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.zona__visual img { width: 100%; height: 100%; object-fit: cover; }
.zona-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}
.zona-list li {
  font-size: 0.95rem;
  color: var(--c-ink-2);
  padding-left: 1.4rem;
  position: relative;
}
.zona-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-blue);
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--c-ink);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}
.testimonial__quote::before {
  content: "“";
  font-size: 2.5rem;
  color: var(--c-blue);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}
.testimonial__name {
  font-weight: 600;
  color: var(--c-ink);
  font-size: 0.95rem;
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--c-ink-3);
  letter-spacing: 0.02em;
}

/* CTA banner */
.cta-banner {
  padding: var(--space-xl) 0;
  background: var(--c-blue);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.1), transparent);
}
.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 540px; }
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
@media (min-width: 880px) {
  .cta-banner__actions { align-items: flex-end; }
}

/* Two-column block (about) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }
.two-col--reverse > div:first-child { order: 2; }
@media (max-width: 880px) { .two-col--reverse > div:first-child { order: 1; } }
.two-col__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.two-col__img img { width: 100%; height: 100%; object-fit: cover; }

/* Inline checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  padding-left: 2rem;
  position: relative;
  color: var(--c-ink-2);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3rem;
  width: 1.25rem; height: 1.25rem;
  border-radius: 999px;
  background: var(--c-blue-soft);
  color: var(--c-blue);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 0.4rem; top: 0.6rem;
  width: 0.45rem; height: 0.22rem;
  border-left: 2px solid var(--c-blue);
  border-bottom: 2px solid var(--c-blue);
  transform: rotate(-45deg);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--c-bg-2);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.contact-info-card h3 { margin-bottom: 1.5rem; font-family: var(--font-display); }
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg {
  width: 22px; height: 22px;
  color: var(--c-blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-row__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-3);
  margin-bottom: 0.25rem;
}
.contact-row__value { color: var(--c-ink); font-weight: 500; }
.contact-row__value a:hover { color: var(--c-blue); text-decoration: underline; }

/* Form */
.form-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-row { display: flex; flex-direction: column; }
.form-row--full { grid-column: 1 / -1; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-ink-2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-row label .req { color: var(--c-blue); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 0.97rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--c-border-2);
  border-radius: 8px;
  background: var(--c-bg);
  color: var(--c-ink);
  width: 100%;
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.1);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-honey { position: absolute; left: -9999px; }
.form-check {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--c-ink-3);
  line-height: 1.5;
}
.form-check input { margin-top: 0.2rem; flex-shrink: 0; }
.form-check a { color: var(--c-blue); text-decoration: underline; }
.form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}
.form-msg {
  grid-column: 1 / -1;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  display: none;
}
.form-msg.is-success {
  display: block;
  background: var(--c-blue-soft);
  color: var(--c-blue-deep);
  border: 1px solid var(--c-blue);
}
.form-msg.is-error {
  display: block;
  background: #FFF1F1;
  color: #B11414;
  border: 1px solid #F2C7C7;
}

/* Map */
.map {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}
.legal-content h1 {
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.5rem);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  color: var(--c-ink);
}
.legal-content h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p,
.legal-content li { color: var(--c-ink-2); }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-content a { color: var(--c-blue); text-decoration: underline; }

/* Kit Digital banner */
.kit-digital {
  background: var(--c-bg-2);
  padding: 2rem 0;
  border-top: 1px solid var(--c-border);
}
.kit-digital .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kit-digital img {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  width: auto;
}

/* Footer */
.footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer__brand .brand { color: #fff; margin-bottom: 1rem; }
.footer__brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; margin-bottom: 1.5rem; max-width: 320px; }
.footer__social {
  display: flex;
  gap: 0.65rem;
}
.footer__social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: background var(--duration-base), border-color var(--duration-base);
}
.footer__social a:hover { background: var(--c-blue); border-color: var(--c-blue); }
.footer__social svg { width: 16px; height: 16px; color: #fff; }
.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.footer__links a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--duration-base);
}
.footer__links a:hover { color: #fff; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--c-cyan); flex-shrink: 0; margin-top: 0.2rem; }
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.6); }
.footer__bottom a:hover { color: #fff; text-decoration: underline; }

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity var(--duration-base), transform var(--duration-base);
  z-index: 40;
}
.scroll-top svg { width: 18px; height: 18px; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--c-blue-deep); }

/* Cookies banner */
.cookies {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 100;
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  max-width: 720px;
  margin: 0 auto;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}
.cookies.is-visible { transform: translateY(0); opacity: 1; }
.cookies p { color: rgba(255, 255, 255, 0.78); margin: 0; flex: 1; min-width: 240px; }
.cookies a { color: var(--c-cyan); text-decoration: underline; }
.cookies button {
  background: #fff;
  color: var(--c-ink);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}
.cookies button:hover { background: var(--c-bg-2); }

/* Logos band (Kit Digital and partners) */
.logos-band {
  padding: 2.5rem 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.logos-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logos-band__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-ink-3);
}
.logos-band img { max-height: 64px; width: auto; opacity: 0.85; transition: opacity var(--duration-base); }
.logos-band img:hover { opacity: 1; }

/* Decor / pattern */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: #fff;
  color: var(--c-ink-2);
}
.tag svg { width: 12px; height: 12px; vertical-align: -1px; margin-right: 0.3rem; color: var(--c-blue); }

/* Service detail hero */
.svc-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(180deg, var(--c-blue-soft), var(--c-bg));
  position: relative;
}
.svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) { .svc-hero__inner { grid-template-columns: 1fr; } }
.svc-hero__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* Spec card */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .spec-grid { grid-template-columns: 1fr; } }
.spec {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.spec h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.spec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.spec li {
  font-size: 0.92rem;
  color: var(--c-ink-2);
  padding-left: 1.5rem;
  position: relative;
}
.spec li::before {
  content: "";
  position: absolute;
  left: 0.15rem; top: 0.55rem;
  width: 0.55rem; height: 0.55rem;
  border-radius: 999px;
  background: var(--c-blue);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}
.faq details[open] {
  border-color: var(--c-blue);
  box-shadow: 0 1px 4px rgba(0, 61, 165, 0.08);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--c-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-blue);
  transition: transform var(--duration-base) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 1rem 0 0;
  color: var(--c-ink-2);
  font-size: 0.97rem;
}

/* Page transitions */
.is-fading { opacity: 0; transition: opacity 220ms ease-out; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Utility helpers */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
