/* ============================================
   SULEMAN KHAN — Digital Growth Strategist
   Mintlify Design System Refactor
   ============================================ */

/* ── Google Fonts (Loaded asynchronously via index.html) ── */

/* ── CSS Custom Properties — Mintlify Design Tokens ── */
:root {
  /* Brand & Accent */
  --brand-green: #00d4a4;
  --brand-green-deep: #00b48a;
  --brand-green-soft: #7cebcb;
  --testimonial-orange: #f55a3c;
  --testimonial-orange-deep: #cc3a1f;

  /* Primary */
  --primary: #0a0a0a;
  --on-primary: #ffffff;

  /* Surface */
  --canvas: #ffffff;
  --canvas-dark: #0a0a0a;
  --surface: #f7f7f7;
  --surface-soft: #fafafa;
  --surface-code: #1c1c1e;

  /* Borders */
  --hairline: #e5e5e5;
  --hairline-soft: #ededed;
  --hairline-dark: #1f1f1f;

  /* Text */
  --ink: #0a0a0a;
  --charcoal: #1c1c1e;
  --slate: #3a3a3c;
  --steel: #5a5a5c;
  --stone: #888888;
  --muted: #a8a8aa;
  --on-dark: #ffffff;
  --on-dark-muted: #b3b3b3;

  /* Hero Atmospheric */
  --hero-sky-from: #87a8c8;
  --hero-sky-to: #f5e9d8;
  --hero-dark-from: #1a3d4a;
  --hero-dark-to: #2d5a4f;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-code: 'Geist Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Spacing — 4px base, 8px primary increment */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-xxl: 32px;
  --space-xxxl: 40px;
  --space-section-sm: 48px;
  --space-section: 64px;
  --space-section-lg: 96px;
  --space-hero: 120px;

  /* Border Radius — Mintlify disciplined scale */
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-xxl: 24px;
  --rounded-full: 9999px;

  /* Container */
  --container-max: 1280px;
  --container-pad: 32px;

  /* Section padding */
  --section-pad: 120px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s ease;
  --transition-med: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--canvas);
  color: var(--charcoal);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Typography — Inter only, Mintlify hierarchy ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -2px;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.5px;
  line-height: 1.20;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
}

h4 {
  font-size: 1.375rem;
  line-height: 1.30;
}

p {
  color: var(--steel);
  font-weight: 400;
  line-height: 1.5;
}

/* Text gradient — now mint green */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label — uppercase micro with mint accent */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-green-deep);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-green);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  color: var(--steel);
}

/* ── Buttons — Mintlify pill system ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.30;
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  border: none;
}

/* Primary — black pill */
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  background: var(--charcoal);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary i {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.btn-primary:hover i {
  transform: translateX(3px);
}

/* Accent — mint green pill */
.btn-accent {
  background: var(--brand-green);
  color: var(--primary);
}

.btn-accent:hover {
  background: var(--brand-green-deep);
}

/* On-dark — white pill */
.btn-on-dark {
  background: var(--on-dark);
  color: var(--primary);
}

.btn-on-dark:hover {
  background: var(--hairline);
}

/* Secondary — outlined pill */
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}

.btn-secondary:hover {
  border-color: var(--stone);
}

/* Hero CTA — alias for accent */
.btn-hero-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--brand-green);
  color: var(--primary);
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-hero-red:hover {
  background: var(--brand-green-deep);
}

/* Works CTA */
.btn-works-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-works-red:hover {
  background: var(--charcoal);
}

/* Project CTA — white outlined */
.btn-project-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--brand-green);
  color: var(--primary);
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-med);
  border: none;
}

.btn-project-cta:hover {
  background: var(--brand-green-deep);
}

/* Glow pulse — now mint-tinted */
.btn-glow {
  animation: none;
}

/* ============================================
   HEADER / NAVIGATION — Mintlify sticky white bar
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline-soft);
  transition: padding var(--transition-med);
}

.header.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--hairline);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  z-index: 1001;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--on-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--steel);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ink);
  transition: width var(--transition-med);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA — black pill */
.nav-cta {
  padding: 8px 20px !important;
  background: var(--primary) !important;
  border-radius: var(--rounded-full) !important;
  color: var(--on-primary) !important;
  font-weight: 500 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--charcoal) !important;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition-med);
  border-radius: 1px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--canvas-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--on-dark-muted);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--brand-green);
}

/* ============================================
   HERO SECTION — Clean White + Flowing Lines
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--canvas);
  padding: 140px 0 80px;
}

/* Flowing lines canvas — full bleed behind content */
.hero-lines-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#particles-js {
  display: none;
}

/* ── Hero Split Layout ── */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* ── Left: Text Content ── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Trust Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: heroFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Bold Headline */
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-headline-accent {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--steel);
  max-width: 480px;
  margin-bottom: var(--space-xxl);
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-med);
  border: none;
}

.btn-hero-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
}

.btn-hero-primary i {
  transition: transform var(--transition-fast);
  font-size: 12px;
}

.btn-hero-primary:hover i {
  transform: translateX(3px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-med);
}

.btn-hero-outline:hover {
  border-color: var(--stone);
  transform: translateY(-1px);
}

/* Hero entrance animation */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ── Right: Dashboard Mockup ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroMockupIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes heroMockupIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-mockup {
  width: 100%;
  max-width: 560px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--rounded-lg);
  box-shadow:
    rgba(0, 0, 0, 0.04) 0px 4px 16px,
    rgba(0, 0, 0, 0.08) 0px 16px 48px -8px;
  overflow: hidden;
}

.hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.hero-mockup-dots {
  display: flex;
  gap: 6px;
}

.hero-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hairline);
}

.hero-mockup-dots span:first-child {
  background: #ff5f57;
}

.hero-mockup-dots span:nth-child(2) {
  background: #febc2e;
}

.hero-mockup-dots span:nth-child(3) {
  background: #28c840;
}

.hero-mockup-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
  flex: 1;
}

/* Live indicator */
.hero-mockup-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-green-deep);
  padding: 2px 8px;
  background: rgba(0, 212, 164, 0.08);
  border-radius: var(--rounded-full);
}

.hero-mockup-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 212, 164, 0.4);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 4px rgba(0, 212, 164, 0);
  }
}

/* Tab label inside content area */
.hero-mockup-tab-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--stone);
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

/* Nav item hover/cursor — override the default cursor below */

.hero-mockup-nav-item:hover:not(.active) {
  color: var(--ink);
  background: var(--surface);
}

/* Content transition */
.hero-mockup-content {
  transition: opacity 0.15s ease;
}

.hero-mockup-content.switching {
  opacity: 0.3;
}

.hero-mockup-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 280px;
}

.hero-mockup-sidebar {
  padding: 12px 0;
  border-right: 1px solid var(--hairline-soft);
  background: var(--surface-soft);
}

.hero-mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 400;
  color: var(--steel);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
}

.hero-mockup-nav-item i {
  font-size: 11px;
  width: 14px;
  text-align: center;
  color: var(--stone);
}

.hero-mockup-nav-item.active {
  color: var(--ink);
  font-weight: 500;
  background: var(--canvas);
  border-left-color: var(--brand-green);
}

.hero-mockup-nav-item.active i {
  color: var(--brand-green-deep);
}

.hero-mockup-content {
  padding: 16px;
}

.hero-mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-mockup-stat {
  padding: 10px;
  background: var(--surface-soft);
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline-soft);
}

.hero-mockup-stat-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.hero-mockup-stat-value {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hero-mockup-stat-bar {
  height: 4px;
  background: var(--hairline-soft);
  border-radius: 2px;
  overflow: hidden;
}

.hero-mockup-stat-fill {
  height: 100%;
  background: var(--brand-green);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: 12px 8px 8px;
  background: var(--surface-soft);
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline-soft);
}

.hero-mockup-chart-bar {
  flex: 1;
  background: var(--hairline);
  border-radius: 3px 3px 0 0;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  min-height: 4px;
}

.hero-mockup-chart-bar:hover {
  background: var(--stone) !important;
}

.hero-mockup-chart-bar.accent {
  background: var(--brand-green);
}

.hero-mockup-chart-bar.accent:hover {
  background: var(--brand-green-deep) !important;
}

/* ============================================
   TRUST MARQUEE SECTION
   ============================================ */
.trust-marquee-section {
  padding: 40px 0;
  background: var(--canvas);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  overflow: hidden;
  position: relative;
}

.trust-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--stone);
  margin-bottom: 24px;
}

.trust-marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trust-marquee-track {
  display: flex;
  gap: 64px;
  animation: logoScroll 25s linear infinite;
  width: max-content;
  align-items: center;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--stone);
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
  user-select: none;
}

.trust-logo:hover {
  opacity: 0.95;
  color: var(--brand-green-deep);
}

.trust-logo i {
  font-size: 1.4rem;
}

/* ============================================
   ROI & GROWTH ESTIMATOR SECTION
   ============================================ */
.roi-section {
  padding: 100px 0;
  background: var(--canvas);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.roi-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.roi-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--rounded-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-green-deep);
  margin-bottom: 20px;
}

.roi-controls h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 16px;
}

.roi-intro-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
  margin-bottom: 32px;
  max-width: 480px;
}

.roi-input-group {
  width: 100%;
  margin-bottom: 28px;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.roi-slider-label,
.roi-input-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.roi-slider-val-box {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-green-deep);
  background: rgba(0, 212, 164, 0.08);
  padding: 4px 10px;
  border-radius: var(--rounded-sm);
  border: 1px solid rgba(0, 212, 164, 0.15);
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--hairline-soft);
  outline: none;
  border: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-green);
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 212, 164, 0.4);
  transition: transform 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-green);
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 212, 164, 0.4);
  transition: transform 0.15s ease;
}

.roi-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.roi-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.roi-slider-ticks span {
  font-size: 10px;
  font-weight: 500;
  color: var(--stone);
}

.roi-industry-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}

.roi-industry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.roi-industry-btn i {
  font-size: 11px;
  color: var(--stone);
  transition: color var(--transition-fast);
}

.roi-industry-btn:hover:not(.active) {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--stone);
}

.roi-industry-btn.active {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}

.roi-industry-btn.active i {
  color: var(--brand-green);
}

.roi-cta {
  margin-top: 12px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  width: auto;
  align-self: flex-start;
}

.roi-display {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.roi-dashboard-card {
  width: 100%;
  max-width: 460px;
  background: #091d1c;
  /* Deep console teal/charcoal */
  border: 1px solid rgba(0, 212, 164, 0.2);
  border-radius: var(--rounded-lg);
  box-shadow:
    rgba(0, 212, 164, 0.04) 0px 8px 32px,
    rgba(0, 0, 0, 0.2) 0px 24px 64px -16px;
  overflow: hidden;
  position: relative;
}

.roi-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(0, 212, 164, 0.1);
}

