/* ============================================================
   ConsultechIT FZE LLC — Main Stylesheet
   style.css
   Dark theme — Deep black + Burnt orange + White
   Font: Mark Pro (with Inter fallback)
   ============================================================ */

/* ── Mark Pro Font (place font files in /fonts/ directory) ─── */
/* Required files:
   fonts/MarkPro.woff2          (weight 400)
   fonts/MarkPro-Medium.woff2   (weight 500)
   fonts/MarkPro-Bold.woff2     (weight 700)
   fonts/MarkPro-Heavy.woff2    (weight 800)
*/
@font-face {
  font-family: 'Mark Pro';
  src: url('fonts/MarkPro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mark Pro';
  src: url('fonts/MarkPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mark Pro';
  src: url('fonts/MarkPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mark Pro';
  src: url('fonts/MarkPro-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── Inter fallback from Google Fonts ───────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* ── Colors ── */
  --color-bg:           #0C0C0C;
  --color-bg-alt:       #131313;
  --color-bg-card:      rgba(255, 255, 255, 0.04);
  --color-bg-card-hover: rgba(255, 255, 255, 0.07);
  --color-surface:      #1A1A1A;
  --color-surface-2:    #242424;

  /* Orange — primary accent (from logo) */
  --color-orange:       #E06018;
  --color-orange-light: #F07832;
  --color-orange-dark:  #C04E10;
  --color-orange-glow:  rgba(224, 96, 24, 0.25);

  /* Text */
  --color-white:        #FFFFFF;
  --color-text:         #E8E8E8;
  --color-text-muted:   #9A9A9A;
  --color-text-faint:   #484848;

  /* Borders */
  --color-border:        rgba(255, 255, 255, 0.09);
  --color-border-orange: rgba(224, 96, 24, 0.32);
  --color-border-warm:   rgba(200, 160, 100, 0.2);

  /* ── Typography ── */
  --font-body:    'Mark Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Mark Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Spacing ── */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* ── Layout ── */
  --max-width:  1280px;
  --nav-height: 72px;

  /* ── Radii ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.5);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.6);
  --shadow-lg:     0 8px 36px rgba(0,0,0,0.7);
  --shadow-xl:     0 16px 64px rgba(0,0,0,0.8);
  --shadow-orange: 0 8px 36px rgba(224, 96, 24, 0.28);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-orange-light); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  color: var(--color-text-muted);
  line-height: 1.78;
}

a {
  color: var(--color-orange-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-white); }

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section { padding: var(--space-5xl) 0; }
.section--alt { background-color: var(--color-bg-alt); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(224, 96, 24, 0.1);
  border: 1px solid var(--color-border-orange);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section__title { margin-bottom: var(--space-md); }
.section__title span { color: var(--color-orange); }

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }

/* Primary — orange fill */
.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  box-shadow: 0 4px 20px rgba(224, 96, 24, 0.35);
}
.btn--primary:hover {
  background: var(--color-orange-light);
  border-color: var(--color-orange-light);
  box-shadow: 0 6px 30px rgba(224, 96, 24, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
}
.btn--primary:active { transform: translateY(0); }

/* Ghost — outline */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.18);
}
.btn--ghost:hover {
  border-color: var(--color-orange);
  color: var(--color-orange-light);
  transform: translateY(-2px);
}

/* Small */
.btn--sm {
  font-size: 0.875rem;
  padding: 0.5625rem 1.25rem;
}

/* ── Glassmorphism Card ─────────────────────────────────────── */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}
.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-icon {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 68px;
  width: auto;
  max-width: 200px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3125rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

/* Desktop nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-orange);
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-white);
}

.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-base);
}

.navbar__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.navbar__mobile-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active { color: var(--color-white); }

.navbar__mobile .btn {
  margin-top: var(--space-sm);
  width: 100%;
  justify-content: center;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated dot grid */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224, 96, 24, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgShift 24s linear infinite;
}

/* Glow orbs */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 72% 30%, rgba(224,96,24,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 18% 75%, rgba(224,96,24,0.05) 0%, transparent 50%);
}

@keyframes bgShift {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: 5rem 0;
}

.hero__text {
  animation: heroSlideLeft 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(224,96,24,0.1);
  border: 1px solid var(--color-border-orange);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero__label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.09;
  margin-bottom: var(--space-xl);
  max-width: 900px;
  letter-spacing: -0.03em;
}

.hero__title .highlight       { color: var(--color-orange); }
.hero__title .highlight--warm { color: var(--color-orange-light); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────
   HERO VISUAL — animated IT dashboard (right column)
───────────────────────────────────────────────────── */
.hero__visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroSlideRight 0.9s cubic-bezier(0.16,1,0.3,1) both 0.15s;
}

@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Orbit rings */
.vis-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(224,96,24,0.18);
  pointer-events: none;
}
.vis-orbit--1 {
  width: 440px; height: 440px;
  animation: orbitSpin 35s linear infinite;
}
.vis-orbit--2 {
  width: 300px; height: 300px;
  border-color: rgba(224,96,24,0.10);
  animation: orbitSpin 22s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Glow blob behind dashboard */
.vis-glow-core {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(224,96,24,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.3); opacity: 1;   }
}

