:root {
  --brand-navy: #0b2035;
  --brand-navy-2: #153a5e;
  --brand-orange: #f26922;
  --brand-orange-dark: #d95512;
  --page-bg: #f4f6f8;
  --card-bg: #ffffff;
  --text: #111b25;
  --muted: #5f6d7a;
  --line: #dbe1e7;
  --soft-blue: #eaf0f5;
  --soft-orange: #fff0e7;
  --success: #17633a;
  --danger: #a12a22;
  --font-body: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-heading: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-button: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-size-base: 17px;
  --font-size-small: 13px;
  --font-size-h1: 96px;
  --font-size-h2: 54px;
  --radius: 24px;
  --radius-sm: 14px;
  --section-y: 112px;
  --container: 1240px;
  --header-height: 82px;
  --shadow-sm: 0 10px 30px rgba(11, 32, 53, 0.08);
  --shadow-lg: 0 30px 90px rgba(11, 32, 53, 0.18);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-size-adjust: 100%;
}

html.__sos_builder_booting body {
  opacity: 0;
}

html.__sos_builder_ready body {
  opacity: 1;
  transition: opacity 0.22s ease;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 7.5vw, var(--font-size-h1));
}

h2 {
  font-size: clamp(2.35rem, 5vw, var(--font-size-h2));
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--brand-orange);
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid rgba(242, 105, 34, 0.58);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  border-radius: 10px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

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

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

.container--narrow {
  width: min(880px, calc(100% - 56px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--white {
  background: var(--card-bg);
}

.section--navy {
  overflow: hidden;
  background: var(--brand-navy);
  color: #ffffff;
}

.section--navy h2,
.section--navy h3,
.section--navy p,
.section--navy li {
  color: inherit;
}

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

.section--compact {
  padding-block: 72px;
}

.section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 840px;
  margin-bottom: 0;
}

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

.section-heading--single {
  display: block;
  max-width: 810px;
}

.section-heading--single p {
  max-width: 680px;
}

.text-orange {
  color: var(--brand-orange);
}

.text-muted {
  color: var(--muted);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  width: 42px;
  height: 2px;
  background: currentColor;
  content: "";
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--brand-orange);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-button);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 15px 22px;
  text-decoration: none;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.button::after {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--brand-orange-dark);
  box-shadow: 0 14px 32px rgba(242, 105, 34, 0.24);
}

.button--navy {
  background: var(--brand-navy);
}

.button--navy:hover {
  background: var(--brand-navy-2);
  box-shadow: 0 14px 32px rgba(11, 32, 53, 0.22);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
}

.button--ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: none;
}

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--brand-navy);
}

.button--outline:hover {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: #ffffff;
  box-shadow: none;
}

.button--small {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.topbar {
  position: relative;
  z-index: 101;
  background: var(--brand-navy);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.topbar__message::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 5px rgba(242, 105, 34, 0.13);
  content: "";
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
}

.topbar a:hover {
  color: #ffd5bd;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 225, 231, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background-color 0.24s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(11, 32, 53, 0.1);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  width: 210px;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: 100%;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  justify-self: end;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__list > li {
  margin: 0;
}

.main-nav__list a {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 10px;
  color: #2f3e4c;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 11px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav__list a:hover,
.main-nav__list a[aria-current="page"] {
  background: var(--soft-orange);
  color: var(--brand-orange-dark);
}

.header-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 0;
  border-radius: 12px;
  background: var(--brand-navy);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: relative;
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle__lines::before {
  position: absolute;
  top: -7px;
}

.nav-toggle__lines::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 38px - var(--header-height));
  overflow: hidden;
  background: var(--brand-navy);
  color: #ffffff;
  isolation: isolate;
}

.hero__media,
.hero__media::after,
.hero__geometry {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero__media::after {
  background:
    linear-gradient(90deg, rgba(5, 19, 33, 0.94) 0%, rgba(5, 19, 33, 0.78) 42%, rgba(5, 19, 33, 0.28) 76%, rgba(5, 19, 33, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 19, 33, 0.48), transparent 55%);
  content: "";
}

.hero__geometry {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 45%, transparent 78%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 780px) 1fr;
  align-items: center;
  gap: 50px;
  padding-block: 90px 76px;
}

