/* ==========================================================================
   THEMATEK — Main Stylesheet
   taste-skill v2: DESIGN_VARIANCE:7 / MOTION_INTENSITY:5 / VISUAL_DENSITY:5
   B2B IT Services, Detroit MI — professional tech, amber/navy brand
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #122035;
  --navy-light:  #1a3352;
  --amber:            #f6b232;
  --amber-dark:       #d4961a;
  --amber-accessible: #7a5500; /* WCAG AA text on light bg: 6.7:1 on white */
  --amber-10:    rgba(246, 178, 50, 0.10);
  --amber-15:    rgba(246, 178, 50, 0.15);
  --amber-30:    rgba(246, 178, 50, 0.30);
  --white:       #ffffff;
  --off-white:   #f7f6f2;
  --gray-50:     #f4f4f1;
  --gray-100:    #e8e8e4;
  --gray-200:    #d1d1cc;
  --gray-400:    #9b9b96;
  --gray-500:    #747470;
  --gray-600:    #56565280;
  --gray-700:    #3a3a37;
  --text:        #18181a;
  --text-body:   #3a3a37;
  --text-muted:  #6b7280;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:      0 4px 8px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md:   0 10px 20px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-xl:   0 32px 64px rgba(0,0,0,0.16);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height:  72px;
  --container:   1240px;
  --section-v:   96px;
}

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

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Skip navigation — WCAG 2.4.1 */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  transition: top 200ms;
}
.skip-nav:focus { top: 0; outline: 3px solid var(--navy); outline-offset: 0; }

/* Anchor offset for fixed nav */
[id] { scroll-margin-top: calc(var(--nav-height) + 16px); }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p { color: var(--text-body); }
.lead { font-size: 1.125rem; line-height: 1.7; }
.small { font-size: 0.875rem; }
.caption { font-size: 0.8125rem; color: var(--text-muted); }

.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.font-mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 1024px) {
  .container { padding-inline: 48px; }
}

.section {
  padding-block: var(--section-v);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section--off {
  background: var(--off-white);
}

.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease),
              border-color 180ms var(--ease), transform 120ms var(--ease),
              box-shadow 180ms var(--ease);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246, 178, 50, 0.35);
}

.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-200);
}

.btn--outline-dark:hover {
  background: var(--gray-50);
  border-color: var(--amber);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--amber);
  border-color: transparent;
  padding-inline: 0;
}

.btn--ghost:hover {
  color: var(--amber-dark);
}

