/* ─── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --accent:        #394cdb;
  --text-primary:  #0f0f0f;
  --text-secondary:#6b7280;
  --text-tertiary: #979ca6;
  --bg:            #fcfcfc;
  --card-border:   #e5e7eb;
  --btn-sec-bg:    #e2e2e2;
  --btn-sec-text:  #282828;

  --font-sans:  'Geist', sans-serif;
  --font-mono:  'Geist Mono', monospace;
}

/* ─── Base ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* Full-page hero grid — fades right and down from top-left */
.page-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 8% 0%, black 15%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 8% 0%, black 15%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

body {
  position: relative;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* ─── Container ─────────────────────────────────────────── */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  border: none;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 24px;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.btn-secondary {
  background: var(--btn-sec-bg);
  color: var(--btn-sec-text);
  padding: 16px 24px;
  font-size: 15px;
  letter-spacing: 0.1em;
  border: 1px solid var(--btn-sec-bg);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ─── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  background: var(--bg);
  border-color: #e5e7eb;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-secondary);
  text-transform: capitalize;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text-primary); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 53% 1fr;
  align-items: start;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 96px;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.badge img { flex-shrink: 0; }
.badge span {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Heading */
.hero-heading {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 800px;
  margin-top: -24px;
}

.hero-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: var(--text-secondary);
  max-width: 567px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
.disclaimer img { flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 680px;
  display: flex;
  align-items: flex-end;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  right: -100px;
  mask-image: radial-gradient(ellipse 70% 75% at 50% 45%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 45%, black 35%, transparent 75%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Terminal widget */
.terminal-widget {
  position: relative;
  z-index: 2;
  background: rgba(219, 219, 231, 0.2);
  backdrop-filter: blur(9.5px);
  -webkit-backdrop-filter: blur(9.5px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 80px;
  margin-left: 40px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.terminal-widget p {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 24px;
  color: #545b69;
  white-space: nowrap;
  padding: 0 20px;
}

.terminal-widget p:first-of-type { padding-top: 14px; }
.terminal-widget p:last-of-type  { padding-bottom: 14px; }

.term-prompt { color: #545b69; }
.term-accent { color: var(--accent); }

/* ─── Divider ───────────────────────────────────────────── */
.divider {
  max-width: 1500px;
  margin: 0 auto;
  height: 0;
  border: none;
  border-top: 1px dashed var(--card-border);
}

/* ─── Services ──────────────────────────────────────────── */
.services { padding: 96px 0; }

.services-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 767px;
  margin-bottom: 48px;
}

.services-header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.services-heading { /* uses .section-heading */ }

.services-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: var(--text-secondary);
}

/* Grid */
.services-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
}

.services-row {
  display: flex;
}

/* Card — outer grid border handles perimeter; only internal dividers needed */
.service-card {
  flex: 1 0 0;
  min-width: 0;
  height: 370px;
  padding: 40px;
  border: none;
  border-right: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.service-card:last-child {
  border-right: none;
}
.services-row:last-child .service-card {
  border-bottom: none;
}

.service-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  transform: translateY(-6px) scale(1.1);
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tag {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.service-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.2;
}

.service-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ─── Shared section heading ────────────────────────────── */
.section-heading {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

/* ─── Recoverable ───────────────────────────────────────── */
.recoverable { padding: 96px 0; }

.recoverable-container { position: relative; }

.recoverable-illustration {
  position: absolute;
  right: -40px;
  top: -90px;
  width: 540px;
  pointer-events: none;
  z-index: 2;
}

.recoverable-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 55%;
  position: relative;
  z-index: 1;
}

.recoverable-intro-hgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recoverable-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: var(--text-secondary);
}

.recoverable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--card-border);
  position: relative;
  z-index: 1;
}

.recoverable-col {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
}

.recoverable-col + .recoverable-col {
  border-left: 1px solid var(--card-border);
}

.recoverable-col-heading {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.recoverable-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recoverable-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.recoverable-list li img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
}

/* ─── Process ───────────────────────────────────────────── */
.process {
  padding: 140px 0;
  background: #fff;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.process-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
  max-width: 767px;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.process-step {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.process-step-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

.process-step-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.process-divider {
  width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  background: repeating-linear-gradient(
    to bottom,
    var(--card-border) 0,
    var(--card-border) 6px,
    transparent 6px,
    transparent 14px
  );
}

.step-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.step-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.2;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 24px;
  color: var(--text-secondary);
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(2.2); opacity: 0;   }
  100% { transform: scale(2.2); opacity: 0;   }
}

.term-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.term-pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-ring 1.6s ease-out infinite;
}

/* ─── Security CTA ──────────────────────────────────────── */
.security-cta { padding: 96px 0; }

.security-cta-inner {
  display: flex;
  align-items: center;
}

.security-cta-text {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.security-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.security-heading {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.security-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ─── Contact Form ──────────────────────────────────────── */
.contact { padding: 96px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.contact-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-secondary);
}

.contact-warning {
  border-left: 2px solid #dc2626;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgb(220 38 38 / 0.05);
}

.contact-warning-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dc2626;
}

.contact-warning-text {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 20px;
  color: var(--text-secondary);
}

.contact-illo {
  width: 100%;
  display: block;
  pointer-events: none;
}

/* Form success state */
.form-success[hidden] { display: none; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 56px 40px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--card-bg);
}

