:root {
  --blue: #2f6cb2;
  --blue-dark: #193a62;
  --orange: #c9a15f;
  --orange-soft: #f1e0bf;
  --text: #142033;
  --muted: #66758a;
  --soft: #f5f7fa;
  --line: #d7dfeb;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 24, 41, 0.1);
  --shadow-soft: 0 12px 28px rgba(11, 24, 41, 0.07);
  --shadow-luxe: 0 24px 52px rgba(10, 20, 34, 0.16);
  --hero-dark: #0f1d2f;
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-muted: #f9fbfd;
  --surface-warm: #f7f4ef;
  --surface-card: linear-gradient(180deg, #ffffff, #f8fafc);
  --surface-panel: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72));
  --line-strong: rgba(215, 223, 235, 0.9);
  --line-soft: rgba(255, 255, 255, 0.38);
  --header-text: #2a374b;
  --input-bg: #ffffff;
  --input-line: #cfd9e6;
  --contact-panel: linear-gradient(180deg, #ffffff, #f9fbfd);
  --form-panel: radial-gradient(circle at top right, rgba(201, 161, 95, 0.08), transparent 24%), linear-gradient(180deg, #f5f7fa, #ffffff);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(201, 210, 225, 0.56);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(12, 24, 38, 0.08);
  backdrop-filter: blur(14px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 46px;
  flex: 0 0 112px;
  overflow: visible;
}

.brand-logo {
  width: auto;
  max-height: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 6px 14px rgba(12, 18, 30, 0.08));
  transform-origin: center;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: scale(1.02);
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 10px 18px rgba(12, 18, 30, 0.12));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.02rem;
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: var(--heading);
  text-wrap: balance;
}

.brand-copy small {
  color: #627088;
  font-size: 0.76rem;
  line-height: 1.08;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--header-text);
  font-weight: 700;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #213149;
  transition: color 0.22s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 180, 122, 0.12), rgba(181, 133, 65, 0.88), rgba(216, 180, 122, 0.12));
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--orange);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e1c289, #bc8a43 58%, #a77635);
  color: white !important;
  border: 1px solid rgba(181, 133, 65, 0.22);
  box-shadow: 0 14px 30px rgba(181, 133, 65, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(181, 133, 65, 0.3);
  filter: saturate(1.05) brightness(1.02);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section,
.urgent-block,
.footer {
  width: min(1140px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: clamp(640px, 86vh, 920px);
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--hero-dark);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(201, 161, 95, 0.18), transparent 32%),
    linear-gradient(94deg, rgba(8, 15, 24, 0.78) 0%, rgba(10, 19, 31, 0.6) 34%, rgba(10, 21, 33, 0.26) 66%, rgba(10, 21, 33, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 14, 24, 0.08), rgba(7, 14, 24, 0.18));
  pointer-events: none;
}

.hero picture,
.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scaleX(-1);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(1140px, calc(100% - 36px));
  min-height: inherit;
  margin-inline: auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.hero-copy {
  max-width: 700px;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
}

.kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-benefits {
  color: var(--orange-soft);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-impact {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.14rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.button-primary {
  background: linear-gradient(135deg, #d5b27c, #b88642);
  color: white;
  box-shadow: 0 18px 30px rgba(181, 133, 65, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #deb983, #a8742d);
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(181, 133, 65, 0.3);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-light:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: clamp(28px, 6vw, 62px);
  max-width: 340px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--orange);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 29, 46, 0.72), rgba(12, 22, 36, 0.58));
  color: var(--white);
  box-shadow: var(--shadow-luxe);
  backdrop-filter: blur(14px);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.trust-line {
  width: min(1140px, calc(100% - 36px));
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--surface-warm), var(--surface-soft));
  color: #4d5566;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(22, 34, 51, 0.04);
}

.trust-badges-section {
  padding-top: 34px;
  padding-bottom: 24px;
}

.trust-badges-title {
  margin-bottom: 20px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-card);
  color: #40506a;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.trust-badges-section {
  padding-top: 34px;
  padding-bottom: 24px;
}

.trust-badges-title {
  margin-bottom: 20px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-card);
  color: #40506a;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 78px 0;
  position: relative;
}

.services-section,
.process-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1140px) / 2));
  background:
    radial-gradient(circle at top center, rgba(201, 161, 95, 0.08), transparent 28%),
    linear-gradient(180deg, var(--surface-soft), var(--surface-muted));
}

.why-section,
.proof-section,
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(47, 108, 178, 0.04), transparent 24%),
    radial-gradient(circle at bottom right, rgba(201, 161, 95, 0.05), transparent 22%);
  border-top: 1px solid rgba(215, 223, 235, 0.22);
}