.roi-dots {
  display: flex;
  gap: 6px;
}

.roi-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hairline-dark);
}

.roi-dots span:first-child {
  background: #ff5f57;
}

.roi-dots span:nth-child(2) {
  background: #febc2e;
}

.roi-dots span:nth-child(3) {
  background: #28c840;
}

.roi-card-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

.roi-card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-green);
  padding: 2px 8px;
  background: rgba(0, 212, 164, 0.1);
  border-radius: var(--rounded-full);
}

.roi-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: livePulse 1.5s ease-in-out infinite;
}

.roi-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roi-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 212, 164, 0.08);
  border-radius: var(--rounded-md);
  padding: 16px;
}

.roi-stat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.roi-stat-name {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

.roi-badge-lift {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-green-deep);
  background: var(--brand-green);
  padding: 2px 8px;
  border-radius: var(--rounded-full);
}

.roi-stat-val-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.roi-stat-main-val {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -1px;
  transition: opacity 0.15s ease;
}

.roi-stat-unit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.roi-stats-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.roi-split-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 212, 164, 0.08);
  border-radius: var(--rounded-md);
  padding: 14px;
}

.roi-split-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.roi-split-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.5px;
  transition: opacity 0.15s ease;
}

.roi-graph-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 212, 164, 0.08);
  border-radius: var(--rounded-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roi-graph-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

.roi-chart-wrap {
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: 4px;
}

.roi-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

#roi-chart-line,
#roi-chart-area {
  transition: d 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#roi-dot-mid,
#roi-dot-end {
  transition: cx 0.6s cubic-bezier(0.16, 1, 0.3, 1), cy 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-y-axis {
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  text-align: left;
}

.roi-x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 4px;
}

/* ============================================
   RESPONSIVE HERO
   ============================================ */
@media (max-width: 968px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mockup-body {
    grid-template-columns: 1fr;
  }

  .hero-mockup-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.75rem);
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-stat:not(:last-child)::after {
    display: none;
  }

  .trust-stat-number {
    font-size: 2rem;
  }
}


/* ============================================
   SECTIONS — GENERAL
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-section);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Alternate section backgrounds */
.section:nth-child(even) {
  background: var(--surface);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Above-the-fold hero elements load instantly for fast FCP/LCP */
.hero .reveal,
.hero-text,
.hero-headline,
.hero-subtitle,
.hero-visual {
  opacity: 1 !important;
  transform: none !important;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.40s;
}

#services-preview {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #031515 0%, #051d1c 45%, #082625 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 120px 0;
}

#services-preview .section-title {
  color: #ffffff;
}

#services-preview .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#services-preview .section-label {
  color: var(--brand-green);
  background: rgba(0, 212, 164, 0.1);
  border-color: rgba(0, 212, 164, 0.2);
}

/* Translucent dark glassmorphism service cards */
#services-preview .service-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

#services-preview .service-card h3 {
  color: #ffffff !important;
}

#services-preview .service-card p {
  color: rgba(255, 255, 255, 0.65) !important;
}

#services-preview .service-card .service-link {
  color: var(--brand-green) !important;
}

#services-preview .service-card:hover {
  border-color: rgba(0, 212, 164, 0.25) !important;
  box-shadow:
    rgba(0, 212, 164, 0.06) 0px 8px 24px,
    inset rgba(255, 255, 255, 0.02) 0px 1px 0px !important;
}

#services-preview .service-icon {
  background: rgba(0, 212, 164, 0.1) !important;
  border: 1px solid rgba(0, 212, 164, 0.2) !important;
  color: var(--brand-green) !important;
  transition: all var(--transition-med);
}

#services-preview .service-card:hover .service-icon {
  background: var(--brand-green) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 16px rgba(0, 212, 164, 0.3) !important;
}

/* Services background particles — removed for performance */
/* Services background waves — removed for performance */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--rounded-lg);
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
  z-index: 3;
}

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

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(0, 212, 164, 0.06),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  border-color: rgba(0, 212, 164, 0.2);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 16px 0px;
  transform: translateY(-4px);
}

/* Remove individual nth-child left borders — use consistent hairline */
.service-card:nth-child(n) {
  border-left: 1px solid var(--hairline);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--rounded-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: var(--brand-green-deep);
  transition: all var(--transition-med);
}

.service-card:hover .service-icon {
  background: var(--brand-green);
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-med);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(3px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--hairline-soft) 0%, var(--brand-green) 50%, var(--hairline-soft) 100%);
  background-size: 200% 100%;
  z-index: 0;
}

/* processLinePulse animation removed for performance */

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-green-deep);
  transition: all var(--transition-med);
}

.process-step:hover .process-number {
  background: var(--brand-green);
  color: var(--primary);
  border-color: var(--brand-green);
}

.process-step h4 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 18px;
}

.process-step p {
  font-size: 14px;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--rounded-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(0, 212, 164, 0.06),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card>* {
  position: relative;
  z-index: 2;
}

.why-card:hover {
  border-color: rgba(0, 212, 164, 0.2);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 16px 0px;
  transform: translateY(-4px);
}

/* Remove nth-child red bottom borders — use consistent hairline */
.why-card:nth-child(n) {
  border-bottom: 1px solid var(--hairline);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--brand-green-deep);
  transition: all var(--transition-med);
}

.why-card:hover .why-icon {
  background: var(--brand-green);
  color: var(--primary);
}

.why-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.why-card p {
  font-size: 14px;
}

/* ============================================
   PARTNERSHIP MODELS — Dark teal-to-mint gradient
   ============================================ */
