:root {
  --ink: #132033;
  --navy: #10243f;
  --navy-deep: #081727;
  --blue: #1d5d8f;
  --green: #2f8c57;
  --lime: #79d26b;
  --yellow: #f7c948;
  --paper: #f7faf5;
  --white: #ffffff;
  --mist: #e7eef0;
  --muted: #687487;
  --line: rgba(19, 32, 51, 0.14);
  --white-line: rgba(255, 255, 255, 0.24);
  --shadow: 0 22px 62px rgba(16, 36, 63, 0.15);
  --shadow-strong: 0 30px 90px rgba(8, 23, 39, 0.28);
  --sans: "Inter", Arial, sans-serif;
  --display: "Sora", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(231, 238, 240, 0.7), rgba(247, 250, 245, 0) 34rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(8, 23, 39, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, min-height 180ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(8, 23, 39, 0.96);
  min-height: 64px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  line-height: 1.1;
  min-width: 190px;
}

.brand img {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 23, 39, 0.24);
  height: 44px;
  object-fit: contain;
  padding: 5px;
  width: 54px;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  opacity: 0.82;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a::after {
  background: var(--lime);
  border-radius: 999px;
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover {
  color: var(--yellow);
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

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

.header-phone,
.icon-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--white-line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-phone:hover,
.icon-button:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.icon-button {
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--white);
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 8px auto;
  width: 24px;
}

main section[id],
.site-footer {
  scroll-margin-top: 86px;
}

.hero {
  background: var(--navy-deep);
  color: var(--white);
  min-height: 92svh;
  overflow: hidden;
  padding: 134px clamp(20px, 6vw, 88px) 112px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent, rgba(121, 210, 107, 0.48), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 80px);
  bottom: 70px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.55;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 23, 39, 0.98), rgba(16, 36, 63, 0.72), rgba(16, 36, 63, 0.08)),
    linear-gradient(180deg, rgba(8, 23, 39, 0.12), rgba(8, 23, 39, 0.7));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.03);
  width: 100%;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-content::before {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  display: block;
  height: 5px;
  margin-bottom: 22px;
  width: 72px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow,
.legal-section .eyebrow,
.location-section .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
  margin-bottom: 22px;
  max-width: 830px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 650px;
  text-shadow: 0 2px 22px rgba(8, 23, 39, 0.42);
}

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

.button,
.service-copy a {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: box-shadow 170ms ease, transform 170ms ease, background 170ms ease;
}

.button:hover,
.service-copy a:hover {
  box-shadow: 0 16px 34px rgba(8, 23, 39, 0.18);
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--lime), #b7ef78);
  color: #092015;
}

