/* Geared Security — clean white, black text, red buttons */
:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-muted: #f4f4f5;
  --bg-elevated: #ffffff;
  --border: #e4e4e7;
  --text: #0a0a0a;
  --text-muted: #52525b;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --accent-soft: rgba(220, 38, 38, 0.1);
  --radius: 12px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.04);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:not(.btn):hover {
  color: var(--accent);
}

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

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6px clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.logo-mark-image {
  width: 132px;
  height: 58px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.logo-mark-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-mark {
  width: 78px;
  height: 56px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.nav-mobile-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .nav-desktop,
  .nav-actions .btn:not(.btn-primary):not(#menu-open) {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-drawer[data-open="true"] {
    display: flex !important;
  }
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 15, 15, 0.35);
  flex-direction: column;
  justify-content: flex-start;
}

.nav-drawer-panel {
  margin: 0;
  padding: 18px clamp(24px, 6vw, 36px) 36px;
  background: var(--bg);
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-card);
}

.nav-drawer-brand {
  display: flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 12px;
  padding-right: 56px;
}

.nav-drawer a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-drawer .btn-primary {
  margin-top: 12px;
  text-align: center;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: clamp(16px, 4vw, 28px);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.25rem;
}

.hero {
  padding: clamp(72px, 14vw, 120px) 0 clamp(64px, 10vw, 96px);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 85% -5%, rgba(220, 38, 38, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(220, 38, 38, 0.04), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 72px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-lead {
  margin: 0 0 32px;
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 48px);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.stat {
  min-width: 120px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow-card);
}

.request-card {
  position: relative;
}

.request-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.request-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: none;
}

.request-switch {
  flex-shrink: 0;
  max-width: 150px;
  border: none;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  text-align: center;
}

.request-switch:hover {
  background: rgba(220, 38, 38, 0.16);
  color: var(--accent-hover);
}

.request-switch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.request-form {
  display: grid;
  gap: 14px;
}

.request-form.is-hidden {
  display: none;
}

.request-form label {
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 11px 12px;
}

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

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: var(--bg);
}

.btn-block {
  width: 100%;
}

.request-note {
  margin: -2px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 520px) {
  .request-card-head {
    flex-direction: column;
  }

  .request-switch {
    max-width: none;
  }
}

.mobile-message-request {
  display: none;
}

.mobile-message-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
}

.modal-request-head {
  padding-right: 42px;
}

.modal-request-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

@media (max-width: 700px) {
  .hero-grid {
    gap: 28px;
  }

  .hero-grid > .request-card {
    display: none;
  }

  .mobile-message-request {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 70;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 48%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 18px 48px rgba(220, 38, 38, 0.4), 0 8px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font: inherit;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  }

  .mobile-message-request > span:not(.mobile-message-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-message-icon {
    width: 30px;
    height: 30px;
    background: transparent;
    color: currentColor;
    display: block;
  }

  .mobile-message-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-message-request:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }

  .mobile-message-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(220, 38, 38, 0.46), 0 10px 24px rgba(0, 0, 0, 0.2);
  }

  .mobile-message-request:active {
    transform: translateY(0) scale(0.98);
  }

  .modal-request-head {
    flex-direction: column;
    padding-right: 42px;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.55);
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(100%, 540px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  padding: clamp(24px, 4vw, 34px);
}

.modal-panel h2 {
  margin: 0 42px 10px 0;
  color: var(--text);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.modal-intro {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
}

.modal-close:hover {
  background: var(--bg-muted);
}

.modal-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero-card h2 {
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-muted);
}

.feature-list strong {
  color: var(--text);
  font-weight: 600;
}

.feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

section {
  padding: clamp(64px, 10vw, 96px) 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-lead {
  margin: 0 0 40px;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 820px) {
  .split-section,
  .two-column {
    grid-template-columns: 1fr;
  }
}

.summary-card,
.statement-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 32px);
}

.summary-card h3,
.statement-card h2,
.feature-columns h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.summary-card p,
.statement-card p {
  margin: 0;
  color: var(--text-muted);
}

