:root {
  --bg: #f5f5f2;
  --surface: #ffffff;
  --surface-2: #ecebe5;
  --text: #141414;
  --muted: #5d625f;
  --brand: #005d84;
  --brand-2: #004b6a;
  --line: #d7d7d0;
  --ok: #2f7d4a;
  --warn: #0b6f9a;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 12px 28px rgba(10, 22, 34, 0.08);
  --shadow-card: 0 16px 34px rgba(10, 22, 34, 0.12);
  --btn-shadow: 0 10px 22px rgba(0, 93, 132, 0.22);
  --text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  --accent-green: #1fb267;
  --whatsapp: #25d366;
  --whatsapp-strong: #1ea95c;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --control-height: 44px;
  --control-height-compact: 36px;
  --ui-gap-xs: 8px;
  --ui-gap-sm: 10px;
  --ui-gap-md: 16px;
  --topbar-compact-width: min(720px, calc(100% - 36px));
  --media-hero-ratio: 16 / 9;
  --media-section-ratio: 16 / 10;
  --media-card-ratio: 4 / 3;
  --media-feature-ratio: 16 / 10;
}

body[data-theme="dark"] {
  --bg: #0b0e12;
  --surface: #131920;
  --surface-2: #1a222c;
  --text: #f1f4f7;
  --muted: #a8b0b8;
  --brand: #0e739f;
  --brand-2: #1792c6;
  --line: #2a3440;
  --ok: #4bc27a;
  --warn: #4bb6e6;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.36);
  --btn-shadow: 0 12px 26px rgba(23, 146, 198, 0.28);
  --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  --accent-green: #39c97d;
  --whatsapp: #25d366;
  --whatsapp-strong: #1ea95c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: radial-gradient(circle at 0% 0%, #d8e7ef 0, transparent 44%),
              radial-gradient(circle at 100% 100%, #d9e6d6 0, transparent 40%),
              var(--bg);
  color: var(--text);
  text-shadow: var(--text-shadow);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.25s ease;
}

input,
textarea,
select,
button,
.btn,
::placeholder {
  text-shadow: none;
}

body[data-theme="dark"] {
  background: radial-gradient(circle at 0% 0%, #0d2a3a 0, transparent 42%),
              radial-gradient(circle at 100% 100%, #0b2a31 0, transparent 40%),
              var(--bg);
}

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

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

.ar {
  direction: rtl;
}

.en {
  direction: ltr;
  display: none;
}

.shell {
  width: min(1200px, 94%);
  margin-inline: auto;
}

.topbar {
  position: relative;
  top: auto;
  z-index: 1;
  margin-top: 16px;
  pointer-events: none;
}

.topbar.is-floating {
  position: sticky;
  top: 12px;
  z-index: 99;
}

.topbar.is-floating .topbar-wrap {
  animation: topbarSlideIn 0.22s ease both;
}

@keyframes topbarSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar.is-floating .topbar-wrap {
    animation: none;
  }
}

.topbar-wrap {
  background: color-mix(in srgb, var(--surface), transparent 6%);
  border: 1px solid color-mix(in srgb, var(--line), white 18%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  min-height: 76px;
  padding: 14px 18px;
  display: flex;
  gap: var(--ui-gap-md);
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
  backdrop-filter: blur(12px) saturate(138%);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  pointer-events: auto;
  transform-origin: left top;
  transition: max-width 0.35s ease, padding 0.35s ease, border-radius 0.35s ease, gap 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, margin 0.35s ease, min-height 0.35s ease;
}

.brand {
  order: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: gap 0.35s ease;
}

.logo {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  border: 1px solid var(--line);
  transition: height 0.35s ease, border-radius 0.35s ease;
}

.brand h1 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: font-size 0.35s ease;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  max-height: 20px;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease, margin 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--ui-gap-xs);
  flex-wrap: wrap;
  transition: gap 0.35s ease;
}

.has-menu .nav-links {
  display: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 14px;
  font-family: "Manrope", "Cairo", sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.nav-link.active {
  color: var(--brand);
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand), transparent 92%);
}

.controls {
  order: 2;
  display: flex;
  align-items: center;
  gap: var(--ui-gap-xs);
  flex-wrap: wrap;
  transition: gap 0.35s ease;
  margin-inline-start: auto;
  margin-left: auto;
}

