:root {
  --ink: #0c2931;
  --ink-soft: #466169;
  --navy: #082f3a;
  --navy-deep: #05242c;
  --blue: #0f95b0;
  --cyan: #1ab8cc;
  --aqua: #72d8c3;
  --mint: #dff6f0;
  --sky: #eaf7fa;
  --paper: #f7faf9;
  --white: #fff;
  --line: #d9e6e5;
  --shadow: 0 24px 70px rgba(5, 36, 44, 0.12);
  --shadow-soft: 0 12px 32px rgba(5, 36, 44, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.7vw, 5.2rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 78px 0;
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.section--mint {
  background: var(--mint);
}

.section--white {
  background: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--navy .eyebrow {
  color: var(--aqua);
}

.lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.section--navy .lead,
.dark-card .lead {
  color: #bcd2d5;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 820px;
}

.section-head h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 750;
  white-space: nowrap;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(217, 230, 229, 0.62);
  background: rgba(247, 250, 249, 0.86);
  box-shadow: 0 3px 18px rgba(5, 36, 44, 0.04);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
  border-color: rgba(217, 230, 229, 0.75);
  background: rgba(247, 250, 249, 0.94);
  box-shadow: 0 5px 24px rgba(5, 36, 44, 0.06);
  backdrop-filter: blur(16px);
}

.skip-link:focus {
  z-index: 1000;
  top: 10px;
  left: 10px !important;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.header-row {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: clamp(16px, 1.55vw, 28px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 202px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.6vw, 24px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: #335159;
  font-size: 0.92rem;
  font-weight: 680;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-button span {
  opacity: 0;
}

.menu-open .menu-button::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-button::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--aqua);
  box-shadow: 0 12px 30px rgba(26, 184, 204, 0.25);
  transform: translateY(-2px);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button--light:hover {
  background: var(--white);
  color: var(--navy);
}

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 154px 0 72px;
  color: var(--white);
  background: var(--navy-deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 36, 44, 0.98) 0%, rgba(5, 36, 44, 0.86) 46%, rgba(5, 36, 44, 0.26) 78%, rgba(5, 36, 44, 0.2) 100%),
    url("../images/web/hero-modular-station.webp") 70% 50% / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto -120px -320px auto;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(114, 216, 195, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 100px rgba(114, 216, 195, 0.025);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 850px;
}

.hero .eyebrow {
  color: var(--aqua);
}

.hero h1 {
  max-width: 850px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: #c7dadd;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 90px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stat {
  min-height: 124px;
  padding: 24px 26px;
  background: rgba(5, 36, 44, 0.55);
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--aqua);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-stat span {
  color: #c4d7da;
  font-size: 0.9rem;
  line-height: 1.4;
}

.page-hero {
  padding: 164px 0 92px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sky), var(--paper) 58%, var(--mint));
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #60777d;
  font-size: 0.84rem;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card p:last-child {
  margin-bottom: 0;
}

.icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 850;
}

.solution-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.solution-card:nth-child(1) {
  background: var(--mint);
}

.solution-card:nth-child(2) {
  background: var(--sky);
}

.solution-card:nth-child(3) {
  background: #eef2fb;
}

.solution-card:nth-child(4) {
  background: #f7f0e7;
}

.solution-card::after {
  position: absolute;
  right: -58px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(15, 149, 176, 0.08);
  border-radius: 50%;
  content: "";
}

.solution-card .number {
  display: block;
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.solution-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
}

.process-item {
  min-height: 250px;
  padding: 30px 24px;
  background: var(--navy);
}

.process-item strong {
  display: block;
  margin-bottom: 54px;
  color: var(--aqua);
  font-size: 0.82rem;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.process-item p {
  margin-bottom: 0;
  color: #bcd2d5;
  font-size: 0.92rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 22%, rgba(5, 36, 44, 0.88) 86%);
}

.project-info {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  background: rgba(5, 36, 44, 0.5);
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.project-info h3 {
  max-width: 640px;
  margin-bottom: 9px;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.project-info p {
  margin-bottom: 0;
  color: #d3e2e4;
}

.project-card--wide {
  grid-column: span 2;
  min-height: 600px;
}

.project-card--wide img {
  min-height: 600px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter-button {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 750;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.photo-feature {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 86px);
}

.photo-feature__body p {
  color: #bfd2d5;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 16px;
  height: 9px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  content: "";
  transform: rotate(-45deg);
}

.plain-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.plain-list li:last-child {
  border-bottom: 0;
}

.quote {
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background: var(--mint);
}

.quote p {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.quote cite {
  color: var(--ink-soft);
  font-style: normal;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fact {
  padding: 28px;
  border-top: 3px solid var(--cyan);
  background: var(--white);
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.fact span {
  color: var(--ink-soft);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.equipment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.equipment-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.equipment-card__body {
  padding: 25px;
}

.equipment-card__body p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.media-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.media-band img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.media-band__stack {
  display: grid;
  gap: 18px;
}

.media-band__stack img {
  min-height: 211px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
}

.contact-panel {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list span {
  display: block;
  margin-bottom: 3px;
  color: #91b0b5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  font-size: 1.08rem;
}

.contact-list a {
  display: block;
  width: fit-content;
}

.contact-list a + a {
  margin-top: 4px;
}

.form-card {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--wide {
  grid-column: span 2;
}

.form-field label {
  font-size: 0.84rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  background: #fbfdfc;
  color: var(--ink);
}

.form-field input {
  height: 52px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(26, 184, 204, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #087a60;
}

.form-status.is-error {
  color: #b42318;
}

.form-card button:disabled {
  opacity: 0.68;
  cursor: wait;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 82px);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.cta::after {
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 65px solid rgba(114, 216, 195, 0.08);
  border-radius: 50%;
  content: "";
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  max-width: 800px;
}

.cta p {
  max-width: 700px;
  margin-bottom: 28px;
  color: #bfd2d5;
  font-size: 1.1rem;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 50px;
  font-size: 1.7rem;
}

.legal-copy h3 {
  margin-top: 32px;
  font-size: 1.25rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy strong {
  color: var(--ink);
}

.site-footer {
  padding: 66px 0 30px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 1fr;
  gap: 44px;
}

.footer-brand img {
  width: 202px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 340px;
  color: #9db6ba;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 8px 0;
  color: #a9c0c4;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--aqua);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #77979d;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-legal a:hover {
  color: var(--aqua);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-field input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent-field a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  max-width: 1050px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(114, 216, 195, 0.28);
  border-radius: 18px;
  background: rgba(5, 36, 44, 0.97);
  box-shadow: 0 22px 70px rgba(5, 36, 44, 0.3);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.cookie-consent__copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.cookie-consent__copy p {
  max-width: 670px;
  margin: 0;
  color: #bad0d4;
  font-size: 0.86rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-consent__actions .button {
  min-width: 112px;
}

.cookie-button {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.cookie-button:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}

.cookie-consent__actions a {
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings {
  position: fixed;
  z-index: 90;
  bottom: 14px;
  left: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(12, 41, 49, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-settings:hover {
  color: var(--blue);
}

[hidden] {
  display: none !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 30px, 760px);
  }

  .section {
    padding: 82px 0;
  }

  .site-header,
  .site-header.is-scrolled,
  .page-inner .site-header {
    backdrop-filter: none;
  }

  .header-row {
    min-height: 72px;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - 72px);
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 22px 60px;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1.18rem;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 36, 44, 0.97), rgba(5, 36, 44, 0.72)),
      url("../images/web/hero-modular-station.webp") 64% 50% / cover no-repeat;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 70px;
  }

  .grid-3,
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-feature,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .photo-feature img {
    max-height: 440px;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .section {
    padding: 66px 0;
  }

  .brand img {
    width: 184px;
  }

  .hero {
    padding: 118px 0 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    margin: 54px -12px 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-stat {
    min-height: 112px;
    padding: 20px 16px;
  }

  .hero-stat span {
    font-size: 0.78rem;
  }

  .page-hero {
    padding: 126px 0 68px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
  }

  .grid-2,
  .grid-3,
  .equipment-grid,
  .project-grid,
  .process,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .project-card--wide {
    grid-column: auto;
  }

  .project-card,
  .project-card--wide {
    min-height: 460px;
  }

  .project-card img,
  .project-card--wide img {
    min-height: 460px;
  }

  .project-info {
    padding: 25px;
  }

  .process-item {
    min-height: auto;
  }

  .process-item strong {
    margin-bottom: 30px;
  }

  .solution-card {
    min-height: 250px;
    padding: 26px;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .media-band img,
  .media-band__stack img {
    min-height: 270px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent__actions .button,
  .cookie-button {
    width: 100%;
    text-align: center;
  }

  .cookie-consent__actions a {
    text-align: center;
  }
}
