/* ============================================
   Forged Systems — Design System
   ============================================ */
:root {
  --graphite: #1D2127;
  --graphite-light: #252A32;
  --steel: #7A818B;
  --silver: #E8EAEB;
  --white: #FFFFFF;
  --cobalt: #1E3A8A;
  --electric: #2563EB;
  --electric-light: #3B82F6;
  --forge-orange: #FF7A00;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.text-accent {
  color: var(--electric-light);
}

.text-accent-dark {
  color: var(--electric);
}

.heading-keep {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--electric);
  color: var(--white);
  border-color: var(--electric);
}

.btn-primary:hover {
  background: var(--electric-light);
  border-color: var(--electric-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

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

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

.section-light .btn-outline {
  color: var(--electric);
  border-color: var(--electric);
}

.section-light .btn-outline:hover {
  background: var(--electric);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--electric);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--silver);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.9375rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  font-size: 1.2em;
  line-height: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}

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

.section-dark.parallax-section {
  background: transparent;
}

.section-light {
  background: var(--white);
  color: var(--graphite);
}

.section-light.parallax-section {
  background: transparent;
}

/* ============================================
   Parallax Backgrounds
   ============================================ */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(29, 33, 39, 0.88);
  pointer-events: none;
}

.parallax-overlay--light {
  background: rgba(255, 255, 255, 0.93);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-image-wrap {
  overflow: hidden;
}

.parallax-image-wrap img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  margin-top: -10%;
}

/* Visual Strip */
.visual-strip {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}

.visual-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 280px;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 280px;
}

.visual-panel .parallax-bg {
  position: absolute;
  inset: -25% 0;
  height: 150%;
  top: -25%;
}

.visual-panel figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(29, 33, 39, 0.95));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-bg,
  .parallax-image-wrap img {
    transform: none !important;
  }

  .hero-flow-dot {
    animation: none;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header p {
  margin-top: 16px;
  color: var(--steel);
  font-size: 1.0625rem;
}

.section-dark .section-header p {
  color: var(--steel);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--graphite);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  padding: 8px 0;
}

.logo-img {
  display: block;
  height: 100%;
  max-height: 56px;
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  object-position: left center;
}

.logo-img--footer {
  height: auto;
  max-height: 96px;
  max-width: 360px;
  width: 100%;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--graphite);
  color: var(--white);
  padding-top: 76px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, transparent 0%, transparent 100%);
  pointer-events: none;
}

.hero-overlay {
  background: rgba(29, 33, 39, 0.78);
  z-index: 1;
}

.hero-parallax {
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--steel);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-support {
  font-size: 0.875rem;
  color: var(--steel);
  max-width: 500px;
  margin-bottom: 40px;
  font-style: italic;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--steel);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--electric-light);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-flow {
  width: 100%;
  max-width: 440px;
  background: rgba(37, 42, 50, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-flow-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 24px;
}

.hero-flow-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.hero-flow-step--active {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.08);
}

.hero-flow-step--result {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.06);
}

.hero-flow-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 8px;
  color: var(--electric-light);
}

.hero-flow-step--result .hero-flow-icon {
  background: rgba(255, 122, 0, 0.15);
  color: var(--forge-orange);
}

.hero-flow-icon svg {
  width: 20px;
  height: 20px;
}

.hero-flow-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-flow-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.hero-flow-text span {
  font-size: 0.75rem;
  color: var(--steel);
  line-height: 1.4;
}

.hero-flow-connector {
  width: 2px;
  height: 16px;
  margin: 4px 0 4px 34px;
  background: linear-gradient(180deg, var(--electric) 0%, rgba(37, 99, 235, 0.2) 100%);
}

.hero-flow-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-flow-stat {
  text-align: center;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.hero-flow-stat span {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--electric-light);
  margin-bottom: 2px;
}

.hero-flow-step--result + .hero-flow-stats .hero-flow-stat span,
.hero-flow-stats .hero-flow-stat:last-child span {
  color: var(--forge-orange);
}

/* ============================================
   About
   ============================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-location {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-lead {
  font-size: 1.0625rem !important;
  color: var(--graphite) !important;
  font-weight: 500;
}

.about-emphasis {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: var(--graphite) !important;
  margin-bottom: 18px !important;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-section {
  padding-bottom: 96px;
  border-bottom: 1px solid var(--silver);
}

.about-aside {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-aside-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 11;
}

.about-aside-image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center center;
  margin-top: -7%;
}

/* ============================================
   Problem & Solution
   ============================================ */
