:root {
  --ink: #102b2d;
  --ink-soft: #315153;
  --brand: #087f74;
  --brand-dark: #055b54;
  --brand-pale: #e8f6f3;
  --signal: #d7f04a;
  --sand: #f5f1e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #dce7e3;
  --shadow: 0 24px 70px rgba(16, 43, 45, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Arial, "Noto Sans Arabic", sans-serif;
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 240, 74, 0.13), transparent 26rem),
    radial-gradient(circle at 90% 50%, rgba(8, 127, 116, 0.08), transparent 30rem);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  color: var(--white);
  background: var(--ink);
}

.top-strip .container {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: var(--signal);
  font-weight: 800;
  direction: ltr;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 231, 227, 0.9);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px 16px 5px 16px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 7px 7px 0 var(--signal);
  font-size: 1.4rem;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.35;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
  border-color: var(--brand);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 9px 25px rgba(176, 202, 34, 0.24);
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(8, 127, 116, 0.18);
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-pale);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(8, 127, 116, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 60px;
}

.hero::after {
  content: "24";
  position: absolute;
  inset-inline-start: max(3vw, 20px);
  inset-block-start: 25px;
  z-index: -1;
  color: rgba(8, 127, 116, 0.045);
  font-size: clamp(14rem, 30vw, 30rem);
  font-weight: 900;
  line-height: 1;
  direction: ltr;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--brand);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 28px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-phone-first {
  width: fit-content;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 13px 20px;
  border: 2px solid rgba(8, 127, 116, 0.18);
  border-radius: 18px;
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 18px 42px rgba(176, 202, 34, 0.24);
}

.hero-phone-first span {
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-phone-first strong {
  direction: ltr;
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(8, 127, 116, 0.22);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--signal);
}

.button-ghost {
  border-color: var(--line);
  background: var(--white);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.whatsapp-button,
.mobile-actions .whatsapp-button {
  color: #0b2d18;
  background: #25d366;
  border-color: rgba(11, 45, 24, 0.08);
}

.whatsapp-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  display: inline-block;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "✓";
  margin-inline-end: 7px;
  color: var(--brand);
  font-weight: 900;
}

.dispatch-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px 34px 8px 34px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.dispatch-card::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  inset-inline-end: -16px;
  inset-block-start: -16px;
  border: 16px solid var(--signal);
  border-radius: 50%;
  opacity: 0.95;
}

.dispatch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 800;
}

.dispatch-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(215, 240, 74, 0.12);
}

.dispatch-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.dispatch-card p {
  margin: 0 0 22px;
  color: #b9cecc;
}

.big-phone {
  display: block;
  margin-bottom: 22px;
  color: var(--signal);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  direction: ltr;
  text-align: right;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-card {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-card strong {
  display: block;
  color: var(--signal);
  font-size: 1.2rem;
}

.mini-card span {
  color: #b9cecc;
  font-size: 0.78rem;
}

.trust-band {
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: rgba(232, 246, 243, 0.6);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.trust-list b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--brand-dark);
  background: var(--white);
}

.section {
  padding: 92px 0;
}

.section-sand {
  background: var(--sand);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

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

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .section-head p {
  color: #b9cecc;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 127, 116, 0.35);
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  inset-inline-end: 19px;
  inset-block-start: 12px;
  color: rgba(8, 127, 116, 0.08);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 16px;
  color: var(--white);
  background: var(--brand);
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 0 0 9px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 900;
}

.text-link::after {
  content: " ←";
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.feature-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 34px;
  border-radius: 36px 36px 8px 36px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(8, 127, 116, 0.9), rgba(5, 91, 84, 0.96)),
    var(--brand);
  box-shadow: var(--shadow);
}

.feature-panel::before,
.feature-panel::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.feature-panel::before {
  width: 290px;
  height: 290px;
  inset-block-start: -90px;
  inset-inline-start: -70px;
}

.feature-panel::after {
  width: 180px;
  height: 180px;
  inset-block-start: 45px;
  inset-inline-start: 25px;
}

.feature-panel .panel-label {
  position: relative;
  z-index: 1;
  color: var(--signal);
  font-size: 0.85rem;
  font-weight: 900;
}

.feature-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
}

.feature-panel p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: #d9efed;
}

