/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --bg-primary: #121212;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #0a0a0a;
  --accent-primary: #F77F00;
  --accent-hover: #e07300;
  --accent-secondary: rgba(252, 191, 73, 0.18);
  --accent-glow: rgba(247, 127, 0, 0.18);
  --accent-red: #D62828;
  --color-light: #ffffff;
  --gray-100: rgba(255, 255, 255, 0.06);
  --gray-200: rgba(255, 255, 255, 0.12);
  --gray-400: rgba(255, 255, 255, 0.45);
  --gray-600: rgba(255, 255, 255, 0.65);
  --gray-800: #ffffff;
  --text-heading: #D62828;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-teal: 0 8px 32px rgba(247, 127, 0, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ============================================================
   SKIP TO CONTENT (Accessibility)
============================================================ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--bg-primary);
  color: var(--accent-primary);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 12px;
  outline: 3px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ============================================================
   FOCUS STATES (Accessibility)
============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ============================================================
   BACK TO TOP BUTTON
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--accent-primary);
  border: 1.5px solid rgba(247, 127, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-primary);
  color: var(--text-main);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.container {
  max-width: 100%;
  margin: 0;
  padding: 0 48px;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-secondary);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 41, 41, 0.25);
  margin-bottom: 18px;
}

.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.section-heading.light {
  color: var(--accent-red);
}

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 12px;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(52, 65, 64, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-hover);
  background: var(--accent-secondary);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-red);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Animate on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(252, 191, 73, 0.12);
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
  background: var(--gray-100);
}

.nav-links a.active {
  color: var(--text-main);
  font-weight: 700;
}

.mobile-nav a.active {
  color: var(--text-main);
  font-weight: 700;
  background: var(--gray-100);
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 28px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover {
  background: var(--gray-100);
  color: var(--text-main);
}

.mobile-nav .btn-primary {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   HERO SECTION
============================================================ */
#home {
  padding-top: var(--nav-h);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animated background mesh */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.14) 0%, transparent 70%);
  animation: orb1 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.1) 0%, transparent 70%);
  animation: orb2 10s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 191, 73, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 191, 73, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes orb1 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-40px, 30px) scale(1.1);
  }
}

@keyframes orb2 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, -40px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: rgba(247, 127, 0, 0.12);
  border: 1px solid rgba(247, 127, 0, 0.28);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1.08;
  letter-spacing: -1.5px;
  max-width: 820px;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent-primary);
  position: relative;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin-top: 20px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 1s ease 0.7s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(252, 191, 73, 0.15);
  border: 1px solid rgba(252, 191, 73, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Stats floating cards */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(247, 127, 0, 0.1);
  border-color: rgba(247, 127, 0, 0.35);
  transform: translateY(-2px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 5px;
  }

  100% {
    opacity: 0;
    top: 18px;
  }
}

/* ============================================================
   LOGOS / CLIENTS STRIP
============================================================ */
#logos {
  background: var(--bg-tertiary);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logos-track-wrap {
  overflow: hidden;
  display: flex;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: -0.3px;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  transition: color var(--transition);
}

.logo-item:hover {
  color: var(--text-main);
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
}

/* ============================================================
   SECTION SPACING
============================================================ */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 12px auto 0;
}

/* ============================================================
   WHY BIEL / ABOUT TEASER
============================================================ */
#about-teaser {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.2), transparent 70%);
}

.about-card-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.about-card-tagline span {
  color: var(--accent-primary);
}

.about-avatar-row {
  display: flex;
  align-items: center;
  gap: -8px;
  margin-top: 24px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-left: -12px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.av1 {
  background: var(--accent-primary);
}

.avatar.av2 {
  background: #e9cf7b;
}

.avatar.av3 {
  background: #fde68a;
}

.avatar-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 12px;
}

.about-floating-card {
  position: absolute;
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.afc-1 {
  bottom: -20px;
  right: 20px;
}

.afc-2 {
  top: -20px;
  left: -20px;
}

.afc-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.afc-lbl {
  font-size: 12px;
  color: var(--text-muted);
}

.afc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #960505;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.value-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.5;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
  background: var(--bg-tertiary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.service-card.featured {
  background: var(--bg-primary);
  border-color: var(--text-main);
  color: white;
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.18), transparent 70%);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-primary);
  color: var(--text-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card:not(.featured) .service-icon {
  background: var(--accent-secondary);
}

.service-card.featured .service-icon {
  background: rgba(252, 191, 73, 0.15);
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.service-card.featured .service-name {
  color: white;
}

.service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.6);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-main);
}

.service-card.featured .sf-item {
  color: rgba(255, 255, 255, 0.75);
}

.sf-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent-secondary);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  font-weight: 700;
}

.service-card.featured .sf-check {
  background: rgba(252, 191, 73, 0.18);
  color: var(--accent-primary);
}

.service-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card.featured .service-price {
  color: rgba(255, 255, 255, 0.5);
}

.service-price strong {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 15px;
}

.service-card.featured .service-price strong {
  color: var(--accent-primary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-hover);
  transition: gap var(--transition);
}

.service-card.featured .service-link {
  color: var(--accent-primary);
}

.service-link:hover {
  gap: 10px;
}

/* ============================================================
   PROCESS SECTION
============================================================ */
#process {
  background: var(--bg-secondary);
}

.process-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  margin-top: 12px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  padding-left: 8px;
}

.process-step:hover .step-content-wrap {}

