:root {
  --bg: #050816;
  --bg-soft: #0b1028;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --ink: #f7fbff;
  --muted: #a7b5d8;
  --line: rgba(120, 210, 255, 0.18);
  --cyan: #18e8ff;
  --blue: #2b5dff;
  --violet: #9b3dff;
  --magenta: #d949ff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --glow: 0 0 28px rgba(24, 232, 255, 0.35);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(43, 93, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 8% 42%, rgba(155, 61, 255, 0.14), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.narrow {
  width: min(840px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-inline: clamp(18px, 5vw, 56px);
  background: rgba(5, 8, 22, 0.8);
  border-bottom: 1px solid rgba(24, 232, 255, 0.14);
  backdrop-filter: blur(20px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 22, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(420px, 38vw);
  font-weight: 850;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(24, 232, 255, 0.55));
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--white);
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: #dbe8ff;
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

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

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  border: 0;
  border-radius: 6px;
  padding: 7px 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.lang-btn:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.lang-btn.is-active {
  color: #03101b;
  background: var(--cyan);
  box-shadow: var(--glow);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: #03040b;
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: 0;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.94), rgba(3, 4, 11, 0.76) 48%, rgba(3, 4, 11, 0.35)),
    linear-gradient(0deg, rgba(3, 4, 11, 0.84), rgba(3, 4, 11, 0.12) 45%, rgba(3, 4, 11, 0.56));
}

.hero-logo-stage {
  position: absolute;
  z-index: 2;
  right: max(28px, 8vw);
  top: 50%;
  width: min(42vw, 430px);
  margin: 0;
  transform: translateY(-47%);
  opacity: 0.76;
  pointer-events: none;
}

.hero-logo-stage img {
  width: 100%;
  filter:
    drop-shadow(0 0 20px rgba(24, 232, 255, 0.7))
    drop-shadow(0 0 58px rgba(155, 61, 255, 0.45));
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-block: clamp(92px, 14vw, 158px) clamp(56px, 10vw, 96px);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-shadow: 0 0 34px rgba(24, 232, 255, 0.18);
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--cyan);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 850;
}