.button-light {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid var(--white-line);
  color: var(--white);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.hero-proof {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  bottom: 122px;
  box-shadow: var(--shadow-strong);
  color: var(--white);
  max-width: 380px;
  padding: 22px;
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  width: min(380px, 32vw);
  z-index: 2;
}

.hero-proof::before {
  background: linear-gradient(180deg, var(--yellow), var(--lime));
  border-radius: 999px;
  content: "";
  inset: 22px auto 22px 0;
  position: absolute;
  width: 4px;
}

.hero-proof span,
.hero-proof dt {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  font-family: var(--display);
  font-size: 1.04rem;
  line-height: 1.2;
  margin-top: 7px;
}

.hero-proof dl {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0 0;
}

.hero-proof dd {
  font-weight: 800;
  line-height: 1.25;
  margin: 6px 0 0;
}

.hero-strip {
  align-items: center;
  border-top: 1px solid var(--white-line);
  bottom: 0;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero-strip span {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(8, 23, 39, 0.68);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 70px;
  padding: 16px;
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(16, 36, 63, 0.08);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-band article {
  border-right: 1px solid var(--line);
  padding: 28px clamp(18px, 3vw, 40px);
  position: relative;
}

.trust-band article::before {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  height: 4px;
  left: clamp(18px, 3vw, 40px);
  position: absolute;
  top: 0;
  width: 42px;
}

.trust-band article:last-child {
  border-right: 0;
}

.trust-band span {
  color: var(--navy);
  display: block;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.trust-band p {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.section,
.process-section,
.legal-section,
.location-section,
.faq-section,
.final-cta {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin-bottom: 34px;
}

.section-heading > p,
.section-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.intro-section {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

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

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

.intro-grid article,
.legal-grid article,
.faq-grid details,
.note-panel,
.requirements-panel,
.service-card,
.process-track article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(16, 36, 63, 0.06);
}

.intro-grid article,
.legal-grid article {
  padding: 28px;
  position: relative;
  transition: box-shadow 170ms ease, transform 170ms ease;
}

.intro-grid article::after,
.legal-grid article::after {
  background: linear-gradient(90deg, var(--green), var(--lime));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.intro-grid article:hover,
.legal-grid article:hover {
  box-shadow: 0 18px 46px rgba(16, 36, 63, 0.12);
  transform: translateY(-3px);
}

.intro-grid i,
.legal-grid i,
.note-panel > i {
  color: var(--green);
  height: 30px;
  margin-bottom: 18px;
  width: 30px;
}

.intro-grid p,
.legal-grid p,
.process-track p,
.faq-grid p,
.requirements-panel li,
.note-panel p {
  color: var(--muted);
}

.service-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(238, 245, 241, 0.95)),
    #eef5f1;
  position: relative;
}

.service-section::before {
  background: linear-gradient(90deg, rgba(16, 36, 63, 0.1), rgba(121, 210, 107, 0.54), rgba(16, 36, 63, 0.1));
  content: "";
  height: 1px;
  left: clamp(20px, 6vw, 88px);
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  top: 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  box-shadow: 0 24px 64px rgba(16, 36, 63, 0.16);
  transform: translateY(-4px);
}

.service-card:hover .service-visual {
  background-size: 108%;
}

.service-visual {
  align-items: start;
  aspect-ratio: 1.15;
  background-color: var(--navy);
  background-size: 104%;
  color: var(--white);
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 14px;
  transition: background-size 260ms ease;
}

.service-visual > span,
.service-badge {
  background: rgba(16, 36, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 9px;
  text-transform: uppercase;
}

.service-visual .service-badge {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(8, 23, 39, 0.22);
  color: var(--navy);
}

.service-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  position: relative;
}

.service-copy::before {
  background: linear-gradient(90deg, var(--green), var(--lime));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.service-copy > p:first-child {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-copy strong {
  color: var(--navy);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-copy ul,
.requirements-panel ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.service-copy li {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0;
}

.service-copy li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  margin-right: 8px;
}

.service-copy a {
  background: var(--navy);
  color: var(--white);
  margin-top: auto;
  min-height: 44px;
  width: fit-content;
}

.empty-state {
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(8, 23, 39, 0.98), rgba(16, 53, 93, 0.96)),
    var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.process-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  opacity: 0.16;
  position: absolute;
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.process-section .eyebrow {
  color: var(--yellow);
}

.process-track {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  position: relative;
}

.process-track::before {
  background: linear-gradient(90deg, var(--yellow), var(--lime));
  content: "";
  height: 3px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 53px;
  z-index: 0;
}

.process-track article {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--white-line);
  box-shadow: none;
  color: var(--white);
  padding: 26px;
  position: relative;
  z-index: 1;
}

.process-track span {
  color: var(--yellow);
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.process-track p {
  color: rgba(255, 255, 255, 0.72);
}

.requirements-section {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.requirements-panel,
.note-panel {
  padding: clamp(28px, 4vw, 44px);
}

.requirements-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.requirements-panel li {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin: 14px 0;
}

.requirements-panel li i {
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 3px;
}

.note-panel {
  background: linear-gradient(135deg, var(--yellow), #ffe58b);
  color: #2d2300;
  position: relative;
}

.note-panel::after {
  border: 1px solid rgba(45, 35, 0, 0.18);
  border-radius: 8px;
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.note-panel p {
  color: rgba(45, 35, 0, 0.72);
}

.legal-section {
  background:
    linear-gradient(135deg, rgba(8, 23, 39, 0.96), rgba(22, 53, 93, 0.98)),
    #16355d;
  color: var(--white);
}

.legal-section {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.legal-copy p:not(.eyebrow),
.legal-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.legal-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white-line);
  box-shadow: none;
}

.legal-grid i {
  color: var(--yellow);
}

.location-section {
  align-items: stretch;
  background: var(--white);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
}

.location-copy {
  background:
    linear-gradient(135deg, rgba(16, 36, 63, 0.96), rgba(8, 23, 39, 0.98)),
    var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  color: var(--white);
  padding: clamp(30px, 4.5vw, 52px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list > span {
  align-items: flex-start;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  gap: 12px;
  padding-top: 12px;
}

.contact-list i {
  color: var(--yellow);
  flex: 0 0 auto;
  margin-top: 2px;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 64px rgba(16, 36, 63, 0.12);
  min-height: 460px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 460px;
  width: 100%;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.faq-grid details {
  padding: 22px 24px;
  transition: box-shadow 170ms ease, transform 170ms ease;
}

.faq-grid details:hover {
  box-shadow: 0 16px 42px rgba(16, 36, 63, 0.1);
  transform: translateY(-2px);
}

.faq-grid summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-grid p {
  margin: 14px 0 0;
}

.site-footer {
  align-items: center;
  background: #0d1b2f;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(20px, 6vw, 88px);
  position: relative;
}

.final-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 23, 39, 0.96), rgba(16, 53, 93, 0.95)),
    var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  position: relative;
}

.final-cta::before {
  background: linear-gradient(90deg, var(--lime), var(--yellow));
  content: "";
  height: 5px;
  left: clamp(20px, 6vw, 88px);
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  top: 0;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 0;
  max-width: 980px;
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.site-footer img {
  background: var(--white);
  border-radius: 8px;
  height: 46px;
  object-fit: contain;
  padding: 5px;
  width: 62px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
}

.site-footer p strong {
  color: var(--white);
}

.site-footer > div:last-of-type {
  display: flex;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

.floating-whatsapp {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 20px;
  width: 56px;
  z-index: 25;
}

@media (max-width: 1120px) {
  .header-phone span {
    display: none;
  }

  .hero-proof {
    display: none;
  }

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

  .intro-section,
  .legal-section,
  .location-section,
  .requirements-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    background: var(--navy);
    border-top: 1px solid var(--white-line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 20px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--white-line);
    padding: 14px 0;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 128px 20px 178px;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(16, 36, 63, 0.92), rgba(16, 36, 63, 0.78)),
      linear-gradient(90deg, rgba(16, 36, 63, 0.2), rgba(16, 36, 63, 0.3));
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 52px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .legal-grid,
  .process-track,
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }

  .service-visual {
    aspect-ratio: 1.6;
  }

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

  .final-cta .button {
    width: fit-content;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 90px;
  }
}

@media (max-width: 520px) {
  .header-actions {
    gap: 6px;
  }

  .brand img {
    height: 38px;
    width: 46px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .icon-button,
  .header-phone {
    min-height: 38px;
    width: 38px;
  }

  .header-phone {
    justify-content: center;
    padding: 0;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band article {
    border-right: 0;
    padding: 22px;
  }

  .section,
  .process-section,
  .legal-section,
  .location-section,
  .faq-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }
}
