/* ==========================================================================
   Move Care ALMV – style.css
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--primary-dark); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Custom Properties ---------- */
:root {
  --primary-dark: #0F161C;
  --primary-blue: #295871;
  --gold: #F6C603;
  --bronze: #B07D45;
  --text-gray: #5A6B78;
  --text-light: #5F7080;
  --border: #E2DFDA;
  --bg-light: #F9F8F5;
  --bg-card: #FDFCF9;
  --white: #ffffff;

  --font: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.1);
  --shadow-header: 0 2px 8px rgba(0,0,0,.06);

  --max-width: 1200px;
  --section-py: 100px;
  --section-px: 24px;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.section-padding {
  padding: var(--section-py) 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--blue {
  background: rgba(41, 88, 113, .08);
  color: var(--primary-blue);
}
.badge--gold {
  background: rgba(246, 198, 3, .12);
  color: var(--bronze);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 600px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow .3s;
}
.header.scrolled {
  box-shadow: var(--shadow-header);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary-dark);
}
.header__logo img {
  height: 66px;
  width: auto;
}
.header__logo span {
  color: var(--gold);
  font-weight: 800;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  transition: color .2s;
}
.header__nav a:hover {
  color: var(--primary-dark);
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.header__cta:hover {
  background: #1e4a5f;
  transform: translateY(-1px);
}
.header__cta svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 32px var(--section-px);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .header__cta {
  margin-top: 24px;
  justify-content: center;
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 80px;
  background: var(--white);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(41, 88, 113, .06);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.hero__badge svg {
  width: 14px;
  height: 14px;
}
.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.hero__title span {
  color: var(--primary-blue);
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-primary:hover {
  background: #1e4a5f;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  white-space: nowrap;
}
.btn-secondary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-secondary:hover {
  border-color: var(--primary-blue);
  transform: translateY(-1px);
}
.hero__trust {
  display: flex;
  gap: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
}
.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.hero__location {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero__location-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__location-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.hero__location-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.hero__location-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ---------- About ---------- */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 150px 90px 150px;
  gap: 10px;
}
.about__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
/* oben links – flach */
.about__images img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 2;
}
/* oben rechts – hoch */
.about__images img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
}
/* unten links – hoch */
.about__images img:nth-child(3) {
  grid-column: 1;
  grid-row: 2 / 4;
}
/* unten rechts – flach */
.about__images img:nth-child(4) {
  grid-column: 2;
  grid-row: 3 / 4;
}
.about__text {
  padding-top: 0;
}
.about__text p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__quote {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about__quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.7;
  margin-bottom: 8px;
}
.about__quote cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-gray);
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-py) 0;
  background: var(--white);
}
.services__header {
  text-align: center;
  margin-bottom: 56px;
}
.services__header .section-label {
  justify-content: center;
}
.services__header .section-subtitle {
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__image {
  height: 200px;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__body {
  padding: 28px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--primary-dark);
}
.service-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
  flex-shrink: 0;
}
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  transition: gap .2s;
}
.service-card__btn:hover {
  gap: 10px;
}
.service-card__btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-py) 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Bilder/faq-bg.jpg') center / cover no-repeat;
  opacity: .15;
}
.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.faq .section-label {
  color: var(--gold);
}
.faq .section-title {
  color: var(--white);
  margin-bottom: 40px;
}
.faq-item {
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover {
  color: var(--primary-blue);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--text-gray);
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}
.faq__cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.faq__cta p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.faq__cta .btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
}
.faq__cta .btn-primary:hover {
  background: #e0b400;
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.contact__header {
  margin-bottom: 32px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 15px;
  color: var(--primary-dark);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B8C0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-blue);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}
.form-checkbox label a {
  color: var(--primary-blue);
  text-decoration: underline;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.btn-submit:hover {
  background: #1e4a5f;
}
.btn-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* Contact Sidebar */
.contact-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-sidebar__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(41, 88, 113, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}
.contact-info-value a {
  color: var(--primary-dark);
  transition: color .2s;
}
.contact-info-value a:hover {
  color: var(--primary-blue);
}

/* Form Messages */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.form-message.error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ffccbc;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
}
.footer__brand-logo img {
  height: 62px;
  width: auto;
}
.footer__brand-logo span {
  color: var(--gold);
}
.footer__brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color .2s;
}
.footer__links a:hover {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ---------- Legal Pages (Impressum / Datenschutz) ---------- */
.legal-page {
  padding: 40px 0 80px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 24px;
}
.breadcrumb svg {
  width: 16px;
  height: 16px;
}
.breadcrumb:hover {
  text-decoration: underline;
}
.legal-page__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 40px;
}
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.legal-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-card a {
  color: var(--primary-blue);
  text-decoration: underline;
}
.legal-card .legal-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}
.legal-card .stand {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* Datenschutz specifics */
.legal-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-card ul li {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 4px;
}
.legal-card .emphasis {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
  color: #fff;
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- Responsive: Tablet / Mobile ---------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
    --section-px: 20px;
  }
  .hamburger {
    display: flex;
  }
  .header__nav {
    display: none;
  }
  .header__cta.desktop-only {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__image {
    order: -1;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    justify-content: center;
  }
  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__images {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 120px 70px 120px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card__image {
    height: 300px;
  }
  .faq__inner {
    padding: 0 var(--section-px);
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    order: -1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .section-title {
    font-size: 28px;
  }
  .legal-page__title {
    font-size: 30px;
  }
  .legal-card {
    padding: 28px;
  }
}

/* ---------- Responsive: Small Mobile ---------- */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
  .about__images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 55px 100px;
    height: auto;
  }
  .legal-card {
    padding: 20px;
  }
}