/* ── Main dashboard card ── */
.vis-dashboard {
  position: relative;
  z-index: 2;
  width: 340px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(224,96,24,0.22);
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(224,96,24,0.07),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Top bar */
.vis-dashboard__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vis-dashboard__dots {
  display: flex;
  gap: 5px;
}
.vis-dashboard__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
}
.vis-dashboard__dots span:nth-child(1) { background: #FF5F57; }
.vis-dashboard__dots span:nth-child(2) { background: #FEBC2E; }
.vis-dashboard__dots span:nth-child(3) { background: #28C840; }

.vis-dashboard__label {
  flex: 1;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  letter-spacing: 0.04em;
}

.vis-dashboard__live {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #4ADE80;
  letter-spacing: 0.04em;
  animation: liveBlink 2s ease-in-out infinite;
}

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

/* Progress metrics */
.vis-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.vis-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vis-metric__name {
  font-size: 0.6563rem;
  color: rgba(255,255,255,0.4);
  width: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

.vis-metric__bar-wrap {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.vis-metric__bar {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-orange-dark), var(--color-orange-light));
  animation: barFill 1.6s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.6s;
}
.vis-metric:nth-child(2) .vis-metric__bar { animation-delay: 0.8s; }
.vis-metric:nth-child(3) .vis-metric__bar { animation-delay: 1.0s; }

@keyframes barFill {
  to { width: var(--w); }
}

.vis-metric__val {
  font-size: 0.6563rem;
  font-weight: 700;
  color: var(--color-orange-light);
  width: 34px;
  text-align: right;
}

/* Activity chart */
.vis-chart {
  margin-bottom: 1rem;
}

.vis-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 58px;
  margin-bottom: 0.375rem;
  padding: 0 2px;
}

.vis-bar-item {
  flex: 1;
  height: 0;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--color-orange), rgba(224,96,24,0.25));
  animation: barGrow 0.7s cubic-bezier(0.34,1.4,0.64,1) forwards;
  animation-delay: calc(1.1s + var(--d));
}

@keyframes barGrow {
  to { height: var(--h); }
}

.vis-chart__label {
  font-size: 0.5938rem;
  color: rgba(255,255,255,0.22);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Status row */
.vis-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vis-status-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.25);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0.1), 0 0 8px rgba(74,222,128,0.4); }
}

.vis-status-row span:nth-child(2) {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.55);
  flex: 1;
}

.vis-status-time {
  font-size: 0.625rem !important;
  color: rgba(255,255,255,0.2) !important;
}

/* ── Floating stat cards ── */
.vis-float-card {
  position: absolute;
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224,96,24,0.22);
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  z-index: 3;
  min-width: 155px;
}

.vis-float-card--1 {
  top: 48px;
  right: -16px;
  animation: floatCard 4.5s ease-in-out infinite;
}
.vis-float-card--2 {
  bottom: 70px;
  left: -12px;
  animation: floatCard 4.5s ease-in-out infinite 1.8s;
}
.vis-float-card--3 {
  top: 190px;
  right: -40px;
  animation: floatCard 4.5s ease-in-out infinite 0.9s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-10px); }
}

