:root {
  --bg: #ffffff;
  --bg-ice: #f2f9ff;
  --bg-blue: #e5f5ff;
  --text: #08233f;
  --muted: #5c7188;
  --line: rgba(39, 129, 217, 0.16);
  --blue: #0b7ee8;
  --blue-deep: #0757b7;
  --cyan: #29c7f8;
  --cyan-soft: #d9f5ff;
  --glass: rgba(255, 255, 255, 0.74);
  --shadow-soft: 0 24px 70px rgba(5, 70, 128, 0.13);
  --shadow-card: 0 18px 46px rgba(11, 89, 157, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 14%, rgba(41, 199, 248, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(11, 126, 232, 0.14), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 45%, #ffffff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(100% - 32px, 1200px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 50px rgba(8, 52, 96, 0.12);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 126, 232, 0.12);
  box-shadow: 0 18px 48px rgba(8, 52, 96, 0.17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(11, 126, 232, 0.28);
}

.brand__mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(11, 126, 232, 0.08);
  border-radius: 999px;
  background: rgba(233, 247, 255, 0.58);
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #31526f;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.8);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #eef8ff;
  color: var(--blue-deep);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button--solid {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 32px rgba(11, 126, 232, 0.26);
}

.button--solid:hover,
.button--solid:focus-visible {
  box-shadow: 0 20px 40px rgba(11, 126, 232, 0.35);
}

.button--ghost {
  color: var(--blue-deep);
  border-color: rgba(11, 126, 232, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(8, 52, 96, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(11, 126, 232, 0.32);
  background: #ffffff;
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
}

.button--wide {
  width: 100%;
}

.button--light {
  color: var(--blue-deep);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 64, 142, 0.16);
}

.hero {
  min-height: 820px;
  padding-top: 138px;
  padding-bottom: 86px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 76%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 52%, rgba(41, 199, 248, 0.1) 52.2%, rgba(11, 126, 232, 0.04) 100%),
    radial-gradient(circle at 78% 20%, rgba(41, 199, 248, 0.18), transparent 18rem);
  z-index: -2;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 58px;
}

.hero__content {
  max-width: 690px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 62px;
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
  color: #071f3a;
}

.hero__subtitle {
  max-width: 610px;
  margin: 25px 0 0;
  color: #3c5974;
  font-size: 22px;
  line-height: 1.45;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  position: relative;
  padding: 10px 14px 10px 34px;
  border: 1px solid rgba(11, 126, 232, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #2b5476;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(8, 52, 96, 0.06);
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(41, 199, 248, 0.14);
}

.hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 480px);
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(235, 248, 255, 0.92));
  box-shadow: var(--shadow-soft);
}

.media-card::before,
.media-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.media-card::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 30px;
  z-index: 2;
}

.media-card::after {
  right: -42px;
  bottom: -34px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 199, 248, 0.28), rgba(41, 199, 248, 0));
  z-index: 1;
}

.media-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 38%;
}

.media-card__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.34) 48%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(4, 34, 64, 0) 62%, rgba(4, 34, 64, 0.36) 100%);
  mix-blend-mode: screen;
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 1px;
  min-width: 156px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(5, 70, 128, 0.18);
}

.hero-note span {
  color: var(--muted);
  font-size: 12px;
}

.hero-note strong {
  color: var(--blue-deep);
  font-size: 17px;
}

.hero-note--top {
  top: 46px;
  left: -34px;
}

.hero-note--bottom {
  right: -24px;
  bottom: 54px;
}

.hero__air {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  width: 38vw;
  height: 220px;
  min-width: 420px;
  border: 1px solid rgba(41, 199, 248, 0.16);
  border-right: 0;
  border-left: 0;
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.8;
}

.hero__air::before,
.hero__air::after {
  content: "";
  position: absolute;
  inset: 38px 18px;
  border-top: 1px solid rgba(11, 126, 232, 0.17);
  border-radius: 50%;
}

.hero__air::after {
  inset: 78px 48px;
  border-color: rgba(41, 199, 248, 0.2);
}

.hero__air--one {
  top: 245px;
  right: -10vw;
  transform: rotate(-9deg);
}

.hero__air--two {
  left: -18vw;
  bottom: 35px;
  transform: rotate(8deg);
  opacity: 0.5;
}

.hero__snow {
  position: absolute;
  color: rgba(11, 126, 232, 0.16);
}