.check-list,
.step-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 42px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 2px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--brand-dark);
  background: var(--brand-pale);
  font-weight: 900;
}

.check-list strong {
  display: block;
}

.check-list span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.steps {
  counter-reset: step;
}

.step-list {
  grid-template-columns: repeat(4, 1fr);
}

.step-list li {
  position: relative;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  counter-increment: step;
}

.step-list li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 38px;
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 900;
}

.step-list h3 {
  margin: 0 0 6px;
}

.step-list p {
  margin: 0;
  color: #b9cecc;
  font-size: 0.88rem;
}

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

.area-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.area-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.area-card span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 21px 24px 21px 62px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-inline-start: 20px;
  inset-block-start: 17px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--brand-dark);
  background: var(--brand-pale);
  font-size: 1.3rem;
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 5vw, 55px);
  border-radius: 34px 34px 8px 34px;
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  inset-inline-end: -45px;
  inset-block-end: -95px;
  border: 28px solid rgba(215, 240, 74, 0.85);
  border-radius: 50%;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-panel p {
  max-width: 650px;
  margin: 0;
  color: #d9efed;
}

.cta-panel .action-row {
  justify-content: flex-end;
}

.page-hero {
  padding: 72px 0 55px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 48%, rgba(8, 127, 116, 0.055) 48%),
    var(--paper);
  background-size: 36px 36px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--brand-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: start;
  gap: 45px;
}

.prose h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.4;
}

.prose h3 {
  margin: 35px 0 8px;
}

.prose p {
  color: var(--ink-soft);
}

.prose section + section {
  margin-top: 55px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.side-card {
  position: sticky;
  inset-block-start: 112px;
  padding: 25px;
  border-radius: 24px 24px 7px 24px;
  color: var(--white);
  background: var(--ink);
}

.side-card .eyebrow {
  color: var(--signal);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.side-card h2 {
  margin: 0 0 8px;
}

.side-card p {
  margin: 0 0 20px;
  color: #b9cecc;
  font-size: 0.9rem;
}

.side-card .button {
  width: 100%;
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.contact-card .service-icon {
  margin-bottom: 24px;
}

.contact-card h2 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-card a {
  margin-top: 24px;
  color: var(--brand-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}

.site-footer .brand {
  margin-bottom: 18px;
}

.site-footer .brand-text span {
  color: #b9cecc;
}

.footer-about {
  max-width: 420px;
  margin: 0;
  color: #b9cecc;
  font-size: 0.9rem;
}

.footer-title {
  margin: 0 0 17px;
  color: var(--signal);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d9efed;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--signal);
}

.footer-phone {
  display: block;
  margin-top: 10px;
  color: var(--signal);
  font-size: 1.35rem;
  font-weight: 900;
  direction: ltr;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8da7a5;
  font-size: 0.8rem;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1000px) {
  .hero-grid,
  .split,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .dispatch-card {
    max-width: 720px;
  }

  .trust-list,
  .areas-grid,
  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .side-card {
    position: static;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-call {
    display: none;
  }

  .nav-shell {
    position: relative;
    min-height: 72px;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    inset-block-start: calc(100% + 1px);
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(16, 43, 45, 0.12);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    display: block;
    padding: 10px 5px;
  }

  .top-strip .container {
    justify-content: center;
  }

  .top-strip p:first-child {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-phone-first {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.03em;
  }

  .section {
    padding: 70px 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .action-row {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text span {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero-phone-first {
    min-height: 70px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .hero-grid {
    gap: 34px;
  }

  .dispatch-card {
    padding: 24px;
    border-radius: 25px 25px 7px 25px;
  }

  .dispatch-card::before {
    width: 68px;
    height: 68px;
    border-width: 11px;
  }

  .dispatch-status {
    margin-bottom: 35px;
  }

  .trust-list,
  .areas-grid,
  .step-list,
  .card-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-list {
    gap: 10px;
  }

  .trust-list li {
    font-size: 0.88rem;
  }

  .service-card {
    min-height: 265px;
  }

  .feature-panel {
    min-height: 400px;
    padding: 26px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    inset-inline: 0;
    inset-block-end: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px;
    background: rgba(16, 43, 45, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-weight: 900;
  }

  .mobile-actions a:first-child {
    color: var(--ink);
    background: var(--signal);
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: var(--brand);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