.partnership-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(circle at 10% 20%, #031515 0%, #071f1f 45%, #0c2d2d 100%);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background floating image illustration */
.partnership-bg-illustration {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.floating-bg-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partnership-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(3, 21, 21, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.partnership-section .container {
  position: relative;
  z-index: 2;
}

.partnership-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.partnership-intro h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.partnership-highlight {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-green), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.partnership-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
}

.partnership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  justify-items: center;
}

.partnership-card {
  background: rgba(255, 255, 255, 0.03);

  border-radius: var(--rounded-lg);
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  width: 100%;
  max-width: 340px;
  position: relative;
  overflow: hidden;
}

.partnership-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 212, 164, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
  z-index: 0;
}

.partnership-card:hover::after {
  opacity: 1;
}

.partnership-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 164, 0.3);
  box-shadow:
    rgba(0, 212, 164, 0.08) 0px 8px 32px,
    inset rgba(255, 255, 255, 0.03) 0px 1px 0px;
}

.partnership-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  z-index: 2;
}

.partnership-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--rounded-md);
  background: rgba(0, 212, 164, 0.1);
  border: 1px solid rgba(0, 212, 164, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-green);
  transition: all var(--transition-med);
}

.partnership-card:hover .partnership-card-icon {
  background: var(--brand-green);
  color: var(--primary);
  box-shadow: 0 0 16px rgba(0, 212, 164, 0.3);
}

.partnership-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.partnership-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
  flex-grow: 1;
  z-index: 2;
}

.partnership-card-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-green);
  background: rgba(0, 212, 164, 0.08);
  padding: 6px 12px;
  border-radius: var(--rounded-full);
  align-self: flex-start;
  border: 1px solid rgba(0, 212, 164, 0.15);
  z-index: 2;
}

/* ============================================
   INDUSTRIES WE SERVE
   ============================================ */
.industries-section {
  background: var(--surface) !important;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--brand-green);
  margin: 16px auto 20px;
  border-radius: 1px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--rounded-lg);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(0, 212, 164, 0.25);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px 0px;
  transform: translateY(-4px);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--ink);
  transition: all var(--transition-med);
  position: relative;
}

/* Green accent dot */
.industry-icon::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
}

.industry-card:hover .industry-icon {
  border-color: var(--brand-green);
  color: var(--brand-green-deep);
  box-shadow: 0 0 12px rgba(0, 212, 164, 0.2);
}

.industry-card:hover .industry-icon i {
  animation: iconWiggle 0.6s ease-in-out;
}

@keyframes iconWiggle {

  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-12deg);
  }

  75% {
    transform: rotate(12deg);
  }
}

.industry-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ============================================
   OUR WORKS SECTION
   ============================================ */
.our-works-section {
  background: var(--canvas) !important;
}

.our-works-slider {
  position: relative;
  min-height: 380px;
}

.our-works-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.our-works-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.our-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.work-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  position: relative;
}

.work-card::before {
  display: none;
}

.work-card:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

.work-card-visual {
  height: 180px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.work-card-visual::before {
  display: none;
}

.work-card-visual i {
  font-size: 2.5rem;
  color: var(--stone);
  opacity: 0.4;
  position: relative;
  z-index: 1;
  transition: all var(--transition-med);
}

.work-card:hover .work-card-visual i {
  color: var(--brand-green-deep);
  opacity: 0.7;
}

.work-card-body {
  padding: 24px 20px;
  flex: 1;
}

.work-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--surface);
  border-radius: var(--rounded-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.work-card-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.work-card-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--steel);
}

/* Our Works Dots */
.our-works-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.our-works-dot {
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background: var(--hairline);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.our-works-dot.active {
  background: var(--ink);
  width: 20px;
}

.our-works-dot:hover {
  background: var(--stone);
}

/* View All Button */
.our-works-cta {
  text-align: center;
  margin-top: 28px;
}

/* ============================================
   WHO WE WORK WITH — Dark teal gradient
   ============================================ */
.who-we-work-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: radial-gradient(circle at 90% 20%, #031515 0%, #071f1f 45%, #0c2d2d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.who-we-work-bg {
  display: block;
  position: absolute;
  top: -10%;
  left: -5%;
  width: 55%;
  height: 120%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  background: url('../images/connectivity_bg.webp') no-repeat center center;
  background-size: contain;
}

.who-we-work-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(3, 21, 21, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.who-we-work-section .container {
  position: relative;
  z-index: 2;
}

.who-we-work-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.who-we-work-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.who-we-work-intro p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 380px;
}

.who-we-work-intro p strong {
  color: var(--on-dark);
  font-weight: 600;
}

.who-we-work-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.who-we-work-card {
  background: rgba(255, 255, 255, 0.03);

  border-radius: var(--rounded-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.who-we-work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 212, 164, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
  z-index: 0;
}

.who-we-work-card:hover::after {
  opacity: 1;
}

.who-we-work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 164, 0.25);
  box-shadow:
    rgba(0, 212, 164, 0.06) 0px 8px 24px,
    inset rgba(255, 255, 255, 0.02) 0px 1px 0px;
}

.who-we-work-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.who-we-work-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-med);
  position: relative;
  z-index: 2;
}

.who-we-work-card:hover .who-we-work-card-icon {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background: rgba(0, 212, 164, 0.1);
  box-shadow: 0 0 16px rgba(0, 212, 164, 0.2);
}

/* ============================================
   WHAT OUR CUSTOMERS SAY — Mintlify testimonial style
   ============================================ */