.hero__snow svg {
  width: 128px;
  height: 128px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__snow--one {
  right: 10%;
  top: 122px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.section-head h2,
.lead-copy h2,
.faq-copy h2,
.trust-panel h2,
.final-cta h2 {
  margin: 0;
  color: #08233f;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 820;
}

.section-head p,
.lead-copy p,
.faq-copy p,
.final-cta p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-head--center p {
  margin-right: auto;
  margin-left: auto;
}

.section-number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 52px;
  height: 34px;
  border: 1px solid rgba(11, 126, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 52, 96, 0.06);
}

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

.glass-card {
  min-height: 234px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(235, 248, 255, 0.64)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 199, 248, 0.36);
  box-shadow: 0 24px 54px rgba(11, 89, 157, 0.16);
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(231, 247, 255, 0.98), rgba(255, 255, 255, 0.88));
  box-shadow: inset 0 0 0 1px rgba(11, 126, 232, 0.1), 0 14px 28px rgba(11, 126, 232, 0.12);
}

.icon-bubble svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-card h3,
.service-card h3,
.solution-card h3,
.portfolio-card h3,
.process-steps h3 {
  margin: 18px 0 0;
  color: #08233f;
  font-size: 21px;
  line-height: 1.18;
}

.glass-card p,
.service-card p,
.solution-card p,
.process-steps p {
  margin: 11px 0 0;
  color: var(--muted);
}

.services {
  background:
    linear-gradient(180deg, rgba(229, 245, 255, 0.68), rgba(255, 255, 255, 0.36)),
    radial-gradient(circle at 70% 20%, rgba(41, 199, 248, 0.14), transparent 30rem);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 186px;
  padding: 24px;
  border: 1px solid rgba(11, 126, 232, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(5, 70, 128, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -48px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 199, 248, 0.18), rgba(41, 199, 248, 0));
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(5, 70, 128, 0.13);
}

.service-card--large {
  display: grid;
  grid-template-rows: 340px auto;
  min-height: 100%;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #ffffff);
}

.service-card--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.service-card--large div {
  position: relative;
  z-index: 2;
  padding: 26px;
  margin: -34px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(5, 56, 112, 0.16);
  backdrop-filter: blur(18px);
}

.service-card--large h3,
.service-card--large p {
  color: var(--ink);
}

.service-card--large a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-deep);
  font-weight: 800;
}

.process {
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 190px;
  width: min(980px, 82vw);
  height: 260px;
  border-top: 1px solid rgba(41, 199, 248, 0.22);
  border-bottom: 1px solid rgba(11, 126, 232, 0.12);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 238px;
  padding: 24px 18px;
  border: 1px solid rgba(11, 126, 232, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(8, 52, 96, 0.09);
}

.process-steps li::before {
  content: "";
  position: absolute;
  top: 67px;
  right: -13px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(11, 126, 232, 0));
}

.process-steps li:last-child::before {
  display: none;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(11, 126, 232, 0.24);
}

.process-steps h3 {
  font-size: 18px;
}

.process-steps p {
  font-size: 14px;
}

.lead-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(41, 199, 248, 0.16), transparent 26rem),
    linear-gradient(135deg, #eaf8ff, #ffffff 48%, #edf9ff);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.lead-copy h2 {
  margin-top: 18px;
  max-width: 590px;
}

.lead-copy p {
  max-width: 560px;
}

.lead-points {
  display: grid;
  gap: 12px;
  max-width: 440px;
  margin-top: 30px;
}

.lead-points span {
  position: relative;
  padding: 15px 18px 15px 46px;
  border: 1px solid rgba(11, 126, 232, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(8, 52, 96, 0.07);
}

.lead-points span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(41, 199, 248, 0.13);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
}

.lead-form span,
.lead-form legend {
  color: #284c69;
  font-size: 14px;
  font-weight: 800;
}

.lead-form fieldset {
  padding: 0;
  border: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 126, 232, 0.15);
  border-radius: 16px;
  background: #f8fcff;
  color: var(--text);
  font-size: 15px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input,
.lead-form select {
  height: 54px;
  padding: 0 16px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 116px;
  padding: 15px 16px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(11, 126, 232, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(41, 199, 248, 0.14);
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 126, 232, 0.12);
  border-radius: 16px;
  background: #f8fcff;
}

.radio-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #e9fff6;
  color: #086b46;
  font-weight: 750;
}

.form-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff1f0;
  color: #9b1c14;
  font-weight: 750;
}

.form-error a {
  color: inherit;
  text-decoration: underline;
  white-space: nowrap;
}

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

.solution-card {
  overflow: hidden;
  border: 1px solid rgba(11, 126, 232, 0.12);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 52, 96, 0.09);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(8, 52, 96, 0.14);
}

.solution-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.solution-card div {
  padding: 22px;
}

.solution-card h3 {
  margin-top: 0;
}

.solution-card span {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #edf9ff;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.portfolio {
  background:
    linear-gradient(180deg, #ffffff, #eef8ff 54%, #ffffff),
    radial-gradient(circle at 85% 30%, rgba(41, 199, 248, 0.14), transparent 26rem);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  grid-auto-rows: 255px;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  border-radius: 30px;
  background: #dff4ff;
  box-shadow: 0 22px 54px rgba(8, 52, 96, 0.13);
}

.portfolio-card--tall {
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.portfolio-card--tall img {
  object-position: center 36%;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 36, 66, 0) 45%, rgba(5, 36, 66, 0.72) 100%);
}