#realisations {
  background:
    radial-gradient(circle at top center, rgba(201, 161, 95, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfcfe, #f5f7fa);
  border-top: 1px solid rgba(215, 223, 235, 0.26);
  border-bottom: 1px solid rgba(215, 223, 235, 0.2);
}

.section-title {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-title p,
.service-item p,
.why-list p,
.process-line p,
.contact-info p {
  color: var(--muted);
}

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

.service-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-item:hover,
.why-card:hover,
.work-grid figure:hover,
.process-line div:hover,
.proof-card:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxe);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6e3, #efdcaf);
  color: #9a6a24;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

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

.why-card {
  padding: 24px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.why-card:hover,
.service-item:hover {
  border-color: rgba(201, 161, 95, 0.42);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3db, #ebd4a4);
  color: #8d6427;
  font-weight: 900;
}

.why-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.why-card p {
  margin-bottom: 0;
}

.proof-section {
  padding-top: 24px;
}

.proof-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.proof-card {
  padding: 28px;
  border: 1px solid rgba(201, 161, 95, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(201, 161, 95, 0.16), transparent 24%),
    linear-gradient(135deg, #122136, #1c314d);
  box-shadow: var(--shadow-luxe);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.proof-card blockquote {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 1.58rem);
  font-weight: 800;
  line-height: 1.25;
}

.proof-author {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-weight: 700;
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-points span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-warm), var(--surface));
  color: #39455b;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.proof-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--orange);
  font-size: 0;
}

.proof-points span::before {
  content: "•";
  margin-right: 10px;
  color: var(--orange);
  font-size: 1.1rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proof-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--orange);
  color: transparent;
  font-size: 0;
}

.work-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(215, 223, 235, 0.72);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
  box-shadow: 0 18px 34px rgba(16, 29, 44, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.work-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(11, 24, 41, 0.14) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.work-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(17, 29, 46, 0.72);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.work-grid figure:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 161, 95, 0.42);
  box-shadow: 0 26px 48px rgba(12, 24, 38, 0.16);
}

.work-grid figure:hover::after {
  opacity: 1;
}

.work-grid img {
  width: 100%;
  height: clamp(175px, 17vw, 228px);
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.work-grid figure:hover img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

.work-card-left img {
  object-position: left center;
}

.work-card-center img {
  object-position: center center;
}

.work-card-right img {
  object-position: right center;
}

.work-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
  font-weight: 900;
}

.work-grid figcaption strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.work-grid figcaption span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-line div {
  padding: 22px 20px;
  border-top: 4px solid var(--orange);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.process-line span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9a6a24;
  font-weight: 900;
}

.urgent-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 72px;
  padding: 28px;
  border: 1px solid #ffd99b;
  border-left: 6px solid var(--orange);
  border-radius: 10px;
  background: #fff8eb;
}

.urgent-block p {
  margin-bottom: 0;
  color: #6a5130;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-note {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f7eddc;
  color: #8d6427 !important;
  font-weight: 900;
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #415168;
  font-weight: 800;
}

.contact-highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.contact-detail strong,
.contact-detail span,
.contact-detail a {
  display: block;
}

.contact-detail a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--form-panel);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contact-info {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--contact-panel);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--input-line);
  border-radius: 7px;
  background: var(--input-bg);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 134, 255, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[type="file"] {
  padding: 10px 12px;
  background: var(--surface);
}

.form-hidden {
  display: none !important;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.legal-hero {
  position: relative;
  padding: 58px 0 34px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  letter-spacing: -0.045em;
}

.legal-hero p:last-child {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid #cfd9e6;
  border-radius: 999px;
  background: var(--soft);
  color: #415168;
  font-size: 0.82rem;
  font-weight: 900;
}

.legal-content {
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.08);
}

.legal-intro {
  margin-bottom: 8px;
  padding: 20px;
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  background: #f0f6ff;
}

.legal-intro strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.legal-intro p {
  margin-bottom: 0;
}

.legal-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  border-top: 0;
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal-section p {
  margin-bottom: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer span:first-child {
  color: #415168;
  font-weight: 800;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-panel);
    box-shadow: var(--shadow-luxe);
    backdrop-filter: blur(14px);
  }

  body.menu-open .nav {
    display: grid;
  }

  .hero,
  .contact-section,
  .proof-shell {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .trust-badges,
  .why-list,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    max-height: 66px;
    height: 66px;
  }

  .brand-logo-shell {
    width: 88px;
    height: 40px;
    flex-basis: 88px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .hero {
    min-height: 84vh;
  }

  .hero::after {
    background:
      radial-gradient(circle at top center, rgba(201, 161, 95, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(8, 15, 24, 0.7) 0%, rgba(8, 15, 24, 0.48) 44%, rgba(8, 15, 24, 0.22) 100%);
  }

  .hero-banner {
    object-position: center bottom;
  }

  .hero-inner {
    width: min(100% - 36px, 1140px);
    padding: 44px 0 118px;
  }

  .hero-actions,
  .button,
  .urgent-block {
    width: 100%;
  }

  .hero-badge {
    left: 0;
    right: 0;
    bottom: 22px;
    max-width: none;
  }

  .button {
    justify-content: center;
  }

  .service-grid,
  .trust-badges,
  .why-list,
  .work-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .urgent-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-card,
  .proof-points span {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-info {
    padding: 22px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