.btn--ghost svg { transition: transform 200ms var(--ease); }
.btn--ghost:hover svg { transform: translateX(4px); }

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 900;
  transition: background 250ms var(--ease), box-shadow 250ms var(--ease),
              backdrop-filter 250ms var(--ease);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav--light-bg {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo-wrap {
  flex-shrink: 0;
  background: var(--white);
  padding: 7px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

/* Logo on dark nav — no pill background needed */
.nav__logo-bare {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 4px 0;
}

/* SVG white logo — explicit size prevents max-width:100% from collapsing it */
.nav__logo {
  display: block;
  width: 210px;
  height: auto;
  flex-shrink: 0;
}

/* PNG logo — crops the square canvas to show only the logo content area */
/* At 210px wide: scale = 210/1052 = 0.1996 → rendered 210×210          */
/* Content sits at y≈385–670 in original; object-position 48% 51%       */
/* centers it perfectly in the 60px view window                          */
.logo-png-nav {
  display: block;
  width: 210px;
  height: 60px;
  object-fit: cover;
  object-position: 48% 51%;
  flex-shrink: 0;
}

.nav__logo {
  height: 34px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 150ms var(--ease), background 150ms var(--ease);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__link.active {
  color: var(--amber);
  background: var(--amber-10);
}

.nav--light-bg .nav__link {
  color: var(--text-muted);
}

.nav--light-bg .nav__link:hover,
.nav--light-bg .nav__link.active {
  color: var(--text);
  background: var(--gray-50);
}

.nav--light-bg .nav__link.active {
  color: var(--amber-dark);
}

.nav__cta {
  display: none;
  flex-shrink: 0;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 150ms var(--ease);
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 250ms var(--ease), opacity 200ms var(--ease);
}

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

.nav--light-bg .nav__hamburger {
  border-color: var(--gray-200);
}

.nav--light-bg .nav__hamburger span {
  background: var(--text);
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem 24px 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 899;
}

.nav__mobile.open { display: block; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.nav__mobile-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 150ms, background 150ms;
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--amber);
  background: var(--amber-10);
}

@media (min-width: 768px) {
  .nav__cta { display: flex; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

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

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(246,178,50,0.06) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(26,51,82,0.8) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,178,50,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,178,50,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

.hero__content {
  max-width: 620px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero__kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__headline span {
  color: var(--amber);
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 2rem;
}

.hero__stat {
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.hero__stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circuit-diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 0.85;
}

.circuit-svg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.circuit-node {
  fill: var(--amber);
  filter: drop-shadow(0 0 8px rgba(246,178,50,0.6));
  animation: nodePulse 3s ease-in-out infinite;
}

.circuit-node:nth-child(2) { animation-delay: 0.5s; }
.circuit-node:nth-child(3) { animation-delay: 1s; }
.circuit-node:nth-child(4) { animation-delay: 1.5s; }
.circuit-node:nth-child(5) { animation-delay: 0.8s; }
.circuit-node:nth-child(6) { animation-delay: 1.8s; }

.circuit-line {
  stroke: rgba(246,178,50,0.35);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 8 4;
  animation: dashMove 4s linear infinite;
}

.circuit-line--solid {
  stroke: rgba(246,178,50,0.2);
  stroke-dasharray: none;
  animation: none;
}

.circuit-ring {
  fill: none;
  stroke: rgba(246,178,50,0.15);
  stroke-width: 1;
}

@keyframes nodePulse {
  0%, 100% { opacity: 1; r: 6; filter: drop-shadow(0 0 6px rgba(246,178,50,0.6)); }
  50%       { opacity: 0.7; r: 8; filter: drop-shadow(0 0 14px rgba(246,178,50,0.9)); }
}

@keyframes dashMove {
  to { stroke-dashoffset: -48; }
}

/* Floating info cards on circuit */
.circuit-card {
  position: absolute;
  background: rgba(26,51,82,0.85);
  border: 1px solid rgba(246,178,50,0.25);
  border-radius: var(--radius);
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.circuit-card__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}

.circuit-card__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
}

.circuit-card--1 { top: 5%; right: 0; }
.circuit-card--2 { bottom: 15%; right: 5%; }
.circuit-card--3 { top: 38%; left: 0; }

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-block: 5rem;
  }
}

/* --------------------------------------------------------------------------
   8. Marquee / Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--amber);
  padding-block: 14px;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-bar__dot {
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

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

/* --------------------------------------------------------------------------
   9. Section Intros
   -------------------------------------------------------------------------- */
.section-intro {
  margin-bottom: 3.5rem;
}

.section-intro--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-intro__label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--amber-accessible);
  margin-bottom: 0.75rem;
}

.section--dark .section-intro__label,
.section--mid .section-intro__label {
  color: var(--amber);
}

.section-intro__title {
  margin-bottom: 0.875rem;
}

.section-intro__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
}

.section--dark .section-intro__desc,
.section--mid .section-intro__desc {
  color: rgba(255,255,255,0.65);
}

/* --------------------------------------------------------------------------
   10. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease),
              transform 200ms var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 250ms var(--ease-spring);
  border-radius: 0 3px 3px 0;
}

.service-card:hover {
  border-color: var(--amber-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--amber-10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 200ms var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--amber-15);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--amber-dark);
  fill: none;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text);
}

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

.service-card__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber-accessible);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 200ms var(--ease), color 200ms var(--ease);
}

.service-card:hover .service-card__link {
  gap: 0.625rem;
  color: var(--amber-accessible);
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   11. About Section
   -------------------------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual__main {
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(246,178,50,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26,51,82,0.5) 0%, transparent 50%);
}

.about-visual__icon {
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--amber);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge__num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.about-badge__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.about-content__title { margin-bottom: 1rem; }

.about-content__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-check__icon {
  width: 22px;
  height: 22px;
  background: var(--amber-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-check__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--amber-dark);
  fill: none;
  stroke-width: 2.5;
}

.about-check__text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }

  .about-split--reverse .about-visual {
    order: 2;
  }
}

/* --------------------------------------------------------------------------
   12. Stats Counter
   -------------------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }

.stat-item__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:last-child { border-right: none; }
  .stat-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-item:nth-child(4n) { border-right: none; }
}

/* --------------------------------------------------------------------------
   13. Technology Partners / Brand Filter
   -------------------------------------------------------------------------- */
