

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

:root {
  
  --gf-midnight:    #0a0e1a;
  --gf-deep:        #111827;
  --gf-charcoal:    #1e2536;
  --gf-slate:       #2d3548;
  --gf-muted:       #6b7a99;
  --gf-silver:      #94a3b8;
  --gf-cloud:       #cbd5e1;
  --gf-pearl:       #e8edf5;
  --gf-snow:        #f1f5f9;
  --gf-white:       #ffffff;

  
  --gf-electric:    #3b82f6;
  --gf-electric-d:  #2563eb;
  --gf-electric-l:  #60a5fa;
  --gf-cyan:        #06b6d4;
  --gf-emerald:     #10b981;
  --gf-amber:       #f59e0b;
  --gf-coral:       #f43f5e;

  
  --gf-grad-hero:   linear-gradient(135deg, #0a0e1a 0%, #111827 40%, #162033 100%);
  --gf-grad-accent: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gf-grad-glow:   linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(6,182,212,0.08) 100%);
  --gf-grad-card:   linear-gradient(160deg, rgba(30,37,54,0.6) 0%, rgba(17,24,39,0.8) 100%);
  --gf-grad-subtle: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);

  
  --font-display:   'Instrument Serif', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  
  --fs-xs:    clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm:    clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --fs-base:  clamp(0.95rem, 0.88rem + 0.35vw, 1.05rem);
  --fs-md:    clamp(1.05rem, 0.95rem + 0.5vw, 1.2rem);
  --fs-lg:    clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --fs-xl:    clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  --fs-2xl:   clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --fs-3xl:   clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
  --fs-hero:  clamp(3rem, 2rem + 5vw, 5.5rem);

  
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;
  --sp-4xl: 6rem;
  --sp-section: clamp(5rem, 4rem + 5vw, 9rem);

  
  --max-w:       1280px;
  --max-w-wide:  1440px;
  --max-w-narrow: 800px;
  --gutter:      clamp(1.25rem, 1rem + 2vw, 3rem);

  
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 24px 60px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(59,130,246,0.15), 0 0 80px rgba(6,182,212,0.08);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);

  
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    400ms;
  --dur-reveal:  700ms;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--gf-deep);
  background: var(--gf-white);
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

::selection {
  background: var(--gf-electric);
  color: var(--gf-white);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--max-w-wide);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

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

.t-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.t-heading {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.t-body { font-size: var(--fs-base); line-height: 1.7; }
.t-small { font-size: var(--fs-sm); line-height: 1.6; }
.t-xs { font-size: var(--fs-xs); line-height: 1.5; }
.t-mono { font-family: var(--font-mono); font-size: var(--fs-sm); }

.t-muted { color: var(--gf-muted); }
.t-silver { color: var(--gf-silver); }

.t-gradient {
  background: var(--gf-grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gf-electric);
  margin-bottom: var(--sp-lg);
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gf-grad-accent);
  animation: labelPulse 2.5s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gf-deep);
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--gf-muted);
  max-width: 600px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gf-electric);
  color: var(--gf-white);
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

.btn--primary:hover {
  background: var(--gf-electric-d);
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--gf-deep);
  border: 1.5px solid var(--gf-cloud);
}

.btn--secondary:hover {
  border-color: var(--gf-electric);
  color: var(--gf-electric);
  background: rgba(59,130,246,0.04);
}

.btn--ghost {
  background: transparent;
  color: var(--gf-electric);
  padding: 0.5rem 0;
}

.btn--ghost:hover { color: var(--gf-electric-d); }

.btn--ghost .btn-arrow {
  transition: transform var(--dur-base) var(--ease-out);
}

.btn--ghost:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--light {
  background: rgba(255,255,255,0.1);
  color: var(--gf-white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.btn--light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-base);
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1rem 0;
  transition: all var(--dur-slow) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.65rem 0;
}

.site-header.is-scrolled .nav-logo-text { color: var(--gf-deep); }
.site-header.is-scrolled .nav-link { color: var(--gf-slate); }
.site-header.is-scrolled .nav-link:hover { color: var(--gf-electric); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.nav-logo-mark svg {
  width: 36px;
  height: 36px;
  overflow: visible;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--gf-white);
  transition: color var(--dur-base) var(--ease-out);
}

.nav-logo-text span {
  font-weight: 400;
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-base) var(--ease-out);
  position: relative;
}

.nav-link:hover { color: var(--gf-white); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gf-grad-accent);
  border-radius: 1px;
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gf-white);
  border-radius: 1px;
  transition: all var(--dur-base) var(--ease-out);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--gf-deep);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--gf-white);
  z-index: 99999;
  padding: 0 var(--gutter) 2rem;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--gf-pearl);
  flex-shrink: 0;
}

.nav-mobile-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--gf-deep);
  transition: background var(--dur-fast) var(--ease-out);
}