.menu-toggle {
  order: 0;
  width: var(--control-height);
  height: var(--control-height);
  padding: 0;
  margin-inline: 0 2px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: color-mix(in srgb, var(--surface), transparent 2%);
  border-color: color-mix(in srgb, var(--line), white 16%);
  border-radius: var(--radius-md);
  color: var(--brand);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 24, 0.28);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 120;
}

.menu-drawer {
  position: fixed;
  top: 72px;
  bottom: auto;
  inset-inline-start: auto;
  inset-inline-end: 12px;
  width: min(312px, calc(100vw - 24px));
  max-height: calc(100svh - 92px);
  background: color-mix(in srgb, var(--surface), transparent 2%);
  border: 1px solid color-mix(in srgb, var(--line), white 14%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px) saturate(150%);
  padding: 14px;
  overflow-y: auto;
  z-index: 121;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: transform 0.24s ease, opacity 0.18s ease, visibility 0.18s ease;
}

html[dir="rtl"] .menu-drawer,
body[dir="rtl"] .menu-drawer {
  transform-origin: top left;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menu-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-brand strong,
.menu-brand small {
  display: block;
}

.menu-brand small {
  color: var(--muted);
  font-size: 12px;
}

.menu-close {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.menu-group + .menu-group {
  margin-top: 16px;
}

.menu-group-title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 800;
}

.menu-link {
  display: block;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 10px;
  font-family: "Manrope", "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-link:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: var(--brand);
}

.menu-link.active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.topbar.is-compact .topbar-wrap {
  max-width: var(--topbar-compact-width);
  min-height: 44px;
  padding: 5px 8px;
  border-radius: var(--radius-md);
  gap: 6px;
  background: color-mix(in srgb, var(--surface), transparent 16%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(155%);
  margin-inline-start: 0;
  margin-inline-end: auto;
  transform-origin: left top;
}

.topbar.is-compact .brand {
  gap: 6px;
}

.topbar.is-compact .logo {
  height: 28px;
  border-radius: 6px;
}

.topbar.is-compact .brand h1 {
  font-size: 14px;
  line-height: 1.1;
}

.topbar.is-compact .brand small {
  opacity: 0;
  max-height: 0;
  margin: 0;
  transform: translateY(-6px);
}

.topbar.is-compact .nav-links,
.topbar.is-compact .controls {
  width: 0;
  min-width: 0;
  margin: 0;
  gap: 0;
  overflow: hidden;
}

.topbar.is-compact .nav-link,
.topbar.is-compact .controls .btn,
.topbar.is-compact .controls button {
  min-height: var(--control-height-compact);
  padding: 0 10px;
  border-radius: var(--radius-sm);
}

.topbar.is-compact .menu-toggle {
  width: var(--control-height-compact);
  height: var(--control-height-compact);
  padding: 0;
  border-radius: var(--radius-sm);
}

.topbar.is-compact .controls #btnAr,
.topbar.is-compact .controls #btnEn,
.topbar.is-compact .controls #themeToggle,
.topbar.is-compact .controls .btn-solid {
  width: 0;
  min-width: 0;
  padding-inline: 0;
  border-width: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--control-height);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0 16px;
  font-family: "Manrope", "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  border-color: var(--whatsapp-strong);
  color: #07120a;
}

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

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-email::before {
  content: "✉";
  font-size: 18px;
}

.btn-map::before {
  content: "⌖";
  font-size: 14px;
}

.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.section-img {
  display: block;
  width: 100%;
  aspect-ratio: var(--media-section-ratio);
  min-height: clamp(210px, 30vw, 320px);
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--surface-2);
  margin: 10px 0 28px;
}

.section-img.section-img-sm {
  aspect-ratio: var(--media-card-ratio);
  min-height: clamp(180px, 24vw, 240px);
  max-height: none;
  margin: 8px 0 16px;
}

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: var(--media-card-ratio);
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--surface-2);
  margin-bottom: 12px;
}

button:hover,
.btn:hover {
  transform: translateY(-1px);
}

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

.btn-solid:hover {
  background: var(--brand-2);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-ghost.active {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-whatsapp,
.btn-solid.btn-whatsapp,
.btn-ghost.btn-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp-strong);
  color: #07120a;
}

