/* ==========================================================================
   Skyheiire Solutions — Core Stylesheet
   Design tokens, reset, layout primitives, component styles
   ========================================================================== */

:root {
  --charcoal: #111111;
  --gold: #C9A227;
  --gold-dim: #a1821f;

  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-alt: #F5F5F5;
  --ink: #111111;
  --muted: #555555;
  --border-soft: rgba(17, 17, 17, 0.09);
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.55);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(17,17,17,0.05);
  --shadow-md: 0 10px 34px rgba(17,17,17,0.08);
  --shadow-lg: 0 24px 70px rgba(17,17,17,0.13);
  --shadow-gold: 0 12px 34px rgba(201,162,39,0.28);

  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-med: 420ms;
  --dur-slow: 800ms;

  --container: 1280px;
  --nav-h: 84px;
  --nav-h-scrolled: 68px;

  --z-loader: 1000;
  --z-nav: 600;
  --z-modal: 800;
  --z-toast: 700;

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0A0A0B;
  --surface: #131316;
  --surface-alt: #17171b;
  --ink: #F5F5F7;
  --muted: #9B9BA3;
  --border-soft: rgba(255,255,255,0.09);
  --glass-bg: rgba(24,24,28,0.6);
  --glass-border: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 34px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 70px rgba(0,0,0,0.45);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.has-lenis { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out);
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
input, textarea, select { background: none; border: none; outline: none; }
::selection { background: var(--gold); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout Primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { position: relative; padding: 140px 0; }
.section--tight { padding: 96px 0; }
.section--alt { background: var(--surface-alt); }
.section--surface { background: var(--surface); }
.overflow-hidden { overflow: hidden; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title .accent { color: var(--gold); }
.section-sub { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

.band-dark { background: var(--charcoal); color: #F5F5F5; position: relative; }
.band-dark .section-sub { color: rgba(245,245,247,0.68); }
.band-dark .eyebrow { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  border: 1px solid transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 30px rgba(201,162,39,0.25);
}
.btn-primary:hover { background: var(--gold-dim); box-shadow: 0 16px 40px rgba(201,162,39,0.32); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Glass Card ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}
.loader__mark { width: 64px; height: 64px; }
.loader__bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.loader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
}
.loader__text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: calc(var(--z-nav) + 1);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), backdrop-filter var(--dur-med) var(--ease-out);
}
.navbar__inner {
  width: 100%;
  max-width: calc(var(--container) + 80px);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar.is-scrolled {
  height: var(--nav-h-scrolled);
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--border-soft), var(--shadow-sm);
}
.navbar__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__brand img { width: 40px; height: 40px; flex-shrink: 0; }
.navbar__brand-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; white-space: nowrap; }
.navbar__brand-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }

.navbar__nav { display: flex; align-items: center; gap: 22px; flex-shrink: 1; }
.navbar__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  opacity: 0.82;
  white-space: nowrap;
  transition: opacity var(--dur-fast);
}
.navbar__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--dur-fast) var(--ease-out);
}
.navbar__link:hover { opacity: 1; }
.navbar__link:hover::after, .navbar__link.is-active::after { width: 100%; }
.navbar__link.is-active { opacity: 1; }

.navbar__actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-soft);
  color: var(--ink);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle .fa-sun { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

.navbar__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.navbar__burger span { width: 18px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast); }
.navbar__burger.is-active span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 20px) 32px 40px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__link { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.mobile-menu__actions { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg);
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
[data-theme="dark"] .hero__canvas { opacity: 0.6; }
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 32px 60px;
  width: 100%;
}
.hero__copy { max-width: 620px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,0.18); }
.hero__title {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .word-inner { display: inline-block; will-change: transform; }
.hero__title .accent { color: var(--gold); }
.hero__sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__cta { display: flex; align-items: center; gap: 18px; margin-bottom: 56px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 16px; }
.hero__trust-avatars { display: flex; }
.hero__trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #fff;
  font-family: var(--font-heading);
}
.hero__trust-avatars span:first-child { margin-left: 0; }
.hero__trust-text { font-size: 0.88rem; color: var(--muted); }
.hero__trust-text strong { color: var(--ink); }

