:root {
  --bg: #f4f7fb;
  --bg-elevated: rgba(255, 255, 255, 0.82);
  --bg-panel: #ffffff;
  --bg-panel-strong: #eef3f9;
  --surface: #ffffff;
  --surface-strong: #f7fafe;
  --border: rgba(13, 39, 79, 0.1);
  --border-strong: rgba(33, 92, 168, 0.22);
  --text: #0f223d;
  --muted: #5f6f84;
  --muted-strong: #30455f;
  --accent: #1f5fb9;
  --accent-strong: #0f4b9c;
  --accent-soft: rgba(31, 95, 185, 0.08);
  --gold: #9f8350;
  --success: #1f8c5f;
  --shadow-xl: 0 24px 64px rgba(23, 50, 88, 0.12);
  --shadow-md: 0 14px 34px rgba(23, 50, 88, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(48, 109, 189, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #f2f5f9 48%, #eef2f7 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 34, 61, 0.12);
  background: #ffffff;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(95, 111, 132, 0.75);
}

input:focus,
textarea:focus {
  border-color: rgba(31, 95, 185, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 95, 185, 0.1);
  background: #ffffff;
}

:focus-visible {
  outline: 2px solid rgba(31, 95, 185, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #08111e;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.site-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.7;
}

.site-bg__orb--left {
  top: 3rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(31, 95, 185, 0.09), transparent 72%);
}

.site-bg__orb--right {
  top: 26rem;
  right: -8rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(159, 131, 80, 0.08), transparent 72%);
}

.site-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 34, 61, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 34, 61, 0.028) 1px, transparent 1px);
  background-size: 132px 132px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 72%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 34, 61, 0.09), transparent);
  opacity: 0.5;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-head h1,
.section-head h2,
.hero h1,
.cta-card h2,
.risk-card h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  max-width: 9ch;
}

.section-head h2,
.cta-card h2,
.risk-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-head p,
.hero-text,
.cta-card p,
.risk-card p,
.card p,
.faq-item p,
.footer-brand p,
.footer-bottom p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f2543 0%, #17447f 100%);
  box-shadow: 0 14px 32px rgba(23, 68, 127, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(23, 68, 127, 0.22);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(15, 34, 61, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary:hover {
  border-color: rgba(15, 34, 61, 0.2);
  background: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0 0;
}

.header-bar {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 34, 61, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled .header-bar {
  border-color: rgba(15, 34, 61, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
}

.brand-logo--header {
  height: clamp(2.1rem, 8vw, 2.9rem);
}

.brand-logo--footer {
  height: clamp(2.7rem, 7vw, 3.35rem);
}

.brand--footer {
  margin-bottom: 1rem;
}

.menu-toggle {
  position: relative;
  justify-self: end;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 34, 61, 0.1);
  background: #ffffff;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.site-nav {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
}

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  color: var(--muted);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(15, 34, 61, 0.05);
  color: var(--accent-strong);
}

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

.header-cta {
  display: none;
}

.hero {
  padding-top: 2.75rem;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(15, 34, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-trust {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-card,
.card,
.cta-card,
.risk-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.trust-card {
  padding: 1.25rem 1.2rem;
}

.trust-card__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.hero-visual {
  position: relative;
}

.visual-shell {
  position: relative;
  min-height: 420px;
}

.briefing-panel__top,
.briefing-list span,
.briefing-note span,
.metric-card span,
.contact-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.visual-shell--corporate {
  display: grid;
  gap: 1rem;
}

.briefing-panel {
  padding: 1.5rem;
  border: 1px solid rgba(15, 34, 61, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98));
  box-shadow: var(--shadow-xl);
}

.editorial-image,
.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 34, 61, 0.08);
  border-radius: 24px;
  background: #ffffff;
}

.editorial-image img,
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image--hero {
  aspect-ratio: 16 / 9;
  margin-top: 1.2rem;
  border-radius: 22px;
}

.briefing-panel__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.briefing-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 34, 61, 0.05);
  color: var(--accent-strong);
  font-weight: 700;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.status-dot::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(31, 140, 95, 0.08);
}

.briefing-panel__body {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0;
}

.briefing-metric {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 34, 61, 0.08);
  border-radius: 18px;
  background: #f8fafc;
}

.briefing-metric span {
  color: var(--muted);
  font-size: 0.82rem;
}

.briefing-metric strong,
.briefing-list strong,
.briefing-note strong,
.metric-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.briefing-panel__chart {
  padding: 1.25rem;
  border: 1px solid rgba(15, 34, 61, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(rgba(15, 34, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 34, 61, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f9fbfe, #f3f7fb);
  background-size: 44px 44px, 44px 44px, auto;
}

.briefing-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.8rem;
  min-height: 170px;
}

.briefing-bars span {
  height: var(--bar);
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(31, 95, 185, 0.8), rgba(31, 95, 185, 0.28));
}

.briefing-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.briefing-list > div {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 34, 61, 0.08);
}

