/* AS400Cloud.eu static website
   Ready for regular IONOS webspace. No build step required. */

:root {
  --navy-950: #020814;
  --navy-900: #061022;
  --navy-850: #07172c;
  --navy-800: #091d38;
  --blue-500: #0e8cff;
  --blue-400: #1da1ff;
  --blue-300: #53bbff;
  --blue-200: #9edaff;
  --white: #ffffff;
  --muted: #b7c3d3;
  --text-dark: #08132a;
  --line: rgba(255,255,255,.14);
  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.container {
  width: min(1180px, calc(100% - 70px));
  margin: 0 auto;
}
.page-shell { overflow: hidden; }

.site-header {
  position: absolute;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 30px 0 10px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand img {
  display: block;
  width: 246px;
  max-height: 112px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}
.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.92);
  transition: color .2s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue-300); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  padding: 2px;
  min-width: 150px;
  justify-content: space-between;
  background: rgba(4, 13, 28, .7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}
.lang-switch button.active {
  background: linear-gradient(135deg, #0692ff, #18b7ff);
  box-shadow: 0 8px 22px rgba(0,145,255,.42);
}
.mobile-menu { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 660px;
  padding: 172px 0 80px;
  background:
    radial-gradient(circle at 83% 34%, rgba(19, 133, 255, .28), transparent 32%),
    radial-gradient(circle at 25% 12%, rgba(15, 116, 250, .14), transparent 30%),
    linear-gradient(115deg, #020914 0%, #061224 44%, #061a34 100%);
}
.hero-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,156,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,156,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 40%, black 0, transparent 72%);
}
.blue-orb {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .34;
  background: #008cff;
}
.orb-one { right: -110px; top: 120px; }
.orb-two { left: -180px; top: 40px; opacity: .18; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 70px;
  align-items: center;
}
.kicker {
  display: none;
  color: var(--blue-300);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(48px, 5.7vw, 66px);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.hero h1 span { color: var(--blue-400); }
.hero-claim {
  margin: 0 0 22px;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 900;
  max-width: 500px;
}
.hero-text {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.62;
  max-width: 510px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 7px;
  padding: 0 26px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #0790ff, #1a7dff);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 137, 255, .32);
}
.btn-primary:hover { box-shadow: 0 22px 45px rgba(0,137,255,.45); }
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.03);
}
.btn i { font-style: normal; font-size: 22px; line-height: 1; }

.trust-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.shield-icon {
  width: 33px;
  height: 42px;
  flex: 0 0 33px;
}
.shield-icon svg,
.shield-large svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.shield-icon { color: white; }
.trust-note p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}

/* Visual */
.hero-visual {
  position: relative;
  min-height: 510px;
}
.network-sphere {
  position: absolute;
  right: -26px;
  top: -34px;
  width: 610px;
  height: 510px;
  border-radius: 50%;
  opacity: .98;
}
.network-sphere::before {
  content: "";
  position: absolute;
  inset: 18px 0 0;
  border-radius: 50%;
  border: 1px solid rgba(64, 169, 255, .38);
  background:
    radial-gradient(circle, rgba(22,153,255,.12) 1.1px, transparent 1.8px) 0 0/11px 11px,
    radial-gradient(circle at 50% 50%, rgba(1,135,255,.16), transparent 62%);
  filter: drop-shadow(0 0 28px rgba(0,126,255,.32));
}
.network-sphere::after {
  content: "";
  position: absolute;
  inset: 58px 76px 70px;
  border-radius: 50%;
  border: 1px dashed rgba(83, 187, 255, .34);
  transform: rotate(-14deg);
}
.sphere-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83,187,255,.9), transparent);
  box-shadow: 0 0 13px rgba(83,187,255,.8);
  transform-origin: center;
}
.line-a { width: 560px; top: 245px; left: 20px; transform: rotate(-18deg); }
.line-b { width: 520px; top: 240px; left: 55px; transform: rotate(24deg); }
.line-c { width: 420px; top: 155px; left: 92px; transform: rotate(9deg); opacity:.75; }
.node {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--blue-300);
  border-radius: 50%;
  box-shadow: 0 0 16px 4px rgba(29,161,255,.62);
}
.n1 { left: 30px; top: 230px; }
.n2 { left: 128px; top: 116px; }
.n3 { left: 265px; top: 54px; }
.n4 { right: 88px; top: 95px; }
.n5 { right: 12px; top: 225px; }
.n6 { right: 116px; bottom: 82px; }
.n7 { left: 145px; bottom: 58px; }
.n8 { left: 68px; bottom: 160px; }
.n9 { left: 380px; bottom: 22px; }

