/* =============================================================
   SABAOTH — 0.1% Premium Industrial Website
   Dark energy · Orange fire · Architectural typography
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --orange:        #E0551B;
  --orange-bright: #F26522;
  --orange-deep:   #B84214;
  --orange-glow:   rgba(224, 85, 27, 0.22);
  --orange-soft:   rgba(224, 85, 27, 0.10);
  --orange-line:   rgba(224, 85, 27, 0.35);

  --charcoal:   #12141A;
  --charcoal-2: #191C23;
  --charcoal-3: #21252E;
  --black:      #090A0D;
  --white:      #FFFFFF;
  --off-white:  #E6E9F0;
  --gray:       #565B68;
  --gray-mid:   #767C8A;
  --gray-light: #9AA1B2;

  --line:        rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.13);
  --line-orange: rgba(224, 85, 27, 0.28);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --maxw:     1280px;
  --radius:   3px;
  --radius-md: 8px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --header-h: 76px;
}

/* ---------- 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-body);
  background: var(--charcoal);
  color: var(--off-white);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
ul { list-style: none; }
button { cursor: none; }

/* =============================================================
   CUSTOM CURSOR
   ============================================================= */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(224, 85, 27, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.2s ease, opacity 0.2s ease;
  will-change: transform;
}
body.cursor-hover .cursor-dot  { width: 10px; height: 10px; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: rgba(224, 85, 27, 0.3); }
body.cursor-click .cursor-dot  { width: 14px; height: 14px; }
body.cursor-click .cursor-ring { width: 28px; height: 28px; opacity: 0.4; }

/* =============================================================
   NOISE / GRAIN TEXTURE
   ============================================================= */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* =============================================================
   LAYOUT
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section--black  { background: var(--black); }
.section--panel  { background: var(--charcoal-2); }
.section--tight  { padding: 80px 0; }

/* Section index number (01, 02…) */
.section-index {
  position: absolute;
  top: -0.08em;
  right: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
}
.section-intro {
  max-width: 680px;
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-top: 24px;
  line-height: 1.7;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.mb-lg { margin-bottom: 64px; }

/* =============================================================
   BUTTONS — magnetic wrapper
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.97rem;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn:hover::before { opacity: 1; }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--orange-bright), 0 16px 40px rgba(224, 85, 27, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--orange-line);
  color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange-line);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: #050507;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.6);
}

/* Magnetic button wrapper */
.mag-wrap { display: inline-block; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9, 10, 13, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease), height 0.3s var(--ease), border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(9, 10, 13, 0.94);
  height: 64px;
  border-bottom-color: var(--line-strong);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand img { height: 42px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 10px 17px;
  color: var(--gray-mid);
  position: relative;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 17px; right: 17px; bottom: 5px;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active::after, .nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 600;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: var(--gray-mid);
  padding: 7px 12px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  font-family: inherit;
  transition: all 0.2s ease;
}
.lang-switch button.active { background: var(--orange); color: var(--white); }
.lang-switch button:not(.active):hover { color: var(--white); }

.header-cta { display: inline-flex; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.menu-toggle span { display: block; height: 1.5px; width: 20px; margin: 0 auto; background: var(--white); transition: all 0.3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--black);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb--1 {
  width: 65vw; height: 65vw;
  background: radial-gradient(circle, rgba(224,85,27,0.18) 0%, transparent 65%);
  right: -20vw; top: -15vw;
}
.hero-orb--2 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(224,85,27,0.08) 0%, transparent 70%);
  left: -10vw; bottom: 0;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

/* Diagonal stripe texture */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    112deg,
    rgba(255,255,255,0.018) 0 1.5px,
    transparent 1.5px 10px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

/* Main headline */
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10.5vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease);
}
.hero-line-inner.revealed { transform: translateY(0); }
.hero-line--accent .hero-line-inner { color: var(--orange); }
.hero-line--stroke .hero-line-inner {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
}

/* Sub-headline area */
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 960px;
}
.hero p.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* =============================================================
   TICKER / MARQUEE STRIP
   ============================================================= */
.ticker {
  background: var(--charcoal-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--charcoal-3), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--charcoal-3), transparent); }

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-mid);
  white-space: nowrap;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   STATS / KEY FIGURES
   ============================================================= */
.stats {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    125deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 18px
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}
.stat {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat .num .count { display: inline-block; }
.stat .num .suffix {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.8;
  margin-left: 2px;
}
.stat .label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 10px;
}

/* =============================================================
   SPLIT BLOCKS
   ============================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.split--reverse .split-media { order: 2; }
.split-body p { color: var(--gray-light); margin-bottom: 20px; font-size: 1.07rem; line-height: 1.75; }
.split-body p:last-child { margin-bottom: 0; }

.tick-list { margin-top: 30px; display: grid; gap: 16px; }
.tick-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: var(--off-white);
  font-size: 1.02rem;
}
.tick-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--orange); }

/* Image placeholder */
.img-ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-3) 0%, var(--charcoal-2) 100%);
  border: 1px solid var(--line);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.018) 0 12px, transparent 12px 26px
  );
}
.img-ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(224,85,27,0.1), transparent 55%);
}
.img-ph .ph-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--gray-light);
  background: rgba(9,10,13,0.75);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 9px;
}
.img-ph .ph-label svg { width: 16px; height: 16px; color: var(--orange); }
.img-ph--tall { min-height: 500px; }

/* =============================================================
   SERVICE CARDS
   ============================================================= */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s var(--ease);
}
/* Orange top bar */
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
/* Glow effect */
.card::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(224,85,27,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--line-orange);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(224,85,27,0.12);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after  { opacity: 1; }

.card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.card:hover .icon { background: rgba(224, 85, 27, 0.18); }
.card .icon svg { width: 26px; height: 26px; color: var(--orange); }

