:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --fg: #0a0a0a;
  --muted: #737373;
  --border: #e5e5e5;
  --accent: #1a6dd4;
  --accent-light: #38c5f2;
  --accent-deep: #1256b0;
  --accent-glow: rgba(56, 197, 242, 0.15);
  --font-display: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --btn-gradient: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-deep) 100%);
}

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

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Ambient background mesh ── */
.ambient-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(26, 109, 212, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
}

/* ── Grid system ── */
.grid-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.grid-lines svg {
  width: 100%;
  height: 100%;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  background: rgba(250, 250, 250, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 250, 250, 0.9);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: var(--fg);
}

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

.nav-links a.nav-cta {
  padding: 10px 24px;
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  box-shadow: 0 4px 14px rgba(26, 109, 212, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(56, 197, 242, 0.32);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  z-index: 10;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(26, 109, 212, 0.22);
}

.btn-primary:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 197, 242, 0.36);
}

.btn-secondary {
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(26, 109, 212, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neural-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo-wrap img {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(56, 197, 242, 0.10));
  animation: float 6s ease-in-out infinite;
}

.hero-stat {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero-stat strong {
  color: var(--fg);
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

/* ── Marquee ── */
.marquee-section {
  position: relative;
  z-index: 10;
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

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

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--border);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--muted);
}

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

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

/* ── Inspired From ── */
.inspired-section {
  padding: 100px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.inspired-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.inspired-title {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 50px;
  font-weight: 500;
}

.inspired-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 56px;
}

.inspired-logos span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: -0.02em;
  cursor: default;
}

.inspired-logos span:hover {
  opacity: 0.9;
}

.logo-instacart {
  font-weight: 600;
  font-size: 26px !important;
}

.logo-vercel {
  font-weight: 700;
}

.logo-linear {
  font-weight: 600;
}

.logo-anthropic {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
}

.logo-cursor {
  font-weight: 700;
  text-transform: uppercase;
}

.logo-lyft {
  font-weight: 800;
  font-size: 32px !important;
}

.logo-slack {
  font-weight: 800;
}

.logo-github {
  font-weight: 600;
}

.logo-bolt {
  font-weight: 800;
  font-style: italic;
}

.logo-disney {
  font-family: cursive !important;
  font-size: 32px !important;
}

.logo-atlassian {
  font-weight: 800;
  text-transform: uppercase;
}

.logo-autodesk {
  font-weight: 700;
  text-transform: uppercase;
}

.logo-fastino {
  font-weight: 400;
  font-size: 20px !important;
}

.logo-runlayer {
  font-weight: 400;
}

.logo-factory {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
}

.logo-microsoft {
  font-weight: 600;
}

.logo-cloudflare {
  font-weight: 800;
  text-transform: uppercase;
}

.logo-baseten {
  font-weight: 500;
}

.logo-monday {
  font-weight: 700;
}

.logo-metronome {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
}

.inspired-logos span:nth-child(3n+1) {
  transform: translateY(-12px);
}

.inspired-logos span:nth-child(3n+2) {
  transform: translateY(16px);
}

.inspired-logos span:nth-child(5n) {
  transform: translateY(-24px);
}

.inspired-logos span:nth-child(4n) {
  transform: translateY(12px);
}

/* ── Services ── */
.services {
  position: relative;
  z-index: 10;
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 80px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

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

.service-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #6366f1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card .arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stats bar ── */
.stats-bar {
  position: relative;
  z-index: 10;
  padding: 80px 48px;
  background: var(--fg);
  color: var(--bg);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Process ── */
.process {
  position: relative;
  z-index: 10;
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-step {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -32px;
  width: 32px;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.process-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Case Studies (Work) ── */
.work {
  position: relative;
  z-index: 10;
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.work-header {
  margin-bottom: 80px;
}

.work-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.work-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.work-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  align-items: center;
}

.work-item.reverse .work-image-wrap {
  order: 2;
}

.work-item.reverse .work-content {
  order: 1;
}

.work-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.work-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-item:hover .work-image-wrap img {
  transform: scale(1.05);
}

.work-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.work-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.work-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.work-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.work-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.work-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: 14px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(26, 109, 212, 0.22);
}

.work-cta-btn:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 197, 242, 0.32);
}

/* ── Testimonials ── */
.testimonials {
  position: relative;
  z-index: 10;
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.test-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: transform 0.3s ease;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.stars {
  color: #f59e0b;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.test-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-display);
}

.author-info h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Contact Section ── */
.contact-section {
  position: relative;
  z-index: 10;
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 480px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-text h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item-text span {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.contact-form {
  background: var(--surface);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

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

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(26, 109, 212, 0.22);
}

.form-submit:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 197, 242, 0.32);
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 10;
  padding: 60px 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

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

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-12px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

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

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

  .process-step::after {
    display: none;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-item.reverse .work-image-wrap {
    order: 1;
  }

  .work-item.reverse .work-content {
    order: 2;
  }

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

@media (max-width: 640px) {
  nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .inspired-section,
  .services,
  .process,
  .work,
  .testimonials,
  .contact-section {
    padding: 80px 20px;
  }

  .inspired-logos {
    gap: 24px 32px;
  }

  .inspired-logos span {
    font-size: 18px !important;
    transform: none !important;
  }

  .services-grid,
  .stats-inner,
  .process-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 20px;
  }

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

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }

  .hero-logo-wrap img {
    width: 160px;
  }
}
