:root {
  color-scheme: dark;
  --bg: #060607;
  --bg-secondary: #0d0d0f;
  --panel: #111113;
  --panel-soft: rgba(17, 17, 19, 0.78);
  --gold: #deb14f;
  --gold-light: #f1cf76;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --line: rgba(222, 177, 79, 0.18);
  --line-strong: rgba(222, 177, 79, 0.36);
  --cyan: #25e5e5;
  --pink: #ff356f;
  --danger: #ff697d;
  --ok: #8effbd;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(115deg, rgba(222, 177, 79, 0.1), transparent 34%),
    linear-gradient(245deg, rgba(37, 229, 229, 0.06), transparent 32%),
    linear-gradient(180deg, #050506 0%, #0a0a0c 45%, #050506 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(120deg, transparent 0 48%, rgba(222, 177, 79, 0.08) 50%, transparent 52% 100%),
    linear-gradient(60deg, transparent 0 46%, rgba(255, 255, 255, 0.04) 50%, transparent 54% 100%);
  background-size: 380px 380px, 520px 520px;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold-light);
  color: #080808;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(6, 6, 7, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(222, 177, 79, 0.14);
  background: rgba(6, 6, 7, 0.9);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo-img {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(222, 177, 79, 0.12));
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(222, 177, 79, 0.18), rgba(255, 53, 111, 0.07)), #0b0b0d;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(222, 177, 79, 0.12);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 10px;
  top: -9px;
  clip-path: polygon(0 100%, 16% 30%, 34% 72%, 50% 0, 66% 72%, 84% 30%, 100% 100%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.96rem;
  font-weight: 900;
}

.brand small {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

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

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 84px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.lang-btn.is-active {
  color: #070707;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(222, 177, 79, 0.38);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: rgba(222, 177, 79, 0.08);
}

.button-gold {
  border-color: rgba(241, 207, 118, 0.7);
  color: #080808;
  background: linear-gradient(180deg, var(--gold-light), #c89134);
  box-shadow: 0 12px 34px rgba(222, 177, 79, 0.18);
}

.button-gold:hover {
  color: #050505;
  background: linear-gradient(180deg, #ffe199, var(--gold));
}

.button-pink {
  border-color: rgba(255, 53, 111, 0.62);
  background: linear-gradient(180deg, rgba(255, 53, 111, 0.95), rgba(181, 19, 72, 0.96));
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 12, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-nav a {
  display: block;
  padding: 15px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 245, 0.86);
  font-weight: 800;
}

.mobile-nav a:first-child {
  border-top: 0;
}

.mobile-nav.is-open {
  display: block;
}

.page-shell {
  overflow: hidden;
}

.section,
.hero {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 70px;
  padding: 84px 0 64px;
}

.sub-hero {
  min-height: 520px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: 4.4rem;
  font-weight: 950;
}

h1 span,
h2 span {
  display: block;
  color: var(--gold-light);
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 900;
}

.lead {
  max-width: 690px;
  color: rgba(245, 245, 245, 0.76);
  font-size: 1.18rem;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  margin: -18px auto 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.trust-strip span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(13, 13, 15, 0.9);
  color: rgba(245, 245, 245, 0.86);
  text-align: center;
  font-weight: 850;
}

.section {
  padding: 74px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 470px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.feature-card,
.metric-card,
.form-card,
.legal-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)), var(--panel-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.feature-card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(241, 207, 118, 0.8), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card p,
.card p {
  color: var(--muted);
}

.feature-kicker,
.step-number,
.metric-value {
  color: var(--gold-light);
  font-weight: 950;
}

.feature-kicker {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(222, 177, 79, 0.34);
  border-radius: 8px;
  background: rgba(222, 177, 79, 0.08);
}

.steps {
  counter-reset: steps;
}

.step-card {
  min-height: 170px;
  padding: 26px;
}

.step-number {
  display: block;
  margin-bottom: 16px;
  font-size: 2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.callout-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 66px auto;
  padding: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(222, 177, 79, 0.12), transparent 38%),
    linear-gradient(250deg, rgba(255, 53, 111, 0.08), transparent 36%),
    rgba(13, 13, 15, 0.88);
  box-shadow: var(--shadow);
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.callout-inner p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.hero-visual,
.visual-panel {
  position: relative;
  min-height: 520px;
}

.media-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-card img,
.visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.02), rgba(6, 6, 7, 0.28)),
    linear-gradient(90deg, rgba(222, 177, 79, 0.12), transparent 42%);
}