.btn-whatsapp:hover,
.btn-solid.btn-whatsapp:hover,
.btn-ghost.btn-whatsapp:hover {
  background: var(--whatsapp-strong);
  border-color: #178a4b;
}

.btn-mini {
  padding: 8px 12px;
  font-size: 13px;
}

.hero {
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: var(--media-hero-ratio);
  min-height: clamp(360px, 68svh, 680px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 10, 12, 0.78), rgba(12, 18, 18, 0.42));
}

.hero-bg {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--surface-2);
}

.hero-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 40px;
  color: #fff;
  display: grid;
  gap: 14px;
}

.headline {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.subline {
  color: #f2f2f2;
  font-size: clamp(16px, 2.2vw, 21px);
  max-width: 860px;
  margin-bottom: 22px;
}

.hero-content .headline,
.hero-content .subline {
  margin-bottom: 0;
}

.section {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 34px;
}

.section h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: color-mix(in srgb, var(--brand), transparent 72%);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card .cta-row {
  margin-top: auto;
  padding-top: 6px;
}

.card p {
  color: var(--muted);
  line-height: 1.75;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--ui-gap-sm);
}

.cta-row .btn {
  flex: 0 0 auto;
}

.hero .cta-row {
  gap: 12px;
}

.hero .cta-row .btn {
  min-width: clamp(146px, 20vw, 188px);
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  background: color-mix(in srgb, #fff, transparent 84%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 12px;
}

.stat strong {
  display: block;
  font-size: 26px;
}

.stat span {
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
}

.buttons-panel {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.buttons-panel .btn {
  width: 100%;
}

.list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.list li {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq details[open] {
  border-color: color-mix(in srgb, var(--brand), transparent 65%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand), transparent 92%), transparent), var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand), transparent 90%);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  color: var(--muted);
  margin-top: 10px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-family: "Cairo", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand), transparent 35%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand), transparent 88%);
  background: var(--surface);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

form {
  display: grid;
  gap: 10px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.contact-wrap > .card {
  height: 100%;
}

.search-row input {
  min-height: var(--control-height);
}

.kpi {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ok);
}

.footer {
  margin: 18px 0 24px;
  text-align: center;
  color: var(--muted);
}

.float-actions {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 100;
}

.float-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn.whatsapp {
  background: var(--whatsapp);
  color: #07120a;
  border-color: var(--whatsapp-strong);
}

.float-btn.contact-float {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--brand);
  font-size: 18px;
}

.float-btn.whatsapp .wa-icon {
  width: 20px;
  height: 20px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: rise 0.58s ease forwards;
}

.reveal.d2 { animation-delay: 0.08s; }
.reveal.d3 { animation-delay: 0.16s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid { grid-template-columns: 1fr 1fr; }
  .topbar-wrap { flex-wrap: wrap; align-items: center; }
  .controls { width: 100%; }
  .hero .cta-row .btn { min-width: 138px; }
}

@media (max-width: 720px) {
  .topbar { top: 8px; margin-top: 10px; }
  .topbar-wrap {
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
  }
  .brand {
    gap: 10px;
  }
  .logo {
    height: 38px;
  }
  .brand h1 {
    font-size: 18px;
  }
  .brand small {
    font-size: 12px;
  }
  .controls {
    width: 100%;
    gap: 8px;
  }
  .controls > *:not(.menu-toggle) {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .menu-drawer {
    top: 64px;
    width: min(280px, calc(100vw - 20px));
    max-height: calc(100svh - 78px);
    padding: 12px;
  }
  .hero {
    aspect-ratio: 5 / 4;
    min-height: 320px;
  }
  .hero-content { padding: 24px 18px; }
  .headline { margin-bottom: 12px; }
  .subline { margin-bottom: 18px; }
  .cta-row .btn,
  .buttons-panel .btn {
    width: 100%;
  }
  .hero .cta-row .btn {
    min-width: 0;
  }
  .section-img {
    aspect-ratio: 4 / 3;
    min-height: 190px;
    margin: 10px 0 22px;
  }
  .section-img.section-img-sm,
  .card-media {
    min-height: 180px;
  }
  .grid, .grid-2, .contact-wrap { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 22px 18px; margin-top: 22px; }
  .card { padding: 16px; }
  .float-actions { inset-inline-end: 12px; bottom: 12px; }
}