.nav-mobile-close:hover {
  background: var(--gf-snow);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nav-mobile .nav-link {
  color: var(--gf-deep);
  font-size: var(--fs-lg);
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gf-pearl);
}

.nav-mobile .nav-link::after { display: none; }

.nav-mobile .nav-link:hover {
  color: var(--gf-electric);
}

.nav-mobile .btn {
  margin-top: var(--sp-xl);
  width: 100%;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gf-grad-hero);
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-orb--blue {
  width: 500px;
  height: 500px;
  background: var(--gf-electric);
  top: 10%;
  right: 10%;
  opacity: 0.12;
}

.hero-orb--cyan {
  width: 400px;
  height: 400px;
  background: var(--gf-cyan);
  bottom: 15%;
  left: 5%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--gf-electric-l);
  margin-bottom: var(--sp-xl);
  backdrop-filter: blur(8px);
}

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

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--gf-white);
  margin-bottom: var(--sp-xl);
}

.hero-title em {
  font-style: italic;
  background: var(--gf-grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--fs-md);
  color: var(--gf-silver);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--sp-2xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--sp-3xl);
  margin-top: var(--sp-4xl);
  padding-top: var(--sp-2xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--gf-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
  letter-spacing: 0.04em;
}

.trust-bar {
  padding: var(--sp-3xl) 0;
  background: var(--gf-snow);
  border-top: 1px solid var(--gf-pearl);
  border-bottom: 1px solid var(--gf-pearl);
}

.trust-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gf-muted);
  margin-bottom: var(--sp-xl);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 3vw, 4rem);
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--gf-silver);
  opacity: 0.5;
  transition: opacity var(--dur-base) var(--ease-out);
  letter-spacing: -0.02em;
}

.trust-logo:hover { opacity: 0.8; }

.services {
  padding: var(--sp-section) 0;
}

.services-header {
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

.services-header .section-subtitle {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-xl);
}

.service-card {
  position: relative;
  padding: var(--sp-2xl);
  border-radius: var(--radius-lg);
  background: var(--gf-white);
  border: 1px solid var(--gf-pearl);
  transition: all var(--dur-slow) var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gf-grad-accent);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.service-card:hover {
  border-color: rgba(59,130,246,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gf-grad-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gf-electric);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--gf-deep);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: var(--fs-sm);
  color: var(--gf-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-lg);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--gf-slate);
}

.service-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gf-electric);
  flex-shrink: 0;
}

.expertise {
  padding: var(--sp-section) 0;
  background: var(--gf-grad-hero);
  position: relative;
  overflow: hidden;
}

.expertise .hero-grid-bg {
  opacity: 0.5;
}

.expertise-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: center;
}

.expertise-content .section-label {
  color: var(--gf-electric-l);
}

.expertise-content .section-title {
  color: var(--gf-white);
}

.expertise-content .section-subtitle {
  color: var(--gf-silver);
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.expertise-item {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-out);
}

.expertise-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(59,130,246,0.2);
}

.expertise-item-num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--gf-electric);
  flex-shrink: 0;
  margin-top: 2px;
}

.expertise-item-title {
  font-weight: 600;
  color: var(--gf-white);
  margin-bottom: 0.25rem;
  font-size: var(--fs-sm);
}

.expertise-item-desc {
  font-size: var(--fs-xs);
  color: var(--gf-silver);
  line-height: 1.6;
}

.expertise-visual {
  position: relative;
}

.expertise-card-stack {
  position: relative;
  padding: var(--sp-xl);
}

.exp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  backdrop-filter: blur(12px);
}

.exp-card + .exp-card {
  margin-top: var(--sp-md);
}

.exp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-md);
}

.exp-card-badge {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--gf-emerald);
  background: rgba(16,185,129,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16,185,129,0.15);
}

.exp-card-title {
  font-weight: 600;
  color: var(--gf-white);
  font-size: var(--fs-sm);
}

.exp-card-metric {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: var(--sp-sm);
}

.exp-card-metric-value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--gf-white);
}

.exp-card-metric-label {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
}

.exp-card-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: var(--sp-md);
  overflow: hidden;
}

.exp-card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gf-grad-accent);
  transition: width 1.5s var(--ease-out);
}

.process {
  padding: var(--sp-section) 0;
}

.process-header {
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

.process-header .section-subtitle {
  margin-inline: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gf-pearl);
}

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

.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gf-white);
  border: 2px solid var(--gf-pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gf-electric);
  position: relative;
  z-index: 2;
  transition: all var(--dur-base) var(--ease-out);
}

.process-step:hover .process-step-num {
  border-color: var(--gf-electric);
  background: var(--gf-electric);
  color: var(--gf-white);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.1);
}

.process-step-title {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--gf-deep);
  margin-bottom: var(--sp-xs);
}