.client-say-section {
  background: var(--canvas) !important;
  position: relative;
  padding-top: 0 !important;
}

.client-say-topbar {
  width: 100%;
  height: 3px;
  background: var(--brand-green);
}

.client-say-section .container {
  padding-top: var(--section-pad);
  padding-bottom: 32px;
}

.client-say-header {
  margin-bottom: 36px;
}

.client-say-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.client-say-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

/* Slider */
.client-say-slider {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.client-say-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.client-say-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.client-say-quote {
  margin-bottom: 24px;
}

.client-say-quote-icon {
  margin-bottom: 12px;
}

.client-say-quote-icon i {
  font-size: 1.5rem;
  color: var(--brand-green);
  opacity: 0.5;
}

.client-say-quote p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--steel);
  max-width: 800px;
}

.client-say-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-say-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--rounded-md);
  background: var(--testimonial-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--on-dark);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.client-say-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--font-body);
}

.client-say-role {
  font-size: 13px;
  color: var(--steel);
  font-weight: 400;
}

/* Arrow Navigation */
.client-say-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 16px;
}

.client-say-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-med);
  color: var(--ink);
  font-size: 0.75rem;
}

.client-say-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

/* ============================================
   PROJECT CTA SECTION — Dark with mint accent
   ============================================ */
.project-cta-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at 10% 20%, #031515 0%, #051d1d 40%, #082626 100%);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 212, 164, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.project-cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 80%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 212, 164, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.project-cta-section .container {
  position: relative;
  z-index: 1;
}

.project-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.project-cta-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.project-cta-text p {
  font-size: 18px;
  color: var(--on-dark-muted);
  margin-bottom: 28px;
}

/* Mockup Dashboard Cards — Mintlify style */
.project-cta-visual {
  display: flex;
  justify-content: center;
}

.project-cta-mockup {
  display: flex;
  gap: 16px;
}

.mockup-card {
  background: var(--canvas);
  border-radius: var(--rounded-lg);
  padding: 20px 18px;
  width: 210px;
  border: 1px solid var(--hairline-soft);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 24px 48px -8px;
  transition: transform var(--transition-med);
}

.mockup-card-1 {
  transform: rotate(-2deg) translateY(8px);
}

.mockup-card-2 {
  transform: rotate(1.5deg) translateY(-8px);
}

.mockup-card:hover {
  transform: rotate(0deg) translateY(-4px) !important;
}

.mockup-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline-soft);
}

.mockup-card-header i {
  color: var(--brand-green-deep);
  font-size: 0.85rem;
}

.mockup-card-header span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-stat {
  margin-bottom: 14px;
}

.mockup-stat-number {
  display: block;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.mockup-stat-label {
  display: block;
  font-size: 11px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mini bar chart */
.mockup-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}

.mockup-bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-green-deep), var(--brand-green));
  border-radius: 2px 2px 0 0;
  transition: height 1s ease;
  opacity: 0.8;
}

.mockup-bar:nth-child(even) {
  opacity: 0.45;
}

/* Mini list */
.mockup-mini-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--steel);
}

.mockup-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-list-dot.green {
  background: var(--brand-green);
}

.mockup-list-dot.blue {
  background: #3b82f6;
}

.mockup-list-dot.orange {
  background: var(--testimonial-orange);
}

.mockup-list-val {
  margin-left: auto;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}

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

.page-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
}

.page-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  color: var(--steel);
}

.page-hero .section-label {
  color: var(--brand-green-deep);
}

.page-hero .section-label::before {
  background: var(--brand-green);
}

/* Service detail cards */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 40px 32px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-green);
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

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

.service-detail-card:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

/* Remove individual nth-child red top borders */
.service-detail-card:nth-child(n) {
  border-top: 1px solid var(--hairline);
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--rounded-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--brand-green-deep);
}

.service-detail-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-detail-card p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-feature-tag {
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-full);
  font-size: 13px;
  color: var(--steel);
  font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--canvas-dark);
  padding: var(--space-section) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--on-dark);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--on-dark-muted);
  max-width: 550px;
  margin: 0 auto 28px;
  font-size: 16px;
}

.cta-banner .btn-primary {
  background: var(--brand-green);
  color: var(--primary);
}

.cta-banner .btn-primary:hover {
  background: var(--brand-green-deep);
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-study-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  transition: all var(--transition-med);
}

.case-study-card:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

.case-study-visual {
  height: 180px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-study-visual::before {
  display: none;
}

.case-study-visual i {
  font-size: 2.5rem;
  color: var(--brand-green);
  position: relative;
  z-index: 1;
  opacity: 0.5;
}

.case-study-body {
  padding: 28px 24px;
}

.case-study-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--surface);
  border-radius: var(--rounded-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.case-study-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-study-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.case-study-framework {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.framework-step {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--rounded-sm);
  border-left: 2px solid var(--brand-green);
}

.framework-step h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-green-deep);
  margin-bottom: 4px;
  font-weight: 600;
}

.framework-step p {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.4;
}

/* Coming soon overlay */
.coming-soon-overlay {
  text-align: center;
  padding: 64px 32px;
  background: var(--surface-soft);
  border: 1px dashed var(--hairline);
  border-radius: var(--rounded-lg);
  margin-top: 40px;
}

.coming-soon-overlay i {
  font-size: 2.5rem;
  color: var(--brand-green);
  opacity: 0.3;
  margin-bottom: 16px;
}

.coming-soon-overlay h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.coming-soon-overlay p {
  font-size: 14px;
}