.form-success-check {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-success-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.form-success-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 380px;
}

/* Form */
.case-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row { display: flex; gap: 24px; }
.form-row--two > .form-field { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.form-sublabel {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-tertiary);
}

.form-input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-tertiary); }
.form-textarea { resize: vertical; min-height: 120px; }

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

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-item--disclaimer {
  font-size: 13px;
  color: var(--text-secondary);
  align-items: flex-start;
}

.btn-submit { align-self: flex-start; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer { padding-bottom: 60px; }

.footer-inner {
  padding-top: 40px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--card-border);
  padding-top: 32px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo img { opacity: 0.7; }

.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 20px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ─── Hero Animations ───────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0);    }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-12px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Staggered entrance — content left */
.badge        { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.05s; }
.hero-heading { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.2s;  }
.hero-desc    { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.38s; }
.hero-actions { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.52s; }

/* Visual panel slides in from right */
.hero-visual  { animation: fadeSlideRight 0.9s ease both; animation-delay: 0.25s; }

/* Float — added via JS after entrance settles */
.hero-image-wrap.is-floating {
  animation: heroFloat 5s ease-in-out infinite;
}

/* Terminal cursor */
.term-cursor {
  display: inline;
  color: var(--accent);
  animation: blink 0.75s step-end infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 24px;
}

/* Kill animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .badge, .hero-heading, .hero-desc, .hero-actions, .hero-visual {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-image-wrap.is-floating { animation: none; }
  .term-cursor { animation: none; }
  .anno-float-wrap { display: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .form-input.is-flash { animation: none !important; }
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Form Focus Flash ──────────────────────────────────── */
@keyframes inputFlash {
  0%   { box-shadow: 0 0 0 0px rgba(57, 76, 219, 0); }
  35%  { box-shadow: 0 0 0 4px rgba(57, 76, 219, 0.15); }
  100% { box-shadow: 0 0 0 2px rgba(57, 76, 219, 0.06); }
}
.form-input.is-flash {
  animation: inputFlash 0.5s ease forwards;
}

/* ─── Blueprint Crosshairs ──────────────────────────────── */
.anno-float-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.anno-float-wrap.is-floating {
  animation: heroFloat 5s ease-in-out infinite;
}

.anno-crosshair {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0;
}

.anno-crosshair::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  top: calc(50% - 0.5px);
  left: 0;
  background: #7c3aed;
}

.anno-crosshair::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  left: calc(50% - 0.5px);
  top: 0;
  background: #7c3aed;
}

/* Each crosshair flies from center of the illustration out to its corner */
@keyframes xhairFlyTL {
  from { transform: translate(280px, 300px); opacity: 0; }
  to   { transform: translate(0, 0);         opacity: 0.4; }
}

@keyframes xhairFlyTR {
  from { transform: translate(-280px, 300px); opacity: 0; }
  to   { transform: translate(0, 0);          opacity: 0.4; }
}

@keyframes xhairFlyBR {
  from { transform: translate(-280px, -300px); opacity: 0; }
  to   { transform: translate(0, 0);           opacity: 0.4; }
}

.anno-crosshair--tl { top: 18px;    left: 18px;  animation: xhairFlyTL 0.65s cubic-bezier(0.16, 1, 0.3, 1) both 1.25s; }
.anno-crosshair--tr { top: 18px;    right: 18px; animation: xhairFlyTR 0.65s cubic-bezier(0.16, 1, 0.3, 1) both 1.25s; }
.anno-crosshair--br { bottom: 24px; right: 18px; animation: xhairFlyBR 0.65s cubic-bezier(0.16, 1, 0.3, 1) both 1.25s; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1540px) {
  .container { padding: 0 40px; }
  .divider { padding: 0 40px; }
}

@media (max-width: 1200px) {
  .hero-heading { font-size: 72px; }
}

@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .divider { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-heading { font-size: 60px; }
  .hero-content { padding-bottom: 64px; }
  .services-row { flex-wrap: wrap; }
  .service-card { flex: 1 0 calc(50% - 1px); min-height: 320px; height: auto; }
  .process-steps { flex-wrap: wrap; gap: 32px; }
  .process-step { flex: 1 0 calc(50% - 32px); }
  .process-divider { display: none; }
  .recoverable-illustration { display: none; }
  .recoverable-intro { max-width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-header { position: static; }
  .security-heading { font-size: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .divider { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-heading { font-size: 44px; }
  .hero-desc { font-size: 18px; }
  .hero { padding-top: 32px; }
  .hero-content { padding-top: 0; padding-bottom: 64px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; text-align: center; justify-content: center; }
  .section-heading { font-size: 36px; }
  .service-card { flex: 1 0 100%; }
  .recoverable-grid { grid-template-columns: 1fr; }
  .recoverable-col { padding: 32px; }
  .recoverable-col + .recoverable-col { border-left: none; border-top: 1px solid var(--card-border); }
  .process-step { flex: 1 0 100%; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-illo { display: none; }
  .form-row { flex-direction: column; }
  .security-heading { font-size: 36px; }
  .footer-heading { font-size: 36px; }
  .footer-bottom { flex-direction: column; }
  .footer-meta { text-align: left; }
}