.statement-card .section-label {
  margin-bottom: 10px;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .feature-columns {
    grid-template-columns: 1fr;
  }
}

.feature-columns > div {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.clean-list li,
.benefit-grid span {
  position: relative;
  padding-left: 18px;
}

.clean-list li::before,
.benefit-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 960px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-grid span {
  display: block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px 14px 34px;
  font-size: 14px;
  font-weight: 600;
}

.benefit-grid span::before {
  left: 16px;
}

.bg-panel {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Services — black background, diagonal stripe texture */
.services-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  background-color: #050505;
  background-image: repeating-linear-gradient(
    -32deg,
    #050505,
    #050505 10px,
    #0d0d0d 10px,
    #0d0d0d 20px
  );
}

.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: repeating-linear-gradient(
    118deg,
    transparent,
    transparent 22px,
    rgba(255, 255, 255, 0.045) 22px,
    rgba(255, 255, 255, 0.045) 24px
  );
}

.services-band .shell {
  position: relative;
  z-index: 1;
}

.services-band .section-label {
  color: var(--accent);
}

.services-band .section-title {
  color: #fafafa;
}

.services-band .section-lead {
  color: #a1a1aa;
}

.services-band .card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.services-band .card:hover {
  border-color: #d4d4d8;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.services-band .card h3 {
  color: var(--text);
}

.services-band .card p {
  color: var(--text-muted);
}

.services-band .card-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.different-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  background-color: #050505;
  background-image: repeating-linear-gradient(
    -32deg,
    #050505,
    #050505 10px,
    #0d0d0d 10px,
    #0d0d0d 20px
  );
}

.different-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: repeating-linear-gradient(
    118deg,
    transparent,
    transparent 22px,
    rgba(255, 255, 255, 0.045) 22px,
    rgba(255, 255, 255, 0.045) 24px
  );
}

.different-band .shell {
  position: relative;
  z-index: 1;
}

.different-head {
  max-width: 42rem;
  margin-bottom: clamp(36px, 6vw, 52px);
}

.different-band .section-label {
  color: var(--accent);
}

.different-band .section-title {
  color: #fafafa;
}

.different-band .section-lead {
  color: #a1a1aa;
  margin-bottom: 0;
}

.different-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 40px);
}

.different-pipeline-line {
  display: none;
}

.different-pipe-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px 24px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.different-pipe-step--alert {
  border-color: rgba(220, 38, 38, 0.28);
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.different-pipe-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

.different-pipe-step--alert .different-pipe-icon {
  background: rgba(220, 38, 38, 0.14);
}

.different-pipe-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.different-pipe-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.different-pipe-step h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.different-pipe-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.different-ongoing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 4vw, 32px);
  align-items: stretch;
  margin-bottom: clamp(28px, 5vw, 40px);
  padding: clamp(24px, 4vw, 32px);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.different-ongoing-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.different-ongoing-intro h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.25;
  color: #fafafa;
}

.different-ongoing-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #a1a1aa;
}

.different-ongoing-grid {
  display: grid;
  gap: 12px;
}

.different-ongoing-item {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.different-ongoing-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.different-ongoing-item span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.different-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.different-footer-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: #fafafa;
}

.different-footer-copy p {
  margin: 0;
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.55;
  color: #a1a1aa;
}

@media (min-width: 901px) {
  .different-pipeline-line {
    display: block;
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(220, 38, 38, 0.15),
      rgba(220, 38, 38, 0.75) 25%,
      rgba(220, 38, 38, 0.75) 75%,
      rgba(220, 38, 38, 0.15)
    );
    z-index: 0;
  }

  .different-pipe-step {
    z-index: 1;
  }
}

@media (max-width: 960px) {
  .different-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .different-ongoing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .different-pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .different-pipe-step {
    padding: 16px;
  }

  .different-ongoing {
    padding: 18px;
    margin-bottom: 24px;
  }

  .different-ongoing-intro h3 {
    font-size: 1.15rem;
  }

  .different-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .different-footer .btn {
    width: 100%;
  }
}

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

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  border-color: #d4d4d8;
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

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

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  opacity: 0.95;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.cta-band {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(40px, 7vw, 56px);
  text-align: center;
  position: relative;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--text);
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 32rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-block strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-block a {
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-office {
  font-weight: 600;
  color: var(--text);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-mini-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
}

.contact-mini-list span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.newsletter-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 32px);
}

