/* ═══════════════════════════════════════════════════════════════
   NAIRO BRAND & TECH — Design System
   Swiss-inspired · Minimal · Premium · Tech-focused
═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --c-dark:        #221f32;
  --c-dark-mid:    #436072;
  --c-accent:      #83b7a6;
  --c-soft-accent: #c4e7c3;
  --c-bg-soft:     #f3f7dc;
  --c-white:       #ffffff;

  /* Semantic */
  --c-text:        #221f32;
  --c-text-2:      #436072;
  --c-text-3:      #7a8899;
  --c-border:      #e2e7ec;
  --c-border-sm:   #c9d0d8;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --fw-light:  300;
  --fw-normal: 400;
  --fw-mid:    500;
  --fw-semi:   600;
  --fw-bold:   700;

  /* Fluid Type Scale */
  --t-xxs:  clamp(0.65rem, 0.6rem + 0.2vw, 0.72rem);
  --t-xs:   clamp(0.75rem, 0.7rem + 0.22vw, 0.82rem);
  --t-sm:   clamp(0.85rem, 0.8rem + 0.25vw, 0.94rem);
  --t-base: clamp(0.95rem, 0.9rem + 0.22vw, 1.05rem);
  --t-md:   clamp(1.05rem, 0.95rem + 0.38vw, 1.2rem);
  --t-lg:   clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  --t-xl:   clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  --t-2xl:  clamp(1.5rem, 1.2rem + 1.8vw, 3.2rem);
  --t-3xl:  clamp(2.0rem, 1.5rem + 3.5vw, 5.2rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --w-max:  1280px;
  --w-pad:  clamp(1.25rem, 5vw, 3rem);
  --nav-h:  72px;

  /* Motion */
  --e-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --e-io:     cubic-bezier(0.4, 0, 0.2, 1);
  --d-fast:   140ms;
  --d-base:   260ms;
  --d-slow:   420ms;
}

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

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

body {
  font-family: var(--font);
  font-size: var(--t-base);
  font-weight: var(--fw-normal);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ─── BACKGROUND BLOBS ───────────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(243, 247, 220, 0.4) 0%, transparent 70%);
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--c-soft-accent) 0%, rgba(131, 183, 166, 0.1) 50%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.5;
  animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob--1 { top: -10%; left: -10%; background: radial-gradient(circle, var(--c-accent) 20%, transparent 70%); }
.blob--2 { bottom: -20%; right: -10%; animation-duration: 35s; animation-delay: -5s; }
.blob--3 { top: 40%; left: 50%; width: 400px; height: 400px; background: radial-gradient(circle, var(--c-bg-soft) 20%, transparent 70%); animation-duration: 30s; animation-delay: -10s; }

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.1); }
}

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--w-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--w-pad);
  position: relative;
  z-index: 1;
}

/* ─── TYPOGRAPHY TOKENS ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-5);
}

.section-label--light { color: var(--c-accent); }

.section-title {
  font-size: var(--t-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--c-dark);
}

.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.25em;
  line-height: 1.2;
}

.text-reveal .word span {
  display: inline-block;
}

/* Accent rule — decorative line under section labels */
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--c-accent);
  vertical-align: middle;
  margin-right: var(--sp-3);
}

.section-header {
  margin-bottom: var(--sp-16);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.03em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: 2px;
  transition: background-color var(--d-base) var(--e-out),
              border-color var(--d-base) var(--e-out),
              color var(--d-base) var(--e-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-dark);
  color: var(--c-white);
  border: 1.5px solid var(--c-dark);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-dark-mid);
  border-color: var(--c-dark-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(34,31,50,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid var(--c-border-sm);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--c-dark);
}

.btn--block { width: 100%; }

.btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.btn__arrow {
  transition: transform var(--d-base) var(--e-out);
}
.btn--outline:hover .btn__arrow { transform: translateX(4px); }

/* Loading state */
.btn__loading { display: none; }
.btn.is-loading .btn__text { display: none; }
.btn.is-loading .btn__loading { display: inline; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-base) var(--e-out),
              background var(--d-base) var(--e-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--c-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-8);
}