.hero__content {
  max-width: 800px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 26px;
  color: #ffffff;
}

.hero .lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
}

.hero__proof {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  width: min(680px, 52vw);
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.hero__proof-item {
  position: relative;
  min-height: 142px;
  padding: 28px 30px;
}

.hero__proof-item + .hero__proof-item {
  border-left: 1px solid var(--line);
}

.hero__proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero__proof span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.42;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: max(28px, calc((100vw - var(--container)) / 2));
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll::before {
  width: 2px;
  height: 42px;
  background: linear-gradient(var(--brand-orange) 0 55%, rgba(255, 255, 255, 0.25) 55% 100%);
  content: "";
}

.trust-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-strip__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
  padding: 24px 28px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
}

.trust-strip__item::before {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--brand-orange);
  content: "";
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  padding: 34px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-of-type(1),
.service-card:nth-of-type(6) {
  grid-column: span 6;
}

.service-card:nth-of-type(2),
.service-card:nth-of-type(3),
.service-card:nth-of-type(4),
.service-card:nth-of-type(5) {
  grid-column: span 3;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 105, 34, 0.48);
  box-shadow: var(--shadow-lg);
}

.service-card__index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--soft-orange);
  color: var(--brand-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 46px 0 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card__bottom {
  margin-top: 26px;
}

.service-card--feature {
  min-height: 460px;
  border: 0;
  color: #ffffff;
}

.service-card--feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 24, 41, 0.9) 0%, rgba(7, 24, 41, 0.15) 72%);
  content: "";
}

.service-card--feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card--feature > *:not(img) {
  position: relative;
  z-index: 1;
}

.service-card--feature h3,
.service-card--feature p,
.service-card--feature .text-link {
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 88px;
  align-items: center;
}

.about-collage {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1.05fr 0.95fr;
  gap: 16px;
}

.about-collage__item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-collage__item:first-child {
  grid-row: 1 / 3;
}

.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-collage__item:hover img {
  transform: scale(1.045);
}

.about-collage__note {
  position: absolute;
  right: -24px;
  bottom: 56px;
  width: 220px;
  border-radius: 18px;
  background: var(--brand-orange);
  color: #ffffff;
  padding: 28px;
  box-shadow: 0 24px 55px rgba(242, 105, 34, 0.3);
}

.about-collage__note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 2.4rem;
  line-height: 1;
}

.about-collage__note span {
  font-size: 0.82rem;
  font-weight: 700;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy .lead {
  margin-bottom: 22px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #334454;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-orange);
  color: var(--brand-orange-dark);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 290px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 42px 30px 30px 0;
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--brand-navy);
  border-radius: 50%;
  background: var(--brand-orange);
  content: "";
}

.process-step::after {
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.process-step__number {
  display: block;
  margin-bottom: 62px;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.35rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.projects-preview {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-template-rows: 330px 260px;
  gap: 18px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-navy);
  color: #ffffff;
}

.project-tile:first-of-type {
  grid-row: 1 / 3;
}

.project-tile:nth-of-type(4) {
  grid-column: 2 / 4;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 34, 0.9), rgba(6, 20, 34, 0.05) 62%);
  content: "";
}

.project-tile__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.project-tile__category {
  display: block;
  margin-bottom: 8px;
  color: #ffc9a9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-tile h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.project-tile:hover img {
  transform: scale(1.055);
}

.project-tile:hover .project-tile__content {
  transform: translateY(0);
}

.guarantee-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 32px;
  background: var(--brand-navy);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.guarantee-panel__visual {
  position: relative;
  min-height: 510px;
}

.guarantee-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guarantee-panel__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, var(--brand-navy));
  content: "";
}

.guarantee-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 70px 64px 30px;
}

.guarantee-panel h2 {
  margin-bottom: 24px;
  color: #ffffff;
}

.guarantee-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.guarantee-panel__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.guarantee-panel__point {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.guarantee-panel__point strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.92rem;
}