.card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.05;
}
.card p { color: var(--gray-light); font-size: 0.98rem; line-height: 1.68; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--orange);
  transition: gap 0.25s var(--ease);
}
.card:hover .card-link { gap: 12px; }
.card .card-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* =============================================================
   FEATURE LIST (Why SABAOTH)
   ============================================================= */
.feature {
  display: flex;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.feature:last-child { border-bottom: none; }
.feature:hover { padding-left: 6px; }
.feature .f-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.feature:hover .f-icon {
  border-color: var(--orange-line);
  background: var(--orange-soft);
}
.feature .f-icon svg { width: 24px; height: 24px; color: var(--orange); }
.feature h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 7px;
}
.feature p { color: var(--gray-light); line-height: 1.65; }

/* =============================================================
   PAGE BANNER (inner pages)
   ============================================================= */
.page-banner {
  padding: calc(var(--header-h) + 90px) 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black), var(--charcoal));
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 30%, rgba(224,85,27,0.16), transparent 60%);
  pointer-events: none;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(112deg, rgba(255,255,255,0.02) 0 1.5px, transparent 1.5px 10px);
}
.page-banner .breadcrumb {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative; z-index: 2;
}
.page-banner .breadcrumb a:hover { color: var(--orange); }
.page-banner h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  color: var(--white);
  position: relative; z-index: 2;
  letter-spacing: -0.02em;
}
.page-banner p { color: var(--gray-light); max-width: 640px; margin-top: 24px; font-size: 1.1rem; position: relative; z-index: 2; }

/* =============================================================
   SERVICE BLOCKS (services page)
   ============================================================= */
.service-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse .sb-media { order: 2; }
.sb-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.service-block h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.service-block p { color: var(--gray-light); font-size: 1.05rem; margin-bottom: 24px; line-height: 1.73; }

/* =============================================================
   PROCESS STEPS
   ============================================================= */
.process { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 56px; border-top: 1px solid var(--line); }
.step { padding: 36px 26px; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: none; }
.step .step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--orange);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.step h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 9px;
}
.step p { color: var(--gray-light); font-size: 0.94rem; line-height: 1.65; }

/* =============================================================
   VALUES GRID (about)
   ============================================================= */
.value {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.value:hover { border-color: var(--orange-line); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.value .v-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--orange-soft); border-radius: var(--radius); margin-bottom: 18px; }
.value .v-icon svg { width: 22px; height: 22px; color: var(--orange); }
.value h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; font-size: 1.22rem; color: var(--white); margin-bottom: 9px; }
.value p { color: var(--gray-light); font-size: 0.97rem; line-height: 1.65; }

/* =============================================================
   CTA BLOCK
   ============================================================= */
.cta-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--orange-deep) 0%, var(--orange) 50%, var(--orange-bright) 100%);
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(130deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 20px);
}
.cta-block::after {
  content: "";
  position: absolute;
  right: -5%; top: -50%;
  width: 50vw; height: 200%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-12deg);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 96px 20px;
}
.cta-inner h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.97;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cta-inner p { color: rgba(255,255,255,0.9); font-size: 1.16rem; max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.cta-inner .hero-actions { justify-content: center; }

/* =============================================================
   CONTACT / FORM
   ============================================================= */
.contact-section { background: var(--charcoal-2); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-info .ci-item { display: flex; gap: 16px; margin-bottom: 30px; align-items: flex-start; }
.contact-info .ci-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius); background: var(--orange-soft); display: flex; align-items: center; justify-content: center; }
.contact-info .ci-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-info .ci-label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--gray-mid); margin-bottom: 4px; }
.contact-info .ci-value { color: var(--white); font-size: 1.05rem; }
.contact-info .ci-value a:hover { color: var(--orange); }

.req-form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--charcoal-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,85,27,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; }
.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 12px; line-height: 1.55; }
.form-success {
  display: none;
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--black);
  padding: 84px 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand img { height: 56px; margin-bottom: 22px; }
.footer-brand p { color: var(--gray-light); max-width: 300px; font-size: 0.96rem; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--gray-light); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 16px; color: var(--gray-light); font-size: 0.93rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gray);
  font-size: 0.88rem;
}
.footer-bottom .tagline {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal                          { opacity: 1; transform: none; transition: none; }
  .hero-line-inner                 { transform: translateY(0) !important; transition: none; }
  .ticker-track                    { animation: none; }
  html                             { scroll-behavior: auto; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .grid--3      { grid-template-columns: repeat(2, 1fr); }
  .process      { grid-template-columns: repeat(2, 1fr); }
  .step         { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split        { gap: 52px; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .menu-toggle  { display: flex; }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px 32px;
    gap: 4px;
    align-items: stretch;
    z-index: 999;
    animation: slideDown 0.3s var(--ease);
  }
  .nav.mobile-open a { padding: 15px 8px; font-size: 1.25rem; border-bottom: 1px solid var(--line); }
  .nav.mobile-open a::after { display: none; }
  .nav.mobile-open .header-cta { display: inline-flex; margin-top: 16px; justify-content: center; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }

  .hero-title { font-size: clamp(3.2rem, 11vw, 6rem); }
  .hero-body  { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { justify-content: flex-start; }

  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .service-block, .service-block--reverse { grid-template-columns: 1fr; gap: 36px; }
  .service-block--reverse .sb-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.15); }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 88px 0; }

  /* Disable custom cursor on touch */
  body { cursor: auto; }
  a, button { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .process { grid-template-columns: 1fr; }
  .req-form { padding: 28px 22px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: 100%; }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .section-index { font-size: clamp(6rem, 22vw, 12rem); }
}

/* Utility */
.mt-0 { margin-top: 0; }
.pos-rel { position: relative; }