.brand-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.brand-filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease),
              color 180ms var(--ease), transform 120ms var(--ease);
}

.brand-filter-btn:hover {
  border-color: rgba(246,178,50,0.45);
  color: rgba(255,255,255,0.90);
  transform: translateY(-1px);
}

.brand-filter-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

.brand-filter-btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.brand-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: default;
  transition: background 200ms var(--ease), border-color 200ms var(--ease),
              transform 200ms var(--ease), box-shadow 200ms var(--ease),
              opacity 250ms var(--ease);
}

.brand-card:hover,
.brand-card:focus-visible {
  background: rgba(255,255,255,0.07);
  border-color: rgba(246,178,50,0.30);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  outline: none;
}

.brand-card--hidden {
  display: none;
}

.brand-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.9;
}

.brand-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.brand-card__cat {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.03em;
}

@media (min-width: 480px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(5, 1fr); }
}

/* --------------------------------------------------------------------------
   14. Industries Section
   -------------------------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.industry-card {
  background: var(--navy-light);
  border: 1px solid rgba(246,178,50,0.10);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  text-align: center;
}

.industry-card:hover {
  border-color: rgba(246,178,50,0.30);
  background: rgba(26,51,82,0.8);
}

.industry-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--amber-10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--amber);
  fill: none;
}

.industry-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
}

@media (min-width: 600px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .industries-grid { grid-template-columns: repeat(6, 1fr); }
}

/* --------------------------------------------------------------------------
   14. Process Section
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.process-step {
  display: flex;
  gap: 1.5rem;
}

.process-step__num-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step__num {
  width: 48px;
  height: 48px;
  background: var(--amber-10);
  border: 2px solid var(--amber-30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms;
}

.process-step:hover .process-step__num {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

.process-step__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber-15), transparent);
  margin-top: 4px;
}

.process-step__content {
  padding-bottom: 2rem;
}

.process-step:last-child .process-step__line { display: none; }
.process-step:last-child .process-step__content { padding-bottom: 0; }

.process-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 1.5rem;
    position: relative;
  }

  .process-step__num-wrap {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .process-step__line {
    flex: 1;
    height: 2px;
    width: auto;
    margin-top: 0;
    margin-left: 8px;
    background: linear-gradient(to right, var(--amber-15), transparent);
  }

  .process-step:last-child .process-step__line { display: none; }
  .process-step__content { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid rgba(246,178,50,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(246,178,50,0.30);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.125rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--amber);
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   16. Blog Section
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms var(--ease);
}

.blog-card:hover {
  border-color: var(--amber-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__thumb-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(246,178,50,0.15) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.blog-card__thumb-icon {
  position: relative;
  z-index: 1;
  opacity: 0.4;
}

.blog-card__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card__date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.blog-card__sep {
  width: 3px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 50%;
}

.blog-card__author {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  line-height: 1.35;
  transition: color 200ms;
}

.blog-card:hover .blog-card__title {
  color: var(--amber-dark);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.blog-card__read {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber-accessible);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 200ms, color 200ms;
}

.blog-card:hover .blog-card__read {
  gap: 0.625rem;
  color: var(--amber-accessible);
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   17. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(246,178,50,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner__title {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--amber);
  transition: color 200ms;
}

.cta-banner__phone svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.cta-banner__phone:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #081219;
  color: rgba(255,255,255,0.55);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo-wrap {
  background: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  display: inline-flex;
  margin-bottom: 1.25rem;
}

/* Footer logo on dark bg — no pill needed */
.footer__logo-bare {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  transition: color 200ms;
}

.footer__contact-item:hover { color: var(--amber); }

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--amber);
  fill: none;
  flex-shrink: 0;
}

.footer__col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 200ms;
  line-height: 1.4;
}

.footer__link:hover { color: var(--amber); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color 200ms;
}

.footer__legal-link:hover { color: rgba(255,255,255,0.65); }

