/* ════════════════════════════════════════════════════
   SOLVH CONSULTING — Premium Corporate CSS
   Brand: Black (#111), Gold (#F5C42C), Green (#4CBB17)
   Stack: Cormorant Garamond (display) + Inter (body)
   ════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --black:        #0F0F0F;
  --black-2:      #1A1A1A;
  --black-3:      #222222;
  --gold:         #F5C42C;
  --gold-dark:    #D4A91E;
  --green:        #4CBB17;
  --green-dark:   #3A9B11;
  --white:        #FFFFFF;
  --off-white:    #F8F7F4;
  --gray-50:      #F4F4F4;
  --gray-100:     #E8E8E8;
  --gray-300:     #AAAAAA;
  --gray-500:     #666666;
  --gray-700:     #333333;

  --text-primary:   #111111;
  --text-secondary: #555555;
  --text-muted:     #888888;
  --text-light:     #CCCCCC;

  --border:       rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);

  --max-w: 1200px;
  --nav-h: 76px;
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── UTILITY ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.section {
  padding: var(--space-3xl) 0;
}
.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--soft {
  background: var(--off-white);
}
.br-desktop { display: block; }

/* ─── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }

/* ─── TYPOGRAPHY GLOBALS ──────────────────────────── */
.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.section__label--light { color: var(--gold); }

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.section__heading--light { color: var(--white); }

.section__subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.75;
}
.section__subtext--light { color: var(--text-light); }

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

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,196,44,0.30);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn__icon { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover .btn__icon { transform: translateX(4px); }

/* ════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-slow), border-color var(--transition-slow), backdrop-filter var(--transition-slow);
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
/* Logo image wrapper — white pill on dark backgrounds so black S stays visible */
.nav__logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  padding: 2px;
}
.nav__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav__logo-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--gold-dark); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) var(--space-lg) var(--space-3xl);
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,196,44,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(76,187,23,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero__bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero__heading-accent {
  background: linear-gradient(90deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat { text-align: center; }
.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-plus {
  font-size: 1.5rem;
  color: var(--gold);
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.375rem;
  text-transform: uppercase;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  animation: bounce 2.4s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__logo-large {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about__accent-line {
  position: absolute;
  left: -2rem;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--green), transparent);
}
.about__lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.about__body-text {
  font-size: 0.975rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about__pillars {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.about__pillar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.about__pillar-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 50%;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.about__pillar-icon svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--black-2);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background var(--transition);
  outline-offset: -2px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover, .service-card:focus-visible {
  background: var(--black-3);
}
.service-card:hover::before,
.service-card:focus-visible::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.1); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.service-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex: 1;
}
.service-card__arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
  align-self: flex-start;
}
.service-card:hover .service-card__arrow,
.service-card:focus-visible .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.why-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card__number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  transition: color var(--transition);
}
.why-card:hover .why-card__number { color: rgba(245,196,44,0.12); }
.why-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,196,44,0.1), rgba(76,187,23,0.08));
  border-radius: var(--radius);
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.why-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════
   INDUSTRIES
   ════════════════════════════════════════════════════ */
.industries__layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.industries__intro { position: sticky; top: calc(var(--nav-h) + 2rem); }
.industries__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.industry-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding var(--transition);
}
.industry-item:first-child { padding-top: 0; }
.industry-item:last-child { border-bottom: none; }
.industry-item:hover { padding-left: 0.5rem; }
.industry-item__icon {
  width: 48px; height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--gold-dark);
  transition: all var(--transition);
}
.industry-item:hover .industry-item__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.industry-item__icon svg { width: 20px; height: 20px; }
.industry-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.industry-item__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════ */
.process__steps {
  max-width: 800px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.process-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.process-step__num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.process-step__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--green));
  min-height: 60px;
  margin-top: 0;
}
.process-step__line--last { background: linear-gradient(to bottom, var(--green), transparent); }
.process-step__body {
  padding-top: 0.75rem;
  padding-bottom: var(--space-sm);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.process-step__text {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════
   INSIGHTS
   ════════════════════════════════════════════════════ */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.insight-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,196,44,0.04), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,196,44,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.insight-card:hover::before { opacity: 1; }
.insight-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  flex: 1;
}
.insight-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.insight-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color var(--transition);
  align-self: flex-start;
}
.insight-card__link:hover { color: var(--gold-dark); }

/* ════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 32s linear infinite;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee__dot { color: var(--black-3); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════ */
.cta {
  background: linear-gradient(135deg, var(--black) 0%, #181808 50%, #080F08 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(245,196,44,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta__badge {
  width: 88px;
  height: 88px;
  margin: 0 auto 2rem;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(245,196,44,0.2);
}
.cta__badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.cta__subtext {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
}
.contact__detail-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 18px; height: 18px; }
.contact__detail-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition);
}
.contact__detail-link:hover { color: var(--gold-dark); }

/* FORM */
.contact__form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0; }
.form__group:not(:last-child):not(.form__row .form__group) { margin-bottom: 1.25rem; }
.form__row + .form__group,
.form__group + .form__group { margin-bottom: 1.25rem; }
.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.form__required { color: var(--gold-dark); }
.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form__input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,196,44,0.12);
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(76,187,23,0.08);
  border: 1px solid rgba(76,187,23,0.2);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-3xl) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.footer__logo { margin-bottom: 1.25rem; }
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 320px;
}
.footer__nav-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer__contact a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social-link {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .insights__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl) var(--space-lg); }
  .industries__layout { grid-template-columns: 1fr; gap: var(--space-xl); }
  .industries__intro { position: static; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* Mobile large */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-xl: 3rem;
  }
  .br-desktop { display: none; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    padding: 0.875rem 0;
    width: 100%;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__link--cta {
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    border-bottom: none;
    width: auto;
    display: inline-block;
  }
  .nav__hamburger { display: flex; }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero__stat-divider {
    width: 60px;
    height: 1px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    background: var(--black-2);
    gap: 0;
  }
  .service-card { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .why__grid { grid-template-columns: 1fr; }
  .insights__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .contact__form { padding: 1.75rem; }
  .process-step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .process-step__num { width: 44px; height: 44px; font-size: 0.7rem; }
}

/* Mobile small */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { text-align: center; justify-content: center; }
  .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ─── Active nav link ────────────────────────────── */
.nav__link--active:not(.nav__link--cta) {
  color: var(--white);
}
.nav__link--active:not(.nav__link--cta)::after {
  transform: scaleX(1);
}

/* ─── Form error state ───────────────────────────── */
.form__input--error {
  border-color: #E53E3E !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12) !important;
}

/* ─── Focus visible ──────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Selection ──────────────────────────────────── */
::selection {
  background: rgba(245,196,44,0.2);
  color: var(--text-primary);
}

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