.step-num-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.process-step.active .step-num,
.process-step:hover .step-num {
  background: rgba(247, 127, 0, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.step-connector {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: var(--gray-200);
  margin: 6px 0;
}

.process-step:last-child .step-connector {
  display: none;
}

.process-step.active .step-connector {
  background: linear-gradient(180deg, var(--accent-primary), var(--gray-200));
}

.step-content-wrap {
  flex: 1;
  padding-top: 6px;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.step-week {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-secondary);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.step-lead {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--gray-100);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.step-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.deliverable {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
}

/* FAQ sidebar */
.process-faq {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.faq-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.faq-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-inner {
  padding: 0 24px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   TEAM / PARTNERS
============================================================ */
#team {
  background: var(--bg-tertiary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(247, 127, 0, 0.35);
}

.team-card-top {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
}

.team-card-top::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.15), transparent);
}

.partner-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(247, 127, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

.pa1 {
  background: var(--accent-primary);
}

.pa2 {
  background: #93c5fd;
}

.pa3 {
  background: #fde68a;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.partner-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-primary);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.team-card-body {
  padding: 24px 28px;
}

.partner-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.partner-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.skill-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-main);
  background: rgba(252, 191, 73, 0.15);
  border: 1px solid rgba(252, 191, 73, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.partner-fact {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.partner-fact::before {
  content: '💡';
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Partnership callout */
.partnership-callout {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.partnership-callout::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.15), transparent 70%);
}

.callout-text {
  position: relative;
  z-index: 1;
}

.callout-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.callout-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.65;
}

.callout-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ============================================================
   CASE STUDIES
============================================================ */
#work {
  background: var(--bg-secondary);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-secondary);
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(247, 127, 0, 0.35);
}

.case-card-top {
  padding: 28px 28px 20px;
  position: relative;
}

.case-industry {
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.case-client {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.case-challenge {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.case-metrics {
  display: flex;
  gap: 16px;
  padding: 18px 28px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 80px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.4px;
}

.metric-val span {
  color: var(--accent-hover);
}

.metric-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.case-quote {
  padding: 18px 28px;
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
}

.case-quote::before {
  content: '"';
  font-size: 36px;
  font-family: Georgia, serif;
  color: var(--accent-secondary);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 22px;
}

.case-quote-text {
  padding-left: 22px;
}

.case-attr {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  background: var(--bg-primary);
  padding: 96px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition);
}

.testi-card:hover {
  background: rgba(247, 127, 0, 0.08);
  border-color: rgba(247, 127, 0, 0.28);
}

.testi-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  flex-shrink: 0;
}

.ta1 {
  background: var(--accent-primary);
}

.ta2 {
  background: #93c5fd;
}

.ta3 {
  background: #fde68a;
}

.ta4 {
  background: #f9a8d4;
}

.ta5 {
  background: #86efac;
}

.ta6 {
  background: #c4b5fd;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.testi-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

/* ============================================================
   INSIGHTS / BLOG
============================================================ */
#insights {
  background: var(--bg-tertiary);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.insight-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(252, 191, 73, 0.3);
}

.insight-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  position: relative;
  overflow: hidden;
}

.insight-img.bg1 {
  background: linear-gradient(135deg, #0a0a0a, #121212);
}

.insight-img.bg2 {
  background: linear-gradient(135deg, #121212, #D62828);
}

.insight-img.bg3 {
  background: linear-gradient(135deg, #1a1a1a, #F77F00);
}

.insight-body {
  padding: 22px 22px 24px;
}

.insight-category {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-hover);
  margin-bottom: 8px;
}

.insight-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.insight-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
}

.insight-author-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-main);
}

.iaa {
  background: var(--accent-primary);
}

.iab {
  background: #93c5fd;
}

.iac {
  background: #fde68a;
}

.insight-read {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-heading);
  background: var(--bg-secondary);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.15);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--bg-primary);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--bg-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-heading span {
  color: var(--accent-hover);
}

.contact-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--accent-primary);
  background: var(--accent-secondary);
}

.cm-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.cm-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cm-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
  margin-top: 2px;
}

.after-contact {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-top: 8px;
}

.ac-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ac-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ac-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.ac-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(247, 127, 0, 0.15);
  border: 1px solid rgba(247, 127, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
============================================================ */
#cta-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 60%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.12), transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-banner-heading span {
  color: var(--accent-primary);
}

.cta-banner-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--bg-secondary);
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 30px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}

.social-link:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(247, 127, 0, 0.1);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-contact-item {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.fci-icon {
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

/* ============================================================
   SECTION DIVIDER
============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 0;
}

/* ============================================================
   FORM SUCCESS MESSAGE
============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}

.form-success-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
  }

  .process-container {
    grid-template-columns: 1fr;
  }

  .process-faq {
    position: static;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid .testi-card:nth-child(3) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-num {
    font-size: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testi-card:nth-child(3) {
    display: block;
  }

  .testimonials-grid .testi-card:nth-child(4),
  .testimonials-grid .testi-card:nth-child(5) {
    display: none;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .partnership-callout {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-item span {
    display: none;
  }

  .hero-trust-bar {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 48px 0 40px;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-num {
    font-size: 20px;
  }

  .process-step {
    gap: 14px;
  }

  /* Keep step numbers visible as compact inline badges */
  .step-num-wrap {
    flex-direction: row;
  }

  .step-num {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .step-connector {
    display: none !important;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Touch target minimum 44px (WCAG 2.5.5) */
@media (pointer: coarse) {
  .nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .faq-question {
    min-height: 48px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}