/* ============================================
   FOUNDER PAGE
   ============================================ */
.founder-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.founder-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}

.founder-avatar-large {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--primary));
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--font-body);
  position: relative;
  margin-bottom: 28px;
  box-shadow: rgba(46, 175, 125, 0.25) 0px 8px 30px;
}

.founder-avatar-large::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--brand-green);
  animation: rotateFounderAvatar 25s linear infinite;
}

@keyframes rotateFounderAvatar {
  100% {
    transform: rotate(360deg);
  }
}

.founder-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.founder-stat-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition-med);
}

.founder-stat-card:hover {
  border-color: var(--brand-green);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 12px 0px;
}

.founder-stat-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 4px;
}

.founder-stat-card p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.founder-content {
  display: flex;
  flex-direction: column;
}

.founder-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.founder-content .founder-title {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.founder-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone-dark);
  margin-bottom: 20px;
}

.founder-quote {
  font-style: italic;
  border-left: 3px solid var(--brand-green);
  padding-left: 20px;
  margin: 28px 0 !important;
  font-size: 1.15rem !important;
  line-height: 1.6;
  color: var(--text-muted) !important;
}

.founder-signature {
  margin-top: 24px;
  margin-bottom: 24px;
}

.founder-sig-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text);
}

.founder-sig-title {
  font-size: 0.85rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.founder-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.team-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.team-social-link:hover {
  background: var(--primary);
  border-color: transparent;
  color: var(--on-primary);
}

/* Values section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-section);
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  transition: all var(--transition-med);
}

.value-card:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--brand-green-deep);
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.value-card p {
  font-size: 14px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.contact-form {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 40px 32px;
}

.contact-form h3 {
  color: var(--ink);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  transition: all var(--transition-fast);
  height: 40px;
}

.form-input:focus {
  border: 2px solid var(--brand-green);
  padding: 11px 15px;
  /* compensate for 2px border */
}

.form-input::placeholder {
  color: var(--muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  height: auto;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

select.form-input option {
  background: var(--canvas);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-med);
}

.contact-info-card:hover {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green-deep);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 14px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.contact-social-link:hover {
  background: var(--primary);
  border-color: transparent;
  color: var(--on-primary);
}

/* Map placeholder */
.contact-map {
  height: 180px;
  background: var(--surface);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 1.5rem;
}

/* ============================================
   FOOTER — Mintlify clean white
   ============================================ */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--space-section) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--ink);
}

.footer-brand p {
  font-size: 14px;
  margin-top: 14px;
  max-width: 280px;
  color: var(--steel);
}

.footer h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--steel);
  transition: color var(--transition-fast);
  padding: var(--space-xxs) 0;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: transparent;
  color: var(--on-primary);
}

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--stone);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--ink);
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page.active {
  display: block;
  opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partnership-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .partnership-intro p {
    max-width: 100%;
    margin: 0 auto;
  }

  .partnership-bg-illustration {
    width: 95%;
    height: 55%;
    top: auto;
    bottom: -5%;
    right: 2.5%;
    opacity: 0.1;
  }

  .roi-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .roi-controls {
    align-items: center;
    text-align: center;
  }

  .roi-intro-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .roi-cta {
    align-self: center;
  }

  .our-works-grid {
    gap: 20px;
  }

  .who-we-work-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .who-we-work-intro p {
    max-width: 100%;
    margin: 0 auto;
  }

  .project-cta-layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .mockup-card {
    width: 185px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --container-pad: 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    letter-spacing: -1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-study-framework {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership-cards {
    grid-template-columns: 1fr;
  }

  .our-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .our-works-slider {
    min-height: auto;
  }

  .who-we-work-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .who-we-work-intro p {
    max-width: 100%;
    margin: 0 auto;
  }

  .who-we-work-cards {
    grid-template-columns: 1fr 1fr;
  }

  .project-cta-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .project-cta-mockup {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mockup-card {
    width: 170px;
  }

  .mockup-card-1,
  .mockup-card-2 {
    transform: none;
  }

  .client-say-slider {
    min-height: auto;
  }

  /* Mobile touch targets — bump to 44px */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .client-say-arrow {
    width: 44px;
    height: 44px;
  }

  .form-input {
    height: 44px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  h1 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }

  .hero {
    padding-top: 120px;
  }
}

/* ============================================
   LOADING SCREEN — Dark canvas with mint spinner
   ============================================ */
.loader-screen {
  display: none !important;
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--hairline-dark);
  border-top-color: var(--brand-green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--on-dark);
  letter-spacing: 2px;
}

/* ============================================
   CURSOR GLOW — Disabled for Mintlify style
   ============================================ */
.cursor-glow {
  display: none;
}

/* ============================================
   LOGO MARQUEE / TRUST STRIP (if used)
   ============================================ */
.trust-strip {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--stone);
  margin-bottom: 24px;
  font-weight: 600;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--stone);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.marquee-item i {
  font-size: 1.5rem;
}

/* ============================================
   IMPACT NUMBERS (if used)
   ============================================ */
.impact-section {
  background: var(--primary) !important;
  border-top: none;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.impact-item {
  padding: 24px;
}

.impact-number {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--on-dark);
  -webkit-text-fill-color: var(--on-dark);
}

.impact-label {
  font-size: 14px;
  color: var(--on-dark-muted);
  font-weight: 500;
}

@keyframes bgSlideLeftRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-5%);
  }
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -10px);
  }
}

/* ============================================
   PHASE II DESIGN ENHANCEMENTS
   ============================================ */

