/* Dragon Man & Van — premium creative UI */
:root {
  --red: #C8102E;
  --red-deep: #9E0B24;
  --red-glow: rgba(200, 16, 46, .35);
  --red-soft: #f7e6ea;
  --ink: #0c0c0c;
  --ink-2: #141414;
  --mute: #5c5c5c;
  --line: #e8e4e0;
  --paper: #f6f3f0;
  --white: #ffffff;
  --max: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

h1, h2, .display {
  font-family: var(--font-display);
  letter-spacing: .02em;
  line-height: .95;
  font-weight: 400;
}

h1 { font-size: clamp(3.2rem, 8.5vw, 6.6rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
h3 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 700; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--mute);
  max-width: 38rem;
}

.accent { color: var(--red); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .75rem 1.45rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(120%); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 28px var(--red-glow);
}
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 14px 34px var(--red-glow); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background .35s, box-shadow .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(12,12,12,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  border-bottom-color: rgba(255,255,255,.06);
}
.home .site-header:not(.is-scrolled) { background: transparent; }

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .35s;
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 0 0 4px rgba(200,16,46,.25);
}
.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: .04em;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-top: .15rem;
}

.nav { display: flex; gap: 1.6rem; }
.nav a {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: .25rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right .35s var(--ease);
}
.nav a:hover,
.nav a.is-active { color: var(--white); }
.nav a:hover::after,
.nav a.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.phone-link { display: none; }
@media (min-width: 1100px) {
  .phone-link { display: inline-flex; }
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  padding: 0;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.nav-toggle:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
}
.nav-toggle:active { transform: scale(.96); }
.nav-toggle[aria-expanded="true"] {
  background: var(--red);
  border-color: var(--red);
}

.menu-icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}
.menu-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform .4s var(--ease),
    opacity .25s ease,
    top .4s var(--ease),
    width .4s var(--ease),
    left .4s var(--ease);
  transform-origin: center;
}
.menu-bar:nth-child(1) { top: 0; }
.menu-bar:nth-child(2) { top: 50%; margin-top: -1.25px; }
.menu-bar:nth-child(3) { top: calc(100% - 2.5px); }

/* Hamburger → X */
.nav-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  top: 50%;
  margin-top: -1.25px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  top: 50%;
  margin-top: -1.25px;
  transform: rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.08);
  animation: heroZoom 22s var(--ease) infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6,6,6,.94) 0%, rgba(6,6,6,.78) 38%, rgba(6,6,6,.4) 62%, rgba(200,16,46,.28) 100%),
    linear-gradient(to top, rgba(6,6,6,.9) 0%, transparent 42%);
}

.hero-speed {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-speed span {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), var(--red), transparent);
  opacity: 0;
  animation: speedLine 3.8s linear infinite;
}
.hero-speed span:nth-child(1) { top: 22%; left: -20%; width: 28%; animation-delay: 0s; }
.hero-speed span:nth-child(2) { top: 38%; left: -30%; width: 40%; animation-delay: 1.1s; }
.hero-speed span:nth-child(3) { top: 55%; left: -25%; width: 34%; animation-delay: 2s; }
.hero-speed span:nth-child(4) { top: 72%; left: -35%; width: 46%; animation-delay: .6s; }

.hero-slash {
  position: absolute;
  right: -10%;
  top: -12%;
  width: 46%;
  height: 130%;
  background: linear-gradient(160deg, transparent 28%, rgba(200,16,46,.5) 28%, rgba(200,16,46,.78) 60%, transparent 60%);
  transform: skewX(-12deg);
  z-index: 1;
  pointer-events: none;
  animation: slashIn 1.2s var(--ease) both, slashPulse 6s 1.2s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 4.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: rise .8s .15s var(--ease) forwards;
  flex-wrap: wrap;
}
.hero-kicker span {
  display: inline-block;
  padding: .45rem .9rem;
  background: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: pulseGlow 3s ease-in-out infinite;
}
.hero-kicker em {
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}

.hero h1 {
  max-width: 12ch;
  opacity: 0;
  animation: rise .9s .28s var(--ease) forwards;
}
.hero h1 .line2 {
  color: var(--red);
  display: block;
  background: linear-gradient(90deg, var(--red), #ff5a6e, var(--red));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero .lead {
  margin: 1.4rem 0 2rem;
  color: rgba(255,255,255,.82);
  opacity: 0;
  animation: rise .9s .42s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: rise .9s .55s var(--ease) forwards;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16);
  opacity: 0;
  animation: rise .9s .7s var(--ease) forwards;
}
.hero-meta > div {
  position: relative;
  padding-left: 1rem;
}
.hero-meta > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  bottom: .35rem;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: .04em;
}
.hero-meta span {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 1s 1s var(--ease) forwards;
}
.scroll-hint .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.scroll-hint .mouse i {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--red);
  border-radius: 2px;
  animation: mouseScroll 1.6s ease-in-out infinite;
}

