@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

/* ─── Design tokens ────────────────────────────────────────────── */
:root {
  --radius: 0.5rem;
  --background: oklch(0.06 0 0);
  --foreground: oklch(0.98 0 0);
  --surface: oklch(0.10 0 0);
  --surface-elevated: oklch(0.14 0 0);
  --primary: oklch(0.86 0.27 142);
  --primary-foreground: oklch(0.06 0 0);
  --muted-foreground: oklch(0.65 0 0);
  --border: oklch(1 0 0 / 8%);
  --input-border: oklch(1 0 0 / 10%);
  --accent-glow: oklch(0.92 0.24 135);
  --gradient-accent: linear-gradient(135deg, oklch(0.98 0 0) 0%, var(--primary) 60%, var(--accent-glow) 100%);
  --gradient-hero: radial-gradient(ellipse at top right, color-mix(in oklab, var(--primary) 30%, transparent) 0%, transparent 60%);
  --shadow-glow: 0 0 60px -10px color-mix(in oklab, var(--primary) 60%, transparent);
}

/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
textarea, input, select { font: inherit; color: inherit; }

/* ─── Base ─────────────────────────────────────────────────────── */
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ─── Layout ───────────────────────────────────────────────────── */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-md {
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ─── Header ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--background) 70%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-link img { height: 2.25rem; width: 2.25rem; object-fit: contain; }

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 0.9375rem;
}

.logo-text .accent { color: var(--primary); }

.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.header-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  border-radius: 0.5rem;
}

.header-nav a:hover,
.header-nav a.active { color: var(--foreground); }

.btn-header {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: opacity 0.2s;
}

.btn-header:hover { opacity: 0.9; }

.menu-toggle {
  padding: 0.25rem;
  color: var(--foreground);
}

.menu-icon { display: block; width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--background) 95%, transparent);
  backdrop-filter: blur(20px);
}

.mobile-nav.open { display: block; }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--foreground); }

.mobile-nav .btn-mobile {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background-color: var(--primary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
}

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--surface) 30%, transparent);
}

.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-logo img { height: 2.5rem; width: 2.5rem; object-fit: contain; }
.footer-logo-text { font-family: "Space Grotesk", sans-serif; font-weight: 600; }
.footer-logo-text .accent { color: var(--primary); }

.footer-tagline {
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-nav h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; transition: color 0.2s; color: var(--foreground); }
.footer-nav a:hover { color: var(--primary); }

.footer-contact p { font-size: 0.875rem; color: var(--muted-foreground); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-bottom p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Page shell ───────────────────────────────────────────────── */
.page-main { padding-top: 4rem; }

/* ─── Section label ────────────────────────────────────────────── */
.section-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
  transition: opacity 0.2s;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--surface) 50%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s;
  cursor: pointer;
}

.btn-secondary:hover { background-color: var(--surface); }

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

/* ─── Cards ────────────────────────────────────────────────────── */
.card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 2rem;
  transition: background-color 0.2s;
}

.card:hover { background-color: var(--surface-elevated); }

/* ─── Utilities ────────────────────────────────────────────────── */
.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-grid {
  background-image:
    linear-gradient(to right, oklch(1 0 0 / 4%) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(1 0 0 / 4%) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ─── Hero Section ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-size: cover;
  background-position: center right;
  -webkit-mask-image: linear-gradient(to left, black 10%, transparent 70%), linear-gradient(to top, transparent 0%, black 30%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, black 10%, transparent 70%), linear-gradient(to top, transparent 0%, black 30%);
  mask-composite: intersect;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 8rem;
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--surface) 60%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background-color: var(--primary);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ─── Logos section ─────────────────────────────────────────────── */
.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--surface) 30%, transparent);
}

