:root {
  --red: #E63946;
  --red-dark: #B82B36;
  --red-soft: #FDECEE;
  --yellow: #FFD60A;
  --yellow-dark: #D9B500;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
  --bg-soft: #F8F8F5;
  --bg-warm: #FAFAF7;
  --border: #E5E5E0;
  --text: #0A0A0A;
  --text-soft: #3A3A35;       /* darkened for WCAG AA on white */
  --text-mute: #6B6B62;       /* darkened from #8A8A82 for AA */
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 24px 48px rgba(10, 10, 10, 0.10);
  --shadow-xl: 0 32px 64px rgba(10, 10, 10, 0.14);
  --shadow-red: 0 16px 40px rgba(230, 57, 70, 0.25);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --header-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Universal focus state (replaces any outline:none usage elsewhere) */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* Subtle grain pattern reusable */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px);
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* ============= HEADER ============= */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-link { display: inline-flex; }
.logo-svg { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex; gap: 32px;
  align-items: center;
}
.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 200ms;
  padding: 6px 0;
  position: relative;
}
.nav-link:hover { color: var(--red); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width 220ms ease;
}
.nav-link:hover::after { width: 100%; }

.nav-right {
  display: flex; gap: 16px; align-items: center;
}
.nav-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-phone svg { color: var(--red); }
.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 11px 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 200ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.nav-cta:hover::after { background: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  position: relative;
  transition: transform 250ms ease, opacity 200ms ease;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute; left: 0;
  width: 20px; height: 2px;
  background: var(--text);
  transition: transform 250ms ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  color: var(--white);
  z-index: 200;
  padding: 96px 24px 32px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu-links {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-menu-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
  min-height: 44px;
  display: flex; align-items: center;
}
.mobile-menu-actions {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.mobile-menu-actions a {
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
}
.mm-call { background: var(--red); color: var(--white); }
.mm-wa { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.mm-quote { background: var(--yellow); color: var(--black); }

/* ============= HERO — DARK ============= */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.35) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseRed 2s ease-in-out infinite;
}
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 .red { color: var(--red); }
.hero h1 .yellow-marker {
  background: var(--yellow);
  color: var(--black);
  padding: 0 12px;
  display: inline-block;
  transform: skew(-2deg);
}
.hero h1 .yellow-marker span {
  display: inline-block;
  transform: skew(2deg);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero p strong {
  color: var(--white);
  font-weight: 600;
}

.hero-cta-row {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  padding: 16px 28px;
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  min-height: 48px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(230, 57, 70, 0.4);
}
.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn-secondary-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn svg { transition: transform 200ms; }
.btn:hover svg { transform: translateX(4px); }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-item-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.trust-item-num .red { color: var(--red); }
.trust-item-num .yellow { color: var(--yellow); }
.trust-item-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  line-height: 1.4;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 600px;
}
.hero-image-main {
  position: absolute;
  inset: 0;
  background: var(--black);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-image-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 214, 10, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, transparent 35%, rgba(10, 10, 10, 0.55) 100%);
}
.hero-image-overlay {
  position: relative;
  z-index: 2;
  color: white;
}
.hero-image-main .hero-image-overlay { z-index: 2; }
.hero-image-overlay-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.hero-image-overlay-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

/* Floating cards */
.hero-card-float {
  position: absolute;
  top: 40px; right: -28px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.hero-card-float-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  box-shadow: var(--shadow-red);
}
.hero-card-float-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.hero-card-float-text small {
  display: block;
  color: var(--text-mute);
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px;
}

.hero-card-bottom {
  position: absolute;
  bottom: -16px; left: -28px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  min-width: 240px;
}
.hero-card-bottom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.hero-card-bottom-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero-card-bottom-tag {
  background: var(--yellow);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-card-bottom-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero-card-bottom-value .red { color: var(--red); }
.hero-card-bottom-bar {
  height: 6px;
  background: var(--bg-warm);
  border-radius: 100px;
  overflow: hidden;
}
.hero-card-bottom-bar-fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 100%);
  border-radius: 100px;
}