/* 1. Vector Grid Mesh Overlays */
.vector-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

/* .ambient-blur-blob removed for performance (filter: blur(50px) + infinite animation) */

/* Make sure container content stays above grids */
.section .container {
  position: relative;
  z-index: 2;
}

/* 2. Scroll-Drawn Timeline Circles */
.process-number-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
  z-index: 1;
}

.process-ring-circle {
  fill: none;
  stroke: var(--brand-green);
  stroke-width: 1.5px;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-number {
  z-index: 2;
  margin: 0 !important;
}

/* 3. Case Study Chart hover draws - Removed per design polish request */

/* 4. Mockup card floats in CTA section */
/* mockup-card float animations removed for performance — static transforms retained in .mockup-card-1/.mockup-card-2 above */

/* ==========================================================================
   CASE STUDY: MIYAGI CUSTOM STYLES (MINTLIFY ALIGNED)
   ========================================================================== */

/* ── Route view default state ── */
#page-case-study-miyagi {
  display: none;
}

#page-case-study-miyagi.active {
  display: block;
}

/* ── Hero Section ── */
.cs-hero-section {
  background: radial-gradient(circle at 10% 20%, rgba(2, 53, 60, 0.95) 0%, var(--primary) 90%);
  color: var(--on-primary);
  padding: 120px 0 60px 0;
  border-bottom: 1px solid var(--hairline-dark);
  position: relative;
  overflow: hidden;
}

.cs-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-green);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.cs-back-link:hover {
  transform: translateX(-4px);
  color: var(--brand-green-soft);
}

.cs-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-green);
  border: 1px solid rgba(0, 212, 164, 0.3);
  padding: 4px 12px;
  border-radius: var(--rounded-full);
  background: rgba(0, 212, 164, 0.05);
  margin-bottom: 16px;
}

.cs-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  max-width: 800px;
  color: #ffffff;
}


.cs-subtitle {
  font-size: 18px;
  color: var(--on-dark-muted);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 40px;
}

.cs-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--stone);
  letter-spacing: 1px;
}

.cs-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.cs-meta-value a {
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cs-meta-value a:hover {
  text-decoration: underline;
}

/* ── Content Sections ── */
.cs-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}

.cs-bg-light {
  background-color: var(--surface-soft);
}

.cs-section-header {
  margin-bottom: 48px;
  max-width: 680px;
}

.cs-section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cs-section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-green-deep);
  display: block;
  margin-bottom: 12px;
}

.cs-section-desc {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.6;
  margin-top: 16px;
}

/* ── Two Column Layout ── */
.cs-two-col-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.cs-summary-text p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cs-summary-highlights {
  margin-top: 32px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
}

.cs-summary-highlights h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
}

.cs-summary-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-summary-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
}

.cs-summary-highlights li i {
  color: var(--brand-green-deep);
  margin-top: 3px;
  font-size: 16px;
}

/* ── Sidebar Metrics Card ── */
.cs-metrics-sidebar {
  position: sticky;
  top: 100px;
}

.cs-sidebar-card {
  background: var(--canvas-dark);
  color: var(--on-primary);
  border-radius: var(--rounded-xl);
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--hairline-dark);
  position: relative;
  overflow: hidden;
}

.cs-sidebar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 212, 164, 0.05), transparent 70%);
  pointer-events: none;
}

.cs-sidebar-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.cs-sidebar-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cs-sidebar-metric {
  display: flex;
  flex-direction: column;
}

.cs-metric-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1.1;
  letter-spacing: -1px;
}

.cs-metric-lbl {
  font-size: 12px;
  color: var(--on-dark-muted);
  margin-top: 4px;
}

.cs-sidebar-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-sidebar-footer p {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.4;
}

/* ── Roadblocks Grid ── */
.cs-roadblocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cs-roadblock-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 32px 24px;
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.cs-roadblock-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 164, 0.2);
  box-shadow: 0 10px 24px rgba(0, 212, 164, 0.04);
}

.cs-roadblock-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-sm);
  background: rgba(0, 212, 164, 0.06);
  color: var(--brand-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.cs-roadblock-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.cs-roadblock-card p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
}

/* ── Framework Timeline ── */
.cs-framework-timeline {
  max-width: 800px;
  margin: 40px auto 0 auto;
  position: relative;
  padding-left: 48px;
}

.cs-framework-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--hairline);
}

.cs-framework-step {
  position: relative;
  margin-bottom: 48px;
}

.cs-framework-step:last-child {
  margin-bottom: 0;
}

.cs-step-num {
  position: absolute;
  left: -48px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  border: 4px solid var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 0 0 2px var(--brand-green-soft);
}

.cs-step-content {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.cs-step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.cs-step-content p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cs-step-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-step-tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 4px 10px;
  border-radius: var(--rounded-sm);
  color: var(--slate);
}

/* ── Interactive Tabs ── */
.cs-tabs-container {
  margin-top: 40px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.cs-tab-buttons {
  display: flex;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
}

.cs-tab-btn {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--hairline);
  transition: all var(--transition-fast);
}

.cs-tab-btn:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.cs-tab-btn.active {
  background: var(--canvas);
  color: var(--brand-green-deep);
  font-weight: 600;
  position: relative;
}

.cs-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-green);
}

.cs-tab-panel {
  display: none;
  padding: 40px;
}

.cs-tab-panel.active {
  display: block;
}

.cs-panel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cs-panel-details h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
}