.nav__logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transition: transform var(--d-base) var(--e-out);
}

.nav__logo:hover .nav__logo-wrapper {
  transform: translateY(-1px);
}

.nav__logo-symbol {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  height: 24px;
  width: auto;
  object-fit: contain;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .nav__logo-text {
    display: none; /* Hide brand text on mobile to save space for CTA */
  }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-size: var(--t-sm);
  font-weight: var(--fw-mid);
  color: var(--c-text-2);
  letter-spacing: 0.01em;
  transition: color var(--d-fast) var(--e-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--c-accent);
  transition: right var(--d-base) var(--e-out);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--c-dark);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  right: 0;
}

.nav__link--cta {
  background: var(--c-dark);
  color: var(--c-white);
  padding: var(--sp-2) var(--sp-5);
  border-radius: 2px;
  transition: background var(--d-base) var(--e-out);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  color: var(--c-white);
  background: var(--c-dark-mid);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dark);
  transition: transform var(--d-base) var(--e-out),
              opacity var(--d-base) var(--e-out);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--c-white);
  overflow: hidden;
}

/* Subtle dot grid background */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(34,31,50,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-24);
}

/* Hero left text */
.hero__left {
  max-width: 720px;
}

.hero__logo-brand {
  margin-bottom: var(--sp-12);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.hero__logo-brand img {
  height: clamp(110px, 12vw + 30px, 180px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-6);
}

.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--c-accent);
  opacity: 0.6;
}

.hero__heading {
  font-size: var(--t-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--c-dark);
  margin-bottom: var(--sp-6);
}

.hero__heading-accent {
  color: var(--c-dark-mid);
  font-style: italic;
  display: inline-block;
  white-space: nowrap;
  vertical-align: bottom;
}

.hero__sub {
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  color: var(--c-text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-10);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Hero right decorative brand element - Suppressed to prioritize primary logo */
.hero__brand-decor {
  display: none !important;
}

.hero__decor-img {
  max-width: none;
  width: 125%;
  transform: rotate(0deg);
}

@keyframes floatDecor {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, 3%) rotate(1deg); }
  66% { transform: translate(-1%, 2%) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Hero right column: logo + diagram */
.hero__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-8);
}

.hero__diagram {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero__diagram-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--c-border);
}

.hero__diagram-ring--lg {
  width: 320px;
  height: 320px;
  border-color: rgba(67,96,114,0.14);
  animation: spin 60s linear infinite;
}

.hero__diagram-ring--md {
  width: 220px;
  height: 220px;
  border-color: rgba(67,96,114,0.2);
  animation: spin-rev 40s linear infinite;
}

.hero__diagram-ring--sm {
  width: 120px;
  height: 120px;
  border-color: var(--c-accent);
  border-width: 2px;
  background: rgba(131,183,166,0.14);
}

.hero__diagram-nodes {
  position: absolute;
  inset: 0;
}

.hnode {
  position: absolute;
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-dark-mid);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: var(--sp-2) var(--sp-3);
  border-radius: 2px;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-rev {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Position nodes around the circle */
.hnode--brand    { top: 8%;   left: 50%; transform: translateX(-50%); color: var(--c-dark); border-color: var(--c-accent); }
.hnode--tech     { top: 50%;  right: 4%; transform: translateY(-50%); }
.hnode--strategy { bottom: 8%; left: 50%; transform: translateX(-50%); }
.hnode--data     { top: 50%;  left: 4%; transform: translateY(-50%); }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--c-border-sm);
  animation: scrollLine 2s var(--e-io) infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__scroll-label {
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

/* ─── METRICS ────────────────────────────────────────────────── */
.metrics {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-10);
}

.metrics__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.metrics__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-10);
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.metrics__number {
  font-size: var(--t-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-accent);
}

.metrics__label {
  font-size: var(--t-xxs);
  font-weight: var(--fw-mid);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-2);
}

.metrics__sep {
  width: 1px;
  height: 36px;
  background: var(--c-border-sm);
  flex-shrink: 0;
}