.guarantee-panel__point span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(242, 105, 34, 0.45);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  cursor: pointer;
  color: var(--brand-navy);
  font-weight: 800;
  padding: 22px 64px 22px 26px;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  right: 24px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--soft-orange);
  color: var(--brand-orange-dark);
  content: "+";
  font-size: 1.2rem;
  line-height: 27px;
  text-align: center;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-width: 850px;
  color: var(--muted);
  padding: 0 64px 26px 26px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--brand-orange);
  color: #ffffff;
}

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

.cta-band::before {
  top: -240px;
  right: -110px;
  width: 520px;
  height: 520px;
}

.cta-band::after {
  right: 60px;
  bottom: -260px;
  width: 420px;
  height: 420px;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding-block: 86px;
}

.cta-band h2 {
  max-width: 850px;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-band p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.cta-band .button {
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: 0 16px 40px rgba(90, 34, 5, 0.18);
}

.cta-band .button:hover {
  background: var(--brand-navy);
  color: #ffffff;
}

.page-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--brand-navy);
  color: #ffffff;
  isolation: isolate;
}

.page-hero__media,
.page-hero__media::after {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  background:
    linear-gradient(90deg, rgba(5, 19, 33, 0.93) 0%, rgba(5, 19, 33, 0.72) 48%, rgba(5, 19, 33, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 19, 33, 0.35), transparent 65%);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-width: 840px;
  flex-direction: column;
  justify-content: center;
  padding-block: 90px;
}

.page-hero h1 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumbs span:not(:last-child)::after,
.breadcrumbs a::after {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
  content: "/";
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 82px;
  align-items: start;
}

.story-layout__visual {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.story-layout__visual img {
  width: 100%;
  min-height: 680px;
  object-fit: cover;
}

.story-layout__content h2 {
  margin-bottom: 28px;
}

.story-layout__content p {
  color: var(--muted);
}

.story-quote {
  margin: 42px 0;
  border-left: 5px solid var(--brand-orange);
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.25;
  padding: 4px 0 4px 28px;
}

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

.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 32px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.value-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--soft-orange);
  color: var(--brand-orange-dark);
  font-size: 1.3rem;
  font-weight: 900;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 130px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 52px;
  padding: 0 0 52px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__year {
  color: var(--brand-orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-item__content {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
}

.timeline-item__content::before {
  position: absolute;
  top: 27px;
  left: -34px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--page-bg);
  border-radius: 50%;
  background: var(--brand-orange);
  content: "";
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--muted);
}

.service-catalog {
  display: grid;
  gap: 22px;
}

.service-group {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.service-group__visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.service-group__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.service-group:hover .service-group__visual img {
  transform: scale(1.04);
}

.service-group__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 50px;
}

.service-group__index {
  margin-bottom: 30px;
  color: var(--brand-orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-group h2,
.service-group h3 {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
}

.service-group__body > p {
  color: var(--muted);
}

.service-group__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-group__items li {
  position: relative;
  color: #3c4d5d;
  font-size: 0.9rem;
  font-weight: 700;
  padding-left: 22px;
}

.service-group__items li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--brand-orange);
  content: "";
}

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

.additional-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 30px;
}

.additional-card__number {
  display: block;
  margin-bottom: 52px;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 800;
}

.additional-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
}

.additional-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.gallery-filter {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--brand-navy);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 10px 16px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-navy);
  color: #ffffff;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card:nth-of-type(7n + 1),
.gallery-card:nth-of-type(7n + 5) {
  grid-row: span 2;
  min-height: 620px;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 34, 0.9), transparent 58%);
  content: "";
}

.gallery-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
}