.vis-float-card__icon {
  width: 32px; height: 32px;
  background: rgba(224,96,24,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}

.vis-float-card__val {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  white-space: nowrap;
}

.vis-float-card__label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────
   SITE-WIDE ENHANCED ANIMATIONS
───────────────────────────────────────────────────── */

/* Better reveal: fade + slide up */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Card hover: lift + glow */
.service-card,
.value-card,
.benefit-card,
.card,
.mission-card,
.feature-item,
.contact-info-card {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.service-card:hover,
.value-card:hover,
.benefit-card:hover,
.card:hover,
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(224,96,24,0.25);
  border-color: rgba(224,96,24,0.35);
}

/* Service card icon: spin/scale on hover */
.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(224,96,24,0.2);
  color: var(--color-orange-light);
  box-shadow: 0 0 24px rgba(224,96,24,0.3);
}
.service-card__icon {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* Button shimmer effect */
.btn--primary {
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
}
.btn--primary:hover::after {
  left: 160%;
  transition: left 0.55s ease;
}

/* Section label: shimmer gradient animate */
.section__label {
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light), var(--color-orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: labelShimmer 3s linear infinite;
}

@keyframes labelShimmer {
  to { background-position: 200% center; }
}

/* Step numbers: pulse glow on hover */
.step-item:hover .step-item__number {
  text-shadow: 0 0 20px rgba(224,96,24,0.7);
  color: var(--color-orange-light);
}
.step-item__number {
  transition: color 0.3s, text-shadow 0.3s;
}

/* Page hero: fade-in on load */
.page-hero__content {
  animation: heroSlideLeft 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

/* CTA banner: subtle pulse glow */
.cta-banner {
  animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(224,96,24,0.12), inset 0 1px 0 rgba(255,255,255,0.05); }
  50%       { box-shadow: 0 0 70px rgba(224,96,24,0.22), inset 0 1px 0 rgba(255,255,255,0.05); }
}

/* Navbar: logo scale on hover */
.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.navbar__logo-img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-5xl)) 0 var(--space-5xl);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224, 96, 24, 0.09) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(224,96,24,0.08) 0%, transparent 60%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-faint);
  margin-bottom: var(--space-xl);
}

.page-hero__breadcrumb a { color: var(--color-text-muted); }
.page-hero__breadcrumb a:hover { color: var(--color-orange-light); }
.page-hero__breadcrumb .sep { color: var(--color-text-faint); }
.page-hero__breadcrumb .current { color: var(--color-orange-light); }

/* ── Services Cards ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(224,96,24,0.1);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-orange);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 0 22px rgba(224,96,24,0.45);
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-orange-light);
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-fast);
}

.service-card__link:hover { gap: var(--space-md); color: var(--color-white); }
.service-card__link svg { transition: transform var(--transition-base); }
.service-card__link:hover svg { transform: translateX(4px); }

/* Large category cards */
.service-cat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-decoration: none;
}

.service-cat-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(224,96,24,0.1) 0%, transparent 70%);
}

.service-cat-card:hover .service-cat-card__bg { opacity: 1; }
.service-cat-card:hover {
  border-color: var(--color-border-orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(224,96,24,0.18);
}

.service-cat-card__icon {
  width: 64px; height: 64px;
  background: rgba(224,96,24,0.08);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  transition: all var(--transition-base);
  position: relative; z-index: 1;
}

.service-cat-card:hover .service-cat-card__icon {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 0 26px rgba(224,96,24,0.5);
}

.service-cat-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
}

.service-cat-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
  position: relative; z-index: 1;
}

.service-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-orange-light);
  transition: all var(--transition-base);
  position: relative; z-index: 1;
}

.service-cat-card:hover .service-cat-card__cta {
  gap: var(--space-md);
  color: var(--color-white);
}

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-item {
  text-align: center;
  padding: var(--space-2xl);
}

.why-item__icon {
  width: 64px; height: 64px;
  background: rgba(224,96,24,0.08);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: var(--color-orange);
  transition: all var(--transition-base);
}

.why-item:hover .why-item__icon {
  background: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 0 26px rgba(224,96,24,0.45);
}

.why-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.why-item__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── Industries ────────────────────────────────────────────── */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
  cursor: default;
}

.industry-tag:hover {
  border-color: var(--color-border-orange);
  color: var(--color-white);
  background: rgba(224,96,24,0.07);
  transform: translateY(-2px);
}

