:root {
  --ink: #183f4a;
  --ink-deep: #0d2a32;
  --gold: #9a7048;
  --gold-soft: #d8bd95;
  --cream: #fbf6ed;
  --paper: #fffdf8;
  --mint: #dfeee8;
  --warm: #efe5d5;
  --line: rgba(24, 63, 74, 0.16);
  --shadow: 0 22px 60px rgba(13, 42, 50, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Readex Pro", sans-serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  right: auto;
  z-index: 20;
  width: min(980px, calc(100% - 96px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(140%);
  transform: translateX(-50%);
  animation: navDrop 0.7s ease both;
}

.site-header.is-scrolled {
  border-color: rgba(24, 63, 74, 0.12);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 16px 44px rgba(13, 42, 50, 0.16);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(13, 42, 50, 0.22));
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav {
  border-color: rgba(24, 63, 74, 0.08);
  background: rgba(24, 63, 74, 0.06);
}

.site-header.is-scrolled .site-nav a {
  color: var(--ink-deep);
}

.site-header.is-scrolled .site-nav a:hover {
  color: #fff;
  background: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  box-shadow: 0 18px 42px rgba(24, 63, 74, 0.28);
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #236072);
  box-shadow: 0 14px 30px rgba(24, 63, 74, 0.24);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: #215464;
}

.btn-secondary {
  color: var(--ink-deep);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 64px;
  background: var(--ink-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 118px auto auto 7%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(216, 189, 149, 0.28);
  border-radius: 50%;
  z-index: 1;
  animation: slowPulse 5s ease-in-out infinite;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(110deg, rgba(13, 42, 50, 0.96) 0%, rgba(13, 42, 50, 0.76) 42%, rgba(13, 42, 50, 0.32) 100%),
    url("assets/hero-home-care.jpg") center / cover;
  transform: scale(1.03);
  animation: heroZoom 12s ease-out both;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 189, 149, 0.24), transparent 26%),
    linear-gradient(0deg, rgba(13, 42, 50, 0.96), transparent 56%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: end;
  color: #fff;
}

.hero-main {
  max-width: 780px;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-aside {
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  animation-delay: 0.12s;
}

.hero-copy {
  animation-delay: 0.22s;
}

.hero-actions {
  animation-delay: 0.32s;
}

.hero-aside {
  animation-delay: 0.42s;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.closing h2 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(2.35rem, 5.2vw, 5.05rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.hero-note {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid rgba(216, 189, 149, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-note span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-note strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-aside {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.trust-strip span {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  text-align: center;
}

.trust-strip b {
  display: block;
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.intro-band,
.pricing-band {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.intro-grid,
.pricing-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 64px 0;
}

h2 {
  margin: 8px 0 14px;
  color: var(--ink-deep);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
  line-height: 1.35;
  letter-spacing: 0;
}

h3,
p {
  margin-top: 0;
}

p {
  font-size: 1.02rem;
}

.section {
  padding: 96px 0;
}

.nationalities {
  background: linear-gradient(180deg, #fffdf8, #f8f0e3);
}

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

.section-head.align-start {
  margin-inline: 0;
  text-align: start;
}

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

.nationality-card,
.review,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(24, 63, 74, 0.1);
  backdrop-filter: blur(16px);
}

.nationality-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  padding: 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.nationality-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.55;
}

.nationality-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154, 112, 72, 0.42);
}

.nationality-card.featured {
  background: var(--ink);
  color: #fff;
}

.nationality-card.featured h3 {
  color: #fff;
}

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--gold-soft), rgba(24, 63, 74, 0.18)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 12px 26px rgba(13, 42, 50, 0.1);
  font-size: 2rem;
  line-height: 1;
}

.nationality-card h3 {
  margin-bottom: 8px;
  color: var(--ink-deep);
  font-size: 1.25rem;
}

.nationality-card p {
  color: currentColor;
  opacity: 0.78;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.mini-proof span {
  padding: 9px 14px;
  border: 1px solid rgba(154, 112, 72, 0.2);
  border-radius: 999px;
  color: rgba(13, 42, 50, 0.72);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}

.value-section {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 189, 149, 0.22), transparent 28%),
    linear-gradient(135deg, var(--ink-deep), var(--ink));
}

.value-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.value-section h2,
.value-section h3 {
  color: #fff;
}

.value-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.value-item {
  min-height: 176px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.value-item span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold-soft);
  font-weight: 900;
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.steps-section {
  background:
    linear-gradient(90deg, rgba(223, 238, 232, 0.7), transparent 38%),
    var(--paper);
}

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

.step {
  position: relative;
  min-height: 188px;
  padding: 26px;
  overflow: hidden;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #c49b69);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  color: var(--ink-deep);
  font-size: 1.22rem;
}

.step p {
  margin-bottom: 0;
  color: rgba(24, 63, 74, 0.68);
  font-size: 0.95rem;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -22px -34px auto;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(154, 112, 72, 0.22);
  border-radius: 50%;
}

.pricing-content {
  grid-template-columns: 1fr auto;
}

.pricing-content p {
  margin-bottom: 0;
}

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

.review {
  margin: 0;
  padding: 34px;
  border-color: rgba(154, 112, 72, 0.22);
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
}

blockquote {
  margin: 18px 0;
  color: var(--ink-deep);
  font-size: 1.35rem;
  font-weight: 800;
}

figcaption {
  color: rgba(24, 63, 74, 0.7);
}

.faq {
  background: linear-gradient(180deg, var(--cream), #fffaf2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}

details {
  margin-bottom: 12px;
  border: 1px solid rgba(24, 63, 74, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 34px rgba(24, 63, 74, 0.06);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink-deep);
  font-size: 1.12rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: left;
  color: var(--gold);
  font-size: 1.3rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 680px;
  padding: 0 22px 22px;
  color: rgba(24, 63, 74, 0.76);
}

.closing {
  position: relative;
  padding: 96px 0;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 189, 149, 0.32), transparent 28%),
    linear-gradient(135deg, rgba(8, 33, 40, 0.94), rgba(24, 63, 74, 0.82)),
    url("assets/hero-home-care.jpg") center 64% / cover;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 110px);
  opacity: 0.6;
  pointer-events: none;
}

.closing-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 380px;
  gap: 42px;
  align-items: center;
}

.closing-content {
  position: relative;
  z-index: 1;
}

.closing h2 {
  color: #fff !important;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.closing p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.2rem;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.closing-actions > span {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.closing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.closing-card-title {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.closing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.closing-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.closing-card li span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #d8e7e5;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 189, 149, 0.22), transparent 28%),
    linear-gradient(145deg, #082128, var(--ink-deep) 48%, #153e49);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 120px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 38px;
  padding: 64px 0 42px;
}

.footer-brand > img {
  width: 156px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
}

.footer-brand p {
  max-width: 420px;
  color: rgba(216, 231, 229, 0.74);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: var(--radius);
  color: #fff;
  background: #1f7a53;
  font-weight: 800;
}

.footer-whatsapp img {
  width: 24px;
  height: 24px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.footer-column a {
  color: rgba(216, 231, 229, 0.78);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.contact-list p {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list strong,
.footer-bottom strong {
  color: var(--gold-soft);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(216, 231, 229, 0.62);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 44px rgba(31, 122, 83, 0.35);
}

.floating-whatsapp img {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 6px 10px rgba(13, 42, 50, 0.2));
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes slowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

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

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(560px, calc(100% - 28px));
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 22px;
    right: auto;
    display: none;
    flex-direction: column;
    width: min(218px, calc(100vw - 44px));
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.82);
    box-shadow: 0 22px 60px rgba(13, 42, 50, 0.2);
    backdrop-filter: blur(22px) saturate(140%);
    animation: fadeUp 0.24s ease both;
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a {
    color: var(--ink-deep);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .pricing-content,
  .value-grid,
  .steps-layout,
  .faq-layout,
  .closing-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-aside {
    max-width: 560px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    top: 10px;
    width: min(360px, calc(100% - 20px));
    padding-inline: 12px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 42px;
    align-items: start;
  }

  .hero::before {
    display: none;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(1.95rem, 10.4vw, 2.75rem);
    line-height: 1.28;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .hero-aside {
    padding: 10px;
  }

  .hero-note {
    padding: 14px;
  }

  .trust-strip span {
    padding: 14px;
  }

  .closing {
    padding: 76px 0;
  }

  .closing::before {
    inset: 10px;
  }

  .closing-actions,
  .closing-actions .btn {
    width: 100%;
  }

  .closing-actions > span {
    max-width: none;
  }

  .trust-strip,
  .nationality-grid,
  .value-list,
  .steps,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .intro-grid,
  .pricing-content {
    padding: 48px 0;
  }

  .contact-list p {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
