/* =========================================================
   Michas Krankenfahrten – Stylesheet
   Farbwelt: Dunkelblau (Haupt), Weiß (Hintergrund), Rot (Akzent)
   ========================================================= */

:root {
  --color-navy: #0e2a47;
  --color-navy-dark: #081c30;
  --color-navy-light: #1c4267;
  --color-red: #c62b3a;
  --color-red-dark: #a4222f;
  --color-white: #ffffff;
  --color-bg: #f6f8fa;
  --color-bg-alt: #eef2f6;
  --color-text: #1b2733;
  --color-text-muted: #52606d;
  --color-border: #e1e7ec;

  --shadow-sm: 0 2px 8px rgba(14, 42, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 42, 71, 0.1);
  --shadow-lg: 0 16px 40px rgba(14, 42, 71, 0.14);

  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container-width: 1180px;
  --header-height: 120px;

  --font-base: "Segoe UI", "Helvetica Neue", Arial, -apple-system,
    BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.25;
  color: var(--color-navy);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Skip link for keyboard/screen reader users */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 12px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
  min-height: 52px;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-red-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-navy);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.1rem;
}

/* ---------- Section basics ---------- */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--color-bg);
}

.section-navy {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--color-white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin: 0;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
}

.logo-img {
  display: block;
  width: 145px;
  height: auto;
  max-width: 100%;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 60%, var(--color-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-text .logo-line1 {
  font-size: 1.05rem;
  color: var(--color-navy);
}

.logo-text .logo-line2 {
  font-size: 0.95rem;
  color: var(--color-red);
}

.main-nav {
  display: flex;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.main-nav a {
  font-weight: 600;
  color: var(--color-navy);
  padding: 8px 2px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.call-btn {
  padding: 13px 22px;
  font-size: 1rem;
}

.call-btn svg {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

/* Mobile nav */
@media (max-width: 960px) {
  :root {
    --header-height: 92px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition-med);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 32px;
  }

  .main-nav li {
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav a {
    display: block;
    padding: 18px 4px;
    font-size: 1.15rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .call-btn .call-text {
    display: none;
  }

  .call-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .logo-img {
    width: 105px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  padding: 72px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.035) 0px,
    rgba(255, 255, 255, 0.035) 2px,
    transparent 2px,
    transparent 90px
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg, rgba(198, 43, 58, 0.16), rgba(198, 43, 58, 0));
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-content .eyebrow {
  color: #ff8a93;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #dfe8f2;
  margin-bottom: 16px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
}

.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  max-width: 260px;
}

.hero-badge svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--color-red);
}

.hero-badge span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  display: block;
}

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

  .hero-media {
    order: -1;
  }

  .hero-badge {
    left: 12px;
    bottom: -16px;
    padding: 12px 16px;
  }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  padding: 44px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: left;
}

.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--color-red);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.02rem;
}

.trust-item span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

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

  .trust-item {
    justify-content: flex-start;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

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

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

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

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text p {
  color: var(--color-text-muted);
  font-size: 1.06rem;
}

.about-points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--color-navy);
}

.about-point svg {
  width: 22px;
  height: 22px;
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-media {
  position: relative;
}

.about-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  border: 1px solid var(--color-border);
  position: relative;
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

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

  .about-media {
    order: -1;
  }
}

/* =========================================================
   COVERAGE AREA
   ========================================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.coverage-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.coverage-card svg {
  width: 34px;
  height: 34px;
  color: #ff8a93;
  margin-bottom: 14px;
}

.coverage-card h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.coverage-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin: 0;
}

.coverage-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

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

/* =========================================================
   PROCESS / ABLAUF
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 12px;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

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

@media (max-width: 760px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* =========================================================
   FORM / FAHRTANFRAGE
   ========================================================= */
.form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.98rem;
}

.form-field .optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 52px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(14, 42, 71, 0.1);
}

.form-field input:invalid[data-touched="true"],
.form-field select:invalid[data-touched="true"] {
  border-color: var(--color-red);
}

.field-error {
  color: var(--color-red);
  font-size: 0.86rem;
  min-height: 1.2em;
}

.field-hint {
  color: var(--color-text-muted);
  font-size: 0.86rem;
  margin-top: -2px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
  font-size: 0.96rem;
  color: var(--color-text);
}

.form-checkbox input {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-navy);
}

.form-checkbox a {
  color: var(--color-navy);
  text-decoration: underline;
  font-weight: 600;
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.form-note {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  max-width: 55ch;
}

.form-status {
  grid-column: 1 / -1;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: #e7f5ec;
  color: #1e6b3a;
  border: 1px solid #b9e3c6;
}

.form-status.error {
  background: #fbe9ea;
  color: var(--color-red-dark);
  border: 1px solid #f2c1c6;
}

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

  .form-wrap {
    padding: 28px 20px;
  }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card svg {
  width: 30px;
  height: 30px;
  color: var(--color-red);
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

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

.contact-card .contact-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.05rem;
}

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

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

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand .logo-text .logo-line1,
.footer-brand .logo-text .logo-line2 {
  color: var(--color-white);
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 34ch;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

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

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1fa855;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 400;
  transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* =========================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================= */
.legal-page {
  padding: 64px 0 96px;
}

.legal-page .container {
  max-width: 860px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2.2em;
}

.legal-page p,
.legal-page li {
  color: var(--color-text-muted);
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.3em;
  margin-bottom: 1em;
}

.legal-page ul li {
  margin-bottom: 0.4em;
}

.legal-intro {
  color: var(--color-text-muted);
  margin-bottom: 2em;
}

.legal-placeholder {
  background: #fff7e6;
  border: 1px solid #ffe1a3;
  color: #6b5000;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 2em;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--color-navy);
}

/* =========================================================
   RESPONSIVE: base mobile-first tweaks for large sections
   ========================================================= */
@media (max-width: 960px) {
  .section {
    padding: 64px 0;
  }

  .contact-grid,
  .services-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16.5px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .form-wrap {
    padding: 24px 18px;
  }
}