.process-step-desc {
  font-size: var(--fs-sm);
  color: var(--gf-muted);
  line-height: 1.6;
}

.results {
  padding: var(--sp-section) 0;
  background: var(--gf-grad-subtle);
}

.results-header {
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

.results-header .section-subtitle {
  margin-inline: auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--sp-xl);
}

.result-card {
  background: var(--gf-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  border: 1px solid var(--gf-pearl);
  transition: all var(--dur-slow) var(--ease-out);
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.result-card-industry {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--gf-electric);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-md);
}

.result-card-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--gf-deep);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.result-card-desc {
  font-size: var(--fs-sm);
  color: var(--gf-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--gf-pearl);
}

.result-metric-value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--gf-electric);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.result-metric-label {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
}

.cta-section {
  padding: var(--sp-section) 0;
}

.cta-box {
  position: relative;
  background: var(--gf-grad-hero);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 4vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.cta-box .hero-grid-bg {
  opacity: 0.4;
}

.cta-box-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--gf-white);
  margin-bottom: var(--sp-md);
  line-height: 1.1;
}

.cta-desc {
  font-size: var(--fs-md);
  color: var(--gf-silver);
  max-width: 520px;
  margin: 0 auto var(--sp-2xl);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.site-footer {
  padding: var(--sp-4xl) 0 var(--sp-xl);
  background: var(--gf-midnight);
  color: var(--gf-silver);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-desc {
  font-size: var(--fs-sm);
  color: var(--gf-muted);
  line-height: 1.7;
  margin-top: var(--sp-md);
  max-width: 320px;
}

.footer-col-title {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gf-white);
  margin-bottom: var(--sp-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-link {
  font-size: var(--fs-sm);
  color: var(--gf-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-link:hover { color: var(--gf-electric-l); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-xl);
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
}

.footer-legal {
  display: flex;
  gap: var(--sp-lg);
}

.footer-legal a {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-legal a:hover { color: var(--gf-electric-l); }

.contact {
  padding: var(--sp-section) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gf-grad-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gf-electric);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
  margin-bottom: 0.15rem;
}

.contact-info-value {
  font-weight: 500;
  color: var(--gf-deep);
}

.form-group {
  margin-bottom: var(--sp-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gf-deep);
  margin-bottom: var(--sp-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--gf-deep);
  background: var(--gf-white);
  border: 1.5px solid var(--gf-cloud);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gf-electric);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  font-size: var(--fs-xs);
  color: var(--gf-muted);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gf-electric);
}

.form-consent a {
  color: var(--gf-electric);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.legal-page {
  padding: 10rem 0 var(--sp-section);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--gf-deep);
  margin-bottom: var(--sp-sm);
}

.legal-meta {
  font-size: var(--fs-sm);
  color: var(--gf-muted);
  margin-bottom: var(--sp-3xl);
}

.legal-content h2 {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--gf-deep);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
}

.legal-content p {
  color: var(--gf-slate);
  margin-bottom: var(--sp-md);
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: var(--sp-md);
}

.legal-content li {
  color: var(--gf-slate);
  line-height: 1.75;
  list-style: disc;
  margin-bottom: var(--sp-xs);
}

.legal-content a {
  color: var(--gf-electric);
  text-decoration: underline;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.result-card-image {
  margin: calc(var(--sp-2xl) * -1) calc(var(--sp-2xl) * -1) var(--sp-xl);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.result-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.result-card:hover .result-card-image img {
  transform: scale(1.03);
}

.about {
  padding: var(--sp-section) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-content .section-subtitle {
  margin-bottom: var(--sp-xl);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.about-value {
  padding: var(--sp-lg);
  background: var(--gf-grad-glow);
  border-radius: var(--radius-md);
  border: 1px solid rgba(59,130,246,0.08);
}

.about-value-title {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gf-deep);
  margin-bottom: 0.25rem;
}

.about-value-desc {
  font-size: var(--fs-xs);
  color: var(--gf-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .hero-image {
    max-width: 560px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .expertise-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-3xl);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2xl);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }

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

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta.desktop-only { display: none; }

  
  .site-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0.65rem 0;
  }

  .site-header .nav-logo-text { color: var(--gf-deep); }
  .site-header .nav-toggle span { background: var(--gf-deep); }

  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .hero-title {
    letter-spacing: -0.02em;
  }

  .hero-stats {
    gap: var(--sp-lg);
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 0;
  }

  .hero-image {
    max-width: 100%;
  }

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

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

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

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

  .footer-top { grid-template-columns: 1fr; }

  .cta-box {
    padding: var(--sp-2xl) var(--sp-lg);
  }

  .section-title {
    font-size: var(--fs-xl);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .result-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
  }

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

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--sp-md);
  }

  .hero-stat-value {
    font-size: var(--fs-xl);
  }

  .exp-card-metric-value {
    font-size: var(--fs-lg);
  }
}