/* ============= SECTION ============= */
.section {
  padding: 100px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  margin-bottom: 60px;
  max-width: 760px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  color: var(--red-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title .red { color: var(--red); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms ease,
              border-color 300ms ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.service-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 250ms ease, transform 250ms ease;
}
.service-card:hover .service-icon {
  background: var(--red);
  transform: rotate(-4deg);
}
.service-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--yellow);
  border-radius: 4px;
  border: 2px solid var(--white);
  transition: transform 250ms ease;
}
.service-card:hover .service-icon-wrap::after { transform: scale(1.2); }

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.service-card-link {
  font-size: 13px;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ============= ABOUT ============= */
.about-section {
  background: var(--bg-warm);
  padding: 100px 32px;
}
.about-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-main {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.about-visual-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-visual-main::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.12) 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 214, 10, 0.12) 0%, transparent 50%);
}
.about-visual-yellow-square {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: 16px;
  z-index: 1;
  transform: rotate(-8deg);
}
.about-visual-card {
  position: absolute;
  bottom: 32px; right: -32px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 280px;
}
.about-visual-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.about-visual-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--text);
}
.about-content h2 .red { color: var(--red); }
.about-content > p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.about-feature:hover {
  transform: translateX(4px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.about-feature-check {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-feature-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.about-feature-text span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============= PROJECTS ============= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.project-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.project-image {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.project-image::before {
  display: none;
}
.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.2) 100%);
}
.project-image-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--text);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 3;
}
.project-body { padding: 22px; }
.project-body h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.project-body p {
  font-size: 13px;
  color: var(--text-mute);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.project-body p span:not(:last-child)::after {
  content: '·';
  margin-left: 12px;
  opacity: 0.5;
}


/* ============= TESTIMONIAL ============= */
.testimonial-section {
  padding: 100px 32px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, transparent 60%);
  filter: blur(40px);
}
.testimonial-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.12) 0%, transparent 60%);
  filter: blur(40px);
}
.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--yellow);
  filter: drop-shadow(0 4px 12px rgba(255, 214, 10, 0.4));
}
.testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.testimonial-quote .red { color: var(--red); }
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: var(--shadow-red);
}
.testimonial-author-info { text-align: left; }
.testimonial-author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-author-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============= CTA + FORM ============= */
.cta-section {
  padding: 100px 32px;
}
.cta-card {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--r-2xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.25) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -250px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.2) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-inner { position: relative; z-index: 2; }
.cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: white;
  margin-bottom: 16px;
}
.cta-card h2 .yellow { color: var(--yellow); }
.cta-card > .cta-inner > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-card .btn-primary {
  background: var(--white);
  color: var(--red);
}
.cta-card .btn-primary:hover {
  background: var(--yellow);
  color: var(--black);
}
.cta-card .btn-secondary-cta {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 16px 28px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 250ms;
  min-height: 48px;
}
.cta-card .btn-secondary-cta:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Form */
.lead-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.lead-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.lead-form-head-icon {
  width: 40px; height: 40px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lead-form-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.lead-form-head p {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'DM Sans', sans-serif;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: none; /* the box-shadow above is our visible focus */
}
.form-gdpr {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: 4px;
}
.form-gdpr input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-submit {
  grid-column: 1 / -1;
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 200ms ease, transform 200ms ease;
  margin-top: 8px;
  min-height: 52px;
}
.form-submit:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0;
}

/* ============= FOOTER ============= */
footer {
  background: var(--black);
  color: white;
  padding: 60px 32px 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 50%, var(--yellow) 50%, var(--yellow) 100%);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.footer-logo svg { height: 60px; }
.footer-logo svg text { fill: var(--white); }
.footer-brand p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--yellow);
  letter-spacing: -0.01em;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a[aria-disabled="true"] {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  cursor: not-allowed;
  pointer-events: none;
}

/* Scroll-to-top */
.to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease, background 200ms ease;
  z-index: 50;
}
.to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.to-top:hover { background: var(--red-dark); }

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 800ms ease-out both; animation-delay: 100ms; }
.hero h1 { animation: fadeUp 800ms ease-out both; animation-delay: 200ms; }
.hero p { animation: fadeUp 800ms ease-out both; animation-delay: 350ms; }
.hero-cta-row { animation: fadeUp 800ms ease-out both; animation-delay: 500ms; }
.hero-trust { animation: fadeUp 800ms ease-out both; animation-delay: 650ms; }
.hero-visual { animation: fadeUp 1000ms ease-out both; animation-delay: 400ms; }

