:root {
  --navy: #071629;
  --navy-2: #0a203c;
  --navy-3: #0d2b50;
  --blue: #2f7df4;
  --blue-soft: #8dc1ff;
  --paper: #f4f6f9;
  --white: #ffffff;
  --ink: #0a1626;
  --muted: #5d6878;
  --line: #d7dde6;
  --line-dark: rgba(255,255,255,.13);
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 84px;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(7,22,41,.06);
  transition: background .3s ease, height .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(7,22,41,.96);
  border-bottom-color: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
}
.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.04em;
}
.brand > span > span { color: var(--blue-soft); }
.brand img { width: 31px; height: 31px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px,3vw,42px); }
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 590;
  color: rgba(255,255,255,.76);
  letter-spacing: .01em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--blue-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-contact {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 13px;
  font-weight: 650;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.header-contact:hover { background: #fff; color: var(--navy); border-color: #fff; }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px clamp(24px, 7vw, 112px) 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #071629;
  background-image: url("assets/hero-datacenter.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,22,41,.98) 0%, rgba(7,22,41,.93) 38%, rgba(7,22,41,.58) 68%, rgba(7,22,41,.44) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(115,164,220,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115,164,220,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 88%, transparent);
}
.hero-structure { display: none; }
.rack {
  position: absolute;
  bottom: 0;
  width: 15%;
  min-width: 150px;
  border-left: 1px solid rgba(141,193,255,.28);
  border-right: 1px solid rgba(141,193,255,.16);
  background:
    repeating-linear-gradient(to bottom, rgba(22,62,104,.68) 0 18px, rgba(8,28,51,.9) 18px 22px),
    linear-gradient(180deg, rgba(43,105,173,.32), rgba(7,22,41,.9));
  box-shadow: inset 20px 0 50px rgba(4,13,25,.65);
}
.rack::before, .rack::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(141,193,255,.32), transparent);
}
.rack::before { left: 16%; }
.rack::after { right: 16%; }
.rack-a { left: 12%; height: 78%; }
.rack-b { left: 37%; height: 90%; }
.rack-c { left: 62%; height: 68%; }
.signal {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141,193,255,.72), transparent);
  transform-origin: right;
  animation: signal 5s ease-in-out infinite;
}
.signal-a { top: 33%; left: 0; width: 82%; }
.signal-b { top: 64%; left: 18%; width: 72%; animation-delay: -2.3s; }
.hero-content { position: relative; z-index: 3; max-width: 980px; }
.hero-label, .section-label {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 94px);
  line-height: .98;
  font-weight: 680;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 720px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}
