:root {
  color-scheme: dark;
  --bg: #020713;
  --bg-2: #061428;
  --panel: rgba(7, 22, 42, 0.72);
  --panel-strong: rgba(8, 28, 55, 0.92);
  --line: rgba(85, 223, 255, 0.24);
  --line-strong: rgba(85, 223, 255, 0.55);
  --cyan: #00e5ff;
  --cyan-soft: #7af6ff;
  --blue: #138dff;
  --violet: #7c3aed;
  --text: #f6fbff;
  --muted: #9db8cf;
  --muted-2: #6d89a2;
  --success: #27e3a2;
  --warning: #ffbf47;
  --danger: #ff4d68;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-cyan: 0 0 38px rgba(0, 229, 255, 0.25), 0 0 96px rgba(19, 141, 255, 0.14);
  --shadow-panel: 0 20px 80px rgba(0, 0, 0, 0.38);
  --max: 1280px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100dvh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.2), transparent 42%),
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.14), transparent 34%),
    linear-gradient(135deg, #020713 0%, #061428 52%, #020713 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 246, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 246, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.62;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; cursor: pointer; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--cyan);
  color: #00111d;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { position: relative; z-index: 1; min-height: 100dvh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px clamp(14px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(2, 7, 19, 0.88), rgba(2, 7, 19, 0.56));
  border-bottom: 1px solid rgba(122, 246, 255, 0.16);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr auto;
  align-items: center;
  gap: 14px;
}
.brand-link { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(122, 246, 255, 0.35);
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.32);
  background: #041324;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-title {
  font-weight: 900;
  letter-spacing: 0.13em;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-subtitle { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

.nav-menu { display: flex; align-items: center; justify-content: center; gap: 5px; }
.nav-link {
  position: relative;
  color: rgba(246, 251, 255, 0.78);
  padding: 10px 10px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
  background: rgba(0, 229, 255, 0.1);
  outline: none;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(122, 246, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(4, 19, 36, 0.76);
}
.lang-btn {
  min-width: 42px;
  padding: 9px 10px;
  color: rgba(246, 251, 255, 0.72);
  background: transparent;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.lang-btn.active {
  color: #00111d;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: #00111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.28);
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(122, 246, 255, 0.22);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

main { min-height: calc(100dvh - var(--header-h)); }

.kinetic-page {
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(18px, 3vw, 38px);
}

.hero-stage {
  position: relative;
  width: min(var(--max), 100%);
  margin-inline: auto;
  min-height: clamp(560px, calc(100dvh - 122px), 820px);
  border: 1px solid rgba(122, 246, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-panel), var(--shadow-cyan);
  background: rgba(2, 7, 19, 0.82);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.92) 0%, rgba(2, 7, 19, 0.52) 38%, rgba(2, 7, 19, 0.38) 62%, rgba(2, 7, 19, 0.86) 100%),
    linear-gradient(180deg, rgba(2, 7, 19, 0.06) 0%, rgba(2, 7, 19, 0.72) 86%, rgba(2, 7, 19, 0.95) 100%);
  z-index: 2;
}
.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg img {
  filter: saturate(1.16) contrast(1.05) brightness(0.78);
  transform: scale(1.012);
  animation: bannerDrift 14s ease-in-out infinite alternate;
}
.hero-canvas { position: absolute; inset: 0; z-index: 3; opacity: 0.75; }
.scan-line {
  position: absolute;
  left: -18%; right: -18%; top: 56%;
  height: 2px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.18), #bdfcff, rgba(0, 229, 255, 0.18), transparent);
  box-shadow: 0 0 24px rgba(0,229,255,.75), 0 0 90px rgba(19,141,255,.4);
  animation: scanSweep 4.8s ease-in-out infinite;
}
.energy-rail {
  position: absolute;
  z-index: 4;
  left: 8%; right: 8%; top: 43%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.5), transparent);
  opacity: .86;
}
.energy-rail::before,
.energy-rail::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 32%; height: 5px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: blur(1px);
  animation: railPulse 2.6s ease-in-out infinite alternate;
}
.energy-rail::before { left: 3%; }
.energy-rail::after { right: 3%; animation-delay: -1.2s; }