.industry-tag svg { color: var(--color-orange); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(224,96,24,0.12) 0%, rgba(180,60,8,0.07) 100%);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-2xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224,96,24,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.025em;
}

.cta-banner__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.cta-banner__form {
  display: flex;
  gap: var(--space-md);
  max-width: 520px;
  margin: 0 auto;
}

.cta-banner__input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.8125rem var(--space-lg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.cta-banner__input::placeholder { color: var(--color-text-faint); }
.cta-banner__input:focus { border-color: var(--color-orange); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-5xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: var(--space-lg) 0 var(--space-xl);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 38px; height: 38px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__col .navbar__logo-img {
  height: 52px;
  max-width: 180px;
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--color-white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.footer__contact-item svg {
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--color-text-faint);
}

.footer__bottom-links { display: flex; gap: var(--space-xl); }

.footer__bottom-link {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__bottom-link:hover { color: var(--color-text-muted); }

/* ── Scroll Reveal (see enhanced version in SITE-WIDE ANIMATIONS above) ── */
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── About Page ────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.story-image {
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.story-image__photo-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border-orange);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(224,96,24,0.12);
}

.story-image__photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-2xl);
}

.story-image__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(12,12,12,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(224,96,24,0.28);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0.875rem;
}

.story-image__badge-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.story-image__badge span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .story-image__photo { height: 280px; }
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.mission-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.mission-card--blue {
  border-color: var(--color-border-orange);
  background: rgba(224,96,24,0.05);
}

.mission-card--gold {
  border-color: rgba(200,160,100,0.2);
  background: rgba(180,130,60,0.05);
}

.mission-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.mission-card--blue .mission-card__icon {
  background: rgba(224,96,24,0.12);
  color: var(--color-orange);
}

.mission-card--gold .mission-card__icon {
  background: rgba(200,160,80,0.12);
  color: #C8A060;
}

.mission-card__title { font-size: 1.25rem; margin-bottom: var(--space-md); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--color-border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.value-card__icon {
  width: 56px; height: 56px;
  background: rgba(224,96,24,0.08);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-orange);
  transition: all var(--transition-base);
}

.value-card:hover .value-card__icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.value-card__text { font-size: 0.9rem; color: var(--color-text-muted); }

/* ── Service Detail Pages ──────────────────────────────────── */
.service-detail-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-5xl)) 0 var(--space-5xl);
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224,96,24,0.09) 1px, transparent 1px);
  background-size: 36px 36px;
}

.service-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(224,96,24,0.1) 0%, transparent 60%);
}

.service-detail-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.service-detail-hero__icon-wrap {
  width: 80px; height: 80px;
  background: rgba(224,96,24,0.1);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  color: var(--color-orange);
}

.service-detail-hero__visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(224,96,24,0.12) 0%, rgba(100,40,10,0.25) 100%);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224,96,24,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--color-border-orange);
  transform: translateX(4px);
}

.feature-item__icon {
  width: 36px; height: 36px;
  background: rgba(224,96,24,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}

.feature-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.feature-item__text { font-size: 0.875rem; color: var(--color-text-muted); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-orange), transparent);
}

.step-item { text-align: center; position: relative; z-index: 1; }

.step-item__number {
  width: 56px; height: 56px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-white);
  box-shadow: 0 0 26px rgba(224,96,24,0.45);
}

.step-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.step-item__text { font-size: 0.875rem; color: var(--color-text-muted); }

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--color-border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.benefit-card__icon {
  width: 48px; height: 48px;
  background: rgba(224,96,24,0.08);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-orange);
}

.benefit-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.benefit-card__text { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.75; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--color-border-orange);
  transform: translateX(4px);
}

.contact-info-card__icon {
  width: 48px; height: 48px;
  background: rgba(224,96,24,0.08);
  border: 1px solid var(--color-border-orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}

.contact-info-card__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-xs);
}

.contact-info-card__value {
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.7;
}

/* Contact form */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  backdrop-filter: blur(12px);
}

.contact-form__title {
  font-size: 1.625rem;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.contact-form__subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

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

.form-group { margin-bottom: var(--space-xl); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-label .required {
  color: var(--color-orange);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-lg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-faint); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-orange);
  background: rgba(224,96,24,0.04);
  box-shadow: 0 0 0 3px rgba(224,96,24,0.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-error {
  display: none;
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: var(--space-xs);
}

.form-error.visible { display: block; }

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239A9A9A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.125rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background: var(--color-surface); color: var(--color-white); }

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

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl);
}