/* Scroll reveal — initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion — everything snaps to final state */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1023px) {
  .nav { padding: 14px 24px; gap: 16px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 460px; margin-right: 28px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-visual-card { position: static; margin-top: 16px; }
  .about-visual-yellow-square { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --header-h: 72px; }
  .nav { padding: 12px 20px; }
  .logo-svg { height: 40px; }

  .hero { padding: 48px 20px 64px; }
  .hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .hero p { font-size: 16px; }
  .hero-cta-row { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .hero-visual { height: 360px; margin-right: 0; }
  .hero-image-main { padding: 24px; border-radius: var(--r-lg); }
  .hero-image-overlay-name { font-size: 22px; }
  .hero-card-float, .hero-card-bottom { display: none; }
  .hero-trust { gap: 16px; grid-template-columns: repeat(3, 1fr); padding-top: 24px; }
  .trust-item-num { font-size: 28px; }
  .trust-item-label { font-size: 11px; }

  .section { padding: 60px 20px; }
  .section-head { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }

  .about-section { padding: 60px 20px; }
  .about-visual-main { aspect-ratio: 4/4; }
  .about-visual-card { grid-template-columns: 1fr 1fr; min-width: 0; padding: 18px; }
  .about-visual-stat-num { font-size: 30px; }
  .about-features { gap: 10px; }

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

  .testimonial-section { padding: 60px 20px; }
  .testimonial-stars svg { width: 22px; height: 22px; }
  .testimonial-quote { font-size: 22px; line-height: 1.3; }

  .cta-section { padding: 60px 20px; }
  .cta-card { padding: 48px 24px; border-radius: var(--r-xl); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn, .cta-actions .btn-secondary-cta { width: 100%; }
  .lead-form { padding: 24px 20px; border-radius: var(--r-lg); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.half-on-desktop { grid-column: 1 / -1; }

  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .to-top { bottom: 16px; right: 16px; }
}

@media (max-width: 379px) {
  .hero h1 { font-size: 30px; }
  .nav { padding: 10px 16px; gap: 8px; }
  .logo-svg { height: 36px; }
  .hero-trust { gap: 12px; }
  .trust-item-num { font-size: 24px; }
  .lead-form-head h3 { font-size: 18px; }
}

/* ============= CATEGORY NAV STRIP ============= */
.cat-nav {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cat-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mute);
  text-decoration: none;
  padding: 14px 18px;
  white-space: nowrap;
  position: relative;
  transition: color 200ms ease;
  letter-spacing: -0.005em;
}
.cat-link:hover { color: var(--text); }
.cat-link.active { color: var(--text); }
.cat-link.active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px 2px 0 0;
}
.cat-link svg {
  width: 14px; height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
}

/* Fade edges on horizontal scroll */
.cat-nav-fade-left,
.cat-nav-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 32px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 200ms ease;
}
.cat-nav-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-warm) 0%, transparent 100%);
}
.cat-nav-fade-right {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-warm) 0%, transparent 100%);
}
.cat-nav.scrolled-start .cat-nav-fade-left { opacity: 1; }
.cat-nav.scrolled-end .cat-nav-fade-right { opacity: 1; }

/* ============= CATEGORY PAGE HERO (smaller than home hero) ============= */
.cat-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 80px 32px 90px;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.30) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.cat-hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.10) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.cat-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cat-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cat-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.cat-hero h1 .red { color: var(--red); }
.cat-hero h1 .yellow { color: var(--yellow); }
.cat-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}
.cat-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cat-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black);
}
.cat-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.cat-hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 214, 10, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.35) 100%);
}

.cat-hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cat-hero-trust-item-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cat-hero-trust-item-num .red { color: var(--red); }
.cat-hero-trust-item-num .yellow { color: var(--yellow); }
.cat-hero-trust-item-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  line-height: 1.4;
}

/* ============= SERVICE LIST (category page) ============= */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-item:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-item:hover::before { transform: scaleX(1); }
.service-item-icon {
  width: 48px; height: 48px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 250ms ease;
}
.service-item:hover .service-item-icon { background: var(--red); }
.service-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
}
.service-item-meta {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-item p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.service-item-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms ease;
}
.service-item:hover .service-item-cta { gap: 12px; }

/* ============= PROCESS STEPS ============= */
.process-section {
  background: var(--bg-warm);
  padding: 100px 32px;
}
.process-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.12);
}
.process-step:nth-child(1) .process-step-num { background: var(--red); color: var(--white); }
.process-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.015em;
}
.process-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