.portfolio-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #ffffff;
}

.portfolio-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.portfolio-card h3 {
  margin: 0;
  color: #ffffff;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(222, 246, 255, 0.78)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.trust-panel h2 {
  margin-top: 18px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 17px 18px 17px 48px;
  border: 1px solid rgba(11, 126, 232, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #294e6a;
  font-weight: 750;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: translateY(-50%) rotate(45deg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-copy h2 {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(11, 126, 232, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(8, 52, 96, 0.07);
}

.faq-item summary {
  position: relative;
  min-height: 64px;
  padding: 20px 58px 20px 22px;
  color: #08233f;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 31px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.faq-item summary::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 82px 0 104px;
}

.final-cta__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 46px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, #0757b7, #0b7ee8 50%, #29c7f8);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(11, 126, 232, 0.28);
}

.final-cta__inner::before {
  content: "";
  position: absolute;
  inset: -80px -70px auto auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.final-cta h2,
.final-cta p {
  position: relative;
  color: #ffffff;
}

.final-cta p {
  max-width: 560px;
  opacity: 0.88;
}

.footer {
  padding: 54px 0;
  border-top: 1px solid rgba(11, 126, 232, 0.12);
  background: #f4fbff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.7fr;
  gap: 34px;
}

.brand--footer {
  align-items: flex-start;
}

.footer p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer a,
.footer span,
.footer-link {
  display: block;
  margin-top: 9px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #45637b;
  font-size: 15px;
  text-align: left;
}

.footer a:hover,
.footer-link:hover,
.footer a:focus-visible,
.footer-link:focus-visible {
  color: var(--blue-deep);
  outline: 0;
}

.policy-modal {
  width: min(520px, calc(100% - 32px));
  border: 0;
  border-radius: 26px;
  padding: 0;
  background: transparent;
}

.policy-modal::backdrop {
  background: rgba(3, 24, 46, 0.45);
  backdrop-filter: blur(8px);
}

.policy-modal__body {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.policy-modal h2 {
  margin: 0 0 14px;
}

.policy-modal p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #edf9ff;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 17px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.payment {
  background:
    linear-gradient(180deg, rgba(229, 245, 255, 0.6), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 25% 30%, rgba(41, 199, 248, 0.12), transparent 28rem);
}

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

.payment-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(235, 248, 255, 0.66)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 199, 248, 0.36);
  box-shadow: 0 24px 54px rgba(11, 89, 157, 0.16);
}

.payment-card h3 {
  margin: 0;
  color: #08233f;
  font-size: 18px;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .site-header {
    width: min(100% - 24px, 980px);
  }

  .nav {
    gap: 0;
  }

  .nav a {
    padding: 9px 10px;
  }

  .header-phone {
    display: none;
  }

  .hero__grid,
  .lead-layout,
  .service-layout,
  .faq-layout,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero__media {
    justify-self: stretch;
    width: 100%;
  }

  .media-card img {
    height: 540px;
  }

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

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

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

  .process-steps li::before {
    display: none;
  }

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

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

  .faq-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    top: 10px;
    padding: 10px;
  }

  .nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(8, 52, 96, 0.18);
  }

  .menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.03;
  }

  .hero__subtitle {
    font-size: 19px;
  }

  .hero__grid {
    gap: 36px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .media-card {
    border-radius: 28px;
  }

  .media-card img {
    height: 430px;
  }

  .hero-note {
    min-width: 132px;
    padding: 12px 14px;
  }

  .hero-note--top {
    left: 14px;
    top: 22px;
  }

  .hero-note--bottom {
    right: 14px;
    bottom: 24px;
  }

  .section-head {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-head--center {
    text-align: left;
  }

  .section-head h2,
  .lead-copy h2,
  .faq-copy h2,
  .trust-panel h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .section-head p,
  .lead-copy p,
  .faq-copy p,
  .final-cta p {
    font-size: 17px;
  }

  .service-list,
  .form-row,
  .trust-list {
    grid-template-columns: 1fr;
  }

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

  .lead-form,
  .trust-panel,
  .final-cta__inner {
    padding: 26px;
    border-radius: 28px;
  }

  .portfolio-grid {
    grid-auto-rows: 230px;
  }

  .footer__grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .hero__air {
    display: none;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero-badges li {
    width: 100%;
  }

  .feature-grid,
  .solution-grid,
  .process-steps,
  .portfolio-grid,
  .payment-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: auto;
  }

  .service-card--large {
    grid-template-rows: 250px auto;
  }

  .solution-card img {
    height: 210px;
  }

  .portfolio-card--tall {
    grid-row: span 1;
  }

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

  .final-cta__inner {
    display: grid;
  }

  .final-cta__inner .button {
    width: 100%;
  }
}

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

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

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