.newsletter-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.newsletter-card > p:not(.request-kicker) {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.newsletter-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.newsletter-card input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 11px 12px;
}

.newsletter-card input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: var(--bg);
}

.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid #1f1f1f;
  background-color: #050505;
  background-image: repeating-linear-gradient(
    -32deg,
    #050505,
    #050505 10px,
    #0d0d0d 10px,
    #0d0d0d 20px
  );
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: repeating-linear-gradient(
    118deg,
    transparent,
    transparent 22px,
    rgba(255, 255, 255, 0.045) 22px,
    rgba(255, 255, 255, 0.045) 24px
  );
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fafafa;
}

.footer-meta {
  font-size: 13px;
  color: #a1a1aa;
}

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

.footer-links a {
  font-size: 13px;
  color: #a1a1aa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fafafa;
}

/* Phone layout: keep the essentials visible and reduce visual noise. */
@media (max-width: 600px) {
  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .shell {
    padding-inline: 16px;
  }

  .site-header-inner {
    padding: 6px 14px;
    gap: 8px;
  }

  .logo {
    gap: 9px;
    font-size: 1rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 0.62rem;
  }

  .logo-mark-image {
    width: 108px;
    height: 48px;
    border-radius: 0;
  }

  .footer-logo-mark {
    width: 64px;
    height: 46px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-mobile-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .hero {
    padding: 46px 0 40px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-kicker,
  .section-label,
  .request-kicker {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    max-width: 18rem;
    margin-bottom: 14px;
    font-size: clamp(2rem, 11vw, 2.65rem);
    line-height: 1.05;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 0.98rem;
    max-width: 21rem;
  }

  .hero-cta {
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 12px 16px;
  }

  .hero-stats {
    display: none;
  }

  section {
    padding: 46px 0;
  }

  .section-title {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 8vw, 1.9rem);
    line-height: 1.14;
  }

  .section-lead {
    margin-bottom: 24px;
    font-size: 0.96rem;
  }

  .split-section,
  .two-column {
    gap: 18px;
  }

  .summary-card {
    display: none;
  }

  section[aria-labelledby="mission-title"] {
    display: none;
  }

  .services-band {
    padding-block: 50px;
  }

  .grid-3 {
    gap: 12px;
  }

  .card {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .card-icon {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 9px;
    font-size: 1rem;
  }

  .card h3 {
    margin-bottom: 4px;
    font-size: 0.98rem;
  }

  .card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .feature-columns {
    gap: 12px;
  }

  .feature-columns > div {
    padding: 16px;
  }

  .feature-columns > div:nth-child(2),
  section[aria-labelledby="technology-title"] .summary-card {
    display: none;
  }

  .benefit-grid {
    gap: 8px;
  }

  .benefit-grid span {
    padding: 11px 14px 11px 30px;
    font-size: 13px;
  }

  .benefit-grid span:nth-child(n + 5) {
    display: none;
  }

  .steps {
    gap: 16px;
  }

  .step-num {
    margin-bottom: 8px;
    font-size: 1.45rem;
  }

  .step h3 {
    font-size: 0.95rem;
  }

  .step p {
    font-size: 13px;
  }

  .contact-section .section-lead {
    margin-bottom: 18px;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-mini-list {
    gap: 8px;
  }

  .contact-mini-list span {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
  }

  .newsletter-card {
    padding: 20px;
  }

  .newsletter-card h3 {
    font-size: 1.25rem;
  }

  .site-footer {
    padding: 28px 0 90px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-meta {
    font-size: 12px;
  }
}

.website-form-feedback {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.website-form-feedback--ok {
  color: #166534;
}

.website-form-feedback--err {
  color: #b91c1c;
}
