:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-blue: #002f73;
  --text: #071226;
  --muted: #536074;
  --blue: #073b8e;
  --blue-dark: #00245d;
  --blue-soft: #e7efff;
  --orange: #ff7a1a;
  --border: #dfe6f0;
  --shadow: 0 18px 45px rgba(7, 18, 38, 0.09);
  --shadow-soft: 0 10px 26px rgba(7, 18, 38, 0.07);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1120px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p,
a,
button,
dt,
dd,
label,
input,
textarea,
span {
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a:hover {
  color: var(--blue);
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.6);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--blue-dark);
  color: #fff;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 230, 240, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 18, 38, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  font-weight: 900;
}

.brand strong {
  font-weight: 500;
}

.site-nav {
  display: none;
}

.site-nav a {
  position: relative;
  color: var(--text);
  font-weight: 650;
  font-size: 0.96rem;
  padding: 10px 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

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

.header-cta {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-open .site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.nav-open .site-nav a {
  border-radius: 8px;
  padding: 12px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 44px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(48vw, 620px);
  height: 620px;
  background:
    linear-gradient(135deg, rgba(7, 59, 142, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 70% 30%, rgba(255, 122, 26, 0.13), transparent 32%);
  clip-path: polygon(25% 0, 100% 0, 100% 72%, 55% 100%, 0 56%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 36px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 9.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.22rem);
  line-height: 1.7;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 30px;
  color: #273348;
  font-weight: 600;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border: 1.8px solid var(--blue);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, var(--blue) 48% 58%, transparent 59%) 5px 5px / 7px 7px no-repeat,
    #fff;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 13px 18px;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg,
.header-cta svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 47, 115, 0.2);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 47, 115, 0.28);
}

.btn-secondary {
  border-color: rgba(7, 59, 142, 0.55);
  background: #fff;
  color: var(--blue);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: var(--blue-soft);
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 430px;
}

.interior-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px 28px 28px 110px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 28%),
    linear-gradient(120deg, #f8fafc 0 42%, #d7dde7 42% 43%, #b7a996 43% 72%, #2d3034 72% 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-wall {
  position: absolute;
  left: 10%;
  top: 8%;
  width: 42%;
  height: 56%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 18, 38, 0.09) 1px, transparent 1px) 0 0 / 46px 100%,
    linear-gradient(#eceff3, #fff);
  box-shadow: inset -20px 0 30px rgba(7, 18, 38, 0.05);
}

.visual-wall span {
  position: absolute;
  width: 44%;
  height: 7px;
  border-radius: 99px;
  background: #c9ced7;
}

.visual-wall span:nth-child(1) {
  left: 16%;
  top: 16%;
}

.visual-wall span:nth-child(2) {
  left: 36%;
  top: 36%;
}

.visual-wall span:nth-child(3) {
  left: 20%;
  top: 58%;
}

.visual-bath {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 28%;
  height: 64%;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px) 0 0 / 38px 38px,
    #a4988a;
}

.mirror {
  position: absolute;
  left: 22%;
  top: 14%;
  width: 52%;
  aspect-ratio: 1;
  border: 7px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fbff, #bcc6d3);
}