.hero-actions { margin-top: 42px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.primary-action {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.primary-action:hover { background: #1f69da; border-color: #1f69da; transform: translateY(-2px); }
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 650;
}
.text-action span { transition: transform .25s ease; }
.text-action:hover span { transform: translateX(5px); }
.text-action.light { color: #fff; margin-top: 20px; }
.hero-foot {
  position: absolute;
  z-index: 3;
  left: clamp(24px,7vw,112px);
  right: clamp(24px,7vw,112px);
  bottom: 26px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.52);
  font-size: 12px;
  letter-spacing: .04em;
}

.statement {
  padding: 120px clamp(24px,7vw,112px) 86px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  background: #fff;
}
.statement-intro h2, .section-head h2, .responsibility h2, .turnkey h2, .sla h2, .about h2, .contact h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 660;
  text-wrap: balance;
}
.statement-copy {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.statement-copy p { margin: 0 0 24px; color: var(--muted); font-size: 18px; }
.statement-line {
  grid-column: 1 / -1;
  margin: 52px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 620;
  letter-spacing: -.035em;
}

.services { padding: 116px clamp(24px,7vw,112px); background: var(--paper); }
.section-head { max-width: 930px; margin-bottom: 72px; }
.service-list { border-top: 1px solid var(--ink); }
.service-row {
  position: relative;
  min-height: 250px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1.5fr) minmax(260px, .75fr);
  gap: 42px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 60%, rgba(47,125,244,.045) 100%),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(47,125,244,.05) 72px 73px);
  transform: translateX(100%);
  transition: transform .5s ease;
  pointer-events: none;
}
.service-row:hover::before { transform: translateX(0); }
.service-index { position: relative; z-index: 1; color: var(--blue); font-size: 13px; font-weight: 750; }
.service-row h3 { position: relative; z-index: 1; margin: 0 0 16px; font-size: clamp(30px,3vw,48px); line-height: 1.05; letter-spacing: -.045em; }
.service-row p { position: relative; z-index: 1; max-width: 720px; margin: 0; color: var(--muted); font-size: 17px; }
.service-row ul { position: relative; z-index: 1; align-self: center; margin: 0; padding: 0; list-style: none; }
.service-row li { padding: 12px 0; border-bottom: 1px solid var(--line); color: #293648; font-size: 14px; }
.service-row li:first-child { border-top: 1px solid var(--line); }

.responsibility {
  position: relative;
  min-height: 770px;
  padding: 120px clamp(24px,7vw,112px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.responsibility-field {
  position: absolute;
  inset: 0;
  background-image: url("assets/security-continuity.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.responsibility-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,22,41,.99) 0%, rgba(7,22,41,.96) 42%, rgba(7,22,41,.72) 67%, rgba(7,22,41,.38) 100%);
}
.responsibility-content { position: relative; z-index: 1; max-width: 860px; }
.responsibility h2 { max-width: 780px; }
.responsibility-content > p:not(.section-label) { max-width: 760px; color: rgba(255,255,255,.68); font-size: 18px; }
.responsibility strong {
  display: block;
  max-width: 840px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: clamp(24px,2.5vw,38px);
  line-height: 1.22;
  letter-spacing: -.035em;
}

.cooperation { padding: 120px clamp(24px,7vw,112px); background: #fff; }
.cooperation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.cooperation-item { min-height: 390px; padding: 34px 38px 40px 0; }
.cooperation-item + .cooperation-item { padding-left: 38px; border-left: 1px solid var(--line); }
.cooperation-item > span { color: var(--blue); font-size: 13px; font-weight: 750; }
.cooperation-item h3 { margin: 80px 0 20px; font-size: clamp(28px,2.8vw,42px); line-height: 1.08; letter-spacing: -.045em; }
.cooperation-item p { margin: 0; color: var(--muted); font-size: 17px; }

.turnkey {
  position: relative;
  min-height: 760px;
  padding: 110px clamp(24px,7vw,112px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #081a30;
  background-image: url("assets/turnkey-installation.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.turnkey::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,26,48,.99) 0%, rgba(8,26,48,.92) 43%, rgba(8,26,48,.58) 68%, rgba(8,26,48,.26) 100%); }
.turnkey-visual { display: none; }
.turnkey-visual svg { display: none; }
.turnkey-content { position: relative; z-index: 2; max-width: 800px; }
.turnkey-content > p:not(.section-label) { max-width: 680px; color: rgba(255,255,255,.72); font-size: 18px; }

.sla { padding: 120px clamp(24px,7vw,112px); background: var(--paper); }
.sla-head { max-width: 940px; }
.sla-head > p:not(.section-label) { max-width: 720px; margin-top: 26px; color: var(--muted); font-size: 18px; }
.sla-list { margin-top: 70px; border-top: 1px solid var(--ink); }
.sla-list span {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(22px,2.4vw,34px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.industries { padding: 118px clamp(24px,7vw,112px); background: #fff; }
.industry-list { display: flex; flex-wrap: wrap; border-top: 1px solid var(--ink); }
.industry-list span {
  flex: 1 1 33.333%;
  min-height: 110px;
  padding: 30px 24px 30px 0;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px,2vw,30px);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.industry-list span:nth-child(3n+2), .industry-list span:nth-child(3n+3) { padding-left: 24px; border-left: 1px solid var(--line); }

.process { padding: 118px clamp(24px,7vw,112px); background: var(--paper); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process-list li { padding: 34px 0; display: grid; grid-template-columns: 120px 1fr; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue); font-size: 13px; font-weight: 750; }
.process-list h3 { margin: 0 0 10px; font-size: clamp(26px,2.4vw,38px); letter-spacing: -.04em; }
.process-list p { max-width: 760px; margin: 0; color: var(--muted); font-size: 17px; }

.about { padding: 120px clamp(24px,7vw,112px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; color: #fff; background: var(--navy); }
.about-copy > p:not(.section-label) { max-width: 720px; color: rgba(255,255,255,.68); font-size: 18px; }
.about-principles { align-self: end; border-top: 1px solid rgba(255,255,255,.25); }
.about-principles div { padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.about-principles span { color: var(--blue-soft); font-size: 12px; }
.about-principles strong { font-size: 18px; font-weight: 590; }

.contact { padding: 120px clamp(24px,7vw,112px); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; background: #fff; }
.contact-copy > p:not(.section-label) { max-width: 660px; color: var(--muted); font-size: 18px; }
.contact-copy > a { display: inline-block; margin-top: 28px; color: var(--blue); font-size: 22px; font-weight: 660; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-content: start; }
.contact-form label { display: grid; gap: 9px; color: #2d3848; font-size: 13px; font-weight: 650; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aeb8c5;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  transition: border-color .2s ease;
}
.contact-form input { height: 48px; }
.contact-form textarea { padding: 14px 0; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form button {
  min-height: 54px;
  padding: 0 22px;
  justify-self: start;
  border: 1px solid var(--navy);
  border-radius: 0;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.contact-form button:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.form-status { grid-column: 1 / -1; min-height: 22px; margin: 0; color: var(--muted); font-size: 13px; }

.site-footer { padding: 54px clamp(24px,7vw,112px) 24px; color: #fff; background: #04101f; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: start; }
.footer-brand { font-size: 22px; }
.footer-main > p { max-width: 330px; margin: 0; color: rgba(255,255,255,.56); }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; max-width: 480px; }
.footer-main nav a { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-main nav a:hover { color: #fff; }
.footer-bottom { margin-top: 50px; padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes signal { 0%,100% { opacity: .2; transform: scaleX(.7); } 50% { opacity: 1; transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-contact { display: none; }
  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.24);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 1px; background: #fff; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 45;
    inset: 0;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    color: #fff;
    background: rgba(7,22,41,.99);
    transform: translateY(-102%);
    transition: transform .3s ease;
  }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 24px; letter-spacing: -.03em; }
  .statement { grid-template-columns: 1fr; gap: 28px; }
  .statement-copy { padding-top: 26px; }
  .service-row { grid-template-columns: 54px 1fr; }
  .service-row ul { grid-column: 2; }
  .cooperation-grid { grid-template-columns: 1fr; }
  .cooperation-item { min-height: 0; padding: 34px 0 42px; }
  .cooperation-item + .cooperation-item { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .cooperation-item h3 { margin-top: 34px; }
  .about, .contact { grid-template-columns: 1fr; gap: 60px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 700px) {
  .site-header { height: 72px; padding: 0 20px; }
  .site-header.is-scrolled { height: 66px; }
  .hero { min-height: 760px; padding: 128px 20px 90px; align-items: flex-start; }
  .hero { background-position: 68% center; }
  .hero::before { background: linear-gradient(180deg, rgba(7,22,41,.76) 0%, rgba(7,22,41,.88) 46%, rgba(7,22,41,.96) 100%); }
  .hero-structure { display: none; }
  .hero-grid { background-size: 44px 44px; }
  .hero h1 { font-size: clamp(46px, 13vw, 68px); }
  .hero-copy { margin-top: 26px; font-size: 18px; }
  .hero-actions { margin-top: 32px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-foot { left: 20px; right: 20px; }
  .hero-foot span { max-width: 210px; }
  .statement, .services, .responsibility, .cooperation, .turnkey, .sla, .industries, .process, .about, .contact { padding-left: 20px; padding-right: 20px; }
  .statement { padding-top: 84px; padding-bottom: 64px; }
  .services, .cooperation, .sla, .industries, .process, .about, .contact { padding-top: 84px; padding-bottom: 84px; }
  .section-head { margin-bottom: 46px; }
  .statement-intro h2, .section-head h2, .responsibility h2, .turnkey h2, .sla h2, .about h2, .contact h2 { font-size: 42px; }
  .statement-line { margin-top: 26px; }
  .service-row { min-height: 0; padding: 32px 0; grid-template-columns: 1fr; gap: 12px; }
  .service-row ul { grid-column: auto; margin-top: 16px; }
  .service-index { margin-bottom: 6px; }
  .responsibility { min-height: auto; padding-top: 92px; padding-bottom: 92px; }
  .responsibility-field { inset: 0; background-position: 63% center; }
  .responsibility-field::before { background: linear-gradient(180deg, rgba(7,22,41,.92) 0%, rgba(7,22,41,.88) 45%, rgba(7,22,41,.96) 100%); }
  .cooperation-item h3 { font-size: 34px; }
  .turnkey { min-height: auto; padding-top: 94px; padding-bottom: 94px; }
  .turnkey { background-position: 58% center; }
  .turnkey::after { background: linear-gradient(180deg, rgba(8,26,48,.86) 0%, rgba(8,26,48,.9) 55%, rgba(8,26,48,.97) 100%); }
  .turnkey-visual { display: none; }
  .sla-list span { padding: 19px 0; font-size: 24px; }
  .industry-list span { flex-basis: 100%; min-height: 84px; padding: 22px 0; border-left: 0 !important; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 10px; }
  .about-principles div { grid-template-columns: 42px 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label.full, .form-status { grid-column: auto; }
  .contact-form button { width: 100%; justify-self: stretch; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; }
  .footer-main nav { grid-column: auto; justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

.specializations {
  padding: 120px clamp(24px,7vw,112px);
  color: #fff;
  background: #091a30;
}
.specializations-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: 76px;
}
.specializations-head h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 660;
  text-wrap: balance;
}
.specializations-head > p {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.66);
  font-size: 17px;
}
.specialization-list { border-top: 1px solid rgba(255,255,255,.42); }
.specialization-item {
  position: relative;
  padding: 44px 0 48px;
  display: grid;
  grid-template-columns: 70px minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 70px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.specialization-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--blue-soft);
  transition: width .45s ease;
}
.specialization-item:hover::after { width: 100%; }
.specialization-index {
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 750;
}
.specialization-title > p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.43);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.specialization-title h3 {
  margin: 0;
  font-size: clamp(28px, 2.7vw, 43px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 630;
}
.specialization-copy {
  padding-top: 2px;
  columns: 1;
}
.specialization-copy p {
  max-width: 780px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.65);
  font-size: 16px;
}
.specialization-copy p:last-child { margin-bottom: 0; }

@media (max-width: 1050px) {
  .specializations-head { grid-template-columns: 1fr; gap: 32px; }
  .specializations-head > p { max-width: 760px; }
  .specialization-item { grid-template-columns: 54px 1fr; }
  .specialization-copy { grid-column: 2; }
}

@media (max-width: 700px) {
  .specializations { padding: 84px 20px; }
  .specializations-head { margin-bottom: 48px; }
  .specializations-head h2 { font-size: 42px; }
  .specialization-item { padding: 32px 0 36px; grid-template-columns: 38px 1fr; gap: 16px; }
  .specialization-title h3 { font-size: 29px; }
  .specialization-copy { grid-column: 1 / -1; padding-left: 54px; }
  .specialization-copy p { font-size: 15px; }
}

/* AgioTech brand logo */
.brand-logo {
  display: block;
  width: clamp(148px, 12vw, 190px) !important;
  height: auto !important;
  object-fit: contain;
}
.footer-brand .brand-logo {
  width: 178px !important;
}
@media (max-width: 560px) {
  .brand-logo { width: 146px !important; }
  .footer-brand .brand-logo { width: 164px !important; }
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status.is-success {
  color: #9ce6b6;
}

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