.cs-panel-details p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cs-proof-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-proof-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-stat {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-green-deep);
}

.proof-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

/* ── Browser Mockup ── */
.browser-mockup {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.browser-header {
  height: 36px;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.browser-address {
  margin: 0 auto;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-code);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  padding: 2px 32px;
  border-radius: var(--rounded-xs);
  max-width: 320px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-body {
  background: var(--surface-soft);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser-caption {
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  padding: 12px;
  border-top: 1px solid var(--hairline);
  background: var(--surface-soft);
  line-height: 1.4;
}

/* ── GEO Footprint Section ── */
.geo-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.cs-geo-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.cs-geo-stat-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.geo-engine {
  font-size: 12px;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.geo-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-green-deep);
  margin: 8px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.geo-stat-num .lbl {
  font-size: 13px;
  font-weight: 400;
  color: var(--steel);
}

.geo-stat-meta {
  font-size: 12px;
  color: var(--slate);
}

.cs-advantage-box {
  background: rgba(0, 212, 164, 0.05);
  border-left: 4px solid var(--brand-green);
  border-radius: 0 var(--rounded-lg) var(--rounded-lg) 0;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cs-advantage-icon {
  font-size: 20px;
  color: var(--brand-green-deep);
  margin-top: 2px;
}

.cs-advantage-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.cs-advantage-content p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ── Takeaway Box ── */
.cs-takeaway-container {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-xl);
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.cs-takeaway-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 20px;
}

.cs-takeaway-header i {
  font-size: 28px;
  color: var(--brand-green-deep);
}

.cs-takeaway-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
}

.cs-takeaway-body p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cs-takeaways-checkpoints {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.checkpoint-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.checkpoint-item i {
  color: var(--brand-green-deep);
  font-size: 18px;
  margin-top: 4px;
}

.checkpoint-item div {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── BOTTOM CTA ── */
.cs-cta-section {
  background: radial-gradient(ellipse at center, rgba(2, 53, 60, 0.05) 0%, rgba(10, 10, 10, 0.02) 80%);
  padding: 96px 0;
  border-bottom: none;
}

.cs-cta-box {
  background: var(--canvas-dark);
  color: var(--on-primary);
  border-radius: var(--rounded-xxl);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--hairline-dark);
  position: relative;
  overflow: hidden;
}

.cs-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(0, 212, 164, 0.1), transparent 70%);
  pointer-events: none;
}

.cs-cta-box h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cs-cta-box p {
  font-size: 16px;
  color: #ffffff !important;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.cs-cta-box h2 {
  color: #ffffff !important;
}

/* Override .text-dark utility on the dark CTA section (higher specificity) */
.cs-cta-section.text-dark .cs-cta-box h2,
.cs-cta-section.text-dark .cs-cta-box p {
  color: #ffffff !important;
}

.cs-cta-section.text-dark .cs-cta-badges span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cs-cta-section.text-dark .cs-cta-footer {
  color: var(--stone) !important;
}




.cs-cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.cs-cta-badges span {
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--rounded-full);
  color: rgba(255, 255, 255, 0.9);
}


.cs-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-cs-cta-primary {
  background: var(--brand-green);
  color: var(--primary);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--rounded-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 212, 164, 0.3);
}

.btn-cs-cta-primary:hover {
  background: var(--brand-green-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 164, 0.4);
}

.btn-cs-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--rounded-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-cs-cta-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cs-cta-footer {
  font-size: 12px !important;
  color: var(--stone) !important;
  margin-bottom: 0 !important;
}

/* ── Homepage Card Link styling ── */
.work-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-green-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  transition: transform var(--transition-fast);
}

.work-card-link:hover {
  color: var(--brand-green);
}

.work-card-link:hover i {
  transform: translateX(3px);
}

.work-card-link i {
  transition: transform var(--transition-fast);
  font-size: 12px;
}

/* ── Case Study Card CTA styling ── */
.case-study-card-cta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
}

.btn-case-study-action {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-fast);
}

.btn-case-study-action:hover {
  color: var(--brand-green);
}

.btn-case-study-action:hover i {
  transform: translateX(3px);
}

.btn-case-study-action i {
  transition: transform var(--transition-fast);
  font-size: 12px;
}

/* ── Featured Card custom styles ── */
.featured-case-study-card {
  border-color: rgba(0, 212, 164, 0.3) !important;
  position: relative;
}

.featured-case-study-card::before {
  content: 'FEATURED';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand-green-deep);
  background: rgba(0, 212, 164, 0.08);
  padding: 2px 8px;
  border-radius: var(--rounded-xs);
  border: 1px solid rgba(0, 212, 164, 0.2);
}

/* ── Text Utility ── */
.text-dark {
  color: var(--charcoal) !important;
}

.text-dark h2,
.text-dark h3,
.text-dark h4 {
  color: var(--ink) !important;
}

.text-dark p,
.text-dark span {
  color: var(--slate) !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
  .cs-two-col-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-metrics-sidebar {
    position: static;
    margin-top: 16px;
  }

  .cs-panel-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-title {
    font-size: 36px;
  }

  .cs-cta-box {
    padding: 48px 24px;
  }
}

@media (max-width: 575px) {
  .cs-hero-section {
    padding: 100px 0 40px 0;
  }

  .cs-title {
    font-size: 28px;
  }

  .cs-geo-stats-grid {
    grid-template-columns: 1fr;
  }

  .cs-cta-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn-cs-cta-primary,
  .btn-cs-cta-outline {
    justify-content: center;
  }

  .cs-tab-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
}