/* =========================================================
   ROOT VARIABLES
   Change colors, spacing, radius, max width here
========================================================= */
:root {
  --bg: #050d18;
  --bg-2: #081426;
  --panel: rgba(8, 18, 34, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #edf3ff;
  --muted: #b8c4d8;
  --accent: #f4f7fd;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --max: 1240px;
  --transition: 0.3s ease;
  --header-height: 82px;
}

/* =========================================================
   GLOBAL RESET / BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(66, 96, 160, 0.12), transparent 25%),
    radial-gradient(circle at right center, rgba(24, 54, 112, 0.12), transparent 24%),
    linear-gradient(180deg, #030913 0%, #05101d 46%, #061324 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* =========================================================
   FOCUS STYLES — keyboard navigation
========================================================= */
:focus-visible {
  outline: 2px solid #c8d8f4;
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================
   REDUCED MOTION — disable animations for users who prefer it
========================================================= */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* =========================================================
   TOPBAR / HEADER / NAVIGATION
========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 9, 18, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav-links a {
  transition: color var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.92) 0%, rgba(4, 8, 15, 0.8) 34%, rgba(4, 8, 15, 0.35) 100%),
    linear-gradient(180deg, rgba(4, 8, 15, 0.15) 0%, rgba(4, 8, 15, 0.52) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 92px 0 120px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.hero-copy p {
  max-width: 650px;
  color: #d3dced;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #eef3fb, #d9e3f4);
  color: #07111f;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip {
  margin-top: -56px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: rgba(7, 16, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================================
   GENERAL SECTION STYLES
========================================================= */
.section-padding {
  padding: 92px 0;
}

.alt-section,
.about-section {
  background:
    radial-gradient(circle at top left, rgba(44, 84, 158, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
}

.section-header {
  margin-bottom: 28px;
}

.section-header.centered {
  text-align: center;
}

.section-header h2,
.feature-copy h2,
.coverage-copy h2,
.about-copy-clean h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-header p,
.feature-copy p,
.coverage-copy p,
.lead-text {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

/* =========================================================
   FEATURE SECTION
========================================================= */
.feature-band {
  padding: 74px 0 34px;
  background:
    radial-gradient(circle at left center, rgba(73, 92, 131, 0.1), transparent 26%),
    linear-gradient(180deg, #05101d 0%, #061120 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.feature-copy {
  padding-right: 10px;
}

.feature-list {
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.04rem;
}

.feature-list li::before {
  content: "◉";
  position: absolute;
  left: 0;
  top: 0;
  color: #eff4ff;
  font-size: 0.9rem;
}

.feature-image-wrap {
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section {
  padding-top: 42px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  display: grid;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 16, 30, 0.98), rgba(7, 16, 30, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.service-card-enforcement,
.service-card-security {
  grid-template-columns: 1fr 1fr;
}

.service-card-copy {
  padding: 28px 22px;
}

.card-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #dfe9f9;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  line-height: 1.15;
}

.service-card ul {
  display: grid;
  gap: 14px;
}

.service-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 1rem;
}

.service-card li::before {
  content: "⊙";
  position: absolute;
  left: 0;
  top: 0;
  color: #eff4ff;
}

.service-card-image {
  min-height: 100%;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-bottom-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-bottom-tags span {
  position: relative;
  padding-left: 16px;
}

.service-bottom-tags span::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

/* =========================================================
   COVERAGE SECTION
========================================================= */
.coverage-section {
  padding-top: 46px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.coverage-copy {
  padding-right: 10px;
}

.coverage-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.coverage-badges span {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.96rem;
}

.coverage-badges span::before {
  content: "◔";
  position: absolute;
  left: 0;
  top: 0;
  color: #eff4ff;
}

.coverage-image-wrap {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.coverage-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   ABOUT / WHY CHOOSE US SECTION
========================================================= */
.about-section {
  position: relative;
}

.about-shell {
  background: linear-gradient(135deg, rgba(6, 16, 32, 0.98) 0%, rgba(4, 11, 24, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 34px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-grid-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}

.about-copy-clean,
.about-media-clean {
  display: flex;
  flex-direction: column;
}

.about-copy-clean {
  justify-content: center;
  padding: 56px 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.about-copy-clean .eyebrow {
  align-self: flex-start;
  margin-bottom: 20px;
}

.about-copy-clean h2 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.about-copy-clean .lead-text {
  max-width: none;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.about-list-clean {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.about-list-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(220, 232, 255, 0.15), rgba(180, 205, 255, 0.08));
  border: 1px solid rgba(200, 220, 255, 0.15);
  font-size: 0.8rem;
  color: #c8deff;
  margin-top: 1px;
}

.about-list-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
}

.about-list-item strong {
  display: block;
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 3px;
}

.about-list-item span {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.about-media-clean {
  position: relative;
  min-height: 100%;
}

.about-image-clean {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(8, 18, 34, 0.92);
}

.about-image-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-clean-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 24, 0.3) 0%, transparent 40%),
    linear-gradient(180deg, transparent 50%, rgba(4, 11, 24, 0.55) 100%);
}

/* =========================================================
   PROCESS SECTION
========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  background: rgba(8, 18, 34, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef3fb, #bccbe6);
  color: #08111f;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section {
  padding-top: 70px;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(8, 18, 34, 0.96) 0%, rgba(5, 13, 24, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(160, 190, 255, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(110, 145, 220, 0.08), transparent 22%);
  pointer-events: none;
}

.contact-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-text {
  color: var(--muted);
  max-width: 700px;
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-highlight {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 22, 48, 0.45) 0%, rgba(5, 13, 24, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: inset 0 0 30px rgba(110, 145, 220, 0.05);
}

.contact-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(160, 190, 255, 0.15), rgba(110, 145, 220, 0.05));
  border: 1px solid rgba(160, 190, 255, 0.18);
  display: grid;
  place-items: center;
  color: #c8d8f4;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-highlight-content {
  display: flex;
  flex-direction: column;
}

.contact-highlight-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #c8d8f4;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-highlight strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-highlight p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.contact-item:hover .contact-item-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-item-info {
  display: flex;
  flex-direction: column;
}

.contact-item small {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.85;
}

.contact-item a,
.contact-item div {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  word-break: break-word;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: #fff;
}

.contact-item-wide {
  grid-column: span 1;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 26px 0 50px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  flex-wrap: wrap;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — TABLET / SMALL DESKTOP
========================================================= */
@media (max-width: 1180px) {

  .feature-grid,
  .coverage-grid,
  .service-layout,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .service-card-enforcement,
  .service-card-security {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-copy,
  .coverage-copy {
    padding-right: 0;
  }

  .about-grid-clean {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-copy-clean {
    padding: 40px 36px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-copy-clean,
  .about-media-clean {
    width: 100%;
  }

  .about-image-clean {
    position: relative;
    min-height: 420px;
  }

  .about-media-clean {
    min-height: 420px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET / MOBILE NAV
========================================================= */
@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    background: rgba(7, 15, 28, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-section {
    min-height: 78vh;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .trust-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item-wide {
    grid-column: span 1;
  }

  .feature-image-wrap,
  .coverage-image-wrap {
    min-height: 320px;
  }

  .about-shell {
    border-radius: 26px;
  }

  .about-copy-clean {
    padding: 28px 24px;
  }

  .about-copy-clean h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .about-copy-clean .lead-text {
    font-size: 1rem;
  }

  .about-list-clean {
    margin-top: 24px;
    gap: 10px;
  }

  .about-list-item {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .about-media-clean {
    min-height: 320px;
  }

  .about-image-clean {
    min-height: 320px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero-copy h1 {
    font-size: 2rem;
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .section-padding {
    padding: 64px 0;
  }

  .brand-text span {
    display: none;
  }

  .service-card-copy,
  .contact-card,
  .process-card {
    padding: 18px;
  }

  .service-card h3,
  .feature-copy h2,
  .coverage-copy h2,
  .section-header h2 {
    font-size: 1.9rem;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 12px;
  }

  .eyebrow {
    padding: 9px 13px;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .about-list-item strong {
    font-size: 0.93rem;
  }

  .about-list-item span {
    font-size: 0.88rem;
  }

  .lead-text {
    font-size: 0.98rem;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-highlight {
    padding: 18px;
  }

  .contact-title {
    font-size: 1.9rem;
  }
}