:root {
  --bg: #07111f;
  --bg-strong: #030915;
  --surface: #0f1d2d;
  --surface-2: #12263a;
  --surface-light: #f4f8fb;
  --card: #ffffff;
  --text: #f6fbff;
  --text-dark: #102033;
  --muted: #adc0cf;
  --muted-dark: #52677b;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(9, 31, 52, 0.12);
  --blue: #00aff2;
  --blue-2: #3894ff;
  --cyan: #46d4fe;
  --green: #25d990;
  --shadow: 0 24px 70px rgba(2, 11, 25, 0.28);
  --shadow-soft: 0 18px 44px rgba(18, 47, 78, 0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1160px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(70, 212, 254, 0.7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #03111f;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid rgba(9, 31, 52, 0.08);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(12, 45, 73, 0.14);
}

.site-header__inner {
  width: min(100% - 40px, var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 162px;
  height: auto;
}

.brand span {
  color: #52677b;
  font-size: 0.84rem;
  font-weight: 650;
  white-space: nowrap;
}

.brand--footer img {
  width: 220px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
  color: #1e3448;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.customer-menu.is-open .customer-menu__button {
  color: #0078ad;
  background: rgba(0, 175, 242, 0.08);
}

.customer-menu {
  position: relative;
}

.customer-menu__button svg {
  width: 16px;
  height: 16px;
}

.customer-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 45, 73, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.customer-menu.is-open .customer-menu__panel,
.customer-menu:focus-within .customer-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.customer-menu__panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #52677b;
  font-size: 0.94rem;
  font-weight: 700;
}

.customer-menu__panel a:hover,
.customer-menu__panel a:focus-visible {
  background: rgba(0, 175, 242, 0.13);
  color: #0078ad;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #102033;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: min(710px, calc(100vh - var(--header-h)));
  display: grid;
  align-items: center;
  padding: 108px 0 172px;
  overflow: hidden;
  text-align: center;
  background-color: #00030c;
  isolation: isolate;
}

.hero--wave {
  background-image:
    linear-gradient(180deg, rgba(0, 127, 255, 0.31) 0%, rgba(0, 18, 42, 0.58) 42%, #00030c 100%),
    url("/neu/assets/img/hero-welle.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 71% 25%, rgba(255, 255, 255, 0.48), transparent 12%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 34%, rgba(0, 0, 0, 0.08));
  opacity: 0.75;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 156px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 82 C180 122 300 42 480 82 C660 122 780 42 960 82 C1140 122 1260 42 1440 82 L1440 160 L0 160 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.hero__moving-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 118px;
  z-index: 1;
  height: 82px;
  opacity: 0.72;
  background:
    linear-gradient(171deg, transparent 43%, rgba(255, 255, 255, 0.72) 44% 47%, transparent 48%),
    linear-gradient(168deg, transparent 56%, rgba(70, 212, 254, 0.58) 57% 59%, transparent 60%);
  filter: blur(0.2px);
  animation: waveShift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero__content {
  max-width: 900px;
  margin-inline: auto;
  animation: heroIntro 740ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 750;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 auto;
  max-width: 1120px;
  color: #ffffff;
  min-height: 0.98em;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero__title.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.88em;
  margin-left: 0.08em;
  transform: translateY(0.08em);
  background: currentColor;
  animation: caretBlink 760ms steps(1) infinite;
}

.sub-hero h1,
.project-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 3.65rem;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.hero__lead {
  max-width: 665px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1.08rem;
  line-height: 1.72;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.hero__actions,
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions {
  justify-content: center;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #03111f;
  box-shadow: 0 12px 30px rgba(0, 175, 242, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 18px 38px rgba(0, 175, 242, 0.3);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(3, 14, 30, 0.26);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn--secondary {
  border-color: rgba(0, 175, 242, 0.28);
  background: rgba(0, 175, 242, 0.1);
  color: #dff6ff;
}

.section--light .btn--secondary,
.legal-content .btn--secondary {
  color: #0c3852;
  background: rgba(0, 175, 242, 0.12);
}

.btn--full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(3, 14, 30, 0.28);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-visual__cloud {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(560px, 100%);
  transform: translate(-48%, -50%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.28));
  animation: float 7s ease-in-out infinite;
}

.hero-visual__panel {
  position: absolute;
  width: 160px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(8, 21, 35, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-visual__panel span,
.hero-visual__panel small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-visual__panel strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 1.68rem;
  line-height: 1.1;
}

.hero-visual__panel--server {
  left: 0;
  top: 96px;
}

.hero-visual__panel--code {
  right: 6px;
  bottom: 78px;
}

.service-wave-section {
  position: relative;
  z-index: 3;
  padding: 0 0 88px;
  margin-top: -94px;
  background: #ffffff;
  color: var(--text-dark);
}

.service-wave-grid {
  align-items: stretch;
}

.wave-service-card {
  min-height: 286px;
  padding: 42px 34px 34px;
  text-align: center;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(22, 54, 82, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wave-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(22, 54, 82, 0.16);
}

.wave-service-card .icon-box {
  width: 104px;
  height: 104px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
  color: var(--blue-2);
  box-shadow: 0 16px 38px rgba(56, 148, 255, 0.18);
}

.wave-service-card .icon-box svg {
  width: 48px;
  height: 48px;
}

.wave-service-card h3 {
  margin: 0 0 12px;
  color: #102033;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.wave-service-card p {
  margin: 0;
  color: #52677b;
  font-size: 1.04rem;
  line-height: 1.65;
}

.ocean-band {
  position: relative;
  overflow: hidden;
  padding: 118px 0 130px;
  text-align: center;
  background-color: #1788e8;
  background-image:
    linear-gradient(180deg, rgba(0, 158, 226, 0.85) 0%, rgba(39, 116, 232, 0.86) 100%),
    url("/neu/assets/img/blue-wave-bg.webp");
  background-position: center center;
  background-size: cover;
  color: #ffffff;
}

.ocean-band::before,
.ocean-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 92px;
  pointer-events: none;
}

.ocean-band::before {
  top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 96' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0 H1440 V42 C1260 80 1140 10 960 42 C780 74 660 10 480 42 C300 74 180 10 0 42 Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

.ocean-band::after {
  bottom: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 96' preserveAspectRatio='none'%3E%3Cpath fill='%230c0c0c' d='M0 48 C180 88 300 14 480 48 C660 82 780 14 960 48 C1140 82 1260 14 1440 48 L1440 96 L0 96 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.ocean-band__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.ocean-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.ocean-band p:not(.eyebrow) {
  max-width: 665px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
}

.black-statement {
  padding: 88px 0 94px;
  text-align: center;
  background: #0c0c0c;
}

.black-statement p {
  max-width: 870px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.7;
  font-weight: 300;
}

.az-original {
  position: relative;
  padding: 78px 0 92px;
  text-align: center;
  background: #ededed;
  color: var(--text-dark);
}

.az-original::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 56px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%230c0c0c' d='M0 0 H1440 V26 C1260 56 1140 8 960 26 C780 44 660 8 480 26 C300 44 180 8 0 26 Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

.az-original__inner {
  max-width: 920px;
}

.az-original .eyebrow {
  color: #0b2740;
}

.az-original h2 {
  margin: 14px auto 16px;
  color: #565656;
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.az-original p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto;
  color: #52677b;
  font-size: 1.04rem;
}

.section {
  padding: 76px 0;
  background: var(--bg);
}

.section--compact {
  padding: 42px 0 86px;
}

.section--light {
  background: var(--surface-light);
  color: var(--text-dark);
}

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

.section-head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section h2,
.section-head h2,
.sub-hero h1,
.project-hero h1 {
  margin: 0;
}

.section h2,
.section-head h2,
.cta-band h2,
.final-cta h2 {
  font-size: 2.42rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.cta-band p,
.az-band p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section--light .section-head p:not(.eyebrow),
.section--light .section-copy p:not(.eyebrow),
.section--light .cta-band p,
.section--light .az-band p {
  color: var(--muted-dark);
}

.three-col,
.feature-grid,
.project-grid,
.price-grid,
.price-preview,
.status-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.feature-card,
.project-card,
.price-card,
.status-card,
.contact-card,
.contact-form {
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.section--light .feature-card,
.price-card,
.project-card,
.status-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line-dark);
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover,
.project-card:hover,
.price-card:hover,
.status-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 175, 242, 0.12);
  border-color: rgba(0, 175, 242, 0.32);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(0, 175, 242, 0.12);
  color: var(--cyan);
}

.section--light .icon-box,
.price-card .icon-box {
  background: rgba(0, 175, 242, 0.11);
  color: #0078ad;
}

.icon-box svg,
.check-list svg,
.text-link svg {
  width: 22px;
  height: 22px;
}

.feature-card h3,
.project-card h3,
.price-card h3,
.contact-card h2,
.contact-form h2,
.status-card h2,
.detail-grid h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.feature-card p,
.project-card p,
.price-card p,
.status-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.section--light .feature-card p,
.project-card p,
.price-card p,
.status-card p,
.contact-card p,
.contact-form p,
.detail-grid p {
  color: var(--muted-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
}

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

.power-grid span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff;
  color: #12324e;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.ocean-band .power-grid {
  max-width: 760px;
  margin: 38px auto 0;
}

.ocean-band .power-grid span {
  min-height: 72px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.az-band,
.cta-band,
.status-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 175, 242, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.section--light .cta-band,
.status-overview {
  border-color: var(--line-dark);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.az-band p,
.cta-band p {
  max-width: 540px;
  margin: 0;
}

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

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

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  background: #dce8f1;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.035);
}

.project-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.project-card__body > span,
.project-label,
.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 175, 242, 0.1);
  color: #0078ad;
  font-size: 0.78rem;
  font-weight: 850;
}

.project-card h3 {
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 850;
}

.feature-card .check-list {
  margin-bottom: 24px;
}

.feature-card .text-link {
  margin-top: auto;
}

.project-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.section--light .text-link,
.project-card .text-link,
.price-card .text-link,
.legal-content a {
  color: #006fa3;
}

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

.centered {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(140deg, rgba(0, 175, 242, 0.12), transparent 52%),
    var(--bg-strong);
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 26px;
}

.sub-hero,
.project-hero {
  padding: 64px 0 48px;
  background:
    linear-gradient(135deg, rgba(0, 175, 242, 0.16), transparent 48%),
    linear-gradient(180deg, #06101e, #0a1728);
}

.sub-hero__inner p:not(.eyebrow),
.project-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #d6e8f4;
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section .breadcrumb {
  color: var(--muted);
}

.section--light .breadcrumb,
.legal-content + .breadcrumb {
  color: var(--muted-dark);
}

.breadcrumb a {
  color: var(--cyan);
}

.project-hero .breadcrumb {
  margin-bottom: 22px;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.project-detail__image {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-detail__content > p {
  color: #d2e4ef;
  font-size: 1.04rem;
}

.detail-grid {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.detail-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.pricing-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.pricing-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.segment {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.segment__button {
  min-width: 132px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
}

.segment__button.is-active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #03111f;
}

.pricing-panel {
  animation: fadeUp 220ms ease both;
}

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

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.price-card--featured {
  border-color: rgba(0, 175, 242, 0.52);
  box-shadow: 0 22px 54px rgba(0, 175, 242, 0.16);
}

.price-badge {
  margin-bottom: 14px;
}

.price-card__tag {
  min-height: 72px;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 18px 0 4px;
}

.price strong {
  color: var(--text-dark);
  font-size: 2.1rem;
  line-height: 1;
}

.price span,
.price-meta {
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
}

.section--light .check-list li,
.price-card .check-list li,
.feature-grid--wide .check-list li {
  color: var(--muted-dark);
}

.check-list svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
}

.price-details {
  margin: auto 0 18px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-dark);
}

.price-details summary {
  padding: 12px 0;
  color: var(--text-dark);
  font-weight: 850;
  cursor: pointer;
}

.price-details ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.legal-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.contact-form,
.contact-card {
  padding: 28px;
}

.form-head {
  margin-bottom: 22px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c8d6e2;
  border-radius: var(--radius);
  background: #f9fcff;
  color: var(--text-dark);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-2);
  outline: none;
  box-shadow: 0 0 0 4px rgba(56, 148, 255, 0.18);
}

.contact-form .is-invalid {
  border-color: #c9374b;
}

.contact-form .form-actions {
  align-items: stretch;
}

.contact-form .btn {
  min-height: 54px;
}

.contact-form .btn--secondary {
  border-color: rgba(0, 175, 242, 0.45);
  background: #eef8ff;
  color: #0c3852;
}

.contact-form .btn--secondary:hover {
  background: #ddf3ff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-loader {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef7ff;
  color: #0c3852;
}

.form-loader span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
}

.form-status {
  min-height: 26px;
  margin: 14px 0 0;
  font-weight: 800;
}

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

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

.contact-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact-card a {
  color: #006fa3;
  font-weight: 850;
}

.contact-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius);
  background: #eefbf5;
}

.status-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(37, 217, 144, 0.15);
  animation: pulse 1.9s ease-in-out infinite;
}

.status-overview {
  justify-content: flex-start;
  margin-bottom: 26px;
  color: var(--text-dark);
}

.status-overview .status-dot {
  width: 22px;
  height: 22px;
}

.status-overview h2 {
  margin-bottom: 3px;
  color: var(--text-dark);
}

.status-overview p {
  color: var(--muted-dark);
}

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

.status-card {
  padding: 24px;
}

.status-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.status-card__head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #087a50;
  font-weight: 850;
  white-space: nowrap;
}

.uptime {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 3px;
  min-height: 48px;
}

.uptime i {
  display: block;
  min-height: 42px;
  border-radius: 3px;
  background: linear-gradient(180deg, #25d990, #12a96d);
  transform-origin: bottom;
  animation: barIn 420ms ease both;
  animation-delay: calc(var(--d) * 28ms);
}

.uptime-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 9px 0 18px;
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.legal-content {
  max-width: 860px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 1.72rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 28px;
  color: #ffffff;
  font-size: 1.18rem;
}

.legal-content p,
.legal-content li {
  color: #d5e7f2;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030915;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 56px 0 42px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-subhead {
  margin-top: 22px !important;
}

.footer-grid a:not(.brand):not(.status-mini) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-brand p {
  max-width: 440px;
  color: var(--muted);
}

.status-mini {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.status-mini .status-dot {
  grid-row: span 2;
  margin-top: 5px;
}

.status-mini span:last-child {
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 18px 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translate(-48%, -50%) translateY(0); }
  50% { transform: translate(-48%, -50%) translateY(-14px); }
}

@keyframes waveShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 0, -72px 0; }
}

@keyframes heroIntro {
  from { opacity: 1; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes caretBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(37, 217, 144, 0.13); }
  50% { box-shadow: 0 0 0 10px rgba(37, 217, 144, 0.05); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes barIn {
  from { transform: scaleY(0.3); opacity: 0.2; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@media (max-width: 1120px) {
  .hero h1,
  .sub-hero h1,
  .project-hero h1 {
    font-size: 3.58rem;
  }

  .hero-visual {
    min-height: 360px;
    max-width: 620px;
  }

  .ocean-band h2,
  .az-original h2 {
    font-size: 3.2rem;
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  .site-header__inner {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 136px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-h) + 10px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(12, 45, 73, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link,
  .customer-menu__button {
    width: 100%;
    justify-content: space-between;
  }

  .customer-menu__panel {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 0 12px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .customer-menu.is-open .customer-menu__panel {
    display: grid;
  }

  .hero {
    min-height: 620px;
    padding: 88px 0 142px;
    background-attachment: scroll;
  }

  .hero::after {
    height: 126px;
  }

  .hero__moving-wave {
    bottom: 92px;
  }

  .hero h1,
  .sub-hero h1,
  .project-hero h1 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .service-wave-section {
    margin-top: -76px;
  }

  .ocean-band {
    padding: 104px 0 118px;
  }

  .three-col,
  .project-grid,
  .project-grid--compact,
  .price-preview,
  .status-grid,
  .feature-grid--wide,
  .split,
  .project-detail,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .project-detail__image {
    position: static;
  }

  .pricing-intro,
  .section-head--row,
  .az-band,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero h1,
  .sub-hero h1,
  .project-hero h1 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 620px;
    padding: 72px 0 138px;
  }

  .hero::after {
    height: 104px;
  }

  .hero__moving-wave {
    bottom: 84px;
    height: 58px;
  }

  .hero__lead,
  .sub-hero__inner p:not(.eyebrow),
  .project-hero p {
    font-size: 1rem;
  }

  .hero .eyebrow {
    font-size: 0.86rem;
  }

  .hero__actions,
  .form-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-row span {
    width: calc(50% - 5px);
    text-align: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual__panel {
    width: 136px;
    padding: 13px;
  }

  .hero-visual__panel--server {
    top: 42px;
  }

  .hero-visual__panel--code {
    bottom: 42px;
  }

  .section,
  .sub-hero,
  .project-hero {
    padding: 64px 0;
  }

  .section h2,
  .section-head h2,
  .ocean-band h2,
  .az-original h2,
  .cta-band h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .service-wave-section {
    padding-bottom: 64px;
  }

  .wave-service-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .black-statement p {
    font-size: 1.22rem;
  }

  .feature-grid,
  .price-grid,
  .price-grid--shop,
  .power-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .uptime {
    gap: 2px;
  }

  .uptime i {
    min-height: 34px;
  }

  .legal-content,
  .contact-form,
  .contact-card,
  .az-band,
  .cta-band,
  .status-overview {
    padding: 22px;
  }
}

@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;
  }
}

/* HostingFox header with a polished mega-menu treatment. */
.site-header {
  height: var(--header-h);
  border-bottom: 0;
  background: rgba(247, 252, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(247, 252, 255, 0.98);
  box-shadow: 0 14px 36px rgba(9, 31, 52, 0.12);
}

.site-header__inner {
  justify-content: flex-start;
  gap: 34px;
}

.site-header .brand {
  flex: 0 0 auto;
}

.site-header .brand img {
  width: 174px;
}

.site-header .brand span {
  font-size: 0.82rem;
}

.primary-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 22px;
}

.nav-link {
  min-height: 48px;
  padding: 8px 2px;
  border-radius: 0;
  color: #101d2d;
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-link:hover,
.nav-link.is-active,
.mega-menu.is-current > .nav-link,
.mega-menu.is-open > .nav-link {
  background: transparent;
  color: #0076aa;
}

.mega-menu {
  position: relative;
}

.mega-menu::after {
  content: "";
  position: fixed;
  top: calc(var(--header-h) - 2px);
  left: var(--mega-caret-left, 50%);
  z-index: 101;
  width: 20px;
  height: 20px;
  background: #f7fcff;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.mega-menu.is-open::after {
  opacity: 1;
  visibility: visible;
}

.mega-menu__button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.mega-menu__panel {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  left: 50%;
  z-index: 100;
  width: min(1080px, calc(100vw - 56px));
  padding: 30px;
  border: 1px solid rgba(0, 175, 242, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(231, 247, 255, 0.9), rgba(255, 255, 255, 0.98) 34%, #ffffff),
    #ffffff;
  box-shadow: 0 28px 70px rgba(9, 31, 52, 0.15);
  color: #132236;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.mega-menu.is-open .mega-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu__panel--services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(250px, 0.88fr);
  gap: 26px;
}

.mega-menu__panel--services .mega-menu__column + .mega-menu__column {
  border-left: 1px solid rgba(9, 31, 52, 0.12);
  padding-left: 26px;
}

.mega-menu__panel--services .mega-menu__aside {
  padding: 24px;
  border: 1px solid rgba(0, 175, 242, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0, 175, 242, 0.1), rgba(255, 255, 255, 0.74));
}

.mega-menu__list,
.mega-menu__column {
  display: grid;
  gap: 22px;
  align-content: start;
}

.mega-menu__label {
  color: #647489;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.mega-menu__item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0;
  color: #152236;
}

.mega-menu__item:hover,
.mega-menu__item:focus-visible {
  color: #0076aa;
}

.mega-menu__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #152236;
}

.mega-menu__icon svg,
.header-icon svg,
.mega-menu__cta svg {
  width: 22px;
  height: 22px;
}

.mega-menu__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mega-menu__copy strong {
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.2;
}

.mega-menu__copy em {
  display: inline-flex;
  margin-left: 5px;
  padding: 1px 7px 2px;
  border-radius: 999px;
  background: #e7f7ff;
  color: #0076aa;
  font-style: normal;
  font-size: 0.7rem;
  vertical-align: middle;
}

.mega-menu__copy small,
.mega-menu__aside p {
  color: #435267;
  font-size: 0.92rem;
  line-height: 1.45;
}

.mega-menu__aside {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mega-menu__aside strong {
  color: #152236;
  font-size: 1.05rem;
}

.mega-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  color: #0076aa;
  font-weight: 850;
}

.mega-menu__subcta {
  display: inline-flex;
  width: fit-content;
  color: #52677b;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #00aff2;
  color: #03111f;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 175, 242, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #29c4ff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 175, 242, 0.3);
}

.header-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #101d2d;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-icon:hover,
.header-icon:focus-visible,
.customer-menu.is-open > .header-icon {
  background: rgba(0, 175, 242, 0.1);
  color: #0076aa;
}

.header-customer {
  position: relative;
}

.header-customer .customer-menu__panel {
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  border-radius: 24px;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 16px;
  }

  .site-header .brand span {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(247, 252, 255, 0.98);
  }

  .site-header__inner {
    width: min(100% - 28px, var(--container));
    gap: 10px;
  }

  .site-header .brand img {
    width: 150px;
  }

  .primary-nav {
    left: 14px;
    right: 14px;
    gap: 8px;
    max-height: calc(100dvh - var(--header-h) - 24px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(9, 31, 52, 0.1);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(9, 31, 52, 0.18);
  }

  .nav-link,
  .mega-menu__button {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .nav-link:hover,
  .nav-link.is-active,
  .mega-menu.is-current > .nav-link,
  .mega-menu.is-open > .nav-link {
    background: rgba(0, 175, 242, 0.09);
  }

  .mega-menu::after {
    display: none;
  }

  .mega-menu__panel {
    position: static;
    display: none;
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-menu.is-open .mega-menu__panel {
    display: grid;
    transform: none;
  }

  .mega-menu__panel--services {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mega-menu__panel--services .mega-menu__column + .mega-menu__column {
    border-left: 0;
    padding-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(9, 31, 52, 0.12);
  }

  .mega-menu__panel--services .mega-menu__aside {
    padding: 18px;
  }

  .mega-menu__list,
  .mega-menu__column {
    gap: 16px;
  }

  .header-actions {
    margin-left: auto;
    gap: 2px;
  }

  .header-cta {
    display: none;
  }

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

  .header-icon--support {
    display: none;
  }

  .header-customer .customer-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    min-width: 190px;
    margin: 0;
    border: 1px solid rgba(9, 31, 52, 0.1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(12, 45, 73, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }

  .header-customer.is-open .customer-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 460px) {
  .site-header .brand img {
    width: 132px;
  }

  .header-icon {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}