/* ─── CLIENTS / SUCCESS STORIES ──────────────────────────────── */
.clients {
  padding-block: var(--sp-32);
  background: var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-16);
}

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

.client-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.07);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.13);
}

.client-card__content {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Visual panel: top square block ── */
.client-card__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
  flex-shrink: 0;
}

/* Photo-fill (Notarías, Tensho) */
.client-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1),
              opacity 0.3s ease;
  opacity: 0.75;
}
.client-card:hover .client-photo-img {
  transform: scale(1.06);
  opacity: 0.9;
}

/* Logo-on-white (DentaLoth PNG) */
.client-card__visual--logo {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.client-brand-img {
  max-width: 75%;
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.client-card:hover .client-brand-img {
  transform: scale(1.05);
}

.client-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--e-out);
}

.client-card:hover .client-logo {
  transform: scale(1.05);
}
.client-card__tag {
  font-size: var(--t-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}

.client-card__name {
  font-size: var(--t-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-6);
  line-height: 1.2;
}

.client-card__desc {
  font-size: var(--t-md);
  color: var(--c-text-soft);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.client-card__badges,
.client-card__stats {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: auto;
}

.client-card__badges li {
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--rd-full);
  font-size: var(--t-xs);
  font-weight: var(--fw-mid);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: var(--t-lg);
  font-weight: var(--fw-bold);
  color: var(--c-dark);
}

.stat-lbl {
  font-size: var(--t-xs);
  text-transform: uppercase;
  color: var(--c-text-soft);
}

/* Legal Decor */
.legal-decor span {
  display: block;
  font-family: var(--f-base);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}

/* Music Decor */
.music-decor {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  height: 60px;
}

.wave {
  width: 12px;
  height: 40px;
  background: var(--c-accent);
  animation: waveAnim 1s infinite alternate;
}

.wave:nth-child(2) { animation-delay: 0.2s; height: 60px; }
.wave:nth-child(3) { animation-delay: 0.4s; height: 30px; }

@keyframes waveAnim {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1.2); }
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  padding-block: var(--sp-32);
  background: var(--c-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}

.svc-card:nth-child(5) {
  grid-column: span 2;
}

.svc-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--sp-12) var(--sp-10);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background var(--d-slow) var(--e-out),
              border-color var(--d-slow) var(--e-out),
              transform var(--d-base) var(--e-out),
              box-shadow var(--d-base) var(--e-out);
  cursor: default;
  border-left: 3px solid transparent;
  border-top: 1px solid rgba(255,255,255,0.4);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.1);
  z-index: 10;
}

.svc-card:nth-child(odd)  { border-left-color: var(--c-accent); }
.svc-card:nth-child(even) { border-left-color: var(--c-dark-mid); }

.svc-card:hover,
.svc-card:focus-within {
  background: var(--c-bg-soft);
  outline: none;
}

.svc-card:hover .svc-card__num { color: var(--c-accent); }

.svc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}

.svc-card__num {
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  color: var(--c-border-sm);
  transition: color var(--d-base) var(--e-out);
}

.svc-card__icon {
  color: var(--c-accent);
  transition: transform var(--d-base) var(--e-out);
}

.svc-card:hover .svc-card__icon { 
  transform: scale(1.15) rotate(5deg);
  color: var(--c-dark);
}

.svc-card__title {
  font-size: var(--t-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}

.svc-card__desc {
  font-size: var(--t-sm);
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.svc-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
  margin-bottom: var(--sp-8);
}

.svc-card__list li {
  font-size: var(--t-sm);
  color: var(--c-text-3);
  padding-left: var(--sp-5);
  position: relative;
}

.svc-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-size: 0.72em;
  top: 0.2em;
}

.svc-card__footer {
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-6);
  margin-top: auto;
}

.svc-card__cta {
  font-size: var(--t-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  color: var(--c-dark-mid);
  transition: color var(--d-fast) var(--e-out),
              letter-spacing var(--d-base) var(--e-out);
}

.svc-card__cta:hover {
  color: var(--c-dark);
  letter-spacing: 0.06em;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding-block: var(--sp-32);
  background: var(--c-dark);
  border-top: none;
  border-bottom: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-20);
  align-items: start;
}