.hero__visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  left: 52%;
  z-index: 1;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 45%;
  display: block;
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 14%);
  pointer-events: none;
  z-index: 2;
}
/* ---------- Trusted By ---------- */
.trusted { padding: 60px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.trusted__label { text-align: center; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 36px; font-weight: 600; }
.marquee { position: relative; overflow: hidden; }
.marquee__track { display: flex; gap: 72px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__item { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--muted); opacity: 0.55; white-space: nowrap; display: flex; align-items: center; gap: 10px; letter-spacing: -0.01em; transition: opacity var(--dur-fast); }
.marquee__item i { font-size: 1.1rem; }
.marquee__item:hover { opacity: 1; color: var(--ink); }

/* ---------- Bento Services ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 20px;
}
.bento__card {
  position: relative;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.bento__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.bento__card--wide { grid-column: span 2; }
.bento__card--tall { grid-row: span 2; justify-content: flex-start; }
.bento__card--tall .bento__icon { width: 72px; height: 72px; font-size: 1.7rem; }
.bento__card--tall .bento__header { gap: 20px; margin-bottom: 18px; }
.bento__card--tall .bento__title { font-size: 1.4rem; }
.bento__card--tall .bento__desc { font-size: 1rem; max-width: 380px; }
.bento__glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(60px);
  opacity: 0;
  top: -60px; right: -60px;
  transition: opacity var(--dur-med);
}
.bento__card:hover .bento__glow { opacity: 0.18; }
.bento__header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; position: relative; z-index: 1; }
.bento__icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-alt);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med), color var(--dur-med);
}
.bento__card:hover .bento__icon { transform: scale(1.1) rotate(-6deg); background: var(--gold); color: #fff; }
.bento__title { font-family: var(--font-heading); font-size: 1.18rem; font-weight: 600; position: relative; z-index: 1; }
.bento__desc { font-size: 0.92rem; color: var(--muted); line-height: 1.55; position: relative; z-index: 1; }
.bento__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; position: relative; z-index: 1; }
.bento__tag { padding: 7px 14px; border-radius: var(--radius-full); background: var(--surface-alt); color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.bento__arrow { position: absolute; bottom: 26px; right: 26px; font-size: 0.9rem; color: var(--ink); opacity: 0; transform: translate(-6px, 6px); transition: all var(--dur-fast) var(--ease-out); }
.bento__card:hover .bento__arrow { opacity: 1; transform: translate(0, 0); }

/* ---------- Why Choose ---------- */
.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why__visual { position: relative; }
.why__visual img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-top: 12px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__item-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
}
.why__item-title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.why__item-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ---------- Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), background var(--dur-med);
  cursor: pointer;
}
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.industry-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-alt);
  font-size: 1.4rem;
  color: var(--gold);
  transition: background var(--dur-med), color var(--dur-med), transform var(--dur-med);
}
.industry-card:hover .industry-card__icon { background: var(--gold); color: #fff; transform: scale(1.08); }
.industry-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; }

/* ---------- Tech Stack ---------- */
.tech-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.tech-tab {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  transition: all var(--dur-fast) var(--ease-out);
}
.tech-tab.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tech-tab:not(.is-active):hover { border-color: var(--gold); color: var(--ink); }
.tech-panel { display: none; }
.tech-panel.is-active { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tech-logo {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}
.tech-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tech-logo i { font-size: 1.8rem; color: var(--ink); }
.tech-logo span { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

/* ---------- Process Timeline ---------- */
.process-timeline { position: relative; }
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.process-line {
  position: absolute;
  top: 27px; left: 0; right: 0;
  height: 2px;
  background: var(--border-soft);
  z-index: 0;
}
.process-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--muted);
  transition: all var(--dur-med) var(--ease-out);
}
.process-step.is-done .process-step__dot { background: var(--gold); border-color: transparent; color: #fff; }
.process-step__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; margin-bottom: 6px; }
.process-step__desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
  cursor: pointer;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.case-card:hover .case-card__media img { transform: scale(1.06); }