.form-success.visible { display: block; }

.form-success__icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: #22c55e;
}

.form-success__title { font-size: 1.5rem; margin-bottom: var(--space-md); }
.form-success__text  { color: var(--color-text-muted); line-height: 1.8; }

/* Map */
.map-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.3) invert(0.88) hue-rotate(180deg);
}

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-5xl) 0;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-orange  { color: var(--color-orange); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-text-muted); }

/* ── Responsive ─────────────────────────────────────────────── */

/* ── Tablet: 1024px ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --nav-height: 64px; }

  /* Logo fits the reduced nav height */
  .navbar__logo-img { height: 52px; }

  /* Hero: collapse to single column, show image scroll below text */
  .hero__content { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .hero__img-cols { height: 340px; }

  .services-grid               { grid-template-columns: repeat(2, 1fr); }
  .why-grid                    { grid-template-columns: repeat(3, 1fr); }
  .footer__grid                { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .values-grid                 { grid-template-columns: repeat(2, 1fr); }
  .service-detail-hero__content { grid-template-columns: 1fr; }
  .service-detail-hero__visual  { display: none; }
  .steps-grid                  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before          { display: none; }
  .benefits-grid               { grid-template-columns: repeat(2, 1fr); }
  .contact-grid                { grid-template-columns: 1fr; }
}

/* ── Mobile: 768px ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .section   { padding: var(--space-4xl) 0; }
  .container { padding: 0 var(--space-lg); }

  /* Navbar */
  .navbar__nav,
  .navbar__actions   { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--nav-height) + 2rem) 0 3rem; }
  .hero__content { padding: 2rem 0 2rem; }
  .hero__title { max-width: 100%; }
  .hero__subtitle { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Page-level hero sections */
  .page-hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  }
  .service-detail-hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  }

  /* Grids */
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer__grid        { grid-template-columns: 1fr; }
  .story-grid          { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .features-list       { grid-template-columns: 1fr; }
  .steps-grid          { grid-template-columns: 1fr 1fr; }
  .benefits-grid       { grid-template-columns: repeat(2, 1fr); }
  .form-row            { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-form { padding: var(--space-xl); }

  /* CTA */
  .cta-banner       { padding: var(--space-2xl) var(--space-lg); }
  .cta-banner__form { flex-direction: column; }

  /* Section headers */
  .section__header { margin-bottom: var(--space-3xl); }

  /* Footer */
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom-links { flex-wrap: wrap; gap: var(--space-md); }
  .footer { padding: var(--space-4xl) 0 var(--space-xl); }
}

/* ── Small mobile: 480px ────────────────────────────────────── */
@media (max-width: 480px) {
  .container     { padding: 0 var(--space-md); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* Tighter padding on smallest screens */
  .cta-banner    { padding: var(--space-xl) var(--space-md); }
  .contact-form  { padding: var(--space-lg); }
  .service-card  { padding: var(--space-xl); }
  .benefit-card  { padding: var(--space-xl); }
  .why-item      { padding: var(--space-xl); }

  /* Section text */
  .section__subtitle { font-size: 0.9375rem; }
  .cta-banner__subtitle { font-size: 0.9375rem; }
}

/* ── Extra small: 320px ─────────────────────────────────────── */
@media (max-width: 320px) {
  :root { font-size: 14px; }
  .btn  { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
  .navbar__logo-img { height: 44px; }
}

/* ── Hero Image Scroll Columns (zurix.global style) ─────────── */
@keyframes imgScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes imgScrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

.hero__img-cols {
  position: relative;
  display: flex;
  gap: 1rem;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  /* Fade top/bottom edges */
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.img-col {
  flex: 1;
  overflow: hidden;
}

.img-col__track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  will-change: transform;
}

.img-col__track--up {
  animation: imgScrollUp 28s linear infinite;
}

.img-col__track--down {
  animation: imgScrollDown 32s linear infinite;
}

.img-col__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
}

.img-col__item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.8);
}

.img-col__item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

@media (max-width: 768px) {
  .hero__img-cols { height: 260px; }
}