/* Values */
.values {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .35s;
  position: relative;
  overflow: hidden;
}
.value-item::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.value-item:hover { background: rgba(255,255,255,.03); }
.value-item:hover::before { transform: scaleX(1); }
.value-item:last-child { border-right: 0; }
.value-item .ico {
  width: 34px;
  height: 34px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.value-item:hover .ico { transform: scale(1.12) rotate(-6deg); }
.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .06em;
}
.value-item p {
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  margin-top: .15rem;
}

/* Sections */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
}
.section-head.center .eyebrow { justify-content: center; }

.panel {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(200,16,46,.14), transparent 68%);
  pointer-events: none;
  animation: floatBlob 10s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-visual {
  position: relative;
  min-height: 440px;
  background: var(--ink);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 440px;
  transition: transform 1.2s var(--ease);
}
.split-visual:hover img { transform: scale(1.06); }
.split-visual .badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--red);
  color: var(--white);
  padding: .95rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .06em;
  max-width: 12rem;
  line-height: 1.05;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  animation: badgeBob 4s ease-in-out infinite;
}
.frame-accent {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.25);
  pointer-events: none;
  z-index: 2;
}

/* Services cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  position: relative;
  padding: 1.7rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .3s, transform .45s var(--ease), box-shadow .45s;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b7d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(200,16,46,.1), transparent 70%);
  transition: transform .5s var(--ease);
}
.service-card:hover {
  border-color: rgba(200,16,46,.35);
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(200,16,46,.12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { transform: scale(1.6); }
.service-card .ico {
  width: 38px;
  height: 38px;
  color: var(--red);
  margin-bottom: 1.1rem;
  transition: transform .4s var(--ease);
}
.service-card:hover .ico { transform: translateY(-3px) scale(1.08); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: .04em;
  font-weight: 400;
  margin-bottom: .35rem;
}
.service-card .sub {
  color: var(--red);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.service-card p {
  color: var(--mute);
  font-size: .92rem;
  margin-top: auto;
}
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  transition: color .25s, transform .3s;
}
.service-card:hover .card-link {
  color: var(--red);
  transform: translateX(4px);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: transform .4s var(--ease), border-color .3s;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: .8rem;
  opacity: .9;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .04em;
  font-weight: 400;
  margin-bottom: .5rem;
}
.process-card p { color: var(--mute); font-size: .95rem; }

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  padding: .85rem 0;
  border-block: 1px solid rgba(0,0,0,.1);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .08em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.marquee-track span::after {
  content: "◆";
  font-size: .7rem;
  opacity: .7;
}

/* Quote band */
.band {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -120px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(200,16,46,.25), transparent 70%);
  animation: floatBlob 12s ease-in-out infinite reverse;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 55%;
  width: 55%;
  background: linear-gradient(115deg, transparent, rgba(200,16,46,.85));
  transform: skewX(-14deg);
  pointer-events: none;
}
.band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.band h2 { margin: .4rem 0 1rem; max-width: 14ch; }
.band p { color: rgba(255,255,255,.75); max-width: 34rem; }
.band-phones {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.band-phones a {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  transition: transform .3s var(--ease);
}
.band-phones a:hover { transform: translateX(6px); }
.band-phones .dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 1rem;
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.price-chip {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border: 1px solid rgba(255,255,255,.25);
  padding: .75rem 1rem;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.price-chip .ico { width: 22px; height: 22px; }

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background:
    linear-gradient(135deg, #0c0c0c 0%, #171717 50%, #3a0a12 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--red);
  transform: skewX(-12deg);
  opacity: .88;
  animation: slashPulse 7s ease-in-out infinite;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(200,16,46,.2), transparent 40%),
    linear-gradient(to right, transparent 60%, rgba(0,0,0,.15));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 12ch; margin: .6rem 0 1rem; }
.page-hero .lead { color: rgba(255,255,255,.78); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb em { font-style: normal; color: var(--white); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), border-color .3s;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(200,16,46,.5);
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  display: block;
  color: #ff6b7d;
}
.stat span {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* Service detail page */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 2rem;
  align-items: end;
}
.service-hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}
.service-hero-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--red);
  margin-bottom: 1rem;
}
.service-hero-icon .ico { width: 32px; height: 32px; color: #fff; }
.service-hero-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .06em;
  display: block;
}
.service-hero-card > p {
  color: rgba(255,255,255,.7);
  margin: .35rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 600;
}
.service-hero-card li {
  padding: .45rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}