.case-card__tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
}
.case-card__body { padding: 26px 26px 28px; }
.case-card__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.case-card__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.case-card__metrics { display: flex; gap: 22px; border-top: 1px solid var(--border-soft); padding-top: 16px; }
.case-card__metric strong { display: block; font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); }
.case-card__metric span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Statistics ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.stat-item__value { font-family: var(--font-heading); font-size: clamp(2.2rem, 3.4vw, 3.2rem); font-weight: 700; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-item__value .accent { color: var(--gold); }
.stat-item__label { font-size: 0.85rem; color: rgba(245,245,247,0.6); margin-top: 10px; }
.stat-item__icon { font-size: 1.3rem; color: var(--gold); margin-bottom: 14px; }

/* ---------- About ---------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.about-fact { padding: 22px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border-soft); }
.about-fact strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 4px; }
.about-fact span { font-size: 0.82rem; color: var(--muted); }
.about-quote { font-family: var(--font-heading); font-size: 1.5rem; line-height: 1.4; color: var(--ink); margin-bottom: 20px; }
.about-signature { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avatar-sm { width: 48px; height: 48px; font-size: 0.85rem; }
.about-signature strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; }
.about-signature span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Careers Band ---------- */
.careers-band {
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.careers-band::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: var(--gold);
  filter: blur(100px);
  opacity: 0.25;
  top: -100px; right: -60px;
  border-radius: 50%;
}
.careers-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; position: relative; z-index: 1; }
.careers-role-pill {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ---------- AI Innovation ---------- */
.ai-section { position: relative; }
.ai-canvas { position: absolute; inset: 0; z-index: 0; }
.ai-content { position: relative; z-index: 2; }
.ai-features { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 64px; }
.ai-feature {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med);
}
.ai-feature:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); }
.ai-feature__icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 18px; }
.ai-feature__title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; margin-bottom: 8px; }
.ai-feature__desc { font-size: 0.85rem; color: rgba(245,245,247,0.62); line-height: 1.55; }

