/* TechNexus — Option C: The Disruptor
   Deep gradient backgrounds, animated orbs, modern SaaS energy. AI-forward. */

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

:root {
  --bg: #08081a;
  --bg-2: #0f0f28;
  --bg-3: #15152e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(139, 92, 246, 0.3);
  --ink: #ffffff;
  --ink-soft: #a8a8c0;
  --ink-muted: #6b6b85;
  --grad-1: #8b5cf6;
  --grad-2: #3b82f6;
  --grad-3: #ec4899;
  --accent: #8b5cf6;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1200px;
  --t: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: none;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.7; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }

/* Animated background orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--grad-1), transparent 70%);
  top: -150px; left: -100px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--grad-2), transparent 70%);
  top: 40%; right: -200px;
  animation-delay: -7s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--grad-3), transparent 70%);
  bottom: 0; left: 30%;
  animation-delay: -14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-40px, 40px) scale(0.95); }
}

.gradient-text {
  background: linear-gradient(135deg, var(--grad-1) 0%, var(--grad-2) 50%, var(--grad-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid var(--border-bright);
  color: #c4b5fd;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  font-family: inherit;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--grad-1); background: rgba(139, 92, 246, 0.1); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1rem 0;
  background: rgba(8, 8, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all var(--t);
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(8, 8, 26, 0.85); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.625rem; font-size: 1.125rem; font-weight: 700; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  border-radius: 9px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon span {
  display: block;
  width: 16px; height: 16px;
  border: 2px solid #fff;
  border-radius: 4px;
  transform: rotate(45deg);
}
.logo-text { font-family: 'Montserrat', sans-serif; font-size: 1.125rem; font-weight: 700; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9375rem; color: var(--ink-soft); transition: color var(--t); }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 900px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: #c4b5fd;
  margin-bottom: 2rem;
  font-weight: 500;
}
.pulse {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}
.pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.hero h1 { margin-bottom: 1.5rem; }
.strike { position: relative; color: var(--ink-muted); }
.strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 55%;
  height: 4px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-3));
  border-radius: 2px;
  transform: rotate(-2deg);
}

.hero-lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
}
.hero-lead strong { color: var(--ink); }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.marquee-track span { flex-shrink: 0; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
section { padding: 6rem 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-head h2 { margin-bottom: 1rem; }

/* Compare */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.compare-col {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.compare-col.in { opacity: 1; transform: translateY(0); }
.compare-col.old { opacity: 0.7; }
.compare-col.new {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
  border-color: var(--border-bright);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}
.new-badge {
  position: absolute;
  top: -12px; left: 2.5rem;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-col h3 { margin-bottom: 1.5rem; font-size: 1.375rem; }
.compare-col ul li {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.compare-col.new ul li { color: var(--ink); }
.x { color: #ef4444; font-weight: 700; }
.check { color: #10b981; font-weight: 700; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.service-card.in { opacity: 1; transform: translateY(0); transition: all 0.6s ease; }
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.service-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.08));
  border-color: var(--border-bright);
}
.featured-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
.grad-1 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.grad-2 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.grad-3 { background: linear-gradient(135deg, #10b981, #059669); }
.grad-4 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.grad-5 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.grad-6 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }

.service-card h3 { margin-bottom: 0.625rem; font-size: 1.25rem; }
.service-card p { font-size: 0.9375rem; margin-bottom: 1.25rem; }
.tags { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--ink-soft);
}

/* Page Header */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
}
.page-header h1 { margin-bottom: 1.25rem; }
.page-lead {
  font-size: 1.1875rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
}

/* Service Detail Page Sections */
.service-detail {
  padding: 4rem 0;
}
.service-detail.alt {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.detail-wrap {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.detail-wrap.reverse { direction: rtl; }
.detail-wrap.reverse > * { direction: ltr; }

.detail-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.detail-icon {
  width: 120px; height: 120px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}
.detail-body h2 { margin-bottom: 1rem; }
.detail-body p { margin-bottom: 1rem; }
.detail-body .big-p { font-size: 1.1875rem; color: var(--ink); margin-bottom: 1.25rem; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.feat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink);
  padding: 0.625rem 0;
}
.feat-check {
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
}

/* About - Story */
.about-story { padding: 4rem 0 6rem; }
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text h2 { margin-bottom: 1.25rem; }
.story-text p { margin-bottom: 1rem; }
.story-card {
  background: var(--bg-3);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.15);
}
.story-card-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}
.story-card-item.in { opacity: 1; transform: translateX(0); }
.story-card-item:last-child { border-bottom: none; }
.story-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.375rem;
}
.story-label { font-size: 0.875rem; color: var(--ink-soft); }

