:root {
  --bg: #ffffff;
  --text: #111318;
  --muted: #5e6873;
  --line: #e8edf2;
  --soft: #f6f8fa;
  --soft-2: #edf7f1;
  --blue: #005495;
  --blue-2: #0878c9;
  --green: #55a937;
  --green-2: #2f8f2f;
  --shadow: 0 24px 70px rgba(9, 31, 55, 0.10);
  --shadow-soft: 0 16px 45px rgba(9, 31, 55, 0.08);
  --radius: 30px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 6.6vw, 6.2rem); max-width: 720px; }
h1 span, h2 span { color: var(--green); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.7rem); }
h3 { font-size: 1.24rem; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.skip-link {
  position: absolute;
  top: -80px;
  left: 20px;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 20px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,237,242,.82);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 88px;
  gap: 24px;
}
.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: #20252b;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  transition: color .2s ease, transform .2s ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right .25s ease;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { right: 0; }
.nav-cta {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: white !important;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(85,169,55,.25);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  padding-top: 82px;
  padding-bottom: 36px;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(0,84,149,.10), transparent 32%),
    radial-gradient(circle at 96% 4%, rgba(85,169,55,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}
.floating-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(.2px);
  pointer-events: none;
  opacity: .55;
  animation: floaty 7s ease-in-out infinite;
}
.shape-one {
  width: 160px; height: 160px;
  right: 6%; top: 16%;
  background: rgba(85,169,55,.13);
}
.shape-two {
  width: 96px; height: 96px;
  left: 8%; bottom: 18%;
  background: rgba(0,84,149,.11);
  animation-delay: -2s;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.hero-text {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  margin-top: 26px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: white; box-shadow: 0 18px 40px rgba(0,84,149,.22); }
.button-secondary { background: white; color: var(--text); border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(9,31,55,.06); }
.button-whatsapp { background: linear-gradient(135deg, #33b250, #1f8f3a); color: #fff; box-shadow: 0 18px 36px rgba(31,143,58,.18); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #333;
  background: rgba(255,255,255,.82);
  font-size: .92rem;
  box-shadow: 0 8px 22px rgba(9,31,55,.05);
}
.hero-media {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  transform: perspective(1200px) rotateY(-3deg);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.24), transparent 36%, rgba(0,84,149,.08));
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: min(68vh, 660px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 11s ease-in-out infinite alternate;
}
.glass-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.66);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(0,0,0,.14);
}
.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  z-index: 2;
}
.hero-badge strong { font-size: 2rem; color: var(--green); line-height: 1; }
.hero-badge span { color: var(--text); font-weight: 800; max-width: 120px; line-height: 1.2; }
.contact-ribbon {
  position: relative;
  z-index: 3;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(232,237,242,.94);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.contact-ribbon a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon strong" "icon small";
  column-gap: 14px;
  align-items: center;
  padding: 22px 26px;
  transition: background .2s ease, transform .2s ease;
}
.contact-ribbon a + a { border-left: 1px solid var(--line); }
.contact-ribbon a:hover { background: #f9fbfd; }
.ribbon-icon {
  grid-area: icon;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(0,84,149,.08);
  font-weight: 900;
}
.contact-ribbon strong { grid-area: strong; }
.contact-ribbon small { grid-area: small; color: var(--muted); }

.service-strip { padding: 32px 0 0; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
}
.strip-grid div {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { display: block; font-size: 1.05rem; }
.strip-grid span { color: var(--muted); font-size: .95rem; }

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}
.center-heading { margin-inline: auto; text-align: center; }
.center-heading .eyebrow::before { display: none; }
.section-heading p:not(.eyebrow) {
  font-size: 1.1rem;
  margin-top: 18px;
}
.cards, .benefits-grid, .steps, .testimonial-grid {
  display: grid;
  gap: 18px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  min-height: 310px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(85,169,55,.08);
  transition: transform .24s ease, background .24s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0,84,149,.24);
  box-shadow: var(--shadow);
}
.service-card:hover::after { transform: scale(1.6); background: rgba(85,169,55,.13); }
.service-card img { width: 60px; height: 60px; margin-bottom: 28px; }
.service-card h3 { margin-bottom: 12px; }
.service-card a { color: var(--blue); font-weight: 800; position: relative; z-index: 1; }

