:root {
  --bg: #0c0f13;
  --bg-soft: #151a20;
  --bg-deep: #060709;
  --panel: rgba(18, 22, 27, 0.82);
  --panel-strong: rgba(22, 27, 33, 0.94);
  --line: rgba(213, 219, 225, 0.1);
  --line-strong: rgba(213, 219, 225, 0.18);
  --text: #f1f3f5;
  --muted: #a6adb5;
  --muted-strong: #d0d4d8;
  --accent: #c2ccd6;
  --accent-strong: #73808b;
  --accent-cool: #929eaa;
  --success: #b8d8ca;
  --accent-warm: #ddd7cf;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shadow-xl: 0 44px 120px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1240px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(166, 176, 188, 0.11), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(83, 91, 100, 0.18), transparent 20%),
    linear-gradient(180deg, #07080a 0%, #101318 42%, #060709 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 95%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10vw -16vh auto;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(170, 179, 188, 0.08) 0%, rgba(170, 179, 188, 0.025) 34%, transparent 68%);
  filter: blur(24px);
  opacity: 0.56;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.hero,
.section,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 24px 0 84px;
}

.hero--subpage {
  padding-bottom: 28px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid rgba(190, 204, 221, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.97), rgba(18, 22, 27, 0.92));
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: sticky;
  top: 14px;
  z-index: 20;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(188, 196, 204, 0.16), rgba(255, 255, 255, 0.02), rgba(132, 141, 150, 0.12));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: min(100%, 360px);
}

