/* ============================================================
   EXPORTS LABS — Complete Stylesheet
   Inspired by digital-agency Instrument Sans aesthetic
   Brand: #F04E0F (orange), Dark: #0D0D0D, Off-white: #F5F2EE
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --orange: #F04E0F;
  --orange-dark: #C43D09;
  --orange-light: #FF7040;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --dark-4: #242424;
  --border: rgba(255,255,255,0.1);
  --border-hover: rgba(255,255,255,0.25);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.5);
  --text-subtle: rgba(255,255,255,0.3);
  --cream: #F5F2EE;
  --cream-dark: #EAE7E3;
  --font: 'Instrument Sans', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 3px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ─── SELECTION ─── */
::selection { background: var(--orange); color: #fff; }

/* ─── UTILITY ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.section-spacing { padding: 120px 0; }
.section-spacing-sm { padding: 80px 0; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
h1, h2, h3, h4 { font-family: var(--font); font-weight: 600; line-height: 1.05; }
.section-title { font-size: clamp(36px, 4.5vw, 60px); font-weight: 600; line-height: 1.05; }
.section-title em { font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.section-title .highlight { color: var(--orange); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding: 0;
  gap: 8px;
}
.btn-ghost:hover { gap: 14px; }
.btn-icon {
  width: 40px; height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.btn-icon:hover { background: var(--orange); border-color: var(--orange); }
.arrow-icon {
  width: 18px; height: 18px;
  display: inline-block;
  position: relative;
}
.arrow-icon::after {
  content: '→';
  font-size: 16px;
}

/* ─── NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s;
}
.site-header.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  max-width: 1240px;
  margin: 0 auto;
  transition: padding 0.3s var(--ease);
}
.site-header.scrolled .nav { padding: 16px 40px; }
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-group { position: relative; }
.nav-group > a,
.nav-group > button,
.nav-links > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: var(--radius);
}
.nav-group > a:hover,
.nav-group > button:hover,
.nav-links > a:hover { color: var(--text); }
.nav-links > a.active { color: var(--text); }
.dropdown-icon {
  font-size: 10px;
  transition: transform 0.2s;
  opacity: 0.5;
}
.nav-group:hover .dropdown-icon { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav-group:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-dropdown a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  transition: color 0.2s;
}
.login-link:hover { color: var(--text); }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  padding: 100px 40px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,78,15,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,78,15,0.08) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
}
.hero-bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240,78,15,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,78,15,0.1);
  border: 1px solid rgba(240,78,15,0.25);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-scroll {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 80px;
  position: absolute;
  right: 40px;
  bottom: 0;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border));
  flex-shrink: 0;
}
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ─── TICKER ─── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--dark-2);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT / INTRO ─── */
.intro-section { background: var(--dark); }
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.intro-text {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.intro-text strong { color: var(--orange); font-weight: 600; }
.intro-right { padding-top: 20px; }
.intro-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.intro-features { display: flex; flex-direction: column; gap: 0; }
.intro-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.intro-feature:hover { color: var(--text); }
.intro-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  transition: opacity 0.2s;
}
.intro-feature:hover .intro-feature-dot { opacity: 1; }

/* ─── SERVICES ─── */
.services-section { background: var(--dark-2); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 32px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--dark-2);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s var(--ease);
  cursor: default;
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover .service-num { color: var(--orange); }
.service-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  transition: color 0.3s;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(240,78,15,0.1);
  border: 1px solid rgba(240,78,15,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 14px; }

/* ─── CATEGORIES ─── */
.categories-section { background: var(--dark); }
.categories-header { margin-bottom: 60px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.category-item {
  background: var(--dark);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s var(--ease);
  cursor: default;
}
.category-item:hover { background: var(--dark-3); }
.category-item:hover .cat-icon { border-color: rgba(240,78,15,0.4); background: rgba(240,78,15,0.08); }
.cat-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  transition: all 0.2s;
}
.cat-icon svg {
  width: 20px; height: 20px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.category-item:hover .cat-icon svg { stroke: var(--orange); }
.cat-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  transition: color 0.2s;
}
.category-item:hover .cat-name { color: var(--text); }

/* ─── PROBLEMS / TABS ─── */
.problems-section { background: var(--dark-2); }
.problems-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.prob-tab {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-subtle);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  letter-spacing: 0.02em;
}
.prob-tab:hover { color: var(--text-muted); }
.prob-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.prob-panel { display: none; }
.prob-panel.active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }
.prob-hook {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.prob-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}
.prob-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 32px;
}
.prob-points { display: flex; flex-direction: column; }
.prob-point {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
  align-items: flex-start;
}
.prob-point-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin-top: 5px; flex-shrink: 0;
}
.prob-metrics { display: flex; flex-direction: column; gap: 16px; }
.prob-metric {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.prob-metric-num {
  font-size: 44px; font-weight: 700;
  color: var(--orange); line-height: 1; display: block; margin-bottom: 6px;
}
.prob-metric-label {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}

/* ─── STATS BAND ─── */
.stats-section {
  background: var(--orange);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.stat-item {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: left;
}
.stat-num {
  font-size: 52px; font-weight: 700;
  color: #fff; line-height: 1; display: block; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ─── PROCESS ─── */
.process-section { background: var(--dark); }
.process-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
  flex-wrap: wrap; gap: 32px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  height: 1px;
  background: var(--border);
}
.process-step { padding: 0 24px 0 0; position: relative; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 28px;
  position: relative; z-index: 1;
  transition: all 0.3s var(--ease);
}
.process-step:hover .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.step-title {
  font-size: 18px; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
}
.step-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.7;
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  background: var(--dark-2);
  text-align: center;
}
.testimonial-inner { max-width: 840px; margin: 0 auto; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 32px;
}
.testimonial-quote strong { color: var(--orange); font-style: normal; font-family: var(--font); font-weight: 600; }
.testimonial-author { font-size: 13px; color: var(--text-subtle); letter-spacing: 0.08em; text-transform: uppercase; }
.logo-strip {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--border);
}
.logo-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 13px; font-weight: 500;
  color: var(--text-subtle); letter-spacing: 0.04em;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,78,15,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600; line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--orange); }