.image-feature { background: var(--soft); position: relative; overflow: hidden; }
.image-feature::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -20%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,169,55,.15), transparent 68%);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 58px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-image {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.feature-image img { width: 100%; height: 560px; object-fit: cover; object-position: center; transition: transform 1.2s ease; }
.feature-image:hover img { transform: scale(1.05); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 38px;
  color: #262b31;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 800;
}

.gallery-section { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  background: var(--soft);
}
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease, filter .75s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 800;
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.benefit {
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 250px;
  transition: transform .24s ease, box-shadow .24s ease;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.benefit span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 42px;
}
.benefit h3 { margin-bottom: 12px; }

.process { background: #0f1419; color: white; position: relative; overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,84,149,.38), transparent 70%);
}
.process::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,169,55,.26), transparent 70%);
}
.process .container { position: relative; z-index: 1; }
.process p, .process .eyebrow { color: rgba(255,255,255,.72); }
.process .eyebrow::before { background: linear-gradient(90deg, #65b5ff, #75db5a); }
.steps { grid-template-columns: repeat(3, 1fr); }
.step {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}
.step span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: #0f1419;
  font-weight: 900;
  margin-bottom: 34px;
}
.step h3 { margin-bottom: 12px; }

.testimonials { background: var(--soft); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.quote-mark { color: var(--blue); font-size: 4rem; line-height: .65; font-weight: 900; }
.testimonial p { color: #38414a; }
.testimonial strong { display: block; margin-top: 18px; }
.testimonial span { color: var(--muted); font-size: .92rem; }

.area-grid, .contact-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: center;
  gap: 54px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-tags span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-weight: 800;
}
.contact-section { background: linear-gradient(180deg, #fff 0%, #f4f8fb 100%); }
.quick-contact-list { display: grid; gap: 12px; margin-top: 28px; max-width: 460px; }
.quick-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 26px rgba(9,31,55,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.quick-contact:hover { transform: translateX(5px); box-shadow: var(--shadow-soft); border-color: rgba(0,84,149,.2); }
.quick-contact > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0,84,149,.08);
  color: var(--blue);
  font-weight: 900;
}
.quick-contact small { display: block; color: var(--muted); }
.contact-form {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; }
.contact-form label > span:first-child { font-weight: 800; color: #303842; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcfd;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: rgba(0,84,149,.42);
  box-shadow: 0 0 0 4px rgba(0,84,149,.08);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  font-size: .92rem;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 4px; }
.checkbox-row a { color: var(--blue); font-weight: 800; }
.form-submit { width: 100%; }
.form-status { margin: 14px 0 0; font-weight: 800; color: var(--green-2); min-height: 1.2em; }

.site-footer {
  background: #0f1419;
  color: white;
  padding: 54px 0 0;
}
.site-footer p { color: rgba(255,255,255,.68); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr .7fr;
  gap: 36px;
  align-items: start;
}
.footer-grid > div { display: grid; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: white; }
.footer-brand img { width: 140px; border-radius: 16px; background: white; }
.footer-brand p { max-width: 330px; }
.footer-bottom {
  margin-top: 42px;
  padding: 16px 20px;
  text-align: center;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  color: white;
  font-size: .92rem;
}
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}
.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(9,31,55,.15);
  transition: transform .2s ease;
}
.floating-contact a:hover { transform: translateY(-3px) scale(1.04); }
.floating-contact a:nth-child(2) { color: #1f8f3a; }

.legal-page .site-header { position: static; }
.legal-hero { padding: 76px 0 38px; }
.legal-content { padding: 0 0 92px; }
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 54px);
  background: white;
  box-shadow: var(--shadow);
}
.legal-box h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: 34px; margin-bottom: 14px; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box ul { color: var(--muted); }
.notice {
  padding: 18px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes floaty {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-20px,0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card, .benefit, .gallery-item img, .feature-image img, .quick-contact, .floating-contact a { transition: none; }
  .floating-shape, .hero-media img { animation: none; }
}

@media (max-width: 1040px) {
  .hero-grid, .feature-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { transform: none; }
  .hero-media img { height: 520px; }
  .contact-ribbon { grid-template-columns: 1fr; }
  .contact-ribbon a + a { border-left: 0; border-top: 1px solid var(--line); }
  .services-grid, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; border-radius: 14px; }
  .main-nav a:hover { background: var(--soft); }
  .main-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-grid div:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .gallery-item.large, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .steps, .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 78px; }
  .brand img { width: 126px; }
  .main-nav { top: 78px; }
  .hero { padding-top: 54px; min-height: auto; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-media img { height: 390px; }
  .hero-badge { left: 14px; right: 14px; bottom: 14px; }
  .services-grid, .benefits-grid { grid-template-columns: 1fr; }
  .feature-image img { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-contact a { width: 48px; height: 48px; }
}

@media (max-width: 920px) {
  .legal-page .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .legal-page .main-nav a { padding: 8px 0; }
}

@media (max-width: 620px) {
  .legal-page .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    gap: 10px;
  }
  .legal-page .main-nav { flex-wrap: wrap; }
}