.hero-media {
  min-height: 600px;
}

.hero-media img {
  object-position: center;
}

.portrait-media {
  max-width: 520px;
  min-height: 680px;
  margin: 0 auto;
}

.portrait-media img {
  object-position: center;
}

.network-media {
  min-height: 440px;
}

.brand-media {
  min-height: 520px;
}

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

.image-pair .media-card {
  min-height: 560px;
}

.visual-panel {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(222, 177, 79, 0.09), transparent 38%),
    linear-gradient(215deg, rgba(37, 229, 229, 0.06), transparent 40%),
    rgba(12, 12, 14, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.phone-wrap {
  position: relative;
  width: min(330px, 82vw);
  margin: 0 auto;
}

.phone {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 9 / 18.5;
  padding: 18px;
  border: 1px solid rgba(241, 207, 118, 0.58);
  border-radius: 32px;
  background: linear-gradient(155deg, #151518, #050506 44%, #151011);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52), 0 0 0 8px rgba(255, 255, 255, 0.02);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 53, 111, 0.14), transparent 22%),
    linear-gradient(20deg, rgba(222, 177, 79, 0.16), transparent 34%),
    #09090b;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  font-size: 0.72rem;
  font-weight: 900;
}

.live-badge {
  padding: 5px 9px;
  border-radius: 99px;
  color: #fff;
  background: linear-gradient(180deg, var(--pink), #a70945);
}

.viewer-badge {
  color: var(--gold-light);
}

.creator-silhouette {
  position: absolute;
  left: 50%;
  top: 21%;
  transform: translateX(-50%);
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(241, 207, 118, 0.28), transparent 64%),
    linear-gradient(135deg, #333237, #08080a);
  box-shadow: 0 30px 90px rgba(222, 177, 79, 0.18);
}

.creator-silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 76%;
  transform: translateX(-50%);
  width: 150%;
  height: 120%;
  border-radius: 48% 48% 16px 16px;
  background: linear-gradient(180deg, #191a1e, #09090b);
}

.chat-stack {
  position: absolute;
  left: 16px;
  right: 60px;
  bottom: 66px;
  display: grid;
  gap: 8px;
}

.chat-line {
  min-height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.chat-line:nth-child(1) {
  width: 82%;
}

.chat-line:nth-child(2) {
  width: 68%;
}

.chat-line:nth-child(3) {
  width: 76%;
}

.reaction-rail {
  position: absolute;
  right: 14px;
  bottom: 58px;
  display: grid;
  gap: 10px;
}

.reaction-rail span,
.floating-signal {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.reaction-rail span:nth-child(1) {
  color: var(--pink);
}

.reaction-rail span:nth-child(2) {
  color: var(--gold-light);
}

.reaction-rail span:nth-child(3) {
  color: var(--cyan);
}

.floating-signal {
  position: absolute;
  z-index: 3;
  width: auto;
  min-width: 96px;
  padding: 0 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.signal-one {
  top: 13%;
  left: -28px;
}

.signal-two {
  right: -30px;
  bottom: 27%;
  border-color: rgba(37, 229, 229, 0.26);
}

.signal-three {
  left: -20px;
  bottom: 11%;
  border-color: rgba(255, 53, 111, 0.28);
}

.network-visual {
  position: relative;
  min-height: 430px;
  width: 100%;
  display: grid;
  place-items: center;
}

.map-grid {
  position: absolute;
  inset: 54px;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.network-line {
  position: absolute;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left center;
  opacity: 0.78;
}

.line-a {
  width: 290px;
  left: 28%;
  top: 43%;
  transform: rotate(-18deg);
}

.line-b {
  width: 220px;
  left: 44%;
  top: 50%;
  transform: rotate(22deg);
}

.line-c {
  width: 270px;
  left: 25%;
  top: 58%;
  transform: rotate(12deg);
}

.node {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #0b0b0c;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 22px rgba(222, 177, 79, 0.9);
}

.node.de {
  left: 34%;
  top: 42%;
}

.node.tr {
  left: 63%;
  top: 54%;
}

.node.eu {
  left: 47%;
  top: 36%;
}

.node.world {
  left: 71%;
  top: 42%;
}

.map-label {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(222, 177, 79, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.label-de {
  left: 26%;
  top: 51%;
}

.label-tr {
  right: 22%;
  top: 63%;
}

.dashboard {
  width: min(520px, 100%);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 7, 8, 0.76);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.metric-card {
  padding: 14px;
}

.metric-value {
  display: block;
  font-size: 1.4rem;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.chart {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 150px;
  padding: 16px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bar {
  flex: 1;
  min-width: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold-light), rgba(222, 177, 79, 0.18));
}

.bar:nth-child(1) {
  height: 48px;
}

.bar:nth-child(2) {
  height: 78px;
}

.bar:nth-child(3) {
  height: 62px;
}

.bar:nth-child(4) {
  height: 104px;
}

.bar:nth-child(5) {
  height: 128px;
}

.bar:nth-child(6) {
  height: 94px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(245, 245, 245, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  font-size: 0.88rem;
}

.pill.gold {
  border-color: rgba(222, 177, 79, 0.34);
  color: var(--gold-light);
}

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

.category-grid span,
.mini-service {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 245, 245, 0.86);
  font-weight: 800;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 19, 0.78);
}

.process-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
}

.form-card {
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: rgba(245, 245, 245, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  padding: 13px 14px;
}

textarea {
  min-height: 134px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(168, 168, 168, 0.76);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  border: 1px solid rgba(142, 255, 189, 0.3);
  color: var(--ok);
  background: rgba(142, 255, 189, 0.08);
}

.form-status.is-error {
  display: block;
  border: 1px solid rgba(255, 105, 125, 0.34);
  color: var(--danger);
  background: rgba(255, 105, 125, 0.08);
}

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

details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

summary {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  font-weight: 850;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--gold-light);
  font-size: 1.25rem;
  font-weight: 800;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-item strong {
  display: block;
  color: var(--gold-light);
}

.legal-note {
  padding: 28px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(222, 177, 79, 0.14);
  background: rgba(5, 5, 6, 0.86);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 28px;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: var(--muted);
}

.footer-col h3 {
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  margin-top: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--gold-light);
  font-weight: 900;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.narrow {
  max-width: 830px;
}

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

.gold {
  color: var(--gold-light);
}

.accent-pink {
  color: var(--pink);
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .split,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 42px;
    padding-top: 70px;
  }

  .hero-visual,
  .visual-panel {
    min-height: 500px;
  }

  .hero-media {
    min-height: 520px;
  }

  .portrait-media {
    min-height: 620px;
  }

  .section-header,
  .callout-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 760px) {
  .header-inner,
  .section,
  .hero,
  .trust-strip,
  .callout-band,
  .footer-inner,
  .mobile-nav {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand-logo-img {
    width: 128px;
  }

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

  .language-switcher {
    min-width: 74px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .lead {
    font-size: 1.03rem;
  }

  .hero {
    padding: 50px 0 42px;
  }

  .section {
    padding: 50px 0;
  }

  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .category-grid,
  .process-line,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .hero-actions,
  .hero-actions .button,
  .callout-inner .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
    width: 100%;
  }

  .feature-card,
  .form-card,
  .callout-band,
  .legal-note {
    padding: 22px;
  }

  .hero-visual,
  .visual-panel {
    min-height: 430px;
  }

  .hero-media,
  .brand-media,
  .network-media {
    min-height: 360px;
  }

  .portrait-media {
    min-height: 560px;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair .media-card {
    min-height: 520px;
  }

  .phone-wrap {
    width: min(280px, 84vw);
  }

  .floating-signal {
    min-width: 78px;
    height: 34px;
    font-size: 0.7rem;
  }

  .signal-one {
    left: -8px;
  }

  .signal-two {
    right: -8px;
  }

  .signal-three {
    left: -4px;
  }

  .footer-grid {
    gap: 20px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .phone-wrap {
    width: min(250px, 82vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