.server-stage {
  position: absolute;
  right: 72px;
  top: 145px;
  width: 480px;
  height: 360px;
  transform: perspective(920px) rotateX(1deg);
}
.floating-logo {
  position: absolute;
  top: -38px;
  left: 136px;
  width: 235px;
  z-index: 8;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.65));
}
.floating-logo img { width:100%; display:block; }

.rack {
  position: absolute;
  bottom: 98px;
  width: 96px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(135deg, #142a44, #061122 72%);
  border: 1px solid rgba(105,190,255,.38);
  box-shadow: inset 7px 0 16px rgba(255,255,255,.06), inset -12px 0 20px rgba(0,0,0,.55), 0 24px 44px rgba(0,0,0,.58);
  padding: 18px 11px;
}
.rack div {
  height: 20px;
  margin-bottom: 9px;
  border-radius: 3px;
  background:
    radial-gradient(circle at 12px 50%, #13a3ff 0 2px, transparent 2.3px),
    linear-gradient(90deg, #1b3f64, #091a30);
  border: 1px solid rgba(81, 173, 255, .22);
}
.rack-left { left: 96px; height: 222px; transform: skewY(6deg) scale(.92); opacity:.86; }
.rack-center { left: 192px; height: 270px; width: 118px; z-index: 4; }
.rack-right { left: 315px; height: 225px; transform: skewY(-6deg) scale(.93); opacity:.88; }

.platform {
  position: absolute;
  left: 76px;
  width: 385px;
  height: 95px;
  border-radius: 50%;
  transform: rotateX(68deg);
  border: 2px solid rgba(29,161,255,.85);
  box-shadow: 0 0 24px rgba(29,161,255,.65), inset 0 0 28px rgba(29,161,255,.22);
}
.platform.top {
  bottom: 40px;
  background: radial-gradient(ellipse at center, rgba(29,161,255,.22), rgba(2,14,31,.82) 64%);
  z-index: 2;
}
.platform.bottom {
  bottom: 8px;
  border-width: 3px;
  opacity: .86;
  background: rgba(0, 102, 255, .05);
}

/* INTRO */
.intro-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  color: var(--text-dark);
  padding: 33px 0 58px;
}
.section-head.centered {
  text-align: center;
  max-width: 985px;
  margin: 0 auto;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -.03em;
  font-weight: 900;
}
.section-head p {
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.55;
  max-width: 880px;
}
.title-line {
  display: block;
  width: 52px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--blue-500);
  border-radius: 999px;
}
.title-line.left { margin-left:0; margin-right:auto; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.benefit {
  text-align: center;
}
.benefit h3 {
  margin: 16px 0 10px;
  font-size: 15px;
  font-weight: 900;
}
.benefit p {
  margin: 0 auto;
  color: #101b32;
  line-height: 1.55;
  font-size: 13px;
  max-width: 142px;
}
.benefit-icon {
  position: relative;
  width: 57px;
  height: 57px;
  margin: 0 auto;
  color: var(--blue-500);
}
.benefit-icon::before,
.card-icon::before {
  content:"";
  position:absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: var(--icon) center/contain no-repeat;
  mask: var(--icon) center/contain no-repeat;
}
.icon-shield { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32 5 54 14v15c0 14-9 25-22 30C19 54 10 43 10 29V14L32 5Z" fill="none" stroke="black" stroke-width="4"/><path d="m21 31 8 8 15-18" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>'); }
.icon-lock { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><rect x="14" y="28" width="36" height="28" rx="5" fill="none" stroke="black" stroke-width="4"/><path d="M22 28V18c0-7 4-12 10-12s10 5 10 12v10" fill="none" stroke="black" stroke-width="4"/><path d="M32 40v7" stroke="black" stroke-width="4" stroke-linecap="round"/></svg>'); }
.icon-chart { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="28" cy="28" r="20" fill="none" stroke="black" stroke-width="4"/><path d="M43 43 58 58" stroke="black" stroke-width="4" stroke-linecap="round"/><path d="M18 38V27M28 38V18M38 38V24" stroke="black" stroke-width="4" stroke-linecap="round"/></svg>'); }
.icon-network { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="32" cy="10" r="5" fill="none" stroke="black" stroke-width="4"/><circle cx="12" cy="32" r="5" fill="none" stroke="black" stroke-width="4"/><circle cx="32" cy="54" r="5" fill="none" stroke="black" stroke-width="4"/><circle cx="52" cy="32" r="5" fill="none" stroke="black" stroke-width="4"/><circle cx="32" cy="32" r="6" fill="none" stroke="black" stroke-width="4"/><path d="M32 15v11M17 32h9M32 38v11M38 32h9" stroke="black" stroke-width="4"/></svg>'); }
.icon-people { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="24" cy="22" r="9" fill="none" stroke="black" stroke-width="4"/><circle cx="44" cy="25" r="7" fill="none" stroke="black" stroke-width="4"/><path d="M8 55c2-12 10-18 20-18s18 6 20 18" fill="none" stroke="black" stroke-width="4"/><path d="M38 39c8 1 14 6 16 16" fill="none" stroke="black" stroke-width="4"/></svg>'); }
.icon-target { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="32" cy="32" r="24" fill="none" stroke="black" stroke-width="4"/><circle cx="32" cy="32" r="13" fill="none" stroke="black" stroke-width="4"/><circle cx="32" cy="32" r="4" fill="black"/><path d="M42 22 57 7M47 7h10v10" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>'); }

/* POWER */
.power-section {
  background:
    radial-gradient(circle at 50% -16%, rgba(15, 116, 250, .28), transparent 34%),
    linear-gradient(180deg, #061023 0%, #07162b 100%);
  padding: 30px 0 62px;
  color: #fff;
}
.section-head.light h2 { color:#fff; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.option-card {
  border: 1px solid rgba(86, 159, 255, .36);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 34, 63, .92), rgba(8, 22, 43, .95));
  padding: 30px 32px 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  min-height: 256px;
}
.option-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 900;
}
.option-card p {
  margin: 0 0 22px;
  line-height: 1.52;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.option-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.option-card li {
  position: relative;
  padding-left: 23px;
  margin: 9px 0;
  font-size: 14px;
  color: rgba(255,255,255,.94);
}
.option-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  font-weight: 900;
}
.option-card a {
  color: var(--blue-400);
  font-weight: 900;
  text-decoration: none;
}
.card-icon {
  position: relative;
  width: 58px;
  height: 45px;
  margin-bottom: 11px;
  color: var(--blue-400);
}
.cloud-server { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 76 58" xmlns="http://www.w3.org/2000/svg"><path d="M24 48H15C7 48 3 43 3 37s5-11 11-11c1-11 10-20 22-20 10 0 18 6 21 15 8 1 15 7 15 15 0 7-5 12-13 12H24Z" fill="none" stroke="black" stroke-width="4"/><rect x="22" y="27" width="32" height="7" rx="2" fill="none" stroke="black" stroke-width="3"/><rect x="22" y="38" width="32" height="7" rx="2" fill="none" stroke="black" stroke-width="3"/></svg>'); }
.cloud-alt { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 76 58" xmlns="http://www.w3.org/2000/svg"><path d="M24 48H15C7 48 3 43 3 37s5-11 11-11c1-11 10-20 22-20 10 0 18 6 21 15 8 1 15 7 15 15 0 7-5 12-13 12H24Z" fill="none" stroke="black" stroke-width="4"/><path d="M23 34h30M23 42h30" stroke="black" stroke-width="4" stroke-linecap="round"/></svg>'); }
.cloud-hybrid { --icon: url('data:image/svg+xml;utf8,<svg viewBox="0 0 76 58" xmlns="http://www.w3.org/2000/svg"><path d="M24 48H15C7 48 3 43 3 37s5-11 11-11c1-11 10-20 22-20 10 0 18 6 21 15 8 1 15 7 15 15 0 7-5 12-13 12H24Z" fill="none" stroke="black" stroke-width="4"/><circle cx="27" cy="35" r="4" fill="black"/><circle cx="39" cy="27" r="4" fill="black"/><circle cx="51" cy="35" r="4" fill="black"/><path d="m31 33 5-4m7 0 5 4" stroke="black" stroke-width="3"/></svg>'); }

/* ABOUT */
.about-section {
  background: linear-gradient(180deg, #f6f9fd 0%, #edf4fb 100%);
  color: var(--text-dark);
  padding: 36px 0 34px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.about-copy h2,
.trust-card h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.03em;
}
.about-copy h2 { font-size: 30px; }
.about-copy p {
  margin: 18px 0 0;
  line-height: 1.62;
  font-size: 15px;
  max-width: 560px;
}
.about-copy p.strong { font-weight: 900; }

.mini-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.mini-badges div {
  min-height: 62px;
  border: 1px solid rgba(0, 119, 255, .22);
  background: rgba(255,255,255,.54);
  border-radius: 6px;
  padding: 12px 14px 10px 54px;
  position: relative;
}
.mini-badges div::before {
  content: "";
  position: absolute;
  left: 16px; top: 16px;
  width: 25px; height: 25px;
  background: var(--blue-500);
  -webkit-mask: var(--mini) center/contain no-repeat;
  mask: var(--mini) center/contain no-repeat;
}
.mini-badges div:nth-child(1) { --mini: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><rect x="14" y="25" width="36" height="30" rx="5" fill="none" stroke="black" stroke-width="4"/><path d="M22 25v-7c0-6 4-10 10-10s10 4 10 10v7" fill="none" stroke="black" stroke-width="4"/></svg>');}
.mini-badges div:nth-child(2) { --mini: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="32" cy="32" r="24" fill="none" stroke="black" stroke-width="4"/><path d="M18 42c10-3 16-9 20-20M28 45l14-28" stroke="black" stroke-width="4" stroke-linecap="round"/></svg>');}
.mini-badges div:nth-child(3) { --mini: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="19" cy="22" r="7" fill="none" stroke="black" stroke-width="4"/><circle cx="45" cy="22" r="7" fill="none" stroke="black" stroke-width="4"/><circle cx="32" cy="42" r="7" fill="none" stroke="black" stroke-width="4"/><path d="M25 26 30 37M39 26l-5 11" stroke="black" stroke-width="4"/></svg>');}
.mini-badges b {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.mini-badges span {
  font-size: 12px;
  color: #25314a;
}
.trust-card {
  border: 1px solid rgba(0, 119, 255, .22);
  background: rgba(255,255,255,.66);
  border-radius: 8px;
  padding: 35px 40px 31px;
  box-shadow: 0 20px 48px rgba(14, 60, 103, .08);
}
.shield-large {
  color: var(--blue-500);
  width: 54px;
  height: 64px;
  margin-bottom: 8px;
}
.trust-card h3 { font-size: 24px; }
.trust-card p {
  margin: 22px 0 26px;
  line-height: 1.62;
  font-size: 15px;
}
.trust-card .btn {
  min-height: 46px;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 13px;
}

/* FOOTER */
.site-footer {
  background: #031023;
  color: #fff;
  padding: 31px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.12fr 1.12fr 1.35fr;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.footer-brand {
  border-right: 1px solid rgba(255,255,255,.14);
  padding-right: 34px;
}
.footer-brand img {
  width: 190px;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p,
.footer-col p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.footer-col h4 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 900;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 14px;
  margin: 9px 0;
}
.footer-col a:hover { color: var(--blue-300); }
.contact-col {
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: 34px;
}
.linkedin {
  display: inline-flex !important;
  width: 19px; height: 19px;
  align-items:center; justify-content:center;
  background: #0a7cff;
  border-radius: 2px;
  color: #fff !important;
  font-weight: 900;
  margin-top: 8px !important;
}
.legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.legal-row p { margin: 0; }
.legal-row a {
  text-decoration: none;
  margin-left: 38px;
}

/* Mobile */
@media (max-width: 1120px) {
  .container { width: min(100% - 40px, 1060px); }
  .main-nav { gap: 18px; font-size: 13px; }
  .brand img { width: 205px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 150px; }
  .hero-visual { min-height: 440px; transform: scale(.88); transform-origin: top center; }
  .network-sphere { left: 50%; right:auto; transform: translateX(-50%); }
  .server-stage { left: 50%; right:auto; transform: translateX(-50%); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display:none; }
  .mobile-menu {
    display:flex;
    flex-direction:column;
    gap:5px;
    border:0;
    background:transparent;
  }
  .mobile-menu span {
    width:26px; height:2px; background:white; display:block;
  }
  .hero h1 { font-size: 48px; }
  .option-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .contact-col { border: 0; padding: 0; }
  .mini-badges { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .site-header { padding-top: 18px; }
  .brand img { width: 170px; }
  .lang-switch { min-width: 122px; }
  .lang-switch button { padding: 9px 10px; }
  .hero { padding-top: 130px; min-height: auto; }
  .hero h1 { font-size: 40px; }
  .hero-claim { font-size: 18px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: 330px; transform: scale(.62); margin-top: -30px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .benefit p { max-width: 190px; }
  .intro-section, .power-section, .about-section { padding: 48px 0; }
  .legal-row { flex-direction: column; gap: 14px; }
  .legal-row a { margin: 0 12px; }
}


/* Contact form extension */
.contact-form-section {
  background:
    radial-gradient(circle at 76% 18%, rgba(14, 140, 255, .22), transparent 34%),
    linear-gradient(180deg, #edf4fb 0%, #061023 46%, #031023 100%);
  padding: 54px 0 72px;
  color: #fff;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
  border: 1px solid rgba(86,159,255,.32);
  background: linear-gradient(135deg, rgba(6,18,36,.94), rgba(8,29,56,.94));
  border-radius: 14px;
  padding: 42px;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.contact-form-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 900;
}

.contact-form-copy p {
  color: rgba(255,255,255,.86);
  line-height: 1.68;
  font-size: 16px;
}

.form-kicker {
  margin: 0 0 10px !important;
  color: var(--blue-300) !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px !important;
}


.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row.full,
.privacy-check,
.form-submit {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.86);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.form-row select option {
  color: #08132a;
}

.form-row textarea {
  resize: vertical;
  min-height: 142px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(83,187,255,.75);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 4px rgba(14,140,255,.14);
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-check input {
  margin-top: 3px;
  accent-color: var(--blue-500);
}

.privacy-check a {
  color: var(--blue-300);
  font-weight: 800;
}

.form-submit {
  border: 0;
  cursor: pointer;
  width: auto;
  justify-self: start;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message-page {
  background:
    radial-gradient(circle at 72% 20%, rgba(14,140,255,.22), transparent 34%),
    linear-gradient(135deg, #020914, #061a34);
  color: #fff;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.form-message-card {
  max-width: 720px;
  border: 1px solid rgba(86,159,255,.32);
  background: linear-gradient(135deg, rgba(6,18,36,.94), rgba(8,29,56,.94));
  border-radius: 16px;
  padding: 46px;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.form-message-card h1 {
  margin: 0 0 16px;
  font-size: 34px;
}

.form-message-card p {
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}

.form-message-card .btn {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .contact-form-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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