.hero-slogan {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.28rem, 2.7vw, 2.15rem);
  line-height: 1.18;
  font-weight: 850;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(224, 235, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

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

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.btn-primary {
  color: #03101b;
  background: linear-gradient(135deg, var(--cyan), #7af7ff);
  box-shadow: var(--glow);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(24, 232, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 7px 12px;
  border: 1px solid rgba(24, 232, 255, 0.24);
  border-radius: 999px;
  color: rgba(224, 235, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.section {
  padding-block: clamp(72px, 9vw, 118px);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--bg-soft);
}

.section-dark {
  color: var(--white);
  background: #03040b;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.section-intro p:not(.section-kicker),
.about-copy p,
.why-list p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy p:first-child {
  margin-top: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat-strip div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-strip strong,
.stat-strip span {
  display: block;
}

.stat-strip strong {
  color: var(--white);
  font-size: 1.3rem;
}

.stat-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.business-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(24, 232, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.business-card::after {
  position: absolute;
  content: "";
  right: -78px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(24, 232, 255, 0.12);
  filter: blur(4px);
}

.business-card.is-mcn::after {
  background: rgba(155, 61, 255, 0.18);
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 232, 255, 0.56);
  box-shadow: var(--shadow), 0 0 24px rgba(24, 232, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(24, 232, 255, 0.12), rgba(155, 61, 255, 0.08)),
    var(--panel-strong);
}

.business-tag {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.business-card p {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
}

.business-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  position: relative;
  padding-left: 20px;
  color: #dbe8ff;
}

.business-card li::before {
  position: absolute;
  content: "";
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(24, 232, 255, 0.7);
}

.card-grid,
.pricing-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.pricing-card,
.portfolio-card,
.contact-card,
.faq-item,
.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.pricing-card:hover,
.portfolio-card:hover,
.contact-card:hover,
.process-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 232, 255, 0.5);
  box-shadow: var(--shadow), 0 0 24px rgba(24, 232, 255, 0.14);
  background: var(--panel-strong);
}

.service-card {
  min-height: 230px;
  padding: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: #03101b;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: var(--glow);
}

.service-card h3,
.pricing-card h3,
.portfolio-card h3,
.process-list h3,
.why-list h3 {
  margin: 0;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p,
.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.pricing-card {
  padding: 28px;
}

.pricing-card.is-featured {
  background:
    linear-gradient(145deg, rgba(24, 232, 255, 0.13), rgba(155, 61, 255, 0.18)),
    rgba(255, 255, 255, 0.075);
  border-color: rgba(24, 232, 255, 0.68);
}

.pricing-label {
  margin: 0 0 10px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  min-height: 138px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.pricing-card li::before {
  position: absolute;
  content: "";
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(24, 232, 255, 0.7);
}

.btn-card {
  width: 100%;
  color: #03101b;
  background: linear-gradient(135deg, var(--cyan), #8cf7ff);
}

.creator-section {
  background:
    radial-gradient(circle at 16% 22%, rgba(155, 61, 255, 0.14), transparent 28rem),
    var(--bg);
}

.creator-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(24, 232, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(24, 232, 255, 0.1), rgba(155, 61, 255, 0.12)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow), 0 0 28px rgba(24, 232, 255, 0.1);
}

.creator-profile {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.creator-avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(24, 232, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 4, 11, 0.52);
}

.creator-avatar img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(24, 232, 255, 0.65));
}

.creator-label {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.12rem);
  line-height: 1.05;
}

.creator-card p:not(.creator-label):not(.creator-note) {
  margin: 14px 0 0;
  color: var(--muted);
}

.creator-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(24, 232, 255, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.creator-link:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 232, 255, 0.72);
  background: rgba(24, 232, 255, 0.1);
}

.creator-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.creator-stats div {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(24, 232, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 232, 255, 0.13), rgba(155, 61, 255, 0.08)),
    rgba(3, 4, 11, 0.64);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.creator-stats div:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 232, 255, 0.48);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.creator-stats strong,
.creator-stats span {
  display: block;
}

.creator-stats strong {
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1;
  white-space: nowrap;
}

.creator-stats span {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.creator-note {
  margin: 0;
  color: rgba(167, 181, 216, 0.72);
  font-size: 0.9rem;
}

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

.portfolio-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: #070b1a;
}

.portfolio-card-body {
  padding: 22px;
}

.portfolio-card-body p {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card-body span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

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

.process-list li {
  min-height: 230px;
  padding: 22px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan);
  font-weight: 900;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  padding: 20px 0 20px 22px;
  border-left: 4px solid var(--cyan);
}

.why-list p {
  margin: 8px 0 0;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 62px;
  padding: 18px 20px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-question span:last-child {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #03101b;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(24, 232, 255, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(5, 8, 22, 0.98), rgba(11, 16, 40, 0.96));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(24, 232, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: rgba(24, 232, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.contact-link span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #03101b;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-size: 0.78rem;
  font-weight: 900;
}

.site-footer {
  padding-block: 24px;
  color: rgba(224, 235, 255, 0.72);
  background: #03040b;
  border-top: 1px solid rgba(24, 232, 255, 0.12);
}

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

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--cyan);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-logo-stage.reveal {
  transform: translateY(calc(-47% + 20px));
}

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

.hero-logo-stage.reveal.is-visible {
  transform: translateY(-47%);
}

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

  .reveal,
  .hero-logo-stage.reveal,
  .hero-logo-stage.reveal.is-visible {
    opacity: 1;
    transform: translateY(-47%);
  }

  .reveal:not(.hero-logo-stage) {
    transform: none;
  }
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1020px) {
  .business-grid,
  .creator-card {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-stage {
    right: 24px;
    width: min(40vw, 310px);
    opacity: 0.34;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 8, 22, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .main-nav a:hover {
    background: rgba(24, 232, 255, 0.12);
  }

  .main-nav a::after {
    display: none;
  }

  .site-header.is-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(3, 4, 11, 0.94), rgba(3, 4, 11, 0.74));
  }

  .hero-logo-stage {
    top: 32px;
    right: 8px;
    width: min(48vw, 190px);
    opacity: 0.24;
    transform: none;
  }

  .hero-logo-stage.reveal,
  .hero-logo-stage.reveal.is-visible {
    transform: none;
  }

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

  .stat-strip {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    gap: 10px;
    padding-inline: 10px;
  }

  .brand {
    gap: 8px;
    max-width: min(340px, calc(100vw - 184px));
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text span {
    display: none;
  }

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

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    gap: 2px;
  }

  .lang-btn {
    padding: 7px 8px;
  }

  .hero-content {
    padding-block: 66px 48px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.25rem);
    line-height: 1;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-list,
  .creator-stats {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: auto;
    padding: 24px;
  }

  .creator-profile {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pricing-card {
    padding: 22px;
  }

  .pricing-card ul {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