.dragon-orb {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 6vw, 86px);
  top: clamp(70px, 12vh, 120px);
  width: clamp(210px, 28vw, 380px);
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.9;
  transform-style: preserve-3d;
  animation: dragonBreath 5.5s ease-in-out infinite;
}
.dragon-orb::before,
.dragon-orb::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  border: 1px solid rgba(122, 246, 255, 0.34);
  box-shadow: inset 0 0 32px rgba(0,229,255,.14), 0 0 30px rgba(0,229,255,.16);
  animation: ringSpin 18s linear infinite;
}
.dragon-orb::after {
  inset: 16%;
  border-style: dashed;
  opacity: 0.82;
  animation-direction: reverse;
  animation-duration: 12s;
}
.dragon-emblem {
  position: relative;
  z-index: 4;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0,229,255,.38), 0 0 95px rgba(0,99,255,.26);
  filter: drop-shadow(0 0 12px rgba(122,246,255,.8));
  animation: dragonFloat 4.2s ease-in-out infinite;
}
.orbital-path {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122,246,255,.18);
  box-shadow: inset 0 0 18px rgba(0,229,255,.12), 0 0 26px rgba(0,229,255,.09);
}
.orbital-path-outer { inset: 3%; }
.orbital-path-inner { inset: 14%; border-style: dashed; opacity: .68; }
.orbital-tail,
.orbital-tail-secondary {
  position: absolute;
  inset: -5%;
  animation: orbitTail 7.4s linear infinite;
}
.orbital-tail::before,
.orbital-tail-secondary::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffffff 0%, #bffcff 22%, var(--cyan) 54%, rgba(0,229,255,0) 76%);
  box-shadow: 0 0 18px rgba(255,255,255,.45), 0 0 34px rgba(0,229,255,.72);
}
.orbital-tail::after,
.orbital-tail-secondary::after {
  content: "";
  position: absolute;
  top: 7%;
  left: 50%;
  width: 84px;
  height: 9px;
  transform: translate(-100%, -50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,229,255,0), rgba(0,229,255,.18), rgba(122,246,255,.7), rgba(255,255,255,.0));
  filter: blur(2px);
  opacity: .9;
}
.orbital-tail-secondary {
  inset: 8%;
  animation-duration: 5.8s;
  animation-direction: reverse;
  opacity: .82;
}
.orbital-tail-secondary::before { width: 12px; height: 12px; }
.orbital-tail-secondary::after { width: 58px; height: 7px; }
.dragon-energy-beam {
  position: absolute;
  z-index: 2;
  right: 19%;
  top: 47%;
  width: 26%;
  height: 10%;
  border-radius: 999px;
  transform: rotate(-4deg);
  background: linear-gradient(90deg, rgba(255,255,255,.0) 0%, rgba(122,246,255,.08) 18%, rgba(122,246,255,.5) 48%, rgba(0,229,255,.0) 100%);
  filter: blur(6px);
  opacity: .58;
  animation: beamPulse 2.8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 8;
  max-width: min(660px, 58%);
  padding: clamp(28px, 5vw, 72px);
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(122, 246, 255, 0.28);
  border-radius: 999px;
  background: rgba(2, 7, 19, 0.5);
  color: var(--cyan-soft);
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px rgba(0,229,255,.07);
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.hero-title {
  margin: 20px 0 0;
  font-size: clamp(2.45rem, 6.2vw, 6.35rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  max-width: 10ch;
  text-transform: uppercase;
}
.hero-title span {
  background: linear-gradient(90deg, #fff 0%, #dffcff 24%, var(--cyan) 58%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 44px rgba(0,229,255,.18);
}
.hero-lead {
  color: rgba(246, 251, 255, 0.82);
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  line-height: 1.62;
  max-width: 54ch;
  margin: 20px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(122, 246, 255, 0.24);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  overflow: hidden;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; box-shadow: 0 0 32px rgba(0,229,255,.22); }
.btn-primary { background: linear-gradient(135deg, #ffffff, var(--cyan)); color: #00111d; border-color: transparent; }
.btn-ghost { background: rgba(3, 18, 34, 0.72); color: #f6fbff; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-140%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(140%) skewX(-18deg); }

.status-strip {
  position: absolute;
  left: clamp(16px, 4vw, 56px); right: clamp(16px, 4vw, 56px); bottom: clamp(16px, 3vw, 34px);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.status-card {
  min-width: 0;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(4, 19, 36, 0.68);
  border: 1px solid rgba(122, 246, 255, 0.18);
  backdrop-filter: blur(14px);
}
.status-card strong {
  display: block;
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  color: var(--cyan-soft);
  overflow-wrap: anywhere;
}
.status-card span { display: block; color: var(--muted); font-size: .78rem; margin-top: 5px; line-height: 1.35; }

.content-grid {
  position: relative;
  z-index: 8;
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: clamp(560px, calc(100dvh - 122px), 820px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}
.page-panel,
.feature-matrix,
.contact-panel,
.legal-panel {
  border: 1px solid rgba(122, 246, 255, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(5, 18, 36, 0.86), rgba(3, 12, 25, 0.74));
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.page-panel { position: relative; padding: clamp(24px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.page-panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(0,229,255,.18), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(124,58,237,.18), transparent 32%);
  pointer-events: none;
}
.page-panel > * { position: relative; z-index: 1; }
.page-title {
  font-size: clamp(2.05rem, 4.2vw, 4.55rem);
  line-height: 0.94;
  margin: 18px 0 0;
  letter-spacing: -0.055em;
}
.page-title .accent { color: var(--cyan); text-shadow: 0 0 26px rgba(0,229,255,.25); }
.page-copy { margin: 20px 0 0; color: rgba(246, 251, 255, 0.8); line-height: 1.7; font-size: clamp(1rem, 1.2vw, 1.14rem); }
.panel-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.panel-list li { display: flex; gap: 10px; color: rgba(246,251,255,.82); line-height: 1.45; }
.panel-list li::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; margin-top: .45em; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }

.feature-matrix { padding: clamp(16px, 2.2vw, 26px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-content: center; }
.feature-card {
  position: relative;
  min-height: 158px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(122, 246, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(10, 31, 58, 0.72), rgba(2, 9, 20, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(0,229,255,.14), transparent 30%);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  left: -20%; right: -20%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.7), transparent);
  opacity: .62;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(122, 246, 255, 0.42); }
.feature-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  border: 1px solid rgba(122,246,255,.2);
  background: rgba(0,229,255,.08);
  box-shadow: inset 0 0 18px rgba(0,229,255,.1);
  margin-bottom: 14px;
}
.feature-card h2,
.feature-card h3 { margin: 0; font-size: clamp(1rem, 1.35vw, 1.18rem); letter-spacing: -0.015em; }
.feature-card p { margin: 10px 0 0; color: var(--muted); line-height: 1.58; font-size: .95rem; }
.card-link { color: var(--cyan-soft); font-weight: 900; display: inline-flex; margin-top: 14px; }

.contact-wrap { width: min(var(--max), 100%); margin: 0 auto; min-height: clamp(560px, calc(100dvh - 122px), 820px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(18px, 3vw, 34px); }
.contact-panel { padding: clamp(18px, 3vw, 30px); }
.contact-form { display: grid; gap: 12px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: .85rem; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(122, 246, 255, 0.2);
  border-radius: 16px;
  background: rgba(2, 9, 20, 0.74);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(0,229,255,.68); box-shadow: 0 0 0 3px rgba(0,229,255,.12); }
.form-note { color: var(--muted); font-size: .86rem; line-height: 1.55; margin: 0; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(122, 246, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 19, 36, 0.72);
  color: rgba(246,251,255,.86);
  font-weight: 900;
}
.social-pill svg { width: 19px; height: 19px; color: var(--cyan); }


.contact-refined { align-items: stretch; }
.contact-side-stack { display: grid; gap: clamp(18px, 2.4vw, 24px); }
.contact-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(122, 246, 255, 0.16);
  background: linear-gradient(145deg, rgba(10, 31, 58, 0.62), rgba(2, 9, 20, 0.62));
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(0,229,255,.14), transparent 34%);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122,246,255,.2);
  color: var(--cyan-soft);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .74rem;
  background: rgba(0,229,255,.07);
}
.contact-card h2 { margin: 0; font-size: clamp(1.12rem, 1.5vw, 1.35rem); }
.contact-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.contact-address {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122,246,255,.14);
  background: rgba(2,9,20,.58);
}
.contact-address span { color: var(--muted); font-size: .82rem; font-weight: 800; }
.contact-address a { color: #fff; overflow-wrap: anywhere; font-weight: 800; }
.info-panel { display: grid; gap: 14px; align-content: start; }
.info-panel h2 { margin: 0; font-size: clamp(1.34rem, 2vw, 1.7rem); letter-spacing: -.03em; }
.compact-list { margin-top: 0; }
.compact-copy { margin-top: 0; }
.notice-box {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(122,246,255,.16);
  background: rgba(2,9,20,.58);
}
.notice-box strong { color: var(--cyan-soft); }
.notice-box p { margin: 0; color: rgba(246,251,255,.78); line-height: 1.58; }
.dual-cta .social-pill { flex: 1 1 220px; justify-content: center; }

.legal-layout { width: min(980px, 100%); margin: 0 auto; min-height: clamp(560px, calc(100dvh - 122px), 820px); display: grid; align-items: center; }
.legal-panel { padding: clamp(22px, 4vw, 54px); }
.legal-panel h1 { font-size: clamp(2rem, 4vw, 4rem); line-height: .96; margin: 16px 0 20px; letter-spacing: -.055em; }
.legal-section { padding: 16px 0; border-top: 1px solid rgba(122,246,255,.14); }
.legal-section h2 { margin: 0 0 8px; color: var(--cyan-soft); font-size: 1.08rem; }
.legal-section p { color: rgba(246,251,255,.78); line-height: 1.72; margin: 0; }

.cookie-banner {
  position: fixed;
  z-index: 2200;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(122,246,255,.24);
  border-radius: 24px;
  background: rgba(2, 9, 20, 0.94);
  box-shadow: 0 24px 80px rgba(0,0,0,.46), 0 0 36px rgba(0,229,255,.16);
  padding: 16px;
  backdrop-filter: blur(18px);
}
.cookie-banner.show { display: grid; }
.cookie-banner h2 { margin: 0 0 5px; font-size: 1rem; }
.cookie-banner p { margin: 0; color: var(--muted); line-height: 1.5; font-size: .92rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-btn {
  padding: 11px 13px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(122,246,255,.1);
  color: #fff;
  border: 1px solid rgba(122,246,255,.18);
}
.cookie-btn.accept { background: linear-gradient(135deg, #fff, var(--cyan)); color: #00111d; }
.cookie-preferences {
  display: none;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(122,246,255,.14);
  padding-top: 12px;
  gap: 10px;
}
.cookie-preferences.show { display: grid; }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: rgba(246,251,255,.86); }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--cyan); }

.footer {
  position: relative;
  z-index: 3;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 38px) 26px;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
}
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

@keyframes bannerDrift { from { transform: scale(1.012) translate3d(-.4%, 0, 0); } to { transform: scale(1.04) translate3d(.6%, -.5%, 0); } }
@keyframes scanSweep { 0%,100% { transform: translateY(-10px); opacity: .45; } 50% { transform: translateY(10px); opacity: .92; } }
@keyframes railPulse { from { opacity: .25; transform: scaleX(.72); } to { opacity: 1; transform: scaleX(1.08); } }
@keyframes dragonBreath { 0%,100% { filter: brightness(1) saturate(1); transform: translateY(0) scale(1); } 50% { filter: brightness(1.25) saturate(1.3); transform: translateY(-5px) scale(1.022); } }
@keyframes dragonFloat { 0%,100% { transform: translate3d(0, 0, 0) rotateZ(-.5deg); } 35% { transform: translate3d(4px, -8px, 0) rotateZ(.9deg); } 70% { transform: translate3d(-3px, 3px, 0) rotateZ(-.2deg); } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes eyePulse { 0%,100% { opacity: .55; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.45); } }

@keyframes orbitTail { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes beamPulse { 0%,100% { opacity: .34; filter: blur(6px); } 50% { opacity: .82; filter: blur(10px); } }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 12px; right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(122,246,255,.22);
    border-radius: 24px;
    background: rgba(2,9,20,.96);
    box-shadow: var(--shadow-panel);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 14px; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .hero-content { max-width: 68%; }
  .dragon-orb { opacity: .72; right: 18px; }
}

@media (max-width: 860px) {
  body { overflow-y: auto; }
  .site-header { height: auto; min-height: var(--header-h); }
  .brand-subtitle { display: none; }
  .kinetic-page { align-items: start; padding: 14px; }
  .hero-stage { min-height: calc(100dvh - 102px); border-radius: 22px; }
  .hero-stage::before { background: linear-gradient(180deg, rgba(2,7,19,.48) 0%, rgba(2,7,19,.88) 50%, rgba(2,7,19,.96) 100%); }
  .hero-bg img { object-position: center top; }
  .dragon-orb { top: 72px; right: 50%; transform: translateX(50%); width: min(270px, 62vw); opacity: .88; }
  .hero-content { max-width: none; min-height: calc(100dvh - 102px); justify-content: end; padding: 24px; padding-top: min(56vh, 390px); }
  .hero-title { max-width: 11ch; }
  .hero-lead { font-size: 1rem; line-height: 1.52; }
  .status-strip { position: relative; left: auto; right: auto; bottom: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: -102px 20px 20px; }
  .content-grid,
  .contact-wrap { min-height: auto; grid-template-columns: 1fr; }
  .feature-matrix { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .contact-channel-grid { grid-template-columns: 1fr; }
  .contact-side-stack { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  :root { --header-h: 68px; }
  .header-inner { gap: 8px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand-title { font-size: .78rem; letter-spacing: .09em; }
  .lang-btn { min-width: 36px; padding: 8px; }
  .hero-actions .btn { width: 100%; }
  .status-strip { grid-template-columns: 1fr; margin-left: 12px; margin-right: 12px; }
  .page-panel, .feature-matrix, .contact-panel, .legal-panel { border-radius: 22px; }
  .social-pill { width: 100%; justify-content: center; }
  .contact-card { padding: 18px; }
  .contact-address { padding: 12px 14px; }
  .orbital-tail::after { width: 60px; }
  .dragon-energy-beam { width: 22%; right: 21%; }
}

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

/* DraxenMedia v4 polish: brighter agency theme, true top banner, cleaner contact page */
body {
  background:
    radial-gradient(circle at 50% -8%, rgba(35, 231, 255, 0.26), transparent 42%),
    radial-gradient(circle at 0% 18%, rgba(124, 58, 237, 0.18), transparent 36%),
    radial-gradient(circle at 100% 12%, rgba(0, 175, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #071426 0%, #08243c 48%, #06101f 100%);
}
.site-header {
  background: linear-gradient(180deg, rgba(5, 16, 31, 0.92), rgba(5, 21, 38, 0.76));
}
.header-inner { grid-template-columns: minmax(190px, 300px) 1fr auto; }
.quick-socials { display: inline-flex; align-items: center; gap: 7px; }
.quick-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(122, 246, 255, .22);
  background: rgba(0, 229, 255, .08);
  color: var(--cyan-soft);
  box-shadow: inset 0 0 16px rgba(0,229,255,.08);
}
.quick-social svg { width: 18px; height: 18px; }
.quick-social:hover, .quick-social:focus-visible { outline: none; background: rgba(0, 229, 255, .16); box-shadow: 0 0 24px rgba(0,229,255,.22); }

.home-page-v4 {
  min-height: calc(100dvh - var(--header-h));
  padding: clamp(16px, 2.6vw, 34px);
  display: grid;
  align-content: start;
  gap: clamp(16px, 2vw, 24px);
}
.wide-banner-stage {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  aspect-ratio: 2560 / 768;
  min-height: 220px;
  max-height: 410px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(122, 246, 255, .28);
  box-shadow: 0 26px 90px rgba(0,0,0,.34), 0 0 60px rgba(0,229,255,.22);
  background: rgba(4, 16, 31, .72);
  isolation: isolate;
}
.wide-banner-image,
.wide-banner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wide-banner-image img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.16) contrast(1.04) brightness(1.04);
  animation: bannerAlive 9s ease-in-out infinite alternate;
}
.banner-canvas { z-index: 4; opacity: .46; }
.banner-energy-sweep {
  position: absolute;
  z-index: 5;
  left: -18%;
  right: -18%;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122,246,255,.25), #fff, rgba(0,229,255,.28), transparent);
  box-shadow: 0 0 28px rgba(0,229,255,.72), 0 0 90px rgba(19,141,255,.38);
  animation: bannerSweep 4.4s ease-in-out infinite;
}
.banner-comet-ring {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 33%;
  width: clamp(150px, 17vw, 260px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.banner-comet-ring span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: bannerComet 6.8s linear infinite;
}
.banner-comet-ring span:nth-child(2) { inset: 12%; animation-duration: 5.2s; animation-direction: reverse; opacity: .82; }
.banner-comet-ring span:nth-child(3) { inset: 24%; animation-duration: 8.6s; opacity: .58; }
.banner-comet-ring span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #bdfcff 28%, var(--cyan) 62%, transparent 76%);
  box-shadow: 0 0 18px rgba(255,255,255,.55), 0 0 34px rgba(0,229,255,.74);
}
.banner-comet-ring span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 76px;
  height: 8px;
  transform: translate(-100%, -50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.28), rgba(255,255,255,.82), transparent);
  filter: blur(2px);
}
.home-command-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}
.home-copy-panel,
.home-status-grid {
  border: 1px solid rgba(122, 246, 255, .2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(8, 31, 55, .86), rgba(4, 14, 28, .72));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.home-copy-panel { padding: clamp(22px, 3vw, 42px); }
.home-copy-panel .hero-title { max-width: 12ch; font-size: clamp(2.3rem, 5.4vw, 5.4rem); }
.home-status-grid { padding: 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.home-status-grid .status-card { position: relative; background: linear-gradient(145deg, rgba(0, 229, 255, .08), rgba(4, 19, 36, .68)); }

.contact-page-v4 {
  min-height: calc(100dvh - var(--header-h));
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 38px);
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
}
.contact-hero-panel {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(390px, 1.1fr);
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}
.contact-intro-card,
.contact-channel-panel,
.contact-info-card {
  border: 1px solid rgba(122, 246, 255, .2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(8, 31, 55, .88), rgba(5, 16, 31, .76));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.contact-intro-card { padding: clamp(24px, 4vw, 48px); }
.contact-intro-card .page-title { font-size: clamp(2.2rem, 4.5vw, 4.65rem); max-width: 10.5ch; }
.contact-channel-panel { padding: clamp(16px, 2.4vw, 26px); display: grid; gap: 14px; align-content: center; }
.contact-action-card {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: 24px;
  border: 1px solid rgba(122,246,255,.2);
  background: linear-gradient(135deg, rgba(0,229,255,.08), rgba(7,22,42,.76));
  overflow: hidden;
}
.contact-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(0,229,255,.2), transparent 34%);
  opacity: .85;
  pointer-events: none;
}
.contact-action-card:hover, .contact-action-card:focus-visible { outline: none; transform: translateY(-2px); border-color: rgba(122,246,255,.46); box-shadow: 0 0 34px rgba(0,229,255,.18); }
.contact-icon,
.contact-card-body,
.contact-card-arrow { position: relative; z-index: 1; }
.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #00111d;
  background: linear-gradient(135deg, #fff, var(--cyan));
  box-shadow: 0 0 28px rgba(0,229,255,.26);
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card-body { display: grid; gap: 8px; }
.contact-card-body strong { font-size: clamp(1.08rem, 1.8vw, 1.45rem); color: #fff; }
.contact-card-body small { color: rgba(246,251,255,.76); line-height: 1.55; font-size: .94rem; }
.contact-card-body em { color: var(--cyan-soft); font-style: normal; font-weight: 900; overflow-wrap: anywhere; }
.contact-card-arrow { color: var(--cyan-soft); font-size: 1.8rem; }
.primary-contact-card { background: linear-gradient(135deg, rgba(0,229,255,.14), rgba(6,25,47,.86)); }
.contact-info-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(16px, 2.2vw, 24px); }
.contact-info-card { padding: clamp(20px, 3vw, 34px); }
.contact-info-card h2 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -.035em; }
.contact-info-card p { color: rgba(246,251,255,.76); line-height: 1.64; }
.contact-steps { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; counter-reset: steps; }
.contact-steps li { counter-increment: steps; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; color: rgba(246,251,255,.84); }
.contact-steps li::before { content: counter(steps); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px; background: rgba(0,229,255,.12); color: var(--cyan-soft); font-weight: 900; border: 1px solid rgba(122,246,255,.2); }
.glow-card { background: linear-gradient(145deg, rgba(10, 42, 70, .88), rgba(6, 16, 31, .76)); }
.footer { padding-top: 8px; }
.footer-socials { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--muted); }
.footer-socials > span { color: var(--muted-2); font-weight: 800; }
.footer-socials a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.footer-socials svg { width: 16px; height: 16px; color: var(--cyan-soft); }

@keyframes bannerAlive { from { transform: scale(1.002); } to { transform: scale(1.022) translate3d(.2%, -.2%, 0); } }
@keyframes bannerSweep { 0%,100% { transform: translateY(-10px); opacity: .45; } 50% { transform: translateY(10px); opacity: .95; } }
@keyframes bannerComet { to { transform: rotate(360deg); } }

@media (max-width: 1120px) {
  .quick-socials { display: none; }
  .home-command-panel,
  .contact-hero-panel,
  .contact-info-grid { grid-template-columns: 1fr; }
  .home-status-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .wide-banner-stage { aspect-ratio: 16 / 7; min-height: 178px; border-radius: 20px; }
  .wide-banner-image img { object-position: center center; }
  .banner-comet-ring { width: min(170px, 38vw); left: 50%; top: 34%; }
  .home-copy-panel .hero-title { font-size: clamp(2.25rem, 12vw, 4rem); }
  .home-status-grid { grid-template-columns: 1fr; }
  .contact-action-card { grid-template-columns: 1fr; min-height: auto; }
  .contact-card-arrow { display: none; }
}
@media (max-width: 520px) {
  .home-page-v4, .contact-page-v4 { padding: 12px; }
  .wide-banner-stage { aspect-ratio: 16 / 8.5; min-height: 158px; }
  .contact-intro-card .page-title { max-width: none; }
  .contact-icon { width: 50px; height: 50px; border-radius: 16px; }
}


/* ================================================================
   DraxenMedia premium desktop redesign — electric blue / silver
   Homepage v5. Mobile remains compact and fully responsive.
   ================================================================ */
:root {
  --bg: #01050c;
  --bg-2: #03101f;
  --panel: rgba(3, 13, 27, .82);
  --panel-strong: rgba(3, 16, 33, .96);
  --line: rgba(56, 145, 255, .22);
  --line-strong: rgba(51, 158, 255, .62);
  --cyan: #1594ff;
  --cyan-soft: #76c9ff;
  --blue: #006eff;
  --violet: #2444b9;
  --text: #f7faff;
  --muted: #9eb1c8;
  --muted-2: #647994;
  --shadow-cyan: 0 0 42px rgba(0, 120, 255, .20), 0 0 110px rgba(0, 80, 255, .12);
  --max: 1540px;
  --header-h: 82px;
}

html { background: #01050c; }
body {
  background:
    radial-gradient(circle at 72% 6%, rgba(0, 102, 255, .18), transparent 31%),
    radial-gradient(circle at 4% 36%, rgba(30, 62, 180, .13), transparent 30%),
    linear-gradient(135deg, #01050c 0%, #03101d 46%, #020812 100%);
}
body::before {
  background-image:
    linear-gradient(rgba(45, 122, 220, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 122, 220, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .48;
}

.site-header {
  height: var(--header-h);
  padding: 9px clamp(18px, 3vw, 52px);
  background: linear-gradient(180deg, rgba(1, 6, 15, .97), rgba(2, 9, 19, .91));
  border-bottom: 1px solid rgba(37, 135, 255, .22);
  box-shadow: 0 12px 42px rgba(0,0,0,.24);
}
.header-inner { width: min(var(--max), 100%); grid-template-columns: minmax(215px, 285px) 1fr auto; gap: 18px; }
.brand-link { gap: 11px; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 0; border: 0; object-fit: contain;
  box-shadow: none; background: transparent; filter: drop-shadow(0 0 14px rgba(22, 139, 255, .38));
}
.brand-title { font-size: 1rem; letter-spacing: .14em; font-weight: 800; }
.brand-subtitle { color: #8299b4; letter-spacing: .19em; }
.nav-menu { gap: 2px; }
.nav-link { padding: 10px 9px; font-size: .82rem; color: rgba(241,247,255,.74); }
.nav-link:hover, .nav-link:focus-visible, .nav-link.active { background: rgba(20, 130, 255, .11); }
.nav-link.active::after { background: linear-gradient(90deg, transparent, #1a96ff, #79cfff, transparent); }
.quick-social { border-color: rgba(45, 145, 255, .26); background: rgba(9, 97, 204, .11); color: #7bcaff; }
.lang-switch { border-color: rgba(45, 145, 255, .26); background: rgba(1, 8, 18, .88); }
.lang-btn.active { color: #001020; background: linear-gradient(135deg, #fff, #69c8ff); }

/* v5 desktop hero */
.home-page-v5 {
  width: min(var(--max), calc(100% - clamp(32px, 6vw, 104px)));
  margin: 0 auto;
  padding: clamp(28px, 3.8vw, 62px) 0 48px;
  display: grid;
  gap: clamp(24px, 3vw, 46px);
}
.growth-hero {
  min-height: min(720px, calc(100dvh - 124px));
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(560px, 1.02fr);
  gap: clamp(24px, 3.6vw, 54px);
  align-items: center;
  position: relative;
}
.growth-hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: 7%; top: 5%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 255, .19), rgba(0, 77, 200, .06) 42%, transparent 72%);
  filter: blur(14px); pointer-events: none;
}
.growth-copy { position: relative; z-index: 4; padding: 24px 0 26px; max-width: 720px; }
.growth-copy .kicker { border-color: rgba(58, 149, 255, .32); color: #8ad1ff; background: rgba(2, 16, 34, .72); }
.growth-copy .kicker::before { background: #168fff; box-shadow: 0 0 18px #168fff; }
.growth-title { margin: 24px 0 0; max-width: none; line-height: .94; letter-spacing: -.052em; font-weight: 500; text-transform: uppercase; }
.growth-title span, .growth-title em { display: block; font-family: Georgia, "Times New Roman", serif; font-style: normal; white-space: nowrap; }
.growth-title span { font-size: clamp(3.1rem, 4.7vw, 5.8rem); color: #f1f4f9; text-shadow: 0 2px 0 #63738a, 0 0 40px rgba(255,255,255,.07); }
.growth-title em { font-size: clamp(3.6rem, 5.4vw, 6.6rem); color: #fff; background: linear-gradient(180deg, #f6fbff 4%, #8dd4ff 35%, #188eff 64%, #e6f6ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 18px rgba(0, 116, 255, .26)); }
.growth-lead { max-width: 620px; margin: 24px 0 0; color: rgba(233,241,251,.78); line-height: 1.72; font-size: clamp(1.02rem, 1.15vw, 1.22rem); }
.growth-copy .hero-actions { margin-top: 30px; }
.growth-copy .btn { min-height: 52px; padding: 14px 21px; border-color: rgba(70, 155, 255, .26); }
.growth-copy .btn-primary { background: linear-gradient(135deg, #f8fcff 0%, #92d7ff 48%, #1593ff 100%); color: #00101f; box-shadow: 0 0 32px rgba(15, 135, 255, .22); }
.growth-copy .btn-ghost { background: rgba(2, 11, 24, .72); }
.outcome-row { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(47, 137, 245, .18); display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; max-width: 700px; }
.outcome-row span { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; min-width: 0; }
.outcome-row b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; border: 1px solid rgba(56, 151, 255, .25); background: rgba(9, 75, 156, .10); color: #59b7ff; font-size: .72rem; letter-spacing: .08em; }
.outcome-row i { color: #b9c9da; font-size: .86rem; line-height: 1.25; font-style: normal; font-weight: 700; }

.growth-visual {
  position: relative; z-index: 3; min-height: 620px; border-radius: 38px; overflow: hidden;
  border: 1px solid rgba(57, 146, 255, .30);
  background:
    linear-gradient(145deg, rgba(8, 29, 57, .72), rgba(1, 7, 16, .96) 48%, rgba(3, 14, 31, .94)),
    radial-gradient(circle at 72% 18%, rgba(0, 135, 255, .25), transparent 36%);
  box-shadow: 0 38px 120px rgba(0,0,0,.46), 0 0 0 1px rgba(255,255,255,.02) inset, 0 0 74px rgba(0, 91, 255, .13);
  isolation: isolate;
}
.growth-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(48, 130, 230, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(48, 130, 230, .055) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(180deg, black, transparent 92%); }
.growth-visual::after { content: ""; position: absolute; right: -28%; bottom: -42%; width: 95%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(42, 147, 255, .28); box-shadow: 0 0 0 18px rgba(6, 99, 218, .025), 0 0 0 54px rgba(6, 99, 218, .025), 0 0 90px rgba(0, 104, 255, .17); }
.visual-lockup { position: absolute; top: 31px; left: 39px; z-index: 5; width: 205px; height: 112px; display: grid; place-items: center; }
.visual-lockup img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 18px rgba(21, 145, 255, .26)); }
.performance-window { position: absolute; z-index: 5; left: 6.5%; right: 7%; top: 24%; bottom: 10%; border-radius: 28px; border: 1px solid rgba(74, 159, 255, .28); background: linear-gradient(145deg, rgba(3, 15, 33, .91), rgba(1, 7, 16, .93)); box-shadow: 0 26px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.035); overflow: hidden; }
.performance-head { height: 94px; padding: 24px 26px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(59, 143, 245, .16); }
.performance-head > div { display: grid; gap: 4px; }
.performance-head small { color: #579fdb; letter-spacing: .16em; font-size: .68rem; font-weight: 900; }
.performance-head strong { color: #f5f9ff; font-size: clamp(1.28rem, 2vw, 1.8rem); letter-spacing: -.035em; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; color: #85bde9; border: 1px solid rgba(59, 143, 245, .18); background: rgba(0, 89, 190, .08); font-size: .72rem; white-space: nowrap; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #1d94ff; box-shadow: 0 0 13px #1d94ff; animation: dmPulse 1.8s ease-in-out infinite; }
.performance-chart { position: relative; height: 54%; margin: 0 24px; overflow: hidden; }
.chart-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(63, 139, 231, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(63, 139, 231, .08) 1px, transparent 1px); background-size: 25% 25%; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.performance-chart svg { position: absolute; inset: 7% 0 0; width: 100%; height: 88%; overflow: visible; }
.chart-fill { fill: url(#chartFill); }
.chart-glow { fill: none; stroke: #47b4ff; stroke-width: 5; filter: url(#chartGlow); vector-effect: non-scaling-stroke; stroke-linecap: round; animation: chartReveal 2.2s ease-out both; }
.chart-dots circle { fill: #a8dcff; stroke: #086cd6; stroke-width: 4; filter: drop-shadow(0 0 7px #168fff); }
.chart-arrow { position: absolute; right: 7px; top: 14%; width: 60px; height: 60px; border-top: 5px solid #8ed3ff; border-right: 5px solid #8ed3ff; transform: rotate(4deg); filter: drop-shadow(0 0 10px rgba(24, 144, 255, .75)); }
.performance-steps { position: absolute; left: 20px; right: 20px; bottom: 18px; display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.performance-steps article { min-width: 0; padding: 14px; border-radius: 18px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; border: 1px solid rgba(57, 144, 249, .18); background: linear-gradient(145deg, rgba(14, 67, 132, .18), rgba(2, 11, 24, .72)); }
.performance-steps article > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: rgba(17, 128, 255, .14); color: #70c3ff; font-weight: 900; font-size: .70rem; }
.performance-steps div { min-width: 0; display: grid; gap: 3px; }
.performance-steps strong { font-size: .86rem; color: #f4f8ff; }
.performance-steps small { font-size: .68rem; color: #7f98b3; line-height: 1.3; }
.floating-service { position: absolute; z-index: 7; display: flex; gap: 11px; align-items: center; padding: 13px 16px; border-radius: 18px; border: 1px solid rgba(74, 163, 255, .30); background: rgba(2, 10, 23, .86); box-shadow: 0 16px 42px rgba(0,0,0,.38), 0 0 24px rgba(10, 125, 255, .11); backdrop-filter: blur(12px); }
.floating-service > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; font-size: 1.72rem; color: #6cc3ff; border: 1px solid rgba(67, 159, 255, .27); background: linear-gradient(145deg, rgba(16, 119, 244, .18), rgba(2, 14, 31, .6)); text-shadow: 0 0 18px #118cff; }
.floating-service div { display: grid; gap: 3px; }
.floating-service strong { color: #f5f8fd; font-size: .85rem; }
.floating-service small { color: #7590ad; font-size: .69rem; }
.floating-meta { right: 24px; top: 63px; animation: floatingCard 4.5s ease-in-out infinite; }
.floating-web { left: 20px; bottom: 24px; animation: floatingCard 5.4s ease-in-out infinite reverse; }
.visual-orbit { position: absolute; z-index: 2; border-radius: 50%; border: 1px solid rgba(38, 142, 255, .15); }
.orbit-one { width: 560px; height: 560px; right: -190px; top: -160px; box-shadow: 0 0 0 30px rgba(13,89,193,.025), 0 0 0 80px rgba(13,89,193,.018); }
.orbit-two { width: 360px; height: 360px; left: -210px; bottom: -150px; }

.capability-section { display: grid; gap: 24px; padding: 20px 0 6px; }
.section-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr); gap: clamp(32px, 7vw, 110px); align-items: end; }
.section-heading > div { display: grid; gap: 12px; }
.section-eyebrow { color: #4da9ef; font-size: .73rem; font-weight: 900; letter-spacing: .2em; }
.section-heading h2 { margin: 0; max-width: 18ch; color: #f4f7fb; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 3.7vw, 4.2rem); line-height: .98; font-weight: 500; letter-spacing: -.045em; }
.section-heading p { margin: 0 0 5px; color: #91a6be; line-height: 1.7; font-size: clamp(.98rem, 1.12vw, 1.13rem); }
.capability-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.capability-card { min-height: 290px; position: relative; padding: 22px; border-radius: 25px; border: 1px solid rgba(55, 139, 242, .19); background: linear-gradient(145deg, rgba(5, 21, 43, .80), rgba(1, 8, 17, .90)); overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.capability-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 86% 10%, rgba(0, 126, 255, .16), transparent 37%); opacity: .65; transition: opacity .25s ease; }
.capability-card > * { position: relative; z-index: 2; }
.capability-card:hover { transform: translateY(-6px); border-color: rgba(76, 165, 255, .48); box-shadow: 0 24px 60px rgba(0,0,0,.30), 0 0 34px rgba(10, 107, 255, .10); }
.capability-card:hover::before { opacity: 1; }
.card-index { position: absolute; top: 22px; right: 22px; color: #355778; font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.card-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; border: 1px solid rgba(66, 157, 255, .30); background: rgba(8, 92, 194, .11); color: #62bdff; font-size: 2rem; text-shadow: 0 0 19px rgba(18, 143, 255, .72); }
.capability-card strong { display: block; margin-top: 31px; font-family: Georgia, "Times New Roman", serif; color: #f4f7fc; font-size: 1.5rem; font-weight: 500; }
.capability-card p { margin: 12px 0 0; color: #8499b1; line-height: 1.58; font-size: .9rem; }
.capability-card > i { position: absolute; right: 20px; bottom: 17px; color: #49aeff; font-style: normal; font-size: 1.25rem; transition: transform .25s ease; }
.capability-card:hover > i { transform: translate(3px,-3px); }

.proof-band { min-height: 170px; margin-top: 10px; padding: clamp(26px, 3.2vw, 46px); border-radius: 30px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(61, 151, 255, .28); background: linear-gradient(110deg, rgba(3, 14, 31, .97), rgba(8, 37, 73, .84) 62%, rgba(3, 15, 32, .96)); box-shadow: 0 28px 80px rgba(0,0,0,.32); position: relative; overflow: hidden; }
.proof-band::after { content: ""; position: absolute; right: 7%; top: -80%; width: 360px; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(42, 150, 255, .26); box-shadow: 0 0 0 28px rgba(6, 100, 222, .035), 0 0 0 70px rgba(6, 100, 222, .025), 0 0 90px rgba(0, 117, 255, .14); }
.proof-copy { position: relative; z-index: 2; display: grid; gap: 10px; max-width: 920px; }
.proof-copy span { color: #4faef5; letter-spacing: .18em; font-size: .72rem; font-weight: 900; }
.proof-copy strong { color: #eff5fb; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 3.3rem); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.proof-action { position: relative; z-index: 3; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 18px; padding: 16px 18px 16px 21px; border-radius: 999px; border: 1px solid rgba(82, 173, 255, .32); background: rgba(2, 12, 25, .74); color: #eaf4ff; font-weight: 800; }
.proof-action b { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,#eef9ff,#2aa5ff); color: #001326; font-size: 1.15rem; }

.footer { width: min(var(--max), calc(100% - clamp(32px, 6vw, 104px))); margin-inline: auto; border-top-color: rgba(55, 140, 244, .14); }

@keyframes dmPulse { 50% { opacity: .45; transform: scale(.82); } }
@keyframes floatingCard { 50% { transform: translateY(-7px); } }
@keyframes chartReveal { from { stroke-dasharray: 1300; stroke-dashoffset: 1300; opacity: .35; } to { stroke-dasharray: 1300; stroke-dashoffset: 0; opacity: 1; } }

@media (min-width: 1121px) and (max-width: 1380px) {
  :root { --max: 1320px; }
  .header-inner { grid-template-columns: minmax(190px, 245px) 1fr auto; }
  .brand-title { font-size: .90rem; }
  .nav-link { font-size: .76rem; padding-inline: 7px; }
  .growth-hero { grid-template-columns: minmax(0,.96fr) minmax(500px,1.04fr); gap: 28px; }
  .growth-title span { font-size: clamp(2.85rem, 4.35vw, 4.95rem); }
  .growth-title em { font-size: clamp(3.25rem, 4.95vw, 5.65rem); }
  .growth-visual { min-height: 560px; }
}

@media (min-width: 1381px) {
  .growth-title span { font-size: clamp(3.2rem, 4.35vw, 5.5rem); }
  .growth-title em { font-size: clamp(3.8rem, 5vw, 6.35rem); }
}


@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .home-page-v5 { width: min(100% - 32px, 980px); padding-top: 26px; }
  .growth-hero { min-height: auto; grid-template-columns: 1fr; gap: 30px; }
  .growth-copy { padding-top: 10px; }
  .growth-title { max-width: 11ch; }
  .growth-visual { min-height: 600px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading p { max-width: 680px; }
  .capability-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 860px) {
  .site-header { min-height: 72px; }
  .brand-mark { width: 46px; height: 46px; }
  .home-page-v5 { width: min(100% - 24px, 720px); padding: 17px 0 30px; gap: 26px; }
  .growth-hero { gap: 22px; }
  .growth-copy { padding: 6px 8px 0; }
  .growth-title { margin-top: 20px; max-width: none; }
  .growth-title span, .growth-title em { white-space: normal; }
  .growth-title span { font-size: clamp(2.9rem, 13vw, 5.1rem); }
  .growth-title em { font-size: clamp(3.25rem, 14.5vw, 5.8rem); }
  .growth-lead { font-size: 1rem; line-height: 1.58; }
  .outcome-row { grid-template-columns: 1fr; gap: 9px; margin-top: 24px; }
  .outcome-row span { grid-template-columns: 34px 1fr; }
  .growth-visual { min-height: 510px; border-radius: 25px; }
  .visual-lockup { top: 20px; left: 22px; width: 154px; height: 89px; }
  .performance-window { left: 4.5%; right: 4.5%; top: 24%; bottom: 8%; border-radius: 21px; }
  .performance-head { height: 82px; padding: 18px; }
  .performance-head strong { font-size: 1.17rem; }
  .performance-head small { font-size: .60rem; }
  .live-pill { display: none; }
  .performance-chart { height: 48%; margin-inline: 15px; }
  .performance-steps { left: 12px; right: 12px; bottom: 12px; gap: 7px; }
  .performance-steps article { padding: 10px 8px; grid-template-columns: 1fr; gap: 6px; }
  .performance-steps article > span { width: 28px; height: 28px; }
  .performance-steps small { display: none; }
  .floating-service { padding: 9px 11px; }
  .floating-service > span { width: 34px; height: 34px; font-size: 1.3rem; }
  .floating-service small { display: none; }
  .floating-meta { top: 24px; right: 16px; }
  .floating-web { display: none; }
  .capability-section { padding-top: 4px; }
  .section-heading { padding-inline: 7px; }
  .section-heading h2 { font-size: clamp(2.25rem, 10vw, 3.65rem); }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 245px; }
  .proof-band { border-radius: 24px; }
  .proof-action { width: 100%; justify-content: space-between; }
  .footer { width: min(100% - 24px, 720px); }
}

@media (max-width: 520px) {
  :root { --header-h: 68px; }
  .site-header { padding-inline: 12px; }
  .brand-mark { width: 42px; height: 42px; }
  .home-page-v5 { width: calc(100% - 20px); padding-top: 12px; }
  .growth-copy { padding-inline: 4px; }
  .growth-copy .kicker { font-size: .64rem; letter-spacing: .12em; }
  .growth-title span { font-size: clamp(2.65rem, 14vw, 4rem); }
  .growth-title em { font-size: clamp(3.02rem, 15.6vw, 4.45rem); }
  .growth-copy .hero-actions { gap: 8px; }
  .growth-copy .hero-actions .btn { width: 100%; }
  .growth-visual { min-height: 430px; }
  .visual-lockup { width: 127px; height: 74px; left: 14px; top: 12px; }
  .floating-meta { top: 14px; right: 10px; }
  .floating-service strong { font-size: .71rem; }
  .performance-window { top: 23%; bottom: 5%; }
  .performance-head { height: 68px; padding: 13px 14px; }
  .performance-head strong { font-size: 1rem; }
  .performance-chart { height: 47%; }
  .performance-steps article { border-radius: 13px; }
  .performance-steps strong { font-size: .72rem; }
  .section-heading h2 { font-size: clamp(2.15rem, 11.5vw, 3.2rem); }
  .capability-card { min-height: 230px; padding: 20px; }
  .capability-card strong { margin-top: 25px; }
  .proof-band { padding: 25px 20px; }
  .proof-copy strong { font-size: 1.83rem; }
  .proof-action { font-size: .78rem; padding-left: 16px; }
}


/* =========================================================
   V6 DESKTOP SAFE HERO — explicit lines, no broken words
   ========================================================= */
@media (min-width: 1121px) {
  .home-page-v5 {
    width: min(1480px, calc(100% - 72px));
  }

  .growth-hero {
    grid-template-columns: minmax(540px, 0.9fr) minmax(680px, 1.1fr);
    gap: clamp(42px, 4vw, 76px);
    align-items: center;
  }

  .growth-copy {
    min-width: 0;
    max-width: 660px;
    padding-right: 0;
  }

  .growth-title {
    width: 100%;
    max-width: 660px;
    margin-top: 24px;
    line-height: .88;
    letter-spacing: -.055em;
    overflow: visible;
  }

  .growth-title .growth-title-line {
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .growth-title span.growth-title-line {
    font-size: clamp(4.25rem, 5.1vw, 6.15rem);
  }

  .growth-title em.growth-title-line {
    margin-top: .06em;
    font-size: clamp(4.55rem, 5.35vw, 6.45rem);
  }

  .growth-visual {
    min-width: 0;
    min-height: 610px;
  }

  .performance-window {
    left: 6%;
    right: 6%;
    top: 24%;
    bottom: 9%;
  }

  .floating-meta {
    right: 28px;
    top: 62px;
  }

  .floating-web {
    left: 24px;
    bottom: 20px;
  }
}

@media (min-width: 1121px) and (max-width: 1380px) {
  .home-page-v5 {
    width: min(1320px, calc(100% - 48px));
  }

  .growth-hero {
    grid-template-columns: minmax(480px, .94fr) minmax(560px, 1.06fr);
    gap: 30px;
  }

  .growth-copy {
    max-width: 580px;
  }

  .growth-title {
    max-width: 580px;
  }

  .growth-title span.growth-title-line {
    font-size: clamp(3.55rem, 4.75vw, 4.85rem);
  }

  .growth-title em.growth-title-line {
    font-size: clamp(3.85rem, 5vw, 5.15rem);
  }

  .growth-visual {
    min-height: 560px;
  }
}

@media (max-width: 1120px) {
  .growth-title .growth-title-line {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 520px) {
  .growth-title span.growth-title-line {
    font-size: clamp(2.45rem, 13.2vw, 3.7rem);
  }

  .growth-title em.growth-title-line {
    font-size: clamp(2.7rem, 14.4vw, 4rem);
  }
}


/* =========================================================
   v7 — Meta reklam odaklı ana sayfa ve sektör dikeyleri
   ========================================================= */

/* Hero visual overlap hard-fix */
.growth-visual { min-height: 650px; }
.visual-lockup { top: 25px; left: 34px; width: 188px; height: 105px; }
.performance-window { top: 27%; bottom: 8%; }
.floating-meta { top: 54px; right: 24px; }
.floating-web { left: 22px; bottom: 16px; }

/* Sector landing section */
.sector-section {
  position: relative;
  padding: clamp(52px, 6vw, 92px) 0 clamp(34px, 5vw, 72px);
  display: grid;
  gap: 30px;
}
.sector-section::before {
  content: "";
  position: absolute;
  inset: 4% -12% auto;
  height: 460px;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 36%, rgba(17, 128, 255, .14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(57, 178, 255, .10), transparent 30%);
  filter: blur(10px);
}
.sector-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}
.sector-heading-copy { display: grid; gap: 14px; }
.sector-eyebrow {
  color: #55b7ff;
  font-weight: 900;
  font-size: .73rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.sector-heading h2 {
  margin: 0;
  max-width: 15ch;
  color: #f4f8fd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.4vw, 5.15rem);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.048em;
}
.sector-heading p {
  margin: 0 0 4px;
  color: #91a6be;
  line-height: 1.72;
  font-size: clamp(.98rem, 1.08vw, 1.12rem);
}
.sector-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sector-card {
  --sector-glow: rgba(24, 143, 255, .20);
  position: relative;
  min-height: 245px;
  padding: 24px 24px 22px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(64, 151, 255, .20);
  background:
    linear-gradient(145deg, rgba(6, 24, 48, .90), rgba(1, 8, 18, .95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 18px 48px rgba(0,0,0,.20);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sector-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -88px;
  top: -92px;
  background: radial-gradient(circle, var(--sector-glow), transparent 66%);
  transition: transform .3s ease, opacity .3s ease;
}
.sector-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(55,163,255,.58), rgba(55,163,255,.08), transparent);
}
.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(80, 177, 255, .48);
  box-shadow: 0 28px 72px rgba(0,0,0,.30), 0 0 34px rgba(13, 113, 255, .10);
}
.sector-card:hover::before { transform: scale(1.13); opacity: 1; }
.sector-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.sector-number { color: #4b9fdf; font-weight: 900; font-size: .72rem; letter-spacing: .15em; }
.sector-signal {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(69, 159, 255, .28);
  background: linear-gradient(145deg, rgba(17, 128, 255, .17), rgba(2, 13, 29, .62));
  color: #77c9ff;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(18, 133, 255, .10);
}
.sector-card h3 {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  max-width: 18ch;
  font-family: Georgia, "Times New Roman", serif;
  color: #f3f7fc;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -.025em;
}
.sector-card p {
  position: relative;
  z-index: 2;
  margin: 12px 0 44px;
  max-width: 38ch;
  color: #849ab3;
  font-size: .90rem;
  line-height: 1.58;
}
.sector-card .sector-arrow {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 12px;
  color: #56b7ff;
  font-size: 1.22rem;
  transition: transform .25s ease;
}
.sector-card:hover .sector-arrow { transform: translate(3px, -3px); }

.meta-process {
  position: relative;
  margin-top: 6px;
  padding: clamp(34px, 4.8vw, 70px);
  border-radius: 34px;
  border: 1px solid rgba(60, 151, 255, .24);
  background:
    linear-gradient(130deg, rgba(3, 15, 32, .97), rgba(8, 35, 69, .84) 58%, rgba(2, 10, 22, .98));
  overflow: hidden;
  box-shadow: 0 28px 86px rgba(0,0,0,.34);
}
.meta-process::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  right: -240px;
  top: -310px;
  border: 1px solid rgba(52, 158, 255, .20);
  box-shadow: 0 0 0 36px rgba(6,102,222,.025), 0 0 0 88px rgba(6,102,222,.018), 0 0 110px rgba(0,117,255,.13);
}
.process-intro { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(330px,.62fr); gap: 40px; align-items: end; }
.process-intro > div { display: grid; gap: 12px; }
.process-intro span { color: #55b6ff; font-size: .72rem; font-weight: 900; letter-spacing: .19em; }
.process-intro h2 { margin: 0; max-width: 15ch; color: #f3f7fc; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 3.7vw, 4.45rem); line-height: .98; font-weight: 500; letter-spacing: -.042em; }
.process-intro p { margin: 0 0 4px; color: #91a6be; line-height: 1.7; }
.process-grid { position: relative; z-index: 2; margin-top: 34px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.process-step { padding: 20px; min-height: 170px; border-radius: 22px; border: 1px solid rgba(63, 150, 255, .18); background: rgba(1, 10, 22, .54); display: grid; align-content: start; gap: 13px; }
.process-step b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(18, 126, 255, .13); color: #68c0ff; font-size: .74rem; letter-spacing: .06em; }
.process-step strong { color: #f4f8fd; font-size: 1.02rem; }
.process-step small { color: #8097b0; line-height: 1.55; font-size: .82rem; }

.meta-cta {
  min-height: 190px;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid rgba(65, 156, 255, .28);
  background: linear-gradient(110deg, rgba(3, 14, 31, .98), rgba(7, 43, 84, .82), rgba(2, 10, 22, .98));
  box-shadow: 0 28px 80px rgba(0,0,0,.30);
}
.meta-cta-copy { display: grid; gap: 10px; max-width: 920px; }
.meta-cta-copy span { color: #52b5ff; font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.meta-cta-copy strong { color: #f3f7fc; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.9rem, 3.1vw, 3.6rem); font-weight: 500; line-height: 1.02; letter-spacing: -.035em; }
.meta-cta a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 18px; padding: 15px 18px 15px 22px; border-radius: 999px; border: 1px solid rgba(86, 176, 255, .34); background: rgba(2, 12, 25, .78); color: #edf6ff; font-weight: 800; }
.meta-cta a b { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #f3fbff, #31a8ff); color: #001326; font-size: 1.15rem; }

@media (max-width: 1120px) {
  .growth-visual { min-height: 680px; }
  .visual-lockup { top: 25px; left: 30px; width: 172px; height: 96px; }
  .performance-window { top: 26%; bottom: 13%; }
  .floating-meta { top: 45px; right: 28px; }
  .floating-web { display: none; }
  .sector-heading, .process-intro { grid-template-columns: 1fr; gap: 18px; }
  .sector-heading p, .process-intro p { max-width: 720px; }
  .sector-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .meta-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 860px) {
  .growth-visual { min-height: 545px; }
  .visual-lockup { top: 16px; left: 18px; width: 132px; height: 76px; }
  .performance-window { top: 24%; bottom: 8%; }
  .floating-meta { top: 18px; right: 14px; }
  .sector-section { padding-top: 34px; gap: 22px; }
  .sector-heading { padding-inline: 7px; }
  .sector-heading h2 { font-size: clamp(2.35rem, 10.2vw, 3.8rem); }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card { min-height: 220px; }
  .process-grid { grid-template-columns: 1fr; }
  .meta-process { border-radius: 25px; padding: 28px 20px; }
  .meta-cta { border-radius: 24px; padding: 28px 22px; }
  .meta-cta a { width: 100%; justify-content: space-between; }
}

@media (max-width: 520px) {
  .growth-visual { min-height: 455px; }
  .visual-lockup { width: 112px; height: 64px; top: 10px; left: 12px; }
  .performance-window { top: 22%; bottom: 5%; }
  .floating-meta { top: 9px; right: 8px; }
  .sector-card { padding: 21px; border-radius: 22px; }
  .sector-card h3 { margin-top: 23px; }
  .sector-card::after { left: 21px; right: 21px; }
  .meta-process { padding: 25px 18px; }
  .meta-cta { padding: 25px 18px; }
}

/* v7.1: floating Web card removed to prevent chart/step overlap */
.growth-visual .floating-web { display: none !important; }


/* =========================================================
   v8 — premium sector positioning / Meta ads focus
   ========================================================= */
.growth-title-v8 { max-width: none; line-height: .90; }
.growth-title-v8 span.growth-title-line,
.growth-title-v8 em.growth-title-line { white-space: nowrap; }
.growth-title-v8 span.growth-title-line { font-size: clamp(2.75rem, 3.85vw, 4.8rem); }
.growth-title-v8 em.growth-title-line { font-size: clamp(3.05rem, 4.35vw, 5.45rem); margin-top: 4px; }

.sector-section-v8 { padding-top: clamp(66px, 7vw, 110px); }
.sector-section-v8 .sector-heading h2 { max-width: 17ch; }
.sector-spotlight {
  position: relative; z-index: 2; min-height: 360px; padding: clamp(28px, 3.8vw, 54px);
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr); gap: clamp(28px, 5vw, 72px); align-items: stretch;
  border-radius: 34px; overflow: hidden; border: 1px solid rgba(83, 176, 255, .42);
  background: linear-gradient(120deg, rgba(7, 31, 60, .98), rgba(2, 11, 25, .98) 58%, rgba(4, 29, 58, .92));
  box-shadow: 0 34px 100px rgba(0,0,0,.34), 0 0 54px rgba(13,119,255,.10), inset 0 1px 0 rgba(255,255,255,.04);
}
.sector-spotlight::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 78% 30%, rgba(23,140,255,.22), transparent 30%), linear-gradient(90deg, transparent, rgba(111,202,255,.025)); }
.sector-spotlight-copy, .sector-spotlight-visual { position: relative; z-index: 2; }
.focus-badge { padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(84,178,255,.34); background: rgba(14,112,225,.10); color:#85d1ff; font-size:.68rem; font-weight:900; letter-spacing:.16em; }
.sector-spotlight h3 { margin: 34px 0 0; max-width: 14ch; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.5rem,4vw,4.8rem); line-height:.96; font-weight:500; letter-spacing:-.045em; color:#f7faff; }
.sector-spotlight-copy > p { max-width: 650px; margin: 19px 0 0; color:#a2b5c9; line-height:1.72; font-size: clamp(.98rem,1.08vw,1.12rem); }
.sector-benefits { display:flex; flex-wrap:wrap; gap:9px; margin-top:24px; }
.sector-benefits span { padding:9px 12px; border-radius:999px; border:1px solid rgba(76,164,255,.22); background:rgba(7,67,136,.12); color:#a9d9ff; font-size:.76rem; font-weight:800; }
.sector-inline-link { display:inline-flex; margin-top:27px; color:#67c2ff; font-weight:800; font-size:.88rem; }
.sector-spotlight-visual { min-height: 250px; padding: 30px; display:flex; flex-direction:column; justify-content:center; border-radius:27px; border:1px solid rgba(68,156,255,.24); background: linear-gradient(145deg, rgba(5,24,49,.80), rgba(1,8,18,.86)); }
.sector-spotlight-visual::before { content:""; position:absolute; inset:0; border-radius:inherit; background-image:linear-gradient(rgba(60,140,235,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(60,140,235,.06) 1px,transparent 1px); background-size:40px 40px; mask-image:linear-gradient(135deg,black,transparent 92%); }
.sector-spotlight-visual > * { position:relative; z-index:2; }
.sector-spotlight-visual > span { color:#55b8ff; font-size:.68rem; font-weight:900; letter-spacing:.22em; }
.sector-spotlight-visual > strong { max-width: 11ch; margin-top:14px; color:#f3f8ff; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2rem,3vw,3.5rem); line-height:1.02; font-weight:500; letter-spacing:-.04em; }
.spotlight-flow { display:flex; align-items:center; flex-wrap:wrap; gap:9px; margin-top:28px; }
.spotlight-flow i { padding:9px 11px; border-radius:12px; background:rgba(15,118,238,.12); border:1px solid rgba(70,160,255,.20); color:#9dcfff; font-size:.72rem; font-style:normal; font-weight:800; }
.spotlight-flow b { color:#3da9ff; font-weight:500; }

.sector-secondary-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:16px; }
.sector-secondary-grid .sector-card { grid-column:span 2; min-height:280px; }
.sector-secondary-grid .sector-card:nth-child(4), .sector-secondary-grid .sector-card:nth-child(5) { grid-column:span 3; }
.sector-focus { position:absolute; left:24px; bottom:18px; color:#4ca9ee; font-size:.64rem; font-weight:900; letter-spacing:.14em; }
.sector-secondary-grid .sector-card::after { bottom:47px; }
.sector-secondary-grid .sector-card p { margin-bottom:58px; }
.sector-secondary-grid .sector-card .sector-arrow { bottom:12px; }

.signal-section { position:relative; padding: clamp(48px,6vw,88px) 0; display:grid; gap:30px; }
.signal-heading { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.68fr); gap:clamp(30px,6vw,94px); align-items:end; }
.signal-heading > div { display:grid; gap:12px; }
.signal-heading span { color:#52b5ff; font-size:.72rem; font-weight:900; letter-spacing:.19em; }
.signal-heading h2 { margin:0; max-width:17ch; color:#f4f8fd; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.3rem,3.8vw,4.45rem); line-height:.98; font-weight:500; letter-spacing:-.043em; }
.signal-heading p { margin:0; color:#91a6be; line-height:1.72; font-size:clamp(.98rem,1.08vw,1.12rem); }
.signal-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.signal-grid article { min-height:225px; padding:24px; display:grid; align-content:start; gap:15px; border-radius:25px; border:1px solid rgba(60,148,255,.19); background:linear-gradient(145deg,rgba(5,22,44,.82),rgba(1,8,18,.94)); }
.signal-grid b { width:40px; height:40px; display:grid; place-items:center; border-radius:12px; background:rgba(18,128,255,.13); color:#69c0ff; font-size:.72rem; }
.signal-grid strong { color:#f4f8fd; font-family:Georgia,"Times New Roman",serif; font-size:1.45rem; font-weight:500; }
.signal-grid small { color:#849ab3; line-height:1.62; font-size:.86rem; }
.meta-cta-v8 { margin-bottom: 10px; }
.meta-cta-actions { display:flex; flex-direction:column; gap:10px; align-items:stretch; flex:0 0 auto; }
.meta-cta-actions a { justify-content:space-between; }
.meta-cta-actions .meta-cta-secondary { padding:13px 20px; justify-content:center; color:#8fb3d3; font-size:.82rem; background:rgba(1,8,18,.55); }

@media (max-width: 1120px) {
  .growth-title-v8 span.growth-title-line, .growth-title-v8 em.growth-title-line { white-space: normal; }
  .growth-title-v8 span.growth-title-line { font-size: clamp(3rem, 8.7vw, 5.5rem); }
  .growth-title-v8 em.growth-title-line { font-size: clamp(3.35rem, 9.7vw, 6.2rem); }
  .sector-spotlight { grid-template-columns:1fr; }
  .sector-spotlight-visual { min-height:220px; }
  .sector-secondary-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .sector-secondary-grid .sector-card, .sector-secondary-grid .sector-card:nth-child(4), .sector-secondary-grid .sector-card:nth-child(5) { grid-column:auto; }
  .sector-secondary-grid .sector-card:last-child { grid-column:1 / -1; }
  .signal-heading { grid-template-columns:1fr; gap:18px; }
  .signal-heading p { max-width:720px; }
  .signal-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .growth-title-v8 span.growth-title-line { font-size: clamp(2.55rem, 12.5vw, 4.8rem); }
  .growth-title-v8 em.growth-title-line { font-size: clamp(2.8rem, 13.5vw, 5.3rem); }
  .sector-spotlight { padding:25px 21px; border-radius:25px; }
  .sector-spotlight h3 { margin-top:24px; }
  .sector-spotlight-visual { padding:24px 20px; border-radius:21px; }
  .sector-secondary-grid { grid-template-columns:1fr; }
  .sector-secondary-grid .sector-card:last-child { grid-column:auto; }
  .signal-grid { grid-template-columns:1fr; }
  .signal-grid article { min-height:190px; }
  .meta-cta-actions { width:100%; }
}
@media (max-width: 520px) {
  .growth-title-v8 span.growth-title-line { font-size: clamp(2.25rem, 11.8vw, 3.45rem); }
  .growth-title-v8 em.growth-title-line { font-size: clamp(2.5rem, 13vw, 3.75rem); }
  .sector-spotlight { padding:21px 18px; }
  .sector-spotlight h3 { font-size:clamp(2.25rem,11vw,3.3rem); }
  .sector-spotlight-visual > strong { font-size:clamp(1.85rem,9vw,2.8rem); }
  .sector-focus { left:21px; }
}


/* =========================================================
   v9 — cooler premium Meta Ads hero
   ========================================================= */
:root { --max: 1480px; }

.home-page-v5 {
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 88px)));
  padding-top: clamp(34px, 4.2vw, 66px);
  gap: clamp(28px, 3.4vw, 52px);
}

.growth-hero {
  min-height: min(760px, calc(100dvh - 118px));
  grid-template-columns: minmax(0, .90fr) minmax(610px, 1.10fr);
  gap: clamp(34px, 4vw, 76px);
  align-items: center;
}
.growth-hero::before {
  width: 760px; height: 760px; right: -2%; top: -10%;
  background: radial-gradient(circle, rgba(0, 112, 255, .20), rgba(0, 77, 200, .075) 38%, transparent 70%);
  filter: blur(22px);
}
.growth-hero::after {
  content: ""; position: absolute; z-index: 0; left: 38%; top: 12%; width: 34%; height: 68%; pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(17, 116, 255, .06), transparent);
  transform: skewX(-16deg); filter: blur(7px);
}

.growth-copy-v9 { max-width: 720px; padding-left: 4px; }
.growth-copy-v9 .kicker {
  width: fit-content; padding: 10px 15px; border-radius: 999px;
  border: 1px solid rgba(49, 150, 255, .46);
  background: linear-gradient(100deg, rgba(5, 33, 69, .84), rgba(2, 13, 29, .88));
  box-shadow: 0 0 28px rgba(12, 128, 255, .10), inset 0 1px 0 rgba(255,255,255,.035);
  letter-spacing: .14em;
}

.growth-title-v8 { margin-top: 31px; line-height: .89; letter-spacing: -.056em; }
.growth-title-v8 span.growth-title-line { font-size: clamp(3.25rem, 4.65vw, 5.75rem); }
.growth-title-v8 em.growth-title-line { font-size: clamp(3.65rem, 5.12vw, 6.4rem); margin-top: 6px; }
.growth-title-v8 span.growth-title-line:nth-child(3) {
  color: transparent;
  background: linear-gradient(180deg, #f9fcff 4%, #b8e5ff 33%, #3ba8ff 68%, #087ff3 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(19, 141, 255, .20));
}
.growth-title-v8 em.growth-title-line {
  background: linear-gradient(180deg, #f7fbff 2%, #93d6ff 34%, #168dff 65%, #dff5ff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(0, 132, 255, .28));
}
.hero-title-ornament { width: min(350px, 78%); height: 22px; margin: 14px 0 2px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.hero-title-ornament span { height: 1px; background: linear-gradient(90deg, transparent, rgba(52, 172, 255, .84)); }
.hero-title-ornament span:last-child { background: linear-gradient(90deg, rgba(52, 172, 255, .84), transparent); }
.hero-title-ornament b { color: #37b5ff; font-size: .86rem; text-shadow: 0 0 14px #168fff; }

.growth-copy-v9 .growth-lead { max-width: 660px; margin-top: 16px; color: rgba(221, 233, 246, .78); line-height: 1.72; }
.growth-copy-v9 .hero-actions { margin-top: 25px; }
.growth-copy-v9 .btn { min-height: 54px; border-radius: 13px; padding-inline: 22px; }
.growth-copy-v9 .btn-primary {
  background: linear-gradient(135deg, #96ddff 0%, #35adff 45%, #087ef0 100%);
  box-shadow: 0 0 0 1px rgba(151, 222, 255, .28) inset, 0 0 28px rgba(0, 126, 255, .34), 0 18px 46px rgba(0,0,0,.30);
}
.growth-copy-v9 .btn-primary::after { content: "  →"; margin-left: 10px; font-size: 1.1em; }
.growth-copy-v9 .btn-ghost { background: rgba(1, 9, 21, .76); border-color: rgba(55, 149, 255, .35); }
.growth-copy-v9 .btn:hover { transform: translateY(-2px); }

.growth-copy-v9 .outcome-row {
  max-width: 690px; margin-top: 31px; padding-top: 0; border-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
}
.growth-copy-v9 .outcome-row span {
  min-height: 74px; padding: 13px 14px; border-radius: 16px;
  border: 1px solid rgba(53, 145, 251, .20);
  background: linear-gradient(145deg, rgba(7, 31, 62, .64), rgba(1, 9, 20, .76));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.growth-copy-v9 .outcome-row b { width: 38px; height: 38px; border-radius: 12px; background: rgba(11, 102, 215, .17); box-shadow: 0 0 20px rgba(17, 137, 255, .08); }
.growth-copy-v9 .outcome-row i { font-size: .80rem; color: #bfd0e1; }

.growth-visual-v9 {
  min-height: 650px; border-radius: 34px; overflow: visible;
  border: 1px solid rgba(67, 162, 255, .54);
  background:
    linear-gradient(145deg, rgba(5, 24, 50, .75), rgba(1, 8, 18, .97) 48%, rgba(3, 17, 37, .96)),
    radial-gradient(circle at 75% 15%, rgba(0, 137, 255, .30), transparent 34%);
  box-shadow: 0 34px 110px rgba(0,0,0,.48), 0 0 0 1px rgba(115,199,255,.04) inset, 0 0 64px rgba(0, 105, 255, .20);
}
.growth-visual-v9::before {
  border-radius: inherit;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(87, 190, 255, .9) 0 1px, transparent 2px),
    linear-gradient(rgba(48, 130, 230, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 130, 230, .055) 1px, transparent 1px);
  background-size: 130px 110px, 46px 46px, 46px 46px;
  opacity: .82;
}
.growth-visual-v9::after {
  right: -24%; bottom: -41%; width: 97%;
  border-color: rgba(56, 160, 255, .43);
  box-shadow: 0 0 0 24px rgba(6, 99, 218, .032), 0 0 0 64px rgba(6, 99, 218, .025), 0 0 120px rgba(0, 104, 255, .23);
}
.growth-visual-v9 .visual-lockup { top: 27px; left: 48px; width: 196px; height: 118px; }
.growth-visual-v9 .performance-window {
  left: 3.5%; right: 4%; top: 27%; bottom: 6%; border-radius: 29px;
  border-color: rgba(78, 171, 255, .42);
  background: linear-gradient(145deg, rgba(3, 16, 35, .93), rgba(1, 7, 17, .96));
  box-shadow: 0 26px 80px rgba(0,0,0,.43), 0 0 0 1px rgba(85, 184, 255, .035) inset, 0 0 34px rgba(8, 121, 255, .08);
}
.growth-visual-v9 .performance-window::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(20, 123, 255, .045) 54%, transparent 74%);
}
.growth-visual-v9 .performance-head { position: relative; z-index: 2; }
.growth-visual-v9 .performance-chart { z-index: 2; }
.growth-visual-v9 .performance-steps { z-index: 3; }
.growth-visual-v9 .floating-meta { right: 24px; top: 46px; padding: 14px 18px; border-color: rgba(72, 170, 255, .42); box-shadow: 0 18px 55px rgba(0,0,0,.40), 0 0 26px rgba(19,141,255,.12); }
.growth-visual-v9 .orbit-one { width: 690px; height: 690px; right: -240px; top: -180px; border-color: rgba(38, 142, 255, .27); box-shadow: 0 0 0 30px rgba(13,89,193,.026), 0 0 0 83px rgba(13,89,193,.018), 0 0 82px rgba(0,112,255,.12); }
.growth-visual-v9 .orbit-two { width: 430px; height: 430px; left: -260px; bottom: -180px; border-color: rgba(55, 165, 255, .25); box-shadow: 0 0 56px rgba(0,116,255,.08); }

.hero-sector-strip {
  position: relative; z-index: 12; width: 100%; min-height: 66px; margin-top: -12px;
  display: grid; grid-template-columns: minmax(230px, 1.2fr) repeat(6, minmax(120px, .84fr)); align-items: stretch;
  border: 1px solid rgba(57, 151, 255, .35); border-radius: 17px; overflow: hidden;
  background: linear-gradient(100deg, rgba(4, 24, 50, .94), rgba(1, 8, 18, .96) 52%, rgba(4, 28, 57, .90));
  box-shadow: 0 22px 65px rgba(0,0,0,.28), 0 0 35px rgba(11,112,255,.08), inset 0 1px 0 rgba(255,255,255,.028);
}
.hero-sector-strip::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 20% 0%, rgba(20,133,255,.12), transparent 28%); }
.hero-sector-strip > * { position: relative; z-index: 2; }
.sector-strip-label, .hero-sector-strip a { min-width: 0; padding: 13px 15px; display:flex; align-items:center; justify-content:center; gap:10px; border-right:1px solid rgba(43,130,230,.14); }
.sector-strip-label { justify-content:flex-start; padding-left: 18px; color:#e7f3ff; }
.sector-strip-label span { width:34px; height:34px; display:grid; place-items:center; border-radius:11px; border:1px solid rgba(61,158,255,.30); background:rgba(14,100,207,.12); color:#5cbcff; text-shadow:0 0 15px #168fff; }
.sector-strip-label strong { font-size:.78rem; letter-spacing:.04em; white-space:nowrap; }
.hero-sector-strip a { color:#b8c8d8; font-size:.74rem; font-weight:800; text-align:center; transition: background .2s ease, color .2s ease; }
.hero-sector-strip a b { color:#62bdff; font-size:1.15rem; font-weight:500; text-shadow:0 0 14px rgba(22,143,255,.62); }
.hero-sector-strip a:hover { color:#fff; background:rgba(15,112,225,.11); }
.hero-sector-strip a:last-child { border-right:0; }

.sector-section-v8 { padding-top: clamp(78px, 8vw, 128px); }

@media (max-width: 1380px) and (min-width: 1121px) {
  :root { --max: 1340px; }
  .growth-hero { grid-template-columns: minmax(0,.92fr) minmax(545px,1.08fr); gap: 34px; }
  .growth-title-v8 span.growth-title-line { font-size: clamp(2.85rem, 4.05vw, 4.8rem); }
  .growth-title-v8 em.growth-title-line { font-size: clamp(3.2rem, 4.5vw, 5.35rem); }
  .growth-visual-v9 { min-height: 600px; }
  .hero-sector-strip { grid-template-columns: minmax(200px,1.15fr) repeat(6,minmax(104px,.82fr)); }
  .sector-strip-label strong { font-size:.70rem; }
  .hero-sector-strip a { font-size:.66rem; padding-inline:10px; }
}

@media (max-width: 1120px) {
  .growth-hero { grid-template-columns: 1fr; min-height: auto; }
  .growth-copy-v9 { max-width: 850px; }
  .growth-title-v8 span.growth-title-line, .growth-title-v8 em.growth-title-line { white-space: normal; }
  .growth-visual-v9 { min-height: 610px; overflow: hidden; }
  .hero-sector-strip { display:flex; overflow-x:auto; overscroll-behavior-inline:contain; scrollbar-width:none; margin-top:0; }
  .hero-sector-strip::-webkit-scrollbar { display:none; }
  .sector-strip-label, .hero-sector-strip a { flex:0 0 auto; min-width:180px; }
  .sector-strip-label { min-width:240px; }
}

@media (max-width: 860px) {
  .growth-copy-v9 .outcome-row { grid-template-columns: 1fr; }
  .growth-copy-v9 .outcome-row span { min-height: 62px; }
  .growth-title-v8 { margin-top:24px; }
  .hero-title-ornament { width: min(300px, 84%); }
  .growth-visual-v9 { min-height: 520px; }
  .growth-visual-v9 .visual-lockup { left: 22px; top: 16px; width: 150px; height: 94px; }
  .growth-visual-v9 .performance-window { left:4%; right:4%; top:24%; bottom:7%; }
  .growth-visual-v9 .floating-meta { top:21px; right:15px; }
}

@media (max-width: 520px) {
  .home-page-v5 { width: calc(100% - 20px); }
  .growth-copy-v9 { padding-left:0; }
  .growth-copy-v9 .kicker { font-size:.60rem; padding:9px 11px; }
  .growth-title-v8 span.growth-title-line { font-size: clamp(2.24rem, 11.7vw, 3.35rem); }
  .growth-title-v8 em.growth-title-line { font-size: clamp(2.48rem, 12.9vw, 3.65rem); }
  .hero-title-ornament { margin-top:10px; }
  .growth-copy-v9 .growth-lead { margin-top:12px; }
  .growth-copy-v9 .hero-actions { margin-top:21px; }
  .growth-copy-v9 .outcome-row { margin-top:23px; }
  .growth-visual-v9 { min-height: 445px; border-radius:25px; }
  .growth-visual-v9 .visual-lockup { left:13px; top:9px; width:125px; height:76px; }
  .growth-visual-v9 .floating-meta { top:12px; right:9px; }
  .growth-visual-v9 .performance-window { top:22%; bottom:5%; }
  .hero-sector-strip { min-height:60px; border-radius:14px; }
  .sector-strip-label, .hero-sector-strip a { min-width:165px; padding:11px 13px; }
  .sector-strip-label { min-width:225px; }
}


/* =========================================================
   v10 — professional compact hero typography
   ========================================================= */
.growth-copy-v9 { max-width: 620px; }
.growth-title-v10 {
  max-width: 620px !important;
  margin-top: 22px !important;
  line-height: .94 !important;
  letter-spacing: -.045em !important;
}
.growth-title-v10 .growth-title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.growth-title-v10 span.growth-title-line {
  font-size: clamp(2.55rem, 3.45vw, 4.35rem) !important;
}
.growth-title-v10 em.growth-title-line {
  margin-top: .08em !important;
  font-size: clamp(2.9rem, 3.9vw, 4.85rem) !important;
}
.growth-copy-v9 .growth-lead {
  max-width: 590px;
  margin-top: 22px;
  font-size: clamp(.98rem, 1.05vw, 1.12rem);
  line-height: 1.68;
}

@media (min-width: 1121px) and (max-width: 1380px) {
  .growth-copy-v9 { max-width: 560px; }
  .growth-title-v10 { max-width: 560px !important; }
  .growth-title-v10 span.growth-title-line {
    font-size: clamp(2.4rem, 3.55vw, 3.8rem) !important;
  }
  .growth-title-v10 em.growth-title-line {
    font-size: clamp(2.7rem, 4vw, 4.25rem) !important;
  }
}

@media (min-width: 521px) and (max-width: 1120px) {
  .growth-title-v10 { max-width: 650px !important; }
  .growth-title-v10 span.growth-title-line {
    font-size: clamp(2.45rem, 6.2vw, 4rem) !important;
  }
  .growth-title-v10 em.growth-title-line {
    font-size: clamp(2.75rem, 6.8vw, 4.4rem) !important;
  }
}

@media (max-width: 520px) {
  .growth-title-v10 .growth-title-line { white-space: normal !important; }
  .growth-title-v10 span.growth-title-line {
    font-size: clamp(2.2rem, 11vw, 3.35rem) !important;
  }
  .growth-title-v10 em.growth-title-line {
    font-size: clamp(2.45rem, 12vw, 3.7rem) !important;
  }
  .growth-copy-v9 .growth-lead { font-size: .96rem; line-height: 1.58; }
}


/* =========================================================
   v11 — 7th vertical: gyms & fitness
   ========================================================= */
.hero-sector-strip {
  grid-template-columns: minmax(220px, 1.14fr) repeat(7, minmax(104px, .80fr));
}
.sector-secondary-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.sector-secondary-grid .sector-card,
.sector-secondary-grid .sector-card:nth-child(4),
.sector-secondary-grid .sector-card:nth-child(5),
.sector-secondary-grid .sector-card:nth-child(6) {
  grid-column: span 2;
}
.sector-card-fitness {
  --sector-glow: rgba(25, 190, 255, .23);
  border-color: rgba(69, 174, 255, .28);
  background:
    radial-gradient(circle at 90% 5%, rgba(27, 155, 255, .12), transparent 35%),
    linear-gradient(145deg, rgba(5, 27, 54, .94), rgba(1, 8, 18, .96));
}
.sector-card-fitness .sector-signal {
  color: #9bddff;
  box-shadow: 0 0 28px rgba(30, 159, 255, .16);
}

@media (max-width: 1380px) and (min-width: 1121px) {
  .hero-sector-strip {
    grid-template-columns: minmax(188px, 1.08fr) repeat(7, minmax(92px, .76fr));
  }
  .hero-sector-strip a { font-size: .61rem; padding-inline: 8px; }
}

@media (max-width: 1120px) {
  .sector-secondary-grid .sector-card,
  .sector-secondary-grid .sector-card:nth-child(4),
  .sector-secondary-grid .sector-card:nth-child(5),
  .sector-secondary-grid .sector-card:nth-child(6) {
    grid-column: auto;
  }
  .sector-secondary-grid .sector-card:last-child { grid-column: auto; }
}