.about__meta {
  padding-top: var(--sp-2);
  position: relative;
}

.about .section-label { color: var(--c-accent); }

.about__rule {
  margin-top: var(--sp-6);
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  opacity: 0.7;
}

.about__heading {
  font-size: var(--t-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--c-white);
  margin-bottom: var(--sp-8);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.about__text p {
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}

.about__pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-5);
  align-items: start;
  background: var(--c-dark);
  padding: var(--sp-6) var(--sp-6);
  transition: background var(--d-base) var(--e-out);
}

.about__pillar:hover { background: #2b2740; }

.about__pillar-marker {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 0.45em;
  flex-shrink: 0;
}

.about__pillar strong {
  display: block;
  font-size: var(--t-sm);
  font-weight: var(--fw-semi);
  color: var(--c-white);
  margin-bottom: var(--sp-1);
}

.about__pillar p {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── VISION ─────────────────────────────────────────────────── */
.vision {
  padding-block: var(--sp-32);
  background: var(--c-dark);
}

.vision .section-label { color: var(--c-accent); }

.vision .section-title { color: var(--c-white); }

.vision__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  margin-bottom: var(--sp-16);
}

.vision__header .section-title {
  margin-top: var(--sp-4);
}

.vision__intro-text {
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

/* Vision blocks — horizontal rule list */
.vision__blocks {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}

.vision__block {
  background: var(--c-dark);
  padding: var(--sp-8) var(--sp-10);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-8);
  align-items: start;
  position: relative;
  transition: background var(--d-base) var(--e-out);
}

.vision__block:hover { background: #2b2740; }

.vision__block-accent {
  position: absolute;
  left: 0;
  top: var(--sp-8);
  bottom: var(--sp-8);
  width: 2px;
  background: var(--c-accent);
}

.vision__block-num {
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  color: var(--c-accent);
  padding-top: var(--sp-1);
}

.vision__block h3 {
  font-size: var(--t-md);
  font-weight: var(--fw-semi);
  letter-spacing: -0.015em;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.vision__block p {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── SYSTEMS / SAAS ─────────────────────────────────────────── */
.systems {
  padding-block: var(--sp-32);
  background: #1a1728;
  border-top: 2px solid var(--c-accent);
}

.systems__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  margin-bottom: var(--sp-16);
}

.systems__title {
  font-size: var(--t-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--c-white);
  margin-top: var(--sp-4);
}

.systems__intro {
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  padding-top: 2.5rem; /* align with heading baseline roughly */
}

.systems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}

.sys-card {
  background: var(--c-dark);
  padding: var(--sp-10) var(--sp-8);
  transition: background var(--d-base) var(--e-out);
}

.sys-card:hover { background: #2b2740; }

.sys-card__badge {
  display: inline-block;
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(131,183,166,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 2px;
  margin-bottom: var(--sp-6);
}

.sys-card__badge--soon  { color: var(--c-soft-accent); background: rgba(196,231,195,0.1); }
.sys-card__badge--vision { color: var(--c-bg-soft); background: rgba(243,247,220,0.08); }

.sys-card__title {
  font-size: var(--t-lg);
  font-weight: var(--fw-semi);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}

.sys-card__desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.sys-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.sys-card__tags span {
  font-size: var(--t-xxs);
  font-weight: var(--fw-mid);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 2px;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact {
  padding-block: var(--sp-32);
  background: var(--c-white);
  border-top: 4px solid var(--c-accent);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-24);
  align-items: start;
}

.contact__heading {
  font-size: var(--t-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-dark);
  margin-block: var(--sp-5) var(--sp-5);
}

.contact__sub {
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  color: var(--c-text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-10);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.contact__detail-label {
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

.contact__detail-value {
  font-size: var(--t-base);
  font-weight: var(--fw-mid);
  color: var(--c-dark);
  transition: color var(--d-fast) var(--e-out);
}

a.contact__detail-value:hover { color: var(--c-accent); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-text-2);
}

.form-input {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--t-sm);
  color: var(--c-dark);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 2px;
  outline: none;
  appearance: none;
  transition: border-color var(--d-fast) var(--e-out);
}

.form-input::placeholder { color: var(--c-text-3); }

.form-input:focus { border-color: var(--c-dark); }

.form-input:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.form-input.is-invalid { border-color: #d04040; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23436072' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: var(--t-xs);
  color: var(--c-text-3);
  text-align: center;
  margin-top: var(--sp-2);
  transition: color var(--d-base) var(--e-out);
}

.form-note.is-success {
  color: var(--c-accent);
  font-weight: var(--fw-mid);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-dark);
  padding-block: var(--sp-20) var(--sp-8);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: var(--t-xxs);
  font-weight: var(--fw-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer__nav {
  display: flex;
  gap: var(--sp-16);
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__nav-title {
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: var(--sp-1);
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__nav-col a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--d-fast) var(--e-out);
}

.footer__nav-col a:hover { color: var(--c-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer__bottom span {
  font-size: var(--t-xxs);
  color: rgba(255,255,255,0.28);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 1; /* Fallback for no-js */
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) skewY(0);
}

.js-enabled .reveal--slide-up { transform: translateY(80px); }
.js-enabled .reveal--slide-down { transform: translateY(-80px); }
.js-enabled .reveal--slide-left { transform: translateX(80px); }
.js-enabled .reveal--slide-right { transform: translateX(-80px); }
.js-enabled .reveal--scale { transform: scale(0.9); }
.js-enabled .reveal--skew { transform: skewY(5deg) translateY(60px); opacity: 0; }

.js-enabled .reveal.is-visible.reveal--skew { transform: skewY(0) translateY(0); opacity: 1; }

.reveal-d1 { transition-delay: 100ms; }
.reveal-d2 { transition-delay: 200ms; }
.reveal-d3 { transition-delay: 300ms; }
.reveal-d4 { transition-delay: 400ms; }
.reveal-d5 { transition-delay: 500ms; }

/* ─── CUSTOM SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--c-white);
}

::-webkit-scrollbar-thumb {
  background: var(--c-border-sm);
  border-radius: 10px;
  border: 2px solid var(--c-white);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-dark-mid);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* ── Large tablet (< 1100px): Stack hero ── */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    padding-block: var(--sp-16);
  }

  /* Logo column goes to the TOP on tablet/mobile */
  .hero__right {
    order: -1;
    width: 100%;
    justify-content: center;
    gap: var(--sp-4);
  }

  .hero__logo-brand img {
    height: clamp(130px, 22vw, 220px);
  }

  /* Keep diagram smaller on tablet */
  .hero__diagram {
    transform: scale(0.7);
    transform-origin: center;
  }

  .hero__left {
    max-width: 100%;
    text-align: left;
  }

  .systems__header {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .systems__intro { padding-top: 0; }

  .systems__grid {
    grid-template-columns: 1fr;
  }

  .vision__header {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ── Tablet (< 900px) ── */
@media (max-width: 900px) {
  /* Services: 1-column to eliminate overflow */
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  /* The 5th card span reset */
  .svc-card:nth-child(5) {
    grid-column: 1;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .footer__top {
    flex-direction: column;
    gap: var(--sp-10);
  }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 768px) {
  /* ─ Mobile nav ─ */
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4) 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--d-base) var(--e-out),
                opacity var(--d-base) var(--e-out);
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    display: block;
    padding: var(--sp-4) var(--w-pad);
    font-size: var(--t-base);
    border-bottom: 1px solid var(--c-border);
  }

  .nav__link::after { display: none; }

  .nav__link--cta {
    margin: var(--sp-4) var(--w-pad) 0;
    text-align: center;
    display: block;
    border-bottom: none;
  }

  .nav__toggle { display: flex; }

  /* Hide diagram on mobile — logo + text should be immediately visible */
  .hero__diagram {
    display: none;
  }

  /* Make logo bigger on mobile for maximum impact */
  .hero__logo-brand img {
    height: clamp(160px, 45vw, 280px);
  }

  /* ─ Hero mobile ─ */
  .hero__heading-accent {
    white-space: normal;
    display: block;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ─ Metrics ─ */
  .metrics__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .metrics__sep { display: none; }

  /* ─ Form ─ */
  .form-row { grid-template-columns: 1fr; }

  /* ─ Footer ─ */
  .footer__nav { flex-direction: column; gap: var(--sp-8); }

  /* ─ Spacing tokens ─ */
  :root {
    --sp-32: 5rem;
    --sp-24: 4rem;
    --sp-20: 3.5rem;
  }
}

/* ── Small mobile (< 480px) ── */
@media (max-width: 480px) {
  .metrics__stat { padding: var(--sp-4); }
  .svc-card { padding: var(--sp-8) var(--sp-6); }
  .vision__block { grid-template-columns: 1fr; gap: var(--sp-3); }
  .vision__block-num { display: none; }
  .sys-card { padding: var(--sp-8) var(--sp-6); }
}

/* ─── FOCUS VISIBLE GLOBAL ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */

/* Base state — hidden before reveal */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none !important;
}

/* ── Variants ── */
.reveal--fade-up    { transform: translateY(36px); }
.reveal--slide-up   { transform: translateY(52px); }
.reveal--slide-left { transform: translateX(-48px); }
.reveal--slide-right{ transform: translateX(48px); }
.reveal--scale      { transform: scale(0.88); }
.reveal--pop        { transform: scale(0.82) translateY(12px); }

.reveal--skew {
  transform: translateY(28px) skewY(-1.5deg);
  transform-origin: left center;
}

/* ── Staggered delay helpers ── */
.reveal-d1 { transition-delay: 0s;    }
.reveal-d2 { transition-delay: 0.08s; }
.reveal-d3 { transition-delay: 0.16s; }
.reveal-d4 { transition-delay: 0.24s; }
.reveal-d5 { transition-delay: 0.32s; }
.reveal-d6 { transition-delay: 0.40s; }

/* ── Text reveal word-by-word ── */
.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
  line-height: 1.15;
}

.text-reveal .word__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
}

.text-reveal .word__inner.is-revealed {
  transform: translateY(0);
  opacity: 1;
}

/* Typing cursor on hero accent */
.hero__heading-accent::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--c-accent);
  animation: blink 0.9s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Smoother card tilt transition on leave ── */
.svc-card,
.client-card,
.sys-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background var(--d-slow) var(--e-out);
}

/* ─── SUCCESS MODAL ─────────────────────────────────────────── */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-slow) var(--e-out);
}