.hero-orbit {
  position: absolute;
  right: 8%;
  top: 30%;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 50%;
  animation: spin 18s linear infinite;
  z-index: 0;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  top: -6px;
  left: 50%;
  box-shadow: 0 0 20px var(--red);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.feature-list { display: grid; gap: .75rem; }
.feature-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 500;
  transition: transform .35s var(--ease), border-color .3s;
  animation: rise .7s var(--d, 0s) both;
}
.feature-list li:hover {
  transform: translateX(6px);
  border-color: rgba(200,16,46,.35);
}
.tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.contact-info { display: grid; gap: 1rem; }
.info-block {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.info-block:hover {
  transform: translateY(-3px);
  border-color: rgba(200,16,46,.3);
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.info-block span {
  display: block;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .35rem;
}
.info-block a,
.info-block p {
  font-size: 1.15rem;
  font-weight: 600;
}

.form-card {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff6b7d, var(--red));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: grid; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8d5d1;
  background: var(--white);
  padding: .9rem 1rem;
  font: inherit;
  border-radius: 2px;
  transition: border-color .2s, box-shadow .2s, transform .25s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
  transform: translateY(-1px);
}
.form-actions { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.alert {
  padding: .95rem 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.alert-success { background: #e8f6ec; color: #146c2e; border: 1px solid #b7e0c2; }
.alert-error { background: #fdebec; color: #9e0b24; border: 1px solid #f3c4cb; }

/* Footer */
.site-footer { background: var(--ink-2); color: var(--white); }
.footer-cta { background: var(--red); position: relative; overflow: hidden; }
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  animation: shimmerSweep 5s linear infinite;
}
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.4rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin: .2rem 0 .35rem; }
.footer-cta p { color: rgba(255,255,255,.85); }
.footer-cta .eyebrow { color: rgba(255,255,255,.75); }
.footer-cta .eyebrow::before { background: rgba(255,255,255,.75); }
.footer-cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1.1fr;
  gap: 2rem;
}
.footer-brand p {
  color: rgba(255,255,255,.65);
  margin: 1rem 0;
  max-width: 28ch;
}
.insured {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--white) !important;
}
.insured span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: .7rem;
}
.footer-main h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer-links a,
.footer-contact a,
.footer-contact li {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}
.footer-links li + li,
.footer-contact li + li { margin-top: .45rem; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.15rem;
}
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  color: var(--white);
  transition: transform .3s var(--ease), background .25s, border-color .25s, box-shadow .25s;
}
.socials a svg {
  display: block;
}
.socials a:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}
.socials a.social-ig:hover { background: #E4405F; }
.socials a.social-tt:hover { background: #111; border-color: #25F4EE; }
.socials a.social-fb:hover { background: #1877F2; }
.socials a.social-wa:hover { background: #25D366; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bar .tag {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .3s var(--ease);
  animation: waBob 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); animation: none; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-left.is-in { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-scale.is-in { opacity: 1; transform: none; }

/* Keyframes */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes slashIn {
  from { opacity: 0; transform: skewX(-12deg) translateX(40px); }
  to { opacity: .95; transform: skewX(-12deg) translateX(0); }
}
@keyframes slashPulse {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}
@keyframes speedLine {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: .8; }
  100% { transform: translateX(140vw); opacity: 0; }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@keyframes shimmerSweep {
  from { transform: translateX(-40%); }
  to { transform: translateX(40%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,.45); }
  50% { box-shadow: 0 0 0 10px rgba(200,16,46,0); }
}
@keyframes mouseScroll {
  0% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(10px); }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}
@keyframes badgeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes waBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(1),
  .value-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .band-inner,
  .split,
  .contact-grid,
  .feature-split,
  .service-hero-grid,
  .process-grid { grid-template-columns: 1fr; }
  .band::after { display: none; }
  .hero-slash { width: 60%; opacity: .65; }
  .scroll-hint { display: none; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(12,12,12,.98);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .35s var(--ease);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 1.05rem;
  }
  .nav-toggle { display: grid; }
  .header-actions .btn-ghost,
  .header-actions .btn-primary { display: none; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .services-grid,
  .values-grid,
  .stats,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .value-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .value-item:last-child { border-bottom: 0; }
  .hero-content { padding-bottom: 3rem; }
  .hero-actions .btn { width: 100%; }
  .split-visual { clip-path: none; min-height: 280px; }
  .split-visual img { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; }
}