@media (max-width: 1023px) {
  .cat-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .cat-hero-visual { aspect-ratio: 4/3; max-width: 480px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 767px) {
  .cat-hero { padding: 56px 20px 72px; }
  .cat-hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .cat-hero-actions { flex-direction: column; align-items: stretch; }
  .cat-hero-trust { gap: 20px; flex-wrap: wrap; }
  .cat-link { padding: 12px 14px; font-size: 13px; }
  .service-list-grid { grid-template-columns: 1fr; }
  .process-section { padding: 60px 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step-num { width: 52px; height: 52px; font-size: 20px; }
}

/* ============================================================
   CUSTOM ADDITIONS — hero photos, Generali band, auto-popup, TikTok
   ============================================================ */

/* Hero photo backgrounds */
/* Category hero photos are set via <img> in each category page */

/* Generali warranty band */
.generali-band { background: linear-gradient(180deg, #1A1A1A 0%, #232323 100%); color: #fff; padding: 36px 24px; border-top: 1px solid rgba(217,181,0,0.3); border-bottom: 1px solid rgba(217,181,0,0.3); }
.generali-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.generali-icon { color: #D9B500; flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid rgba(217,181,0,0.4); border-radius: 50%; }
.generali-headline { font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif; font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 6px; }
.generali-headline .red { color: #E63946; }
.generali-sub { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.72); max-width: 720px; }
.generali-cta { display: inline-flex; align-items: center; background: #E63946; color: #fff; padding: 14px 24px; border-radius: 6px; font-weight: 600; text-decoration: none; transition: background 200ms ease; white-space: nowrap; font-size: 14px; }
.generali-cta:hover { background: #D9B500; color: #1A1A1A; }
@media (max-width: 880px) { .generali-band-inner { grid-template-columns: 1fr; text-align: center; gap: 18px; } .generali-icon { margin: 0 auto; } .generali-sub { margin: 0 auto; } .generali-cta { justify-self: center; } }

/* TikTok button in mobile menu */
.mm-tiktok { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 20px; background: linear-gradient(135deg, #ff0050 0%, #25f4ee 50%, #000 100%); color: #fff; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 14px; transition: transform 200ms ease, box-shadow 200ms ease; }
.mm-tiktok:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4); }

/* Auto-popup modal */
.vmrz-popup-backdrop { position: fixed; inset: 0; z-index: 9991; background: rgba(10,10,10,0.45); opacity: 0; pointer-events: none; transition: opacity 320ms ease; display: grid; place-items: center; padding: 20px; }
.vmrz-popup-backdrop.is-open { opacity: 1; pointer-events: auto; }
.vmrz-popup { position: relative; background: #fff; max-width: 460px; width: 100%; padding: 36px 32px 28px; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5); transform: translateY(20px) scale(0.96); transition: transform 360ms cubic-bezier(.2,.8,.2,1); font-family: 'DM Sans', system-ui, sans-serif; }
.vmrz-popup-backdrop.is-open .vmrz-popup { transform: translateY(0) scale(1); }
.vmrz-popup-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border: none; background: rgba(0,0,0,0.05); border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: #1A1A1A; transition: background 200ms ease, transform 200ms ease; }
.vmrz-popup-close:hover { background: rgba(0,0,0,0.12); transform: rotate(90deg); }
.vmrz-popup-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Mono', ui-monospace, monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #E63946; margin-bottom: 8px; }
.vmrz-popup-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #E63946; }
.vmrz-popup-title { font-family: 'Space Grotesk', 'Archivo Black', system-ui, sans-serif; font-size: 24px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: #1A1A1A; margin: 4px 0 6px; }
.vmrz-popup-title em { color: #E63946; font-style: italic; }
.vmrz-popup-sub { font-size: 14px; color: #5a534a; line-height: 1.5; margin-bottom: 20px; }
.vmrz-popup-form { display: grid; gap: 12px; }
.vmrz-popup-form input, .vmrz-popup-form select { width: 100%; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.15); border-radius: 6px; font-size: 15px; font-family: inherit; background: #fafaf7; transition: border-color 200ms ease; color: #1A1A1A; }
.vmrz-popup-form input:focus, .vmrz-popup-form select:focus { outline: none; border-color: #E63946; }
.vmrz-popup-submit { background: #1A1A1A; color: #fff; padding: 14px; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; transition: background 200ms ease; margin-top: 6px; }
.vmrz-popup-submit:hover { background: #E63946; }
.vmrz-popup-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.vmrz-popup-foot { margin-top: 16px; font-size: 10px; color: #8a8377; text-align: center; line-height: 1.5; letter-spacing: 0.04em; }
.vmrz-popup-foot a { color: #E63946; text-decoration: underline; }
.vmrz-popup-msg { padding: 12px 14px; font-size: 13px; border-radius: 6px; margin-top: 4px; line-height: 1.5; }
.vmrz-popup-msg[data-state="success"] { background: #f0fdf4; border: 1px solid #16a34a; color: #166534; }
.vmrz-popup-msg[data-state="error"] { background: #fef0f0; border: 1px solid #dc2626; color: #b91c1c; }
.vmrz-popup-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 540px) { .vmrz-popup { padding: 32px 22px 24px; } .vmrz-popup-title { font-size: 20px; } }

/* === ADDED 2026-05-20 — team photo + 6 project cards with real Valmarez photos === */

/* Project card photos are set via <img> in index.html */