.logos-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.logos-label {
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-item {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: color-mix(in oklab, var(--muted-foreground) 70%, transparent);
  transition: color 0.2s;
  text-align: center;
}

.logo-item:hover { color: var(--foreground); }

/* ─── Capabilities section ──────────────────────────────────────── */
.capabilities-section { padding-top: 8rem; padding-bottom: 8rem; }

.capabilities-intro { max-width: 40rem; margin-bottom: 4rem; }
.capabilities-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.capabilities-intro p { font-size: 1.125rem; color: var(--muted-foreground); }

.capabilities-grid {
  display: grid;
  gap: 1px;
  background-color: var(--border);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  grid-template-columns: 1fr;
}

.capability-card {
  background-color: var(--surface);
  padding: 2rem;
  transition: background-color 0.2s;
}

.capability-card:hover { background-color: var(--surface-elevated); }

.capability-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.capability-icon svg { width: 1.5rem; height: 1.5rem; }

.capability-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.capability-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ─── Stats section ─────────────────────────────────────────────── */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--surface) 30%, transparent);
}

.stats-inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ─── CTA section ───────────────────────────────────────────────── */
.cta-section { padding-top: 8rem; padding-bottom: 8rem; }

.cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-elevated) 100%);
  padding: 3rem;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.cta-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  height: 20rem;
  width: 20rem;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--primary) 30%, transparent);
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ─── Page Hero (inner pages) ───────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 9rem;
}

.page-hero-content h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.page-hero-content p {
  max-width: 40rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ─── Services ──────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  gap: 1.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  grid-template-columns: 1fr;
}

.service-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 2rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.service-card:hover {
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
  background-color: var(--surface-elevated);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

.service-icon svg { width: 1.25rem; height: 1.25rem; }

.service-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-bullets { display: flex; flex-direction: column; gap: 0.5rem; }

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.service-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background-color: var(--primary);
  margin-top: 0.5rem;
}

.services-cta { text-align: center; padding-bottom: 6rem; }

/* ─── Process ───────────────────────────────────────────────────── */
.process-section { padding-top: 6rem; padding-bottom: 6rem; }

.process-timeline {
  position: relative;
  border-left: 1px solid var(--border);
  margin-left: 1rem;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-item { position: relative; }

.process-dot {
  position: absolute;
  left: -2.5625rem;
  top: 0.5rem;
  height: 1rem;
  width: 1rem;
  border-radius: 9999px;
  background-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.process-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.process-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.process-item h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
}

.process-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.process-item > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 40rem;
}

/* ─── About ─────────────────────────────────────────────────────── */
.beliefs-section { padding-top: 6rem; padding-bottom: 6rem; }

.beliefs-intro { margin-bottom: 4rem; }

.beliefs-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

.beliefs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.belief-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 2rem;
  transition: background-color 0.2s;
}

.belief-card:hover { background-color: var(--surface-elevated); }

.belief-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.belief-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.beliefs-cta { text-align: center; margin-top: 5rem; }

/* ─── Contact ───────────────────────────────────────────────────── */
.contact-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-info-item {}

.contact-info-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-info-label svg { width: 1.125rem; height: 1.125rem; }

.contact-info-label span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  transition: color 0.2s;
}

a.contact-info-value:hover { color: var(--primary); }

.contact-response {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 1.5rem;
}

.contact-response .response-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-response p { color: var(--foreground); font-size: 0.9375rem; line-height: 1.6; }

/* ─── Form ──────────────────────────────────────────────────────── */
.contact-form-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 2rem;
}

.form-grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-field:last-of-type { margin-bottom: 0; }

.form-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--foreground);
}

.form-input:focus,
.form-textarea:focus { border-color: var(--primary); }

.form-input::placeholder,
.form-textarea::placeholder { color: color-mix(in oklab, var(--muted-foreground) 60%, transparent); }

.form-textarea { resize: vertical; min-height: 8rem; }

.form-submit {
  margin-top: 1.5rem;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success svg { color: var(--primary); width: 3rem; height: 3rem; margin-bottom: 1.5rem; }

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-success p { color: var(--muted-foreground); }

/* ─── Animations ────────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .btn-header { display: inline-flex; }
  .menu-toggle { display: none; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .logos-grid { grid-template-columns: repeat(6, 1fr); }

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

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

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

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

  .cta-inner { padding: 5rem; }

  .hero-content { padding-top: 10rem; padding-bottom: 11rem; }
}

@media (min-width: 1024px) {
  .capabilities-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .process-timeline { margin-left: 2rem; padding-left: 3rem; }
  .process-dot { left: -3.5625rem; }
}