/* Values */
.values-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t);
}
.value-card:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.value-card h3 { margin-bottom: 0.625rem; font-size: 1.25rem; }
.value-card p { font-size: 0.9375rem; }

/* Contact Page */
.contact-section { padding: 3rem 0 8rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t);
}
.info-card:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.875rem;
}
.info-card h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 0.375rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.info-card a, .info-card p {
  font-size: 0.9375rem;
  color: var(--ink);
  display: block;
}
.info-card a:hover { color: #c4b5fd; }

.contact-form-c {
  background: var(--bg-3);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.15);
}
.form-head { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.form-head h3 { margin-bottom: 0.5rem; }
.form-head p { font-size: 0.9375rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all var(--t);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--grad-1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a8a8c0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-field select option { background: var(--bg-2); color: var(--ink); }
.form-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-align: center;
}

/* Services CTA */
.services-cta { text-align: center; margin-top: 3rem; }

/* Industries */
.industries {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.industry-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t);
  opacity: 0;
  transform: translateY(20px);
  text-align: left;
}
.industry-card.in { opacity: 1; transform: translateY(0); transition: all 0.6s ease; }
.industry-card:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  display: block;
}
.industry-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.industry-card p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* AI Edge */
.ai-edge {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.ai-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ai-copy h2 { margin-bottom: 1.25rem; }
.big-p { font-size: 1.125rem; color: var(--ink); margin-bottom: 1.25rem; }
.ai-copy p { margin-bottom: 1rem; }
.ai-copy strong { color: var(--ink); }

.ai-panel {
  background: var(--bg-3);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.2);
  position: relative;
}
.ai-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2), var(--grad-3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ai-panel-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  font-weight: 600;
}
.ai-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
.ai-line {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--ink);
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.ai-arrow {
  color: var(--grad-1);
  font-weight: 700;
}
.ai-footer {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.ai-metric { font-size: 0.875rem; color: var(--ink-soft); }
.ai-metric strong {
  font-size: 1.25rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Numbers */
.numbers { padding: 4rem 0; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.num-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.num-card.in { opacity: 1; transform: translateY(0); }
.num-card:hover { border-color: var(--border-bright); }
.num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.num-label { font-size: 0.875rem; color: var(--ink-soft); }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.proc-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.proc-card.in { opacity: 1; transform: translateY(0); }
.proc-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.proc-card h4 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.proc-card p { font-size: 0.875rem; }

/* Final CTA */
.final-cta { padding-bottom: 8rem; }
.cta-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(236, 72, 153, 0.12) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(139, 92, 246, 0.25);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-box > * { position: relative; }
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.9375rem;
  font-family: inherit;
}
.cta-form input::placeholder { color: var(--ink-muted); }
.cta-form input:focus {
  outline: none;
  border-color: var(--grad-1);
  background: rgba(255, 255, 255, 0.08);
}
.cta-meta { font-size: 0.875rem; color: var(--ink-soft); }
.cta-meta a { color: #c4b5fd; text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; max-width: 300px; margin-top: 1rem; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-cols h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  transition: color var(--t);
}
.footer-cols a:hover { color: #c4b5fd; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .compare-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .detail-wrap { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .detail-wrap.reverse { direction: ltr; }
  .detail-icon-wrap { flex-direction: row; justify-content: center; }
  .feature-list { grid-template-columns: 1fr; text-align: left; }
  .ai-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 8rem 0 4rem; }
  section { padding: 4rem 0; }
  .service-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-box { padding: 3rem 1.5rem; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .compare-col { padding: 2rem; }
}