@media (min-width: 600px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }
}

/* --------------------------------------------------------------------------
   19. Page Hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,178,50,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,178,50,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 1.25rem;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.50);
  transition: color 150ms;
}

.page-hero__breadcrumb a:hover { color: var(--amber); }

.page-hero__breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   20. Services Page
   -------------------------------------------------------------------------- */
.service-detail {
  padding-block: 4rem;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:last-child { border-bottom: none; }

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail__icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--amber-10);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail__icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--amber-dark);
  fill: none;
  stroke-width: 1.5;
}

.service-detail__title {
  margin-bottom: 1rem;
}

.service-detail__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.service-detail__feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.service-detail__visual {
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail__visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(246,178,50,0.15) 0%, transparent 55%);
}

@media (min-width: 1024px) {
  .service-detail__inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) .service-detail__visual {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   21. Blog Page
   -------------------------------------------------------------------------- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-list { }

/* Blog article page */
.blog-article {
  max-width: 760px;
}

.blog-article__lead {
  font-size: 1.175rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.blog-article h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.blog-article h3 {
  font-size: 1.175rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.blog-article p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.blog-article ul, .blog-article ol {
  margin: 0 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.blog-article li {
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-article a {
  color: var(--amber-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article a:hover { opacity: 0.8; }

.blog-list-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms var(--ease);
}

.blog-list-card:last-child { margin-bottom: 0; }

.blog-list-card:hover {
  border-color: var(--amber-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-list-card__thumb {
  background: var(--navy-mid);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-list-card__thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.blog-list-card__thumb-icon {
  position: relative;
  z-index: 1;
  opacity: 0.35;
}

.blog-list-card__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-list-card__body {
  padding: 1.5rem 1.75rem;
}

.blog-list-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.blog-list-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 200ms;
}

.blog-list-card:hover .blog-list-card__title { color: var(--amber-dark); }

.blog-list-card__excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.blog-list-card__read {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber-accessible);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 200ms, color 200ms;
}

.blog-list-card:hover .blog-list-card__read {
  gap: 0.65rem;
  color: var(--amber-accessible);
}

@media (min-width: 640px) {
  .blog-list-card {
    grid-template-columns: 280px 1fr;
  }

  .blog-list-card__thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 200px;
  }
}

.blog-sidebar { }

.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget:last-child { margin-bottom: 0; }

.sidebar-widget__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--amber);
}

.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text-body);
  transition: color 200ms;
}

.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat:hover { color: var(--amber-dark); }

.sidebar-cat__count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--amber-10);
  color: var(--amber-accessible);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* --------------------------------------------------------------------------
   22. Contact Page
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  background: var(--amber-10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber-dark);
  fill: none;
}

.contact-info-card__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-card__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-info-card__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  margin-bottom: 0.5rem;
}

.form-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 500px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  outline: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(246,178,50,0.15);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

select {
  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 fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #15803d;
  font-size: 0.9rem;
  margin-top: 1rem;
}

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

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1.4fr; }
}

/* --------------------------------------------------------------------------
   23. About Page
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  text-align: center;
}

.team-card:hover {
  border-color: var(--amber-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-card__photo {
  aspect-ratio: 1;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card__photo-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(246,178,50,0.12) 0%, transparent 60%);
}

.team-card__initials {
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.7;
}

.team-card__body {
  padding: 1.25rem 1rem;
}

.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.value-card:hover::after { transform: scaleX(1); }

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 600px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   24. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }

.reveal--left {
  transform: translateX(-28px);
}

.reveal--left.revealed {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--right.revealed {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   25. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin-block: 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--amber-10);
  color: var(--amber-accessible);
}

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   26. Responsive Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  :root { --section-v: 64px; }

  .hero__stats {
    gap: 1rem;
    flex-direction: column;
  }

  .hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding-bottom: 1rem;
    margin-bottom: 0;
    margin-right: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero__stat:last-child { border-bottom: none; }

  .hero__stat-num {
    font-size: 1.5rem;
    min-width: 60px;
  }

  .cta-banner { padding: 2.5rem 1.5rem; }

  .contact-form-wrap { padding: 1.75rem; }
}

@media (min-width: 768px) {
  .hero__actions { flex-wrap: nowrap; }
}