.brand-emblem {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 19px;
  border: 1px solid rgba(160, 184, 209, 0.16);
  background:
    radial-gradient(circle at 30% 30%, rgba(214, 220, 226, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(18, 22, 27, 0.96), rgba(10, 12, 16, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(184, 191, 198, 0.12));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.button,
.eyebrow,
.service-index,
.timeline-item span,
.footer p {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #f0f1f2;
}

.brand-copy small,
.footer-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
  margin-left: 4px;
  border-left: 1px solid rgba(183, 199, 219, 0.12);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(183, 199, 219, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.language-switcher a.is-current {
  background: rgba(202, 208, 214, 0.1);
  border-color: rgba(202, 208, 214, 0.22);
  text-decoration: none;
}

.mobile-language-slot {
  display: none;
}

.nav-links a {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: var(--text);
}

.nav-links a.is-current {
  text-decoration: underline;
  text-underline-offset: 0.4em;
  text-decoration-color: rgba(205, 210, 216, 0.44);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 22px;
  min-height: 74vh;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(190, 197, 204, 0.08), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(109, 118, 126, 0.12), transparent 22%),
    radial-gradient(circle at 52% 120%, rgba(44, 51, 58, 0.34), transparent 38%),
    linear-gradient(115deg, rgba(10, 12, 15, 0.94) 0%, rgba(18, 22, 27, 0.82) 46%, rgba(22, 27, 33, 0.46) 100%),
    radial-gradient(circle at 78% 24%, rgba(171, 178, 186, 0.11), transparent 18%),
    radial-gradient(circle at 82% 58%, rgba(255, 255, 255, 0.045), transparent 16%),
    linear-gradient(135deg, #13171c 0%, #0e1217 46%, #08090c 100%);
  border: 1px solid rgba(180, 196, 214, 0.14);
  box-shadow:
    var(--shadow-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 88px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.014) 0,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px,
      transparent 88px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at 84% 28%, rgba(194, 204, 214, 0.08), transparent 14%),
    url("assets/logo-shield.png") no-repeat right 6% center / min(34vw, 420px);
  opacity: 0.13;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: min(40vw, 520px);
  height: min(40vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(circle, rgba(178, 186, 194, 0.14) 0%, rgba(178, 186, 194, 0.035) 34%, transparent 66%),
    conic-gradient(from 120deg, rgba(139, 148, 156, 0.06), transparent 34%, rgba(139, 148, 156, 0.03) 58%, transparent 82%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-copy,
.service-card,
.about-card,
.contact-card,
.timeline-item,
.intro-grid article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 56px 32px;
  border-radius: 0;
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.hero-copy h1 {
  max-width: none;
  width: 100%;
  text-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-copy h1 span {
  display: inline;
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 7.2vw, 6.3rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 11.2ch;
}

h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #d8dadd 38%, #aab2ba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 66ch;
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(224, 232, 240, 0.9);
  overflow-wrap: anywhere;
}

.hero-aside {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-width: 0;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 56px 56px;
}

.hero-panel {
  width: min(100%, 560px);
  align-self: end;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(183, 199, 219, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 24, 40, 0.84), rgba(6, 15, 25, 0.92)),
    radial-gradient(circle at top right, rgba(142, 216, 255, 0.12), transparent 28%);
  backdrop-filter: blur(18px);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-panel__eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel__display {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px 22px 22px 54px;
  border-radius: 24px;
  border: 1px solid rgba(183, 199, 219, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.hero-panel__display::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-panel__signal {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #c8fff0 0%, #7ef0c4 68%, rgba(126, 240, 196, 0.12) 100%);
  box-shadow: 0 0 18px rgba(126, 240, 196, 0.42);
}

.hero-panel__display strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.hero-panel__display small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-kpis article {
  min-height: 148px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(183, 199, 219, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.hero-kpis strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.hero-kpis span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-specs span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183, 199, 219, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(223, 231, 240, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #f0f1f2 0%, #cbced2 46%, #8d969f 100%);
  color: #0c0f13;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 34px rgba(42, 46, 52, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(40, 44, 49, 0.28);
}

.button--secondary,
.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.button--secondary:hover,
.button--ghost:hover,
.button--secondary:focus-visible,
.button--ghost:focus-visible {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-services span {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(188, 202, 218, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  color: rgba(223, 231, 240, 0.9);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.hero-services a {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(188, 202, 218, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(223, 231, 240, 0.9);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-services a:hover,
.hero-services a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198, 205, 212, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-trust span {
  position: relative;
  min-width: 0;
  padding: 14px 18px 14px 40px;
  border-radius: 18px;
  border: 1px solid rgba(183, 199, 219, 0.12);
  background:
    linear-gradient(180deg, rgba(22, 27, 33, 0.88), rgba(12, 15, 19, 0.76)),
    radial-gradient(circle at top left, rgba(210, 216, 222, 0.07), transparent 34%);
  color: rgba(232, 239, 246, 0.92);
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-trust span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #ece7df 0%, #c0c7cf 65%, rgba(192, 199, 207, 0.14) 100%);
  box-shadow: 0 0 12px rgba(192, 199, 207, 0.26);
}

.subpage-hero {
  position: relative;
  margin-top: 34px;
  padding: 54px 48px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(180, 196, 214, 0.12);
  background:
    linear-gradient(90deg, rgba(5, 13, 22, 0.9), rgba(6, 15, 25, 0.64)),
    radial-gradient(circle at right center, rgba(124, 201, 244, 0.16), transparent 24%),
    linear-gradient(135deg, #0b1623 0%, #07111c 46%, #04090f 100%);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.subpage-hero h1 {
  max-width: min(100%, 15ch);
  text-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.subpage-hero h1 span {
  display: inline;
}

.subpage-hero .hero-text {
  max-width: min(100%, 58ch);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/logo-shield.png") no-repeat right 44px center / 200px;
  opacity: 0.06;
  pointer-events: none;
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
}

.offer-grid {
  display: grid;
  gap: 18px;
}

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

.service-detail {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 27, 33, 0.96), rgba(12, 15, 19, 0.88));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-detail::before,
.about-card::before,
.contact-card::before,
.cta-band::before,
.faq-item::before,
.intro-grid article::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 18%);
  pointer-events: none;
}

.service-detail::after,
.about-card::after,
.contact-card::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 191, 198, 0.07), transparent 66%);
  pointer-events: none;
}

.service-detail__top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-bottom: 22px;
}

.service-detail__intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.service-detail__list {
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(183, 199, 219, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.018));
}

.service-detail__list h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  margin-bottom: 14px;
}

.service-detail__list ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 30px;
}

.service-detail__list li {
  break-inside: avoid;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.offer-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 27, 33, 0.96), rgba(12, 15, 19, 0.88));
  box-shadow: var(--shadow);
}

.offer-card__head {
  margin-bottom: 14px;
}

.offer-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.offer-lead {
  max-width: 70ch;
  margin: 0 0 18px;
  color: rgba(224, 232, 240, 0.88);
  font-size: 1.02rem;
  line-height: 1.8;
}

.offer-card ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 40px;
}

.offer-card li {
  break-inside: avoid;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.offer-detail {
  scroll-margin-top: 110px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.detail-intro,
.detail-panels article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(22, 27, 33, 0.96), rgba(12, 15, 19, 0.88));
  box-shadow: var(--shadow);
}

.detail-intro {
  padding: 34px;
}

.detail-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.detail-intro p:last-child {
  margin: 0;
  color: rgba(224, 232, 240, 0.84);
  line-height: 1.85;
  font-size: 1.02rem;
}

.detail-panels {
  display: grid;
  gap: 18px;
}

.detail-panels article {
  padding: 30px;
}

.detail-panels h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  margin-bottom: 16px;
}

.detail-panels ul {
  margin: 0;
  padding-left: 18px;
}

.detail-panels li {
  color: var(--muted);
  line-height: 1.8;
}

.detail-panels li + li {
  margin-top: 10px;
}

.service-index {
  display: inline-block;
  color: #b5bec7;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.intro-grid p,
.service-card li,
.timeline-item p,
.about-points p,
.contact-card p,
.contact-card small {
  color: var(--muted);
  line-height: 1.7;
}

.about-points p {
  margin: 0;
}

.section {
  padding: 56px 0 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2 {
  max-width: 14ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.intro-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.service-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.intro-grid strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

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

.service-card h3,
.timeline-item h3,
.contact-card h2 {
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-card li + li {
  margin-top: 10px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 26px;
  border-radius: var(--radius-lg);
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline-item span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(218, 222, 226, 0.14), rgba(123, 131, 138, 0.12));
  color: var(--text);
}

.about-card,
.contact-card {
  border-radius: var(--radius-xl);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.about-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.about-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(18, 22, 27, 0.96), rgba(14, 18, 23, 0.88)),
    radial-gradient(circle at 82% 36%, rgba(188, 196, 204, 0.08), transparent 26%),
    radial-gradient(circle at 12% 112%, rgba(88, 96, 105, 0.18), transparent 38%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-band > :first-child {
  max-width: 40rem;
}

.cta-band h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.cta-band__actions .button,
.cta-band__actions .button--secondary,
.cta-band__actions .button--ghost {
  width: 100%;
  min-height: 56px;
}

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

.faq-item {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  color: var(--text);
  position: relative;
  padding-right: 28px;
}

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

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

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

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-details {
  display: grid;
}

.contact-details {
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form.is-sent .contact-form__grid,
.contact-form.is-sent > label,
.contact-form.is-sent .contact-form__actions,
.contact-form.is-sent .contact-form__status {
  display: none;
}

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

.contact-form__full {
  grid-column: 1 / -1;
}

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

.contact-form span {
  color: rgba(223, 231, 240, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(183, 199, 219, 0.14);
  border-radius: 16px;
  background: rgba(5, 15, 24, 0.82);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.file-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(183, 199, 219, 0.14);
  border-radius: 16px;
  background: rgba(5, 15, 24, 0.82);
  overflow: hidden;
}

.file-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(183, 199, 219, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  white-space: nowrap;
}

.file-upload__value {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(150, 170, 189, 0.72);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(194, 201, 208, 0.34);
  background: rgba(16, 20, 24, 0.94);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-form__hint,
.contact-form__status {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form__status {
  min-height: 1.6em;
}

.contact-form__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.contact-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #bac3cc;
}

.contact-form__consent span {
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--muted);
}

.contact-form__consent a {
  color: var(--accent);
}

.contact-form__success {
  display: grid;
  gap: 12px;
  padding: 8px 0 0;
}

.contact-form__success strong {
  font-size: 1.15rem;
  color: var(--text);
}

.contact-form__success p {
  margin: 0;
  color: var(--muted);
}

.contact-form__bot-field,
.is-hidden {
  display: none !important;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.contact-details a,
.contact-details p {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.contact-details a {
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(191, 198, 205, 0.28);
}

.intro-grid article:hover,
.intro-grid article:focus-within,
.timeline-item:hover,
.timeline-item:focus-within,
.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(198, 204, 210, 0.2);
  box-shadow:
    0 36px 76px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-item:hover,
.faq-item:focus-within {
  background: rgba(255, 255, 255, 0.04);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 36px 0 56px;
  border-top: 1px solid rgba(183, 199, 219, 0.1);
  margin-top: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem--footer {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.brand-emblem--footer .brand-icon {
  width: 38px;
  height: 38px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-meta {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: var(--accent);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(97, 226, 155, 0.34);
  background: linear-gradient(135deg, #1b8f57 0%, #27d367 100%);
  color: #f8fffb;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(16, 104, 57, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(16, 104, 57, 0.34);
}

.footer-copy p {
  margin: 0;
  letter-spacing: 0.08em;
  color: #e8edf3;
}

.footer p,
.footer a {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 980px) {
  .mobile-language-slot {
    display: block;
    width: var(--container);
    margin: 12px auto 0;
  }

  .mobile-language-slot .language-switcher {
    display: inline-flex;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin: 0;
    border: 1px solid rgba(183, 199, 219, 0.14);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(7, 16, 27, 0.98), rgba(8, 18, 30, 0.96));
    backdrop-filter: blur(20px);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .mobile-language-slot .language-switcher a {
    min-width: 48px;
    min-height: 42px;
  }

  .nav {
    position: sticky;
    overflow: visible;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(183, 199, 219, 0.14);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(7, 16, 27, 0.98), rgba(8, 18, 30, 0.96));
    backdrop-filter: blur(20px);
    box-shadow:
      0 26px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 35;
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .nav-links a.button {
    min-height: 48px;
  }

  .nav-links a.is-current {
    text-underline-offset: 0.28em;
  }

  .nav-links .language-switcher {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
    border-left: 0;
    border-top: 1px solid rgba(183, 199, 219, 0.12);
    padding-top: 14px;
  }

  .nav-links .language-switcher a {
    min-width: 46px;
    min-height: 42px;
  }

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

  .hero-aside {
    padding: 0 32px 32px;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

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

  .services-grid,
  .intro-grid,
  .about-card,
  .contact-card,
  .cta-band,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-heading h2 {
    max-width: none;
  }

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

  .hero-grid {
    min-height: auto;
  }

  .hero-grid::before {
    background:
      repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 72px
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
      url("assets/logo-shield.png") no-repeat right -20px top 28px / 220px;
    opacity: 0.12;
  }

  .service-detail__top,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .service-detail__list ul,
  .offer-card ul {
    columns: 1;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 18px;
  }

  .nav {
    padding: 12px;
    border-radius: 28px;
    align-items: start;
  }

  .brand {
    max-width: 210px;
    gap: 10px;
  }

  .brand-emblem {
    width: 54px;
    height: 54px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .hero-grid {
    padding-top: 16px;
    min-height: auto;
    border-radius: 26px;
  }

  .hero-grid::after {
    width: 220px;
    height: 220px;
    top: 24px;
    right: -40px;
  }

  .subpage-hero {
    margin-top: 24px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .subpage-hero h1,
  .subpage-hero .hero-text {
    max-width: none;
  }

  .hero-copy,
  .service-detail,
  .service-detail__list,
  .detail-intro,
  .detail-panels article,
  .about-card,
  .contact-card,
  .service-card,
  .offer-card,
  .intro-grid article,
  .timeline-item {
    padding: 24px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.2vw, 3.35rem);
    line-height: 0.96;
  }

  h1 span {
    display: block;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .brand-copy small,
  .footer-copy small {
    font-size: 0.72rem;
  }

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

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 16px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 38px 24px 28px;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 7.4vw, 3rem);
    line-height: 1;
    text-wrap: normal;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-trust span {
    padding: 13px 16px 13px 38px;
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .hero-aside {
    padding: 0 24px 24px;
  }

  .hero-actions > * {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-panel__display {
    padding: 18px 18px 18px 46px;
    border-radius: 20px;
  }

  .cta-band {
    padding: 28px 24px;
    gap: 24px;
  }

  .cta-band__actions {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .hero-text {
    max-width: none;
    font-size: 1rem;
  }

  .hero-services {
    margin-top: 24px;
  }

  .hero-services span,
  .hero-services a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