.cta-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 460px; margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-address {
  font-size: 13px; color: var(--text-subtle);
  margin-top: 32px; line-height: 1.7;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,78,15,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px; display: block;
}
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.02em;
  max-width: 800px; margin-bottom: 24px;
}
.page-hero p {
  font-size: 17px; color: var(--text-muted);
  max-width: 520px; line-height: 1.7;
}
.page-hero-panel {
  display: flex; gap: 12px;
  flex-wrap: wrap; margin-top: 40px;
}
.page-hero-metric {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 160px;
}
.page-hero-metric strong {
  display: block; font-size: 22px; font-weight: 700;
  color: var(--orange); margin-bottom: 4px;
}
.page-hero-metric span { font-size: 12px; color: var(--text-muted); }

/* ─── CONTENT SECTIONS ─── */
.content-section { background: var(--dark-2); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-card {
  background: var(--dark-2);
  padding: 36px 32px;
  transition: background 0.2s;
}
.content-card:hover { background: var(--dark-3); }
.content-card h3 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 12px; color: var(--text);
}
.content-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── SUCCESS STORIES ─── */
.story-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.2s;
}
.story-card:hover { border-color: var(--orange); }
.story-tag {
  display: inline-block;
  background: rgba(240,78,15,0.1);
  border: 1px solid rgba(240,78,15,0.2);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.story-stat {
  font-size: 42px; font-weight: 700;
  color: var(--orange); line-height: 1;
  margin-bottom: 8px;
}
.story-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.story-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── BLOG ─── */
.blog-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: rgba(240,78,15,0.4); }
.blog-thumb {
  height: 200px;
  background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--border);
}
.blog-body { padding: 28px; }
.blog-meta {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 14px;
}
.blog-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange);
}
.blog-date { font-size: 12px; color: var(--text-subtle); }
.blog-title { font-size: 17px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── TEAM ─── */
.team-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: rgba(240,78,15,0.4); }
.team-avatar {
  height: 240px;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; font-weight: 700;
  color: rgba(240,78,15,0.3);
  border-bottom: 1px solid var(--border);
}
.team-info { padding: 24px; }
.team-name { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--orange); margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portfolio-item {
  background: var(--dark-2);
  height: 300px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.portfolio-item:hover { background: var(--dark-3); }
.portfolio-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  opacity: 0.06;
  transition: opacity 0.3s, transform 0.3s;
}
.portfolio-item:hover .portfolio-bg { opacity: 0.1; transform: scale(1.05); }
.portfolio-info { position: relative; z-index: 1; }
.portfolio-cat {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.portfolio-title { font-size: 20px; font-weight: 600; }

/* ─── CONTACT ─── */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info { }
.contact-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(240,78,15,0.1);
  border: 1px solid rgba(240,78,15,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-item-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 4px;
}
.contact-item-value { font-size: 15px; color: var(--text); }
.contact-form { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  background: var(--dark-2); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-address { font-size: 13px; color: var(--text-subtle); line-height: 1.7; }
.footer-col-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-subtle); }

/* ─── FADE IN ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { 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; }

/* ─── DIVIDER ─── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── GRID HELPERS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .container, .container-sm { padding: 0 24px; }
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .hero-title { font-size: clamp(42px, 10vw, 80px); }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-scroll { display: none; }
  .intro-inner, .two-col, .contact-grid, .prob-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .categories-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section-spacing { padding: 72px 0; }
  h1 { font-size: clamp(36px, 10vw, 60px); }
  .hero-title { font-size: clamp(38px, 12vw, 64px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 32px; }
  .services-grid, .categories-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 24px; }
  .stat-num { font-size: 36px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .problems-tabs { gap: 0; }
  .prob-tab { padding: 12px 16px; font-size: 12px; }
}