.cabinet {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 24%;
  height: 18%;
  border-radius: 6px;
  background: linear-gradient(90deg, #bc8755, #e3b17e);
}

.tap {
  position: absolute;
  left: 48%;
  bottom: 42%;
  width: 10px;
  height: 22px;
  border-top: 3px solid #24282f;
  border-left: 3px solid #24282f;
  border-radius: 6px 0 0 0;
}

.visual-floor {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(14deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 72px 30px,
    linear-gradient(90deg, #d7a46e, #ecd0a9);
  clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
}

.visual-arc {
  position: absolute;
  right: -72px;
  bottom: -64px;
  width: 260px;
  height: 260px;
  border: 4px solid var(--orange);
  border-radius: 50%;
}

.interior-visual::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  background: var(--blue);
  transform: rotate(45deg);
}

.company-card {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
  margin: -96px 0 0 22px;
  border: 1px solid rgba(223, 230, 240, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.company-card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.company-card p {
  margin: 4px 0 18px;
  color: var(--blue);
  font-weight: 750;
}

.company-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.company-card div,
.details-list div {
  display: grid;
  gap: 2px;
}

.company-card dt,
.details-list dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.company-card dd,
.details-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.content-panel h2,
.area-card h2,
.legal-card h1 {
  margin: 0;
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--orange);
  border-radius: 99px;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  padding-top: 28px;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-grid > *,
.why-grid > *,
.process-grid > *,
.contact-grid > *,
.footer-grid > *,
.split-grid > * {
  min-width: 0;
}

.service-card {
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 59, 142, 0.28);
  box-shadow: var(--shadow);
}

.service-card svg,
.why-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.why-item h3,
.process-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.why-item p,
.process-card p,
.content-panel p,
.area-card p {
  color: var(--muted);
}

.split-section {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}

.split-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.image-panel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #f7f9fc 0 44%, #d8dde6 44% 46%, #c5b59f 46% 72%, #9c9185 72% 100%);
  box-shadow: var(--shadow);
}

.room-lines {
  position: absolute;
  inset: 13% 45% 25% 9%;
  border: 1px solid rgba(7, 18, 38, 0.11);
  background:
    linear-gradient(90deg, rgba(7, 18, 38, 0.09) 1px, transparent 1px) 0 0 / 54px 100%,
    #fff;
}

.tile-block {
  position: absolute;
  right: 9%;
  top: 12%;
  width: 30%;
  height: 60%;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 34px 34px,
    #867d74;
}

.plaster-block {
  position: absolute;
  left: 22%;
  bottom: 0;
  width: 64%;
  height: 32%;
  background:
    linear-gradient(14deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 70px 28px,
    linear-gradient(90deg, #d2a06d, #e8c59b);
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
}

.content-panel .accent-line,
.area-card .accent-line,
.legal-card .accent-line {
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--orange);
  border-radius: 99px;
}

.benefit-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.benefit-grid span {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  padding: 12px 12px 12px 38px;
  color: #273348;
  font-weight: 700;
}

.benefit-grid span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.why-section {
  background: var(--bg-soft);
}

.why-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.why-item {
  padding: 22px 0;
}

.process-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.process-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.cta-band,
.area-card {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.cta-band h3 {
  margin: 0;
  font-size: 1.25rem;
}

.cta-band p {
  margin: 6px 0 0;
  color: var(--muted);
}

.area-section {
  padding-top: 28px;
  background:
    linear-gradient(90deg, rgba(7, 59, 142, 0.05), transparent 36%),
    #fff;
}

.contact-section {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 24px;
}

.contact-grid {
  display: grid;
  gap: 20px;
}

.contact-card,
.contact-form,
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.contact-card h3,
.contact-form h3 {
  margin: 0 0 22px;
  font-size: 1.35rem;
}

.details-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.details-list div {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.details-list div:last-child {
  border-bottom: 0;
}

.details-list a {
  color: var(--blue);
}

.complaint-note {
  margin: 22px 0 0;
  border-radius: 10px;
  background: var(--blue-soft);
  padding: 14px;
  color: #273348;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.complaint-note a {
  color: var(--blue);
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 59, 142, 0.1);
  outline: none;
}

textarea {
  resize: vertical;
}

button[disabled],
.btn[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 650;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #d92d20;
}

.form-status {
  margin: 14px 0 0;
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  background:
    linear-gradient(135deg, var(--blue-dark), #001632);
  color: #fff;
  padding: 42px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.site-footer a {
  color: #fff;
}

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

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-brand {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-weight: 900;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18b857;
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 184, 87, 0.34);
  animation: floatPulse 3.6s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page {
  background: var(--bg-soft);
}

.legal-card {
  max-width: 820px;
}

.legal-card h1 {
  margin-bottom: 26px;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 1.3rem;
}

.legal-card p,
.legal-card li {
  color: #334155;
}

.reveal {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 560ms ease;
}

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

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (min-width: 560px) {
  .button-row,
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
  }

  .trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

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

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

  .field-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 820px) {
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    padding: 10px 18px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 47, 115, 0.18);
  }

  .header-cta:hover {
    color: #fff;
  }

  .hero {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 1.1rem + 2.65vw, 3.85rem);
    line-height: 1;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    align-items: center;
  }

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

  .service-card {
    padding: 20px 16px;
    text-align: center;
  }

  .service-card svg {
    margin-left: auto;
    margin-right: auto;
  }

  .split-grid {
    grid-template-columns: 0.95fr 1fr;
  }

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

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

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

  .process-card::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -16px;
    width: 28px;
    height: 1px;
    background: var(--blue);
  }

  .process-card:last-child::after {
    display: none;
  }

  .cta-band,
  .area-card {
    grid-template-columns: 1fr auto;
    padding: 28px 34px;
  }

  .contact-actions {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .hero-content {
    padding-bottom: 80px;
  }

  .hero-media {
    margin-right: -72px;
  }
}

@media (max-width: 819px) {
  .hero-media {
    min-height: 350px;
  }

  .interior-visual {
    min-height: 330px;
    border-radius: 22px 22px 22px 66px;
  }

  .company-card {
    margin-left: 14px;
  }
}

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

  .btn {
    padding-left: 14px;
    padding-right: 14px;
  }

  .company-card {
    margin-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