.gallery-card__category {
  display: block;
  margin-bottom: 8px;
  color: #ffc9a9;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.lightbox {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  border: 0;
  border-radius: 22px;
  background: #0a1724;
  color: #ffffff;
  padding: 0;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.lightbox::backdrop {
  background: rgba(2, 10, 18, 0.87);
  backdrop-filter: blur(8px);
}

.lightbox__image {
  width: 100%;
  max-height: calc(100svh - 180px);
  object-fit: contain;
  background: #07111b;
}

.lightbox__caption {
  padding: 20px 70px 22px 24px;
}

.lightbox__caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.lightbox__caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(7, 17, 27, 0.76);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-principle {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 40px;
}

.trust-principle__number {
  display: block;
  margin-bottom: 72px;
  color: var(--brand-orange-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.trust-principle h3 {
  margin-bottom: 13px;
}

.trust-principle p {
  color: var(--muted);
}

.trust-principle::after {
  position: absolute;
  top: -44px;
  right: -44px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  border-radius: var(--radius);
  background: var(--brand-navy);
  color: #ffffff;
  padding: 42px;
  box-shadow: var(--shadow-lg);
}

.contact-card h2,
.contact-card h3 {
  color: #ffffff;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-list__item:hover {
  border-color: rgba(242, 105, 34, 0.72);
  background: rgba(255, 255, 255, 0.085);
}

.contact-list__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 1.15rem;
}

.contact-list__item small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list__item strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.form-card__head {
  margin-bottom: 32px;
}

.form-card__head h2,
.form-card__head h3 {
  margin-bottom: 12px;
}

.form-card__head p {
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 20px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  color: var(--brand-navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd4dd;
  border-radius: 12px;
  background: #fbfcfd;
  color: var(--text);
  padding: 14px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(242, 105, 34, 0.12);
  outline: 0;
}

.form-field small {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-orange);
}

.form-checkbox a {
  color: var(--brand-navy);
  font-weight: 800;
}

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

.form-status {
  min-height: 24px;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 12px;
  background: var(--soft-blue);
  color: #435462;
  font-size: 0.76rem;
  padding: 14px 16px;
}

.quote-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: start;
}

.quote-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
}

.quote-benefit__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--soft-orange);
  color: var(--brand-orange-dark);
  font-weight: 900;
}

.quote-benefit strong {
  display: block;
  color: var(--brand-navy);
  font-size: 0.88rem;
}

.quote-benefit span {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #071725;
  color: #ffffff;
}

.site-footer::before {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 64px;
  padding-block: 76px 62px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 0.84rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  border-radius: 17px;
  background: #20b75a;
  color: #ffffff;
  padding: 12px 17px 12px 13px;
  box-shadow: 0 16px 42px rgba(15, 95, 48, 0.32);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 95, 48, 0.38);
}

.whatsapp-float__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.1rem;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