.problem-solution {
  padding-top: 96px;
  background: #F8F9FA;
}

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

.split-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--silver);
  box-shadow: 0 2px 12px rgba(29, 33, 39, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.split-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 33, 39, 0.08);
}

.split-image {
  height: 200px;
  overflow: hidden;
  background: var(--graphite);
}

.split-image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  margin-top: -7%;
}

.split-content {
  padding: 28px 24px 32px;
}

.split-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.3;
}

.split-content > p {
  color: var(--steel);
  margin-bottom: 24px;
  font-size: 0.875rem;
  line-height: 1.65;
}

.split-grid .pillar-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.split-grid .pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 10px 12px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: var(--radius);
}

.split-grid .pillar-icon {
  width: 36px;
  height: 36px;
  margin: 0;
  flex-shrink: 0;
}

.split-grid .pillar-icon svg {
  width: 18px;
  height: 18px;
}

.split-grid .pillar h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--graphite);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--electric);
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list-dark li::before {
  background-color: var(--electric);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.pillar {
  text-align: center;
  padding: 16px 8px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  color: var(--electric);
}

.pillar h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--graphite-light);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--electric);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--electric-light);
}

.service-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================
   Process Timeline
   ============================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric) 0%, var(--silver) 100%);
  z-index: 0;
}

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

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--electric);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--electric);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--steel);
  line-height: 1.5;
}

/* ============================================
   Workflows
   ============================================ */
.workflows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.workflow-card {
  background: var(--graphite-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 3px solid var(--electric);
}

.workflow-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--electric-light);
}

.workflow-steps {
  list-style: none;
  counter-reset: step;
}

.workflow-steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--steel);
  counter-increment: step;
}

.workflow-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(37, 99, 235, 0.15);
  color: var(--electric-light);
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Industries
   ============================================ */
.industries-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.industries-content h2 {
  margin-bottom: 32px;
}

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

.industry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--graphite-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: border-color var(--transition);
}

.industry-item:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

.industry-icon {
  font-size: 1.125rem;
}

.industries-cta {
  background: var(--graphite-light);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.industries-cta h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.4;
}

.industries-cta .btn {
  margin-bottom: 24px;
}

.mini-check-list li {
  font-size: 0.8125rem;
  color: var(--steel);
  margin-bottom: 6px;
}

.mini-check-list li::before {
  content: '✓ ';
  color: var(--electric-light);
  font-weight: 700;
}

/* ============================================
   Why Us
   ============================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-content h2 {
  margin-bottom: 32px;
}

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

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

.why-image img {
  width: 100%;
  height: 120%;
  min-height: 400px;
  object-fit: cover;
  will-change: transform;
  margin-top: -10%;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--graphite-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--electric);
  box-shadow: 0 0 0 1px var(--electric), 0 8px 32px rgba(37, 99, 235, 0.2);
}

.pricing-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--electric-light);
}

.pricing-icon svg {
  width: 100%;
  height: 100%;
}

.pricing-card h3 {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--steel);
}

.pricing-card p {
  font-size: 0.875rem;
  color: var(--steel);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--graphite);
}

.required {
  color: var(--forge-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

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

.form-note {
  margin-top: 16px;
  font-size: 0.875rem;
  text-align: center;
}

.form-note.success {
  color: #059669;
}

.form-note.error {
  color: #DC2626;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  background: var(--electric);
  padding: 64px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 600px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--graphite);
  color: var(--white);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 64px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-brand .logo {
  height: auto;
  padding: 0;
}

.footer-col h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a,
.footer-contact a {
  display: block;
  font-size: 0.875rem;
  color: var(--steel);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--graphite-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-links a:hover {
  background: var(--electric);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--steel);
  text-align: center;
}

/* ============================================
   Mobile Nav
   ============================================ */
.mobile-nav-open .main-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--graphite);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 999;
}

.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub,
  .hero-support {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-bar {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

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

  .split-grid,
  .why-inner,
  .industries-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-aside {
    max-width: 100%;
  }

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

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

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

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

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .section {
    padding: 56px 0;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

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

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

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

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .visual-strip-grid {
    grid-template-columns: 1fr;
  }
}
