:root {
  --primary: #102A43;
  --primary-light: #243B53;
  --accent: #3F7D9E;
  --accent-soft: #E8F1F5;

  --background: #F7F9FA;
  --surface: #FFFFFF;

  --text: #172B3A;
  --text-muted: #627484;

  --border: #DCE3E8;
  --border-strong: #C5D0D8;

  --header-h: 76px;
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 30px rgba(16, 42, 67, 0.06);
  --shadow-sm: 0 4px 16px rgba(16, 42, 67, 0.04);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;

  --container: min(92%, 1240px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0;
}

h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

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

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede,
.section-intro {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 38rem;
}

.section {
  padding: 104px 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 3.25rem;
}

.section-header h2 {
  margin-bottom: 0.9rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
}

.btn .icon,
.text-link .icon {
  transition: transform 0.25s var(--ease);
}

.trust-icon .icon,
.service-icon .icon,
.location-icon .icon,
.success-icon .icon {
  width: 18px;
  height: 18px;
}

.service-icon .icon {
  width: 20px;
  height: 20px;
}

.btn:hover svg {
  transform: translateX(4px);
}

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

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}

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

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

.btn-light:hover {
  background: var(--background);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-text {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.nav-desktop {
  justify-self: center;
}

.nav-desktop ul {
  display: flex;
  gap: 1.6rem;
}

.nav-desktop a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--primary);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  margin: 0 auto;
}

.menu-toggle-bars span {
  display: block;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 0 1.5rem;
}

.mobile-nav nav {
  width: var(--container);
  margin-inline: auto;
}

.mobile-nav a:not(.btn) {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn {
  margin-top: 1.15rem;
}

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

body.nav-open {
  overflow: hidden;
}

/* Hero */

.hero {
  padding: 72px 0 48px;
  background:
    linear-gradient(180deg, #fff 0%, var(--background) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1.15rem;
}

.hero-copy .lede {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

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

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 0.6s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}

.hero-anim-image {
  transform: translateY(12px);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust */

.trust {
  padding: 28px 0 8px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}

/* About */

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-lg);
}

.about-copy h2 {
  margin-bottom: 1.25rem;
}

.about-copy p {
  color: var(--text-muted);
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #b7c8d4;
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

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

.service-card h3 {
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.service-card .text-link {
  margin-top: 1.4rem;
}

.service-card:hover .text-link svg {
  transform: translateX(4px);
}

/* Process */

.process-section {
  background: var(--surface);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  counter-reset: none;
}

.process::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease);
}

.process.is-visible::before {
  transform: scaleX(1);
}

.process-step {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
}

.process.is-visible .process-step {
  animation: fade-up 0.55s var(--ease) forwards;
}

.process.is-visible .process-step:nth-child(1) { animation-delay: 80ms; }
.process.is-visible .process-step:nth-child(2) { animation-delay: 180ms; }
.process.is-visible .process-step:nth-child(3) { animation-delay: 280ms; }
.process.is-visible .process-step:nth-child(4) { animation-delay: 380ms; }

.process-num {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--surface);
  padding-right: 0.6rem;
}

.process-step h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Statement */

.statement {
  position: relative;
  isolation: isolate;
  padding: 112px 0;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.statement-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.92), rgba(16, 42, 67, 0.96));
}

.statement-inner {
  max-width: 44rem;
}

.statement h2 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.statement p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
}

/* Locations */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.7rem;
}

.location-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1.1rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.location-icon svg {
  width: 18px;
  height: 18px;
}

.location-card h3 {
  margin-bottom: 0.35rem;
}

.location-meta {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.location-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.location-card a:hover {
  text-decoration: underline;
}

.location-card .text-link:hover {
  text-decoration: none;
}

/* Why */

.why {
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2rem 2.25rem 2rem 0;
  border-bottom: 1px solid var(--border);
}

.why-item:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid var(--border);
}

.why-item:nth-child(even) {
  padding-left: 2.5rem;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1.3;
}

.why-item h3 {
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Testimonials */

.testimonials {
  background: var(--background);
}

.testimonial-viewport {
  position: relative;
  min-height: 16rem;
}

.testimonial {
  margin: 0;
  max-width: 46rem;
}

.testimonial.is-active {
  animation: fade-in 0.45s var(--ease);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial footer span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.slider-btn:hover {
  border-color: var(--primary);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
}

.slider-status {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.slider-sep {
  margin: 0 0.3rem;
  opacity: 0.6;
}

/* CTA */

.cta-band {
  background: var(--primary);
  color: #fff;
  padding: 88px 0;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.85rem;
}

.cta-band p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Contact */

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 1rem;
}

.contact-copy > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.35rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-details a,
.contact-details span {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.field {
  margin-bottom: 1.05rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 128px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63, 125, 158, 0.15);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #9b3b3b;
}

.field-error {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: #9b3b3b;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.form-success h3 {
  margin-bottom: 0.6rem;
}

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

.form-success a {
  color: var(--primary);
}

/* Footer */

.site-footer {
  background: #0c2033;
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1.1rem;
  max-width: 22rem;
  font-size: 0.95rem;
}

.logo-light .logo-mark {
  background: #fff;
  color: var(--primary);
}

.logo-light .logo-text {
  color: #fff;
}

.site-footer h2 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.footer-subhead {
  margin-top: 1.75rem;
}

.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.footer-privacy {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
}

.footer-privacy:hover {
  color: #fff;
}

/* Privacy dialog */

.privacy-dialog {
  width: min(92vw, 560px);
  border: 0;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: 0 20px 60px rgba(16, 42, 67, 0.25);
}

.privacy-dialog::backdrop {
  background: rgba(16, 42, 67, 0.45);
}

.privacy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
}

.privacy-header h2 {
  font-size: 1.25rem;
}

.dialog-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
}

.privacy-body {
  padding: 1.35rem 1.4rem 1.6rem;
  color: var(--text-muted);
}

.privacy-body a {
  color: var(--primary);
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 1100px) {
  .nav-desktop ul {
    gap: 1.15rem;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 3rem;
  }

  .hero-media img,
  .about-media img {
    height: 460px;
  }

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

@media (max-width: 900px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .location-grid,
  .why-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-media img {
    height: 380px;
  }

  .about-media img {
    height: 420px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem 1rem;
  }

  .process {
    gap: 0;
  }

  .process::before {
    display: none;
  }

  .process-step {
    padding: 0 0 1.75rem 1.4rem;
    border-left: 1px solid var(--border);
  }

  .process-step:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }

  .why-item,
  .why-item:nth-child(odd),
  .why-item:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 430px) {
  .logo-text {
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-media img {
    height: 280px;
  }

  .about-media img {
    height: 320px;
  }

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

  .contact-form {
    padding: 1.2rem;
  }

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

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

  .statement,
  .cta-band {
    padding: 72px 0;
  }
}

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

  .hero-anim,
  .reveal,
  .process-step,
  .testimonial.is-active {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .process::before {
    transform: none;
  }

  .btn svg,
  .text-link svg,
  .service-card {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }
}