/* ---------- Insights / Blog ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.insight-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med); cursor: pointer; }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.insight-card__media { aspect-ratio: 16/10; background: var(--charcoal); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-med) var(--ease-out); }
.insight-card:hover .insight-card__media img { transform: scale(1.05); }
.insight-card__media i { font-size: 2rem; color: var(--gold); }
.insight-card__body { padding: 26px; }
.insight-card__meta { display: flex; gap: 12px; align-items: center; font-size: 0.76rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.insight-card__meta .tag { color: var(--gold); font-weight: 700; }
.insight-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.insight-card__link { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Testimonials ---------- */
.testimonials-swiper { padding-bottom: 60px !important; }
.testimonial-card {
  padding: 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card__quote { font-size: 1.02rem; line-height: 1.7; color: var(--ink); margin-bottom: 28px; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 0.9rem;
  background: var(--gold);
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 0.92rem; font-family: var(--font-heading); }
.testimonial-card__author span { font-size: 0.78rem; color: var(--muted); }
.swiper-pagination-bullet { background: var(--muted); opacity: 0.4; }
.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }
.swiper-nav {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}
.swiper-nav:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.testimonials-nav { display: flex; justify-content: center; gap: 14px; margin-top: -20px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--featured { background: var(--charcoal); color: #fff; transform: scale(1.03); }
.price-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card--featured .price-card__desc { color: rgba(245,245,247,0.65); }
.price-card--featured .price-card__feature { color: rgba(245,245,247,0.85); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 7px 18px; border-radius: var(--radius-full);
  background: var(--gold); color: #1a1400;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.price-card__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.price-card__desc { font-size: 0.86rem; color: var(--muted); margin-bottom: 26px; min-height: 40px; }
.price-card__price { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; margin-bottom: 4px; }
.price-card__price span { font-size: 0.95rem; font-weight: 500; opacity: 0.6; }
.price-card__cycle { font-size: 0.78rem; color: var(--muted); margin-bottom: 30px; }
.price-card__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; flex: 1; }
.price-card__feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.price-card__feature i { color: var(--gold); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}
.faq-item__icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; transition: transform var(--dur-med) var(--ease-out), background var(--dur-med), color var(--dur-med); font-size: 0.7rem; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-item__a-wrap { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease-out); }
.faq-item__a { padding: 0 28px 24px; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 18px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.95rem;
  transition: border-color var(--dur-fast);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field-error { font-size: 0.76rem; color: #e5484d; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #e5484d; }
.field.has-error .field-error { display: block; }
.form-success { display: none; align-items: center; gap: 14px; padding: 20px; border-radius: var(--radius-md); background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.25); color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.form-success.is-visible { display: flex; }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info-card { padding: 26px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border-soft); display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card i { font-size: 1.1rem; color: var(--gold); margin-top: 3px; }
.contact-info-card strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card span, .contact-info-card a { font-size: 0.87rem; color: var(--muted); }
.contact-social { display: flex; gap: 10px; }
.contact-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast); }
.contact-social a:hover { background: var(--gold); color: #fff; border-color: transparent; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #EDEDED; padding: 90px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: background var(--dur-fast), border-color var(--dur-fast); }
.footer-social a:hover { background: var(--gold); border-color: transparent; }
.footer-col-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; margin-bottom: 22px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--gold); }
.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 13px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 0.85rem;
}
.newsletter-form button {
  width: 44px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-fast);
}
.newsletter-form button:hover { transform: scale(1.06); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- Scroll To Top ---------- */
.scroll-top {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: var(--z-toast);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur-fast), transform var(--dur-fast), visibility var(--dur-fast);
  box-shadow: var(--shadow-md);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Chatbot Widget ---------- */
.chatbot-toggle {
  position: fixed;
  right: 28px; bottom: 92px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  z-index: var(--z-toast);
  box-shadow: var(--shadow-gold);
  transition: transform var(--dur-fast);
}
.chatbot-toggle:hover { transform: scale(1.06); }
.chatbot-toggle .fa-xmark { display: none; }
.chatbot-toggle.is-open .fa-comment-dots { display: none; }
.chatbot-toggle.is-open .fa-xmark { display: block; }
.chatbot-panel {
  position: fixed;
  right: 28px; bottom: 164px;
  width: 360px;
  max-width: calc(100vw - 56px);
  height: 460px;
  max-height: calc(100vh - 220px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
}
.chatbot-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chatbot-header { padding: 18px 20px; background: var(--charcoal); color: #fff; display: flex; align-items: center; gap: 12px; }
.chatbot-header .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.25); }
.chatbot-header strong { display: block; font-family: var(--font-heading); font-size: 0.92rem; }
.chatbot-header span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.chatbot-body { flex: 1; padding: 18px 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.chat-msg { max-width: 84%; padding: 12px 16px; border-radius: 14px; font-size: 0.86rem; line-height: 1.5; }
.chat-msg--bot { background: var(--surface-alt); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg--user { background: var(--gold); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chatbot-footer { padding: 14px; border-top: 1px solid var(--border-soft); display: flex; gap: 10px; }
.chatbot-footer input { flex: 1; padding: 12px 14px; border-radius: var(--radius-full); background: var(--surface-alt); font-size: 0.85rem; }
.chatbot-footer button { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Cookie Consent ---------- */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 620px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--bg);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; line-height: 1.6; flex: 1; opacity: 0.85; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 64px; }
.reveal { opacity: 0; }