@media (max-width: 1120px) {
  :root {
    --section-y: 92px;
  }

  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
  }

  .site-logo {
    width: 190px;
  }

  .main-nav__list a {
    font-size: 0.76rem;
    padding-inline: 8px;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero__proof {
    width: min(620px, 58vw);
  }

  .service-card:nth-of-type(2),
  .service-card:nth-of-type(3),
  .service-card:nth-of-type(4),
  .service-card:nth-of-type(5) {
    grid-column: span 6;
  }

  .about-grid,
  .story-layout {
    gap: 54px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }

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

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
    --section-y: 82px;
  }

  .container,
  .container--narrow {
    width: min(100% - 36px, var(--container));
  }

  .topbar__links a:first-child {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(160px, 210px) 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: calc(38px + var(--header-height));
    right: 0;
    left: 0;
    z-index: 99;
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 50px rgba(11, 32, 53, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.34s ease, opacity 0.22s ease, visibility 0.22s ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - 112px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .main-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    padding: 18px;
  }

  .main-nav__list a {
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.98rem;
    padding: 14px 8px;
  }

  .main-nav__list a::after {
    color: var(--brand-orange);
    content: "/";
  }

  .main-nav__list a:hover,
  .main-nav__list a[aria-current="page"] {
    background: transparent;
  }

  .hero {
    min-height: 830px;
  }

  .hero__media::after {
    background: linear-gradient(90deg, rgba(5, 19, 33, 0.93), rgba(5, 19, 33, 0.58));
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 105px 240px;
  }

  .hero__proof {
    width: calc(100% - 36px);
    right: 18px;
    bottom: 18px;
  }

  .hero__proof-item {
    min-height: 124px;
    padding: 23px 20px;
  }

  .hero__scroll {
    display: none;
  }

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

  .about-grid,
  .story-layout,
  .contact-layout,
  .quote-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-collage {
    min-height: 580px;
  }

  .about-collage__note {
    right: 20px;
  }

  .story-layout__visual {
    position: relative;
    top: auto;
  }

  .story-layout__visual img {
    min-height: 520px;
  }

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

  .projects-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 340px 260px 260px;
  }

  .project-tile:first-of-type {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .project-tile:nth-of-type(4) {
    grid-column: auto;
  }

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

  .guarantee-panel__visual {
    min-height: 420px;
  }

  .guarantee-panel__visual::after {
    background: linear-gradient(0deg, var(--brand-navy), transparent 50%);
  }

  .guarantee-panel__content {
    padding: 0 44px 50px;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero {
    min-height: 520px;
  }

  .service-group {
    grid-template-columns: 1fr;
  }

  .service-group__visual {
    min-height: 340px;
  }

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

  .gallery-card:nth-of-type(7n + 1),
  .gallery-card:nth-of-type(7n + 5) {
    grid-row: auto;
    min-height: 460px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --font-size-base: 16px;
    --section-y: 68px;
    --radius: 20px;
  }

  .container,
  .container--narrow {
    width: min(100% - 28px, var(--container));
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__links {
    display: none;
  }

  .topbar__message {
    font-size: 0.69rem;
    text-align: center;
  }

  .site-header__inner {
    grid-template-columns: minmax(150px, 190px) 1fr auto;
    gap: 10px;
  }

  .site-logo {
    width: 180px;
  }

  .hero {
    min-height: 850px;
  }

  .hero__inner {
    padding-block: 76px 330px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.2vw, 4.1rem);
  }

  .hero .lead {
    font-size: 1.02rem;
  }

  .hero__proof {
    grid-template-columns: 1fr;
  }

  .hero__proof-item {
    display: grid;
    min-height: auto;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px 20px;
  }

  .hero__proof-item + .hero__proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero__proof strong {
    margin: 0;
    font-size: 1.8rem;
  }

  .trust-strip__track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .trust-strip__item {
    scroll-snap-align: start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-of-type(n) {
    grid-column: 1;
  }

  .service-card,
  .service-card--feature {
    min-height: 320px;
    padding: 28px;
  }

  .about-collage {
    min-height: 540px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr 0.75fr;
  }

  .about-collage__item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .about-collage__note {
    right: 10px;
    bottom: 118px;
    width: 190px;
    padding: 22px;
  }

  .process-grid,
  .value-grid,
  .additional-grid,
  .trust-principles,
  .guarantee-panel__points {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    padding-bottom: 36px;
  }

  .process-step__number {
    margin-bottom: 30px;
  }

  .projects-preview {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 330px);
  }

  .project-tile:first-of-type,
  .project-tile:nth-of-type(4) {
    grid-column: 1;
  }

  .guarantee-panel__visual {
    min-height: 330px;
  }

  .guarantee-panel__content {
    padding: 0 28px 36px;
  }

  .cta-band__inner {
    padding-block: 66px;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero__inner {
    padding-block: 70px;
  }

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

  .story-layout__visual img {
    min-height: 420px;
  }

  .timeline::before {
    left: 9px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 38px;
  }

  .timeline-item__year {
    text-align: left;
  }

  .timeline-item__content::before {
    top: 29px;
    left: -35px;
  }

  .service-group__body {
    padding: 32px 26px;
  }

  .service-group__items {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-of-type(7n + 1),
  .gallery-card:nth-of-type(7n + 5) {
    min-height: 430px;
  }

  .contact-card,
  .form-card {
    padding: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 60px 46px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 9px 12px;
  }

  .whatsapp-float__label {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-logo {
    width: 155px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .button-row .button {
    width: 100%;
  }

  .hero__inner {
    padding-top: 62px;
  }

  .about-collage {
    min-height: 470px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