.briefing-note {
  max-width: 22rem;
  margin-left: auto;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 34, 61, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.photo-card {
  box-shadow: var(--shadow-md);
}

.photo-card img {
  aspect-ratio: 4 / 5;
}

.photo-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-image--inline {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.1rem;
}

.about-grid,
.trust-layout,
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-aside {
  display: grid;
  gap: 1.25rem;
}

.info-panel,
.metric-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.info-panel h3,
.metric-card strong,
.card h3,
.faq-item summary,
.footer-links h3,
.contact-form h3 {
  margin-top: 0;
  letter-spacing: -0.03em;
}

.feature-list,
.risk-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted-strong);
}

.feature-list li,
.risk-list li {
  margin-bottom: 0.7rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.advantage-card,
.process-step {
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.service-card::before,
.advantage-card::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(31, 95, 185, 0.85), rgba(159, 131, 80, 0.45));
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-card:hover,
.advantage-card:hover,
.process-step:hover,
.contact-card:hover,
.map-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.service-card:hover::before,
.advantage-card:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 34, 61, 0.1);
  background: #f4f7fb;
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-box path {
  fill: none;
  stroke: var(--accent-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.advantage-card h3,
.service-card h3,
.process-step h3 {
  margin-bottom: 0.75rem;
}

.step-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.trust-layout {
  align-items: start;
}

.trust-content {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 2rem;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  color: var(--accent-strong);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-bottom: 0;
}

.section-risk {
  padding-top: 1rem;
}

.risk-card {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-color: rgba(159, 131, 80, 0.18);
  background:
    linear-gradient(180deg, rgba(159, 131, 80, 0.05), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.risk-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  align-items: start;
}

.risk-intro {
  margin: 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.78;
}

.risk-list {
  margin-top: 0;
  padding: 1.1rem 1.15rem 0 1.9rem;
  border-left: 1px solid rgba(15, 34, 61, 0.08);
}

.cta-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-color: rgba(31, 95, 185, 0.16);
  background:
    radial-gradient(circle at top right, rgba(31, 95, 185, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.98)),
    #ffffff;
}

.contact-layout {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-card,
.map-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.contact-item + .contact-item {
  margin-top: 1rem;
}

.contact-item a,
.contact-item p {
  margin: 0.35rem 0 0;
  color: var(--text);
}

.map-card {
  min-height: 260px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 220px;
  text-align: center;
  border-radius: 18px;
  border: 1px dashed rgba(15, 34, 61, 0.14);
  background:
    linear-gradient(135deg, rgba(31, 95, 185, 0.08), transparent 55%),
    linear-gradient(225deg, rgba(159, 131, 80, 0.05), transparent 45%);
}

.map-placeholder strong {
  font-size: 1.1rem;
}

.map-placeholder span {
  color: var(--muted);
}

.map-pin {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 10px rgba(31, 95, 185, 0.1);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 92%;
  width: 0.5rem;
  height: 0.9rem;
  background: var(--accent-strong);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form button {
  margin-top: 0.45rem;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(15, 34, 61, 0.08);
  background: #112641;
  color: #f5f8fc;
}

.footer-layout {
  display: grid;
  gap: 2rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.site-footer .footer-brand p {
  color: rgba(223, 230, 240, 0.76);
}

.footer-links a,
.footer-links p {
  color: rgba(223, 230, 240, 0.76);
  margin: 0;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(223, 230, 240, 0.76);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-main {
  padding: 7.5rem 0 4.5rem;
}

.legal-wrap {
  display: grid;
  gap: 1.5rem;
}

.legal-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.legal-card h2 {
  margin: 2rem 0 0.8rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

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

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
  color: var(--muted-strong);
}

@media (min-width: 720px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    grid-column: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .header-cta {
    display: inline-flex;
  }

  .brand-logo--header {
    height: 2.65rem;
  }

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

  .hero-trust,
  .services-grid,
  .advantages-grid,
  .process-grid,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card,
  .risk-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }

  .cta-card {
    grid-template-columns: minmax(0, 1.7fr) auto;
  }
}

@media (max-width: 719px) {
  .risk-list {
    padding: 1rem 0 0 1.2rem;
    border-left: 0;
    border-top: 1px solid rgba(15, 34, 61, 0.08);
  }
}

@media (min-width: 960px) {
  .section {
    padding: 6.5rem 0;
  }

  .hero-layout,
  .about-grid,
  .contact-layout,
  .trust-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
  }

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

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

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

  .brand-logo--header {
    height: 2.9rem;
  }

  .brand-logo--footer {
    height: 3.5rem;
  }

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

  .footer-layout {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  }
}

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

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

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