.success-modal.is-active {
  opacity: 1;
  pointer-events: all;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 31, 50, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.success-modal__card {
  position: relative;
  background: var(--c-white);
  width: 100%;
  max-width: 460px;
  padding: var(--sp-12) var(--sp-8);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--d-slow) var(--e-out);
}

.success-modal.is-active .success-modal__card {
  transform: translateY(0) scale(1);
}

.success-modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sp-6);
  color: var(--c-accent);
}

.success-modal__icon svg {
  width: 100%;
  height: 100%;
}

.smi-circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset 0.8s 0.2s var(--e-out);
}

.smi-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.5s 0.8s var(--e-out);
}

.success-modal.is-active .smi-circle,
.success-modal.is-active .smi-check {
  stroke-dashoffset: 0;
}

.success-modal__label {
  display: block;
  font-size: var(--t-xxs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: var(--sp-2);
}

.success-modal__title {
  font-size: var(--t-xl);
  font-weight: var(--fw-bold);
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.success-modal__desc {
  font-size: var(--t-base);
  color: var(--c-text-2);
  line-height: 1.6;
  margin-bottom: var(--sp-10);
}

.success-modal__close {
  width: 100%;
}

@media (max-width: 480px) {
  .success-modal__card {
    padding: var(--sp-10) var(--sp-6);
  }
}

/* ─── PRINT ──────────────────────────────────────────────────── */
@media print {
  .site-header,
  .nav__toggle,
  .hero__bg-grid,
  .hero__diagram,
  .hero__scroll-hint,
  .contact__form {
    display: none;
  }
}
