:root {
  --bg: #05070d;
  --bg-2: #0a0f1b;
  --panel: rgba(11, 16, 28, 0.82);
  --panel-strong: rgba(15, 22, 38, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef2ff;
  --muted: #9aa6c3;
  --muted-2: #6f7a95;
  --accent: #ffb020;
  --accent-2: #ff8c1a;
  --green: #39d98a;
  --red: #ff5b6e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 32, 0.09), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(78, 107, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #04060b 0%, #060a12 36%, #05070d 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 176, 32, 0.10), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(76, 108, 255, 0.10), transparent 18%);
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 4px 4px;
  z-index: -1;
}

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

.section {
  padding: 72px 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 176, 32, 0.22);
  border-radius: 999px;
  background: rgba(255, 176, 32, 0.08);
  color: #ffd27d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  color: #0c0f15;
  background: linear-gradient(135deg, #ffbf47, #ff9c1f);
  box-shadow: 0 14px 34px rgba(255, 176, 32, 0.25);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 176, 32, 0.22);
  background: rgba(255, 176, 32, 0.06);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 13, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd787, #ffb020 58%, #b66400);
  box-shadow: 0 0 28px rgba(255, 176, 32, 0.55);
}

.brand-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(7, 10, 16, 0.96);
}

.mobile-nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding-top: 70px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 880px;
}

.hero-copy h1 span {
  color: #ffc85d;
}

.hero-text {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.hero-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.hero-point span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 176, 32, 0.20);
  top: 90px;
  left: 30px;
}

.glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(66, 114, 255, 0.18);
  right: 20px;
  bottom: 90px;
}

.device-stack {
  position: relative;
  width: 100%;
  max-width: 680px;
  z-index: 1;
}

.device {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 25, 42, 0.94), rgba(8, 12, 22, 0.98));
  box-shadow: var(--shadow);
}

.desktop-card {
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
}

.device-topbar,
.shell-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.device-topbar span,
.shell-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.desktop-content {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 410px;
}

.desktop-sidebar {
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.sidebar-item {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: 14px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.sidebar-item.active {
  color: var(--text);
  background: rgba(255, 176, 32, 0.10);
  border: 1px solid rgba(255, 176, 32, 0.18);
}

.desktop-main {
  padding: 20px;
}

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

.metric-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  font-size: 17px;
  line-height: 1.4;
}

.chart-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  min-height: 210px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,176,32,0.07), transparent 28%),
    rgba(255,255,255,0.03);
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.chart-header span {
  color: var(--muted);
  font-size: 13px;
}

.chart-header strong {
  font-size: 16px;
}

.chart-lines {
  position: relative;
  height: 115px;
  overflow: hidden;
}

.line {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 999px;
  opacity: 0.9;
}

.line-1 {
  top: 26px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,176,32,0.18) 8%, #ffb020 32%, rgba(255,176,32,0.18) 70%, transparent 100%);
  transform: rotate(-4deg);
}

.line-2 {
  top: 58px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(89,153,255,0.18) 8%, #5b8fff 40%, rgba(89,153,255,0.18) 76%, transparent 100%);
  transform: rotate(3deg);
}

.line-3 {
  top: 84px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(57,217,138,0.15) 8%, #39d98a 38%, rgba(57,217,138,0.15) 74%, transparent 100%);
  transform: rotate(-2deg);
}

.desktop-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.signal-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.signal-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.signal-card strong {
  font-size: 16px;
}

.signal-card.warn {
  border-color: rgba(255, 176, 32, 0.22);
  background: rgba(255, 176, 32, 0.07);
}

.signal-card.ok {
  border-color: rgba(57, 217, 138, 0.18);
  background: rgba(57, 217, 138, 0.06);
}

.mobile-card {
  position: absolute;
  right: -10px;
  bottom: -34px;
  width: 250px;
  border-radius: 34px;
  padding: 16px 14px;
  background:
    linear-gradient(180deg, rgba(14, 20, 35, 0.96), rgba(8, 11, 20, 0.98));
}

.mobile-notch {
  width: 120px;
  height: 22px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.mobile-screen h3 {
  margin: 8px 0 16px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mobile-chip {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 176, 32, 0.10);
  color: #ffd27d;
  border: 1px solid rgba(255, 176, 32, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.scan-box,
.scan-result,
.mini-list {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.scan-box {
  padding: 14px;
  margin-bottom: 12px;
}

.scan-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.scan-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}

.scan-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  margin-bottom: 12px;
}

.scan-result span {
  color: var(--muted);
  font-size: 13px;
}

.scan-result strong {
  font-size: 16px;
}

.scan-result.danger {
  border-color: rgba(255, 91, 110, 0.24);
  background: rgba(255, 91, 110, 0.08);
}

.mini-list {
  padding: 12px 14px;
}

.mini-list div {
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mini-list div:last-child {
  border-bottom: 0;
}

.trusted-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.trusted-row {
  min-height: 78px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
}

.trusted-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.intro-grid,
.products-grid,
.benefits-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.product-card,
.benefit-card,
.panel-card,
.api-code-card,
.step-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 176, 32, 0.10);
  border: 1px solid rgba(255, 176, 32, 0.18);
  color: #ffd27d;
  font-weight: 800;
}

.info-card h3,
.product-card h3,
.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.info-card p,
.product-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

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

.product-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-card.featured {
  border-color: rgba(255, 176, 32, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255,176,32,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.card-badge {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #c8d1e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.product-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbf47, #ff9225);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd27d;
  font-weight: 700;
}

.showcase-grid,
.desktop-grid,
.api-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.showcase-copy h2,
.desktop-copy h2,
.api-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.showcase-copy p,
.desktop-copy p,
.api-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.feature-list,
.check-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.feature-item span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.showcase-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  width: min(100%, 520px);
  border-radius: 28px;
  padding: 28px;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--muted);
  font-size: 14px;
}

.panel-row strong {
  font-size: 16px;
  text-align: right;
}

.desktop-panel-shell {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 24, 40, 0.96), rgba(9, 12, 22, 0.98));
  box-shadow: var(--shadow);
}

.shell-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}

.shell-left {
  padding: 20px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.shell-item {
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.shell-item.active {
  background: rgba(255, 176, 32, 0.10);
  border: 1px solid rgba(255,176,32,0.18);
  color: var(--text);
}

.shell-right {
  padding: 20px;
}

.shell-top-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.shell-stat,
.shell-big-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}

.shell-stat {
  padding: 18px;
}

.shell-stat span,
.shell-big-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.shell-stat strong {
  font-size: 16px;
}

.shell-big-card {
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.shell-big-card strong {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.api-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.api-usecases span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #c8d1e8;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 14px;
  font-weight: 600;
}

.api-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card {
  padding: 20px;
  border-radius: 20px;
}

.step-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: #ffd27d;
}

.step-card span {
  color: var(--muted);
  line-height: 1.7;
}

.api-code-card {
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
}

.api-code-card pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.api-code-card code {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #dfe8ff;
  font-size: 14px;
  line-height: 1.85;
}

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

.benefit-card {
  padding: 26px;
  border-radius: 24px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: left;
}

.pricing-table th {
  color: #fff;
  font-size: 15px;
  background: rgba(255,255,255,0.03);
}

.pricing-table td {
  color: var(--muted);
  font-size: 15px;
}

.pricing-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}
.forms-section {
  padding-top: 70px;
}

.forms-section.alt {
  padding-top: 30px;
}

.forms-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.form-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.form-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.request-form {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255,176,32,0.06), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.field label {
  color: #dfe6fb;
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 16px 16px;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 176, 32, 0.34);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(255,176,32,0.08);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.7;
}

.contact-sales {
  padding-top: 30px;
}

.sales-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,176,32,0.18);
  background:
    radial-gradient(circle at top right, rgba(255,176,32,0.08), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.sales-copy {
  max-width: 760px;
}

.sales-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.sales-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.sales-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 24px;
  color: #ffd27d;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.footer {
  padding: 36px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
  gap: 24px;
  padding-bottom: 26px;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 15px;
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  color: var(--muted-2);
  font-size: 13px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,176,32,0.22);
  background: rgba(12, 17, 29, 0.96);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  .hero-grid,
  .showcase-grid,
  .desktop-grid,
  .api-grid,
  .forms-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .showcase-panel {
    justify-content: flex-start;
  }

  .sales-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .sales-actions {
    justify-content: flex-start;
  }

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

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

  .intro-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .mobile-nav.open {
    display: flex;
  }

  .hero-points,
  .metric-row,
  .desktop-bottom,
  .shell-top-cards,
  .api-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .desktop-content,
  .shell-body {
    grid-template-columns: 1fr;
  }

  .desktop-sidebar,
  .shell-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 360px;
    margin: 18px auto 0;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 78px;
  }

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

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .hero-copy h1,
  .section-heading h2,
  .showcase-copy h2,
  .desktop-copy h2,
  .api-copy h2,
  .form-copy h2,
  .sales-copy h2 {
    letter-spacing: -0.05em;
  }

  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .request-form,
  .panel-card,
  .api-code-card,
  .sales-card,
  .info-card,
  .product-card,
  .benefit-card {
    padding: 22px;
  }

  .faq-item summary {
    padding: 20px 20px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 20px;
    top: 17px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .trusted-row {
    justify-content: flex-start;
  }
}


/* кнопки делаем аккуратнее */

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.btn-ghost {
  border-color: rgba(255,176,32,0.18);
  background: rgba(255,176,32,0.04);
}

.btn-ghost:hover {
  background: rgba(255,176,32,0.08);
}

/* уменьшаем агрессивность желтого */

.hero-copy h1 span {
  color: #ffb84d;
}

/* делаем правую часть чуть ярче */

.desktop-card {
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

.mobile-card {
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* добавим лёгкий glow */

.desktop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,176,32,0.08), transparent 40%);
  pointer-events: none;
}





/* ===== pretty language switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
}

.lang-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.lang-switcher .lang-btn:hover {
  color: var(--text);
  border-color: rgba(255,176,32,0.22);
  background: rgba(255,255,255,0.06);
}

.lang-switcher .lang-btn.active {
  color: #11151d;
  background: linear-gradient(135deg, #ffbf47, #ff9c1f);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255,176,32,0.22);
}

@media (max-width: 980px) {
  .lang-switcher {
    gap: 6px;
    margin-right: 0;
  }

  .lang-switcher .lang-btn {
    min-width: 42px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
}



/* мобильная версия */

@media (max-width: 980px) {
  .real-mobile {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin-top: 12px;
    right: auto;
    bottom: auto;
  }
}



/* мобилка */
@media (max-width: 980px){
  .hero-copy h1{
    font-size: 34px !important;
    text-align: left !important;
  }

  .hero-text{
    text-align: left !important;
  }

  .real-mobile{
    width: 130px !important;
  }
}




/* MOBILE FIX */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr !important;
  }

  .real-devices{
    justify-content: center !important;
    margin-top: 20px !important;
  }

  .real-mobile{
    position: relative !important;
    transform: none !important;
    margin-top: -40px !important;
  }
}




/* десктоп чуть больше */
.hero-desktop-shot{
  max-width: 720px !important;
}

/* ТЕЛЕФОН ДЕЛАЕМ ВЫРАЗИТЕЛЬНЫМ */
.hero-mobile-shot{
  width: 140px !important;
  top: 130px !important;
  right: 20px !important;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

/* чуть больше воздуха слева */
.hero-copy{
  max-width: 560px !important;
}



/* десктоп еще шире */
.hero-desktop-shot{
  max-width: 780px !important;
}

/* ТЕЛЕФОН — КЛЮЧЕВОЙ АКЦЕНТ */
.hero-mobile-shot{
  width: 180px !important;
  top: 110px !important;
  right: 10px !important;
  filter: drop-shadow(0 18px 50px rgba(0,0,0,0.8));
}

/* текст чуть компактнее чтобы баланс был */
.hero-copy{
  max-width: 520px !important;
}


/* ===== HERO FINAL STABLE ===== */
.hero{
  padding-top: 54px !important;
  padding-bottom: 42px !important;
  overflow: hidden !important;
}

.hero-grid{
  display:grid !important;
  grid-template-columns:minmax(0,0.78fr) minmax(0,1.22fr) !important;
  gap:36px !important;
  align-items:center !important;
}

.hero-copy{
  max-width:540px !important;
  position:relative !important;
  z-index:2 !important;
}

.hero-heading{
  margin:0 0 18px !important;
  font-size:clamp(28px,3.9vw,56px) !important;
  line-height:0.92 !important;
  letter-spacing:-0.055em !important;
  text-transform:uppercase !important;
}

.hero-heading-accent,
.hero-heading-main{
  display:block !important;
}

.hero-heading-accent{
  color:#ffb020 !important;
}

.hero-heading-main{
  color:#eef2ff !important;
  margin-top:6px !important;
}

.hero-text{
  max-width:420px !important;
  margin:0 0 24px !important;
  color:#a8b4cf !important;
  font-size:16px !important;
  line-height:1.45 !important;
}

.hero-actions{
  display:flex !important;
  gap:14px !important;
  flex-wrap:wrap !important;
  margin:0 !important;
}

.store-btn{
  display:inline-flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  min-width:230px !important;
  min-height:70px !important;
  padding:12px 20px !important;
  border-radius:18px !important;
  text-decoration:none !important;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease !important;
}

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

.store-btn-play{
  background:linear-gradient(135deg,#ffbf47,#ff9c1f) !important;
  color:#10141c !important;
  box-shadow:0 18px 36px rgba(255,176,32,.24) !important;
}

.store-btn-desktop{
  background:rgba(255,255,255,.04) !important;
  color:#eef2ff !important;
  border:1px solid rgba(255,255,255,.1) !important;
}

.store-btn-kicker{
  font-size:11px !important;
  line-height:1 !important;
  letter-spacing:.14em !important;
  font-weight:800 !important;
  opacity:.74 !important;
  text-transform:uppercase !important;
}

.store-btn-title{
  margin-top:6px !important;
  font-size:20px !important;
  line-height:1.05 !important;
  font-weight:800 !important;
  letter-spacing:-.03em !important;
}

.hero-visual{
  display:flex !important;
  justify-content:flex-end !important;
  align-items:center !important;
  min-height:470px !important;
}

.hero-shot-wrap{
  position:relative !important;
  width:100% !important;
  max-width:860px !important;
  min-height:470px !important;
  margin-left:auto !important;
}

.hero-desktop-shot{
  position:absolute !important;
  right:0 !important;
  top:18px !important;
  width:100% !important;
  max-width:760px !important;
  border-radius:20px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 40px 120px rgba(0,0,0,.56) !important;
}

.hero-mobile-shot{
  position:absolute !important;
  right:12px !important;
  top:108px !important;
  width:150px !important;
  border-radius:26px !important;
  border:1px solid rgba(255,255,255,.1) !important;
  box-shadow:0 24px 64px rgba(0,0,0,.5) !important;
  z-index:3 !important;
}

@media (max-width: 1180px){
  .hero-grid{
    grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr) !important;
    gap:24px !important;
  }

  .hero-shot-wrap{
    max-width:720px !important;
    min-height:420px !important;
  }

  .hero-desktop-shot{
    max-width:650px !important;
  }

  .hero-mobile-shot{
    width:132px !important;
    top:114px !important;
  }
}

@media (max-width: 980px){
  .hero{
    padding-top:28px !important;
    padding-bottom:22px !important;
  }

  .hero-grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .hero-copy{
    max-width:100% !important;
  }

  .hero-heading{
    font-size:36px !important;
    max-width:100% !important;
  }

  .hero-text{
    max-width:100% !important;
    font-size:14px !important;
  }

  .hero-actions{
    flex-direction:column !important;
  }

  .store-btn{
    width:100% !important;
    min-width:100% !important;
  }

  .hero-visual{
    min-height:auto !important;
    justify-content:center !important;
  }

  .hero-shot-wrap{
    max-width:100% !important;
    min-height:300px !important;
  }

  .hero-desktop-shot{
    position:relative !important;
    top:0 !important;
    max-width:100% !important;
  }

  .hero-mobile-shot{
    width:96px !important;
    right:8px !important;
    top:auto !important;
    bottom:10px !important;
  }
}



/* ===== HERO PREMIUM ALIGN FIX ===== */
.hero-grid{
  grid-template-columns:minmax(0,0.82fr) minmax(0,1.18fr) !important;
  gap:30px !important;
  align-items:center !important;
}

.hero-copy{
  max-width:620px !important;
}

.hero-heading{
  max-width:560px !important;
  font-size:clamp(26px,3.2vw,48px) !important;
  line-height:0.94 !important;
  letter-spacing:-0.05em !important;
  margin:0 0 20px !important;
}

.hero-heading-accent{
  display:block !important;
  color:#ffb020 !important;
  white-space:nowrap !important;
}

.hero-heading-main{
  display:block !important;
  color:#eef2ff !important;
  margin-top:8px !important;
}

.hero-text{
  max-width:430px !important;
  margin:0 0 24px !important;
}

.hero-actions{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  gap:14px !important;
  align-items:center !important;
}

.store-btn{
  min-width:220px !important;
  width:220px !important;
  min-height:68px !important;
  flex:0 0 220px !important;
}

.hero-visual{
  min-height:430px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
}

.hero-shot-wrap{
  max-width:820px !important;
  min-height:430px !important;
  width:100% !important;
}

.hero-desktop-shot{
  max-width:740px !important;
  top:12px !important;
  right:0 !important;
  border-radius:20px !important;
  box-shadow:0 40px 120px rgba(0,0,0,.56) !important;
}

.hero-mobile-shot{
  width:132px !important;
  top:130px !important;
  right:18px !important;
  border-radius:26px !important;
  box-shadow:0 24px 64px rgba(0,0,0,.5) !important;
}

@media (max-width: 1180px){
  .hero-heading-accent{
    white-space:normal !important;
  }

  .hero-actions{
    flex-wrap:wrap !important;
  }

  .store-btn{
    width:auto !important;
    min-width:200px !important;
    flex:1 1 200px !important;
  }

  .hero-desktop-shot{
    max-width:660px !important;
  }

  .hero-mobile-shot{
    width:118px !important;
    top:122px !important;
    right:12px !important;
  }
}

@media (max-width: 980px){
  .hero-grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .hero-copy{
    max-width:100% !important;
  }

  .hero-heading{
    max-width:100% !important;
    font-size:34px !important;
  }

  .hero-actions{
    flex-direction:column !important;
    flex-wrap:nowrap !important;
  }

  .store-btn{
    width:100% !important;
    min-width:100% !important;
    flex:none !important;
  }

  .hero-shot-wrap{
    min-height:300px !important;
  }

  .hero-desktop-shot{
    max-width:100% !important;
  }

  .hero-mobile-shot{
    width:96px !important;
    top:auto !important;
    bottom:12px !important;
    right:8px !important;
  }
}



/* ===== FINAL HERO PROPORTIONS ===== */

.hero-grid{
  grid-template-columns: 1fr 1.2fr !important; /* БЛОК БОЛЬШЕ */
}

.hero-copy{
  max-width:700px !important; /* УВЕЛИЧИЛИ БЛОК */
}

.hero-heading-main{
  text-align:center !important; /* БЕЛЫЙ ТЕКСТ ПО ЦЕНТРУ */
  display:block;
}

.hero-heading-accent{
  display:block;
}

/* УМЕНЬШАЕМ ДЕСКТОП В 2 РАЗА */
.hero-desktop-shot{
  max-width:420px !important;
  right:40px !important;
  top:40px !important;
}

/* ЧУТЬ ПОДГОНИМ ТЕЛЕФОН */
.hero-mobile-shot{
  width:150px !important;
  right:0px !important;
  top:140px !important;
}

/* УВЕЛИЧИВАЕМ ВИЗУАЛЬНЫЙ БЛОК */
.hero-shot-wrap{
  min-height:520px !important;
}



/* ===== PREMIUM POLISH ===== */

/* eyebrow выше */
.hero .eyebrow{
  margin-bottom: 10px !important;
  transform: translateY(-8px) !important;
}

/* подзаголовок в одну строку и ярче */
.hero-text{
  max-width: none !important;
  white-space: nowrap !important;
  color: #d7def3 !important;
  opacity: 1 !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
}

/* кнопки под текстом по центру блока */
.hero-actions{
  justify-content: center !important;
}

/* кнопки в хедере меньше */
.nav-actions .btn{
  min-height: 56px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
}

.nav-actions .btn-primary,
.nav-actions .btn-ghost{
  min-width: 140px !important;
}

/* правый заголовок больше капсом и с подсветкой */
.hero-heading-main{
  font-size: 1.06em !important;
  text-transform: uppercase !important;
  color: #f2f5ff !important;
  text-shadow:
    0 0 18px rgba(255,255,255,0.08),
    0 0 34px rgba(255,255,255,0.04) !important;
}

.hero-heading-accent{
  text-shadow:
    0 0 18px rgba(255,176,32,0.18),
    0 0 36px rgba(255,176,32,0.08) !important;
}

/* на случай узкого экрана */
@media (max-width: 1180px){
  .hero-text{
    white-space: normal !important;
  }
}



/* ===== HERO SUBTEXT FIX ===== */

.hero-text{
  text-align: center !important;   /* по центру */
  color: #ffffff !important;       /* ярче */
  opacity: 1 !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
  text-shadow: 0 0 12px rgba(255,255,255,0.08); /* лёгкое свечение */
}


/* ===== EYEBROW UP ===== */

.hero .eyebrow{
  transform: translateY(-40px) !important; /* подняли на ~3-4 строки */
  margin-bottom: -10px !important;
}


/* ===== EYEBROW MAX UP ===== */

.hero .eyebrow{
  transform: translateY(-120px) !important; /* еще выше x3 */
  margin-bottom: -40px !important;
}


/* ===== HEADER PREMIUM FIX ===== */

/* правый заголовок (EN RU UA) — капс и чуть больше */
.lang-switch{
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: 0.8px !important;
}

.lang-switch button,
.lang-switch span{
  text-transform: uppercase !important;
  font-size: 14px !important;
}

/* кнопки справа меньше x1.5 */
.nav-actions .btn{
  transform: scale(0.85) !important;
  transform-origin: center right;
}

/* чтобы не съехали */
.nav-actions{
  gap: 10px !important;
}


/* ===== EYEBROW DOWN ===== */

.hero .eyebrow{
  transform: translateY(80px) !important; /* вниз примерно в 2 раза */
}


/* ===== EYEBROW ALIGN TO DESKTOP TOP ===== */

.hero .eyebrow{
  transform: translateY(-60px) !important; /* подняли ровно под верх десктопа */
  margin-bottom: 0 !important;
}


/* ===== SEO BLOCK PREMIUM ===== */
.section-heading.center{
  max-width: 1120px !important;
  margin: 0 auto 34px !important;
}

.section-heading.center .eyebrow{
  letter-spacing: .16em !important;
}

.section-heading.center h2{
  max-width: 980px !important;
  margin: 0 auto 20px !important;
  font-size: clamp(34px, 4.4vw, 64px) !important;
  line-height: .96 !important;
  letter-spacing: -0.055em !important;
  color: #eef2ff !important;
  text-wrap: balance !important;
}

.section-heading.center p{
  max-width: 960px !important;
  margin: 0 auto !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #b6c0da !important;
  text-wrap: pretty !important;
}

.intro-grid{
  margin-top: 34px !important;
  gap: 24px !important;
}

.info-card{
  padding: 34px 30px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)) !important;
  box-shadow:
    0 18px 60px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04) !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}

.info-card:hover{
  transform: translateY(-4px) !important;
  border-color: rgba(255,176,32,.18) !important;
  box-shadow:
    0 26px 90px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,176,32,.05) inset !important;
}

.info-card .num{
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ffd27d !important;
  background: linear-gradient(180deg, rgba(255,176,32,.10), rgba(255,176,32,.05)) !important;
  border: 1px solid rgba(255,176,32,.16) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.info-card h3{
  margin: 22px 0 14px !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  color: #f5f7ff !important;
}

.info-card p{
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: #aeb8d4 !important;
}

@media (max-width: 980px){
  .section-heading.center h2{
    font-size: 34px !important;
    line-height: 1.02 !important;
  }

  .section-heading.center p{
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .info-card{
    padding: 24px 22px !important;
    border-radius: 22px !important;
  }

  .info-card h3{
    font-size: 20px !important;
  }

  .info-card p{
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
}



/* ===== PRODUCT STACK SEO PREMIUM ===== */
.product-section, section#products, #products {
  min-height: auto !important;
}

#products .section-heading,
.product-section .section-heading{
  max-width: 1180px !important;
  margin: 0 auto 26px !important;
}

#products .section-heading h2,
.product-section .section-heading h2{
  max-width: 980px !important;
  font-size: clamp(32px, 4vw, 60px) !important;
  line-height: .96 !important;
  letter-spacing: -0.055em !important;
  margin-bottom: 14px !important;
  text-wrap: balance !important;
}

#products .section-heading p,
.product-section .section-heading p{
  max-width: 980px !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  color: #aeb8d4 !important;
  text-wrap: pretty !important;
}

/* grid one-screen feeling */
#products .product-grid,
.product-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  margin-top: 24px !important;
}

/* equal premium cards */
#products .product-card,
.product-card{
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 540px !important;
  padding: 26px 24px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)) !important;
  box-shadow:
    0 18px 56px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04) !important;
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

#products .product-card::before,
.product-card::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 30%) !important;
  pointer-events: none !important;
  opacity: .8 !important;
}

#products .product-card:hover,
.product-card:hover{
  transform: translateY(-5px) !important;
  border-color: rgba(255,176,32,.18) !important;
  box-shadow:
    0 28px 90px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,176,32,.05) inset !important;
}

/* top labels */
#products .product-chip,
#products .badge,
.product-card .badge,
.product-card .chip{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  letter-spacing: .1em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #cfd8f5 !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}

/* headings/text */
#products .product-card h3,
.product-card h3{
  margin: 18px 0 12px !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  color: #f5f7ff !important;
}

#products .product-card p,
.product-card p{
  margin: 0 0 16px !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
  color: #aeb8d4 !important;
}

#products .product-card ul,
.product-card ul{
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: grid !important;
  gap: 10px !important;
}

#products .product-card li,
.product-card li{
  position: relative !important;
  padding-left: 18px !important;
  color: #c6d0ea !important;
  line-height: 1.45 !important;
  font-size: 15px !important;
}

#products .product-card li::before,
.product-card li::before{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: .62em !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 999px !important;
  background: #ffb020 !important;
  box-shadow: 0 0 12px rgba(255,176,32,.18) !important;
}

/* bottom links */
#products .product-card a,
.product-card a{
  display: inline-flex !important;
  margin-top: 20px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ffcf74 !important;
  text-decoration: none !important;
}

/* subtle reveal animation */
#products .product-card,
#products .section-heading,
.product-card{
  opacity: 0;
  transform: translateY(22px);
}

#products.revealed .section-heading,
#products.revealed .product-card,
.product-section.revealed .section-heading,
.product-section.revealed .product-card{
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition:
    opacity .65s cubic-bezier(.22,1,.36,1),
    transform .65s cubic-bezier(.22,1,.36,1) !important;
}

#products.revealed .product-card:nth-child(1),
.product-section.revealed .product-card:nth-child(1){ transition-delay: .05s !important; }
#products.revealed .product-card:nth-child(2),
.product-section.revealed .product-card:nth-child(2){ transition-delay: .12s !important; }
#products.revealed .product-card:nth-child(3),
.product-section.revealed .product-card:nth-child(3){ transition-delay: .19s !important; }
#products.revealed .product-card:nth-child(4),
.product-section.revealed .product-card:nth-child(4){ transition-delay: .26s !important; }

/* keep in one screen on desktop */
@media (max-width: 1280px){
  #products .product-grid,
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #products .product-card,
  .product-card{
    min-height: 460px !important;
  }
}

@media (max-width: 980px){
  #products .section-heading h2,
  .product-section .section-heading h2{
    font-size: 34px !important;
    line-height: 1.02 !important;
  }

  #products .section-heading p,
  .product-section .section-heading p{
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  #products .product-grid,
  .product-grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  #products .product-card,
  .product-card{
    min-height: auto !important;
    padding: 22px 20px !important;
    border-radius: 22px !important;
  }

  #products .product-card h3,
  .product-card h3{
    font-size: 20px !important;
  }

  #products .product-card p,
  .product-card p{
    font-size: 15px !important;
  }
}



/* ===== PRODUCT BLOCK HEADING FIX ===== */

#products .section-heading,
.product-section .section-heading{
  margin: 0 auto 18px !important; /* меньше отступ сверху */
}

/* заголовок */
#products .section-heading h2,
.product-section .section-heading h2{
  font-size: clamp(22px, 2.2vw, 34px) !important; /* сильно уменьшили */
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  color: #ffb020 !important; /* желтый */
  max-width: 820px !important;
  margin: 0 auto 10px !important;
}

/* подзаголовок тоже по центру */
#products .section-heading p,
.product-section .section-heading p{
  text-align: center !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #aeb8d4 !important;
}



/* ===== PRODUCT TITLE FINAL FIX ===== */

#products .section-heading h2,
.product-section .section-heading h2{
  font-size: clamp(32px, 3.4vw, 52px) !important; /* как на скрине 1 */
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  text-align: center !important;
  text-transform: none !important; /* убираем агрессивный CAPS */
  color: #eef2ff !important; /* белый как раньше */
  max-width: 1000px !important;
  margin: 0 auto 14px !important;
}

/* подзаголовок мягче */
#products .section-heading p,
.product-section .section-heading p{
  font-size: 17px !important;
  color: #aeb8d4 !important;
}



/* ===== PRODUCT TITLE FINAL ===== */

#products .section-heading h2,
.product-section .section-heading h2{
  font-size: clamp(34px, 3.6vw, 54px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.03em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  color: #eef2ff !important;
  max-width: 1000px !important;
  margin: 0 auto 14px !important;
}



/* ===== APPLE STYLE TITLE ===== */

.hero-title-premium{
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #eef2ff;
  margin: 0 auto 16px;
  max-width: 900px;
}

.hero-title-premium .accent{
  color: #ffb020;
}



/* ===== CENTER + APPLE TITLE ===== */

.hero-title-premium{
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #eef2ff;
  margin: 0 auto 16px;
  max-width: 900px;
}

.hero-title-premium .accent{
  color: #ffb020;
}

/* центрируем жёлтый бейдж */
#products .eyebrow,
.product-section .eyebrow{
  display: flex !important;
  justify-content: center !important;
  margin: 0 auto 18px !important;
}



/* ===== SMALL PREMIUM EYEBROW ===== */

#products .eyebrow,
.product-section .eyebrow{
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;

  font-size: 12px !important; /* меньше */
  padding: 6px 14px !important; /* компактнее */
  border-radius: 999px !important;

  margin: 0 auto 16px !important;
  letter-spacing: 0.08em !important;

  max-width: fit-content !important; /* убираем растягивание */
}



/* ===== CENTER EYEBROW ONLY ===== */

#products .eyebrow,
.product-section .eyebrow{
  display: block !important;
  margin: 0 auto 16px !important;
  text-align: center !important;
}




/* ===== APP SHOWCASE PREMIUM ===== */
.app-showcase{
  padding-top: 86px !important;
  padding-bottom: 86px !important;
  min-height: 100vh !important;
}

.app-showcase-grid{
  display:grid !important;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr) !important;
  gap:36px !important;
  align-items:center !important;
}

.app-copy{
  max-width:620px !important;
}

.app-copy h2{
  margin:0 0 18px !important;
  font-size:clamp(34px,4.2vw,64px) !important;
  line-height:.97 !important;
  letter-spacing:-.055em !important;
  color:#eef2ff !important;
  text-wrap:balance !important;
}

.app-copy p{
  margin:0 0 24px !important;
  font-size:18px !important;
  line-height:1.65 !important;
  color:#aeb8d4 !important;
  text-wrap:pretty !important;
}

.app-points{
  display:grid !important;
  gap:14px !important;
}

.app-point{
  padding:18px 18px 16px !important;
  border-radius:22px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)) !important;
  box-shadow:0 14px 44px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.app-point strong{
  display:block !important;
  margin:0 0 8px !important;
  font-size:22px !important;
  line-height:1.08 !important;
  color:#f5f7ff !important;
  letter-spacing:-.03em !important;
}

.app-point span{
  display:block !important;
  font-size:16px !important;
  line-height:1.6 !important;
  color:#aeb8d4 !important;
}

.app-visual{
  display:flex !important;
  justify-content:flex-end !important;
  align-items:center !important;
}

.app-visual-stage{
  position:relative !important;
  width:100% !important;
  max-width:820px !important;
  min-height:720px !important;
}

.desktop-ghost{
  position:absolute !important;
  right:10px !important;
  top:54px !important;
  width:74% !important;
  opacity:.34 !important;
  filter:blur(.2px) saturate(.95) !important;
}

.desktop-ghost img{
  width:100% !important;
  display:block !important;
  border-radius:26px !important;
  border:1px solid rgba(255,255,255,.06) !important;
  box-shadow:0 30px 90px rgba(0,0,0,.28) !important;
}

.phone-main{
  position:absolute !important;
  right:82px !important;
  top:10px !important;
  width:280px !important;
  z-index:3 !important;
}

.phone-main img{
  width:100% !important;
  display:block !important;
  border-radius:34px !important;
  border:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 34px 110px rgba(0,0,0,.46) !important;
}

.floating-card{
  position:absolute !important;
  z-index:4 !important;
  width:290px !important;
  padding:16px 18px !important;
  border-radius:22px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:linear-gradient(180deg, rgba(10,15,32,.88), rgba(11,18,40,.76)) !important;
  box-shadow:0 18px 56px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04) !important;
  backdrop-filter: blur(10px) !important;
}

.mini-kicker{
  display:block !important;
  margin:0 0 8px !important;
  font-size:11px !important;
  line-height:1 !important;
  letter-spacing:.14em !important;
  font-weight:800 !important;
  color:#ffcf74 !important;
  text-transform:uppercase !important;
}

.floating-card strong{
  display:block !important;
  font-size:19px !important;
  line-height:1.28 !important;
  color:#f5f7ff !important;
  letter-spacing:-.02em !important;
}

.card-top{
  left:10px !important;
  top:96px !important;
}

.card-middle{
  left:0 !important;
  top:286px !important;
}

.card-bottom{
  left:38px !important;
  bottom:72px !important;
}

.app-showcase .eyebrow,
.app-showcase h2,
.app-showcase p,
.app-showcase .app-point,
.app-showcase .desktop-ghost,
.app-showcase .phone-main,
.app-showcase .floating-card{
  opacity:0;
  transform:translateY(24px);
}

.app-showcase.revealed .eyebrow,
.app-showcase.revealed h2,
.app-showcase.revealed p,
.app-showcase.revealed .app-point,
.app-showcase.revealed .desktop-ghost,
.app-showcase.revealed .phone-main,
.app-showcase.revealed .floating-card{
  opacity:1 !important;
  transform:translateY(0) !important;
  transition:
    opacity .72s cubic-bezier(.22,1,.36,1),
    transform .72s cubic-bezier(.22,1,.36,1) !important;
}

.app-showcase.revealed .eyebrow{ transition-delay:.02s !important; }
.app-showcase.revealed h2{ transition-delay:.10s !important; }
.app-showcase.revealed p{ transition-delay:.18s !important; }
.app-showcase.revealed .app-point:nth-child(1){ transition-delay:.24s !important; }
.app-showcase.revealed .app-point:nth-child(2){ transition-delay:.31s !important; }
.app-showcase.revealed .app-point:nth-child(3){ transition-delay:.38s !important; }
.app-showcase.revealed .desktop-ghost{ transition-delay:.22s !important; }
.app-showcase.revealed .phone-main{ transition-delay:.30s !important; }
.app-showcase.revealed .card-top{ transition-delay:.38s !important; }
.app-showcase.revealed .card-middle{ transition-delay:.46s !important; }
.app-showcase.revealed .card-bottom{ transition-delay:.54s !important; }

@media (max-width: 1180px){
  .app-showcase-grid{
    grid-template-columns:1fr !important;
    gap:26px !important;
  }

  .app-copy{
    max-width:100% !important;
  }

  .app-copy h2{
    font-size:40px !important;
  }

  .app-visual{
    justify-content:center !important;
  }

  .app-visual-stage{
    max-width:720px !important;
    min-height:640px !important;
  }
}

@media (max-width: 980px){
  .app-showcase{
    padding-top:56px !important;
    padding-bottom:56px !important;
    min-height:auto !important;
  }

  .app-copy h2{
    font-size:34px !important;
    line-height:1.02 !important;
  }

  .app-copy p{
    font-size:16px !important;
    line-height:1.65 !important;
  }

  .app-point strong{
    font-size:20px !important;
  }

  .app-point span{
    font-size:15px !important;
  }

  .app-visual-stage{
    min-height:560px !important;
  }

  .desktop-ghost{
    width:82% !important;
    right:0 !important;
    top:58px !important;
  }

  .phone-main{
    width:220px !important;
    right:32px !important;
    top:0 !important;
  }

  .floating-card{
    width:220px !important;
    padding:14px 16px !important;
  }

  .floating-card strong{
    font-size:16px !important;
  }

  .card-top{ left:0 !important; top:86px !important; }
  .card-middle{ left:0 !important; top:248px !important; }
  .card-bottom{ left:20px !important; bottom:44px !important; }
}


/* ===== MOBILE PREMIUM BLOCK ===== */
.mobile-premium-block{
  padding-top: 84px !important;
  padding-bottom: 84px !important;
  min-height: 100vh !important;
}

.mobile-premium-head{
  max-width: 1020px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

.mobile-premium-head .eyebrow{
  display: inline-flex !important;
  margin: 0 auto 18px !important;
}

.mobile-premium-head h2{
  margin: 0 auto 16px !important;
  max-width: 980px !important;
  font-size: clamp(30px, 4.2vw, 60px) !important;
  line-height: .96 !important;
  letter-spacing: -0.05em !important;
  color: #eef2ff !important;
  text-transform: uppercase !important;
  text-wrap: balance !important;
}

.mobile-premium-head p{
  max-width: 900px !important;
  margin: 0 auto !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #aeb8d4 !important;
  text-wrap: pretty !important;
}

.mobile-premium-stage{
  position: relative !important;
  min-height: 760px !important;
  max-width: 1200px !important;
  margin: 34px auto 28px !important;
}

.mobile-phone-wrap{
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 330px !important;
  z-index: 3 !important;
}

.mobile-phone-glow{
  position: absolute !important;
  inset: 12% -10% 10% -10% !important;
  background: radial-gradient(circle, rgba(255,176,32,.12), rgba(82,110,255,.08), transparent 72%) !important;
  filter: blur(32px) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.mobile-premium-shot{
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  display: block !important;
  border-radius: 36px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 38px 120px rgba(0,0,0,.46) !important;
}

.mobile-orbit{
  position: absolute !important;
  width: 310px !important;
  padding: 18px 18px 16px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)) !important;
  box-shadow: 0 18px 56px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.04) !important;
  backdrop-filter: blur(10px) !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}

.mobile-orbit:hover{
  transform: translateY(-4px) !important;
  border-color: rgba(255,176,32,.18) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(255,176,32,.05) inset !important;
}

.orbit-kicker{
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: .14em !important;
  font-weight: 800 !important;
  color: #ffcf74 !important;
  text-transform: uppercase !important;
}

.mobile-orbit strong{
  display: block !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  color: #f5f7ff !important;
  letter-spacing: -.02em !important;
}

.orbit-left.top{ left: 60px !important; top: 90px !important; }
.orbit-right.top{ right: 60px !important; top: 120px !important; }
.orbit-left.bottom{ left: 40px !important; bottom: 110px !important; }
.orbit-right.bottom{ right: 40px !important; bottom: 90px !important; }

.mobile-bottom-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.mobile-bottom-card{
  padding: 24px 22px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)) !important;
  box-shadow: 0 14px 44px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.mobile-bottom-card h3{
  margin: 0 0 10px !important;
  font-size: 18px !important;
  line-height: 1.12 !important;
  letter-spacing: -.02em !important;
  color: #f5f7ff !important;
  text-transform: uppercase !important;
}

.mobile-bottom-card p{
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #aeb8d4 !important;
}

/* reveal */
.mobile-premium-head .eyebrow,
.mobile-premium-head h2,
.mobile-premium-head p,
.mobile-phone-wrap,
.mobile-orbit,
.mobile-bottom-card{
  opacity: 0;
  transform: translateY(24px);
}

.mobile-premium-block.revealed .eyebrow,
.mobile-premium-block.revealed h2,
.mobile-premium-block.revealed p,
.mobile-premium-block.revealed .mobile-phone-wrap,
.mobile-premium-block.revealed .mobile-orbit,
.mobile-premium-block.revealed .mobile-bottom-card{
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1) !important;
}

.mobile-premium-block.revealed h2{ transition-delay: .08s !important; }
.mobile-premium-block.revealed p{ transition-delay: .16s !important; }
.mobile-premium-block.revealed .mobile-phone-wrap{ transition-delay: .22s !important; }
.mobile-premium-block.revealed .orbit-left.top{ transition-delay: .28s !important; }
.mobile-premium-block.revealed .orbit-right.top{ transition-delay: .34s !important; }
.mobile-premium-block.revealed .orbit-left.bottom{ transition-delay: .40s !important; }
.mobile-premium-block.revealed .orbit-right.bottom{ transition-delay: .46s !important; }
.mobile-premium-block.revealed .mobile-bottom-card:nth-child(1){ transition-delay: .30s !important; }
.mobile-premium-block.revealed .mobile-bottom-card:nth-child(2){ transition-delay: .38s !important; }
.mobile-premium-block.revealed .mobile-bottom-card:nth-child(3){ transition-delay: .46s !important; }

@media (max-width: 1180px){
  .mobile-premium-stage{
    min-height: 980px !important;
  }

  .orbit-left.top{ left: 0 !important; top: 80px !important; }
  .orbit-right.top{ right: 0 !important; top: 140px !important; }
  .orbit-left.bottom{ left: 0 !important; bottom: 170px !important; }
  .orbit-right.bottom{ right: 0 !important; bottom: 100px !important; }

  .mobile-bottom-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px){
  .mobile-premium-block{
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    min-height: auto !important;
  }

  .mobile-premium-head h2{
    font-size: 34px !important;
    line-height: 1.02 !important;
  }

  .mobile-premium-head p{
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .mobile-premium-stage{
    min-height: 1080px !important;
  }

  .mobile-phone-wrap{
    width: 240px !important;
    top: 300px !important;
  }

  .mobile-orbit{
    width: calc(100% - 24px) !important;
    left: 12px !important;
    right: 12px !important;
    padding: 16px !important;
  }

  .orbit-left.top{ top: 20px !important; }
  .orbit-right.top{ top: 140px !important; }
  .orbit-left.bottom{ top: 620px !important; bottom: auto !important; }
  .orbit-right.bottom{ top: 760px !important; bottom: auto !important; }

  .mobile-orbit strong{
    font-size: 16px !important;
  }

  .mobile-bottom-grid{
    margin-top: 10px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* reveal */
.mobile-premium-head .eyebrow,
.mobile-premium-head h2,
.mobile-premium-head p,
.mobile-phone-wrap,
.mobile-orbit,
.mobile-bottom-card{
  opacity: 0;
  transform: translateY(24px);
}

.mobile-premium-block.revealed .eyebrow,
.mobile-premium-block.revealed h2,
.mobile-premium-block.revealed p,
.mobile-premium-block.revealed .mobile-phone-wrap,
.mobile-premium-block.revealed .mobile-orbit,
.mobile-premium-block.revealed .mobile-bottom-card{
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1) !important;
}

.mobile-premium-block.revealed h2{ transition-delay: .08s !important; }
.mobile-premium-block.revealed p{ transition-delay: .16s !important; }
.mobile-premium-block.revealed .mobile-phone-wrap{ transition-delay: .22s !important; }
.mobile-premium-block.revealed .orbit-left.top{ transition-delay: .28s !important; }
.mobile-premium-block.revealed .orbit-right.top{ transition-delay: .34s !important; }
.mobile-premium-block.revealed .orbit-left.bottom{ transition-delay: .40s !important; }
.mobile-premium-block.revealed .orbit-right.bottom{ transition-delay: .46s !important; }
.mobile-premium-block.revealed .mobile-bottom-card:nth-child(1){ transition-delay: .30s !important; }
.mobile-premium-block.revealed .mobile-bottom-card:nth-child(2){ transition-delay: .38s !important; }
.mobile-premium-block.revealed .mobile-bottom-card:nth-child(3){ transition-delay: .46s !important; }

@media (max-width: 1180px){
  .mobile-premium-stage{
    min-height: 980px !important;
  }

  .orbit-left.top{ left: 0 !important; top: 80px !important; }
  .orbit-right.top{ right: 0 !important; top: 140px !important; }
  .orbit-left.bottom{ left: 0 !important; bottom: 170px !important; }
  .orbit-right.bottom{ right: 0 !important; bottom: 100px !important; }

  .mobile-bottom-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px){
  .mobile-premium-block{
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    min-height: auto !important;
  }

  .mobile-premium-head h2{
    font-size: 34px !important;
    line-height: 1.02 !important;
  }

  .mobile-premium-head p{
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .mobile-premium-stage{
    min-height: 1080px !important;
  }

  .mobile-phone-wrap{
    width: 240px !important;
    top: 300px !important;
  }

  .mobile-orbit{
    width: calc(100% - 24px) !important;
    left: 12px !important;
    right: 12px !important;
    padding: 16px !important;
  }

  .orbit-left.top{ top: 20px !important; }
  .orbit-right.top{ top: 140px !important; }
  .orbit-left.bottom{ top: 620px !important; bottom: auto !important; }
  .orbit-right.bottom{ top: 760px !important; bottom: auto !important; }

  .mobile-orbit strong{
    font-size: 16px !important;
  }

  .mobile-bottom-grid{
    margin-top: 10px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}



/* ===== MOBILE IMAGES PREMIUM EFFECT ===== */

#mobile-experience .mx-shot img{
  opacity: 0.55 !important;
  filter: brightness(0.7) contrast(1.1) saturate(0.9);
  transition: all 0.35s ease;
}

#mobile-experience .mx-shot:hover img{
  opacity: 1 !important;
  filter: brightness(1) contrast(1.15) saturate(1.1);
  transform: scale(1.03);
}

#mobile-experience .mx-shot{
  position: relative;
  overflow: hidden;
}





/* ===== SMART IMAGE FOCUS EFFECT ===== */

#mobile-experience .mx-shot{
  position: relative;
  overflow: hidden;
}

/* затемняем только края (фон), центр остаётся ярким */


/* сам экран остаётся читаемым */
#mobile-experience .mx-shot img{
  opacity: 0.85 !important;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.35s ease;
}

/* hover эффект — полностью чистый экран */
#mobile-experience .mx-shot:hover img{
  opacity: 1 !important;
  filter: none;
  transform: scale(1.03);
}



.brand-logo-icon{
  width: 18px;
  height: 18px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  background:#0b0f1a;
  margin-right: 10px;
  border-radius: 6px;
  vertical-align: middle;
}
\n
.desktop-real-shot{
  overflow: hidden !important;
  padding: 0 !important;
  background: transparent !important;
}

.desktop-real-image{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.35) !important;
}
\n

/* ===== DESKTOP IMAGE BLOCK ===== */
.desktop-image-shell{
  overflow:hidden !important;
  padding:0 !important;
  min-height:auto !important;
  height:auto !important;
  border-radius:32px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:transparent !important;
  box-shadow:0 30px 90px rgba(0,0,0,.34) !important;
}

.desktop-panel-image{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center top !important;
  border-radius:32px !important;
  background:transparent !important;
}

@media (max-width: 980px){
  .desktop-image-shell,
  .desktop-panel-image{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center top !important;
  border-radius:32px !important;
  background:transparent !important;
}
}



/* ===== API PRICING PREMIUM BLOCK ===== */
.api-pricing{
  position:relative !important;
}

.api-pricing-head{
  max-width:920px !important;
  margin:0 auto 34px !important;
}

.api-pricing-head h2{
  text-transform:uppercase !important;
}

.api-pricing-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:22px !important;
  align-items:stretch !important;
}

.api-price-card{
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
  min-height:100% !important;
  padding:28px 24px 24px !important;
  border-radius:30px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 28%),
    rgba(8,12,24,.9) !important;
  box-shadow:0 18px 70px rgba(0,0,0,.22) !important;
  overflow:hidden !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.api-price-card:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 28px 90px rgba(0,0,0,.30) !important;
  border-color:rgba(255,176,32,.18) !important;
}

.api-price-card-featured{
  border-color:rgba(255,176,32,.24) !important;
  box-shadow:0 24px 90px rgba(255,176,32,.12), 0 20px 70px rgba(0,0,0,.26) !important;
}

.api-price-badge{
  position:absolute !important;
  top:18px !important;
  right:18px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:30px !important;
  padding:0 12px !important;
  border-radius:999px !important;
  background:rgba(255,176,32,.12) !important;
  border:1px solid rgba(255,176,32,.22) !important;
  color:#ffcf6d !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
}

.api-plan-kicker{
  color:#ffb020 !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  margin-bottom:10px !important;
}

.api-price-top h3{
  margin:0 0 10px !important;
  color:#eef2ff !important;
  font-size:34px !important;
  line-height:.98 !important;
  letter-spacing:-.045em !important;
}

.api-price-row{
  display:flex !important;
  align-items:flex-end !important;
  gap:8px !important;
  margin:0 0 14px !important;
}

.api-price-row strong{
  color:#fff !important;
  font-size:48px !important;
  line-height:1 !important;
  letter-spacing:-.06em !important;
}

.api-price-row span{
  color:#a8b4cf !important;
  font-size:15px !important;
  padding-bottom:6px !important;
}

.api-price-top p{
  margin:0 0 20px !important;
  color:#b7c3de !important;
  font-size:17px !important;
  line-height:1.6 !important;
}

.api-feature-list{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 24px !important;
  display:grid !important;
  gap:14px !important;
}

.api-feature-list li{
  position:relative !important;
  padding-left:20px !important;
  color:#e1e7fb !important;
  font-size:16px !important;
  line-height:1.55 !important;
}

.api-feature-list li::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:.72em !important;
  width:8px !important;
  height:8px !important;
  border-radius:999px !important;
  background:#ffb020 !important;
  box-shadow:0 0 12px rgba(255,176,32,.35) !important;
  transform:translateY(-50%) !important;
}

.api-plan-btn{
  width:100% !important;
  justify-content:center !important;
  min-height:58px !important;
  font-size:17px !important;
}

@media (max-width: 1100px){
  .api-pricing-grid{
    grid-template-columns:1fr !important;
  }
}



/* ===== DESKTOP PRICING PREMIUM BLOCK ===== */
.desktop-pricing{
  position:relative !important;
}

.desktop-pricing-head{
  max-width:920px !important;
  margin:0 auto 34px !important;
}

.desktop-pricing-head h2{
  text-transform:uppercase !important;
}

.desktop-pricing-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:22px !important;
  align-items:stretch !important;
}

.desktop-price-card{
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
  min-height:100% !important;
  padding:28px 24px 24px !important;
  border-radius:30px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 28%),
    rgba(8,12,24,.9) !important;
  box-shadow:0 18px 70px rgba(0,0,0,.22) !important;
  overflow:hidden !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.desktop-price-card:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 28px 90px rgba(0,0,0,.30) !important;
  border-color:rgba(255,176,32,.18) !important;
}

.desktop-price-card-featured{
  border-color:rgba(255,176,32,.24) !important;
  box-shadow:0 24px 90px rgba(255,176,32,.12), 0 20px 70px rgba(0,0,0,.26) !important;
}

.desktop-price-badge{
  position:absolute !important;
  top:18px !important;
  right:18px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:30px !important;
  padding:0 12px !important;
  border-radius:999px !important;
  background:rgba(255,176,32,.12) !important;
  border:1px solid rgba(255,176,32,.22) !important;
  color:#ffcf6d !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
}

.desktop-plan-kicker{
  color:#ffb020 !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  margin-bottom:10px !important;
}

.desktop-price-top h3{
  margin:0 0 10px !important;
  color:#eef2ff !important;
  font-size:34px !important;
  line-height:.98 !important;
  letter-spacing:-.045em !important;
}

.desktop-price-row{
  display:flex !important;
  align-items:flex-end !important;
  gap:8px !important;
  margin:0 0 14px !important;
}

.desktop-price-row strong{
  color:#fff !important;
  font-size:48px !important;
  line-height:1 !important;
  letter-spacing:-.06em !important;
}

.desktop-price-row span{
  color:#a8b4cf !important;
  font-size:15px !important;
  padding-bottom:6px !important;
}

.desktop-price-top p{
  margin:0 0 20px !important;
  color:#b7c3de !important;
  font-size:17px !important;
  line-height:1.6 !important;
}

.desktop-feature-list{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 24px !important;
  display:grid !important;
  gap:14px !important;
}

.desktop-feature-list li{
  position:relative !important;
  padding-left:20px !important;
  color:#e1e7fb !important;
  font-size:16px !important;
  line-height:1.55 !important;
}

.desktop-feature-list li::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:.72em !important;
  width:8px !important;
  height:8px !important;
  border-radius:999px !important;
  background:#ffb020 !important;
  box-shadow:0 0 12px rgba(255,176,32,.35) !important;
  transform:translateY(-50%) !important;
}

.desktop-plan-btn{
  width:100% !important;
  justify-content:center !important;
  min-height:58px !important;
  font-size:17px !important;
}

@media (max-width: 1100px){
  .desktop-pricing-grid{
    grid-template-columns:1fr !important;
  }
}



/* ===== FORCE DESKTOP PRICING FIX ===== */
.desktop-pricing{
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.desktop-pricing .container{
  width: min(calc(100% - 40px), 1240px) !important;
  margin: 0 auto !important;
}

.desktop-pricing-head{
  max-width: 920px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

.desktop-pricing-head .eyebrow{
  display: inline-flex !important;
  margin: 0 auto 18px !important;
}

.desktop-pricing-head h2{
  margin: 0 0 16px !important;
  color: #eef2ff !important;
  font-size: clamp(34px, 4.2vw, 64px) !important;
  line-height: .96 !important;
  letter-spacing: -.05em !important;
  text-transform: uppercase !important;
}

.desktop-pricing-head p{
  margin: 0 auto !important;
  max-width: 860px !important;
  color: #a8b4cf !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.desktop-pricing-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
  margin-top: 28px !important;
}

.desktop-price-card{
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 100% !important;
  padding: 28px 24px 24px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 28%),
    rgba(8,12,24,.92) !important;
  box-shadow: 0 18px 70px rgba(0,0,0,.24) !important;
  overflow: hidden !important;
}

.desktop-price-card-featured{
  border-color: rgba(255,176,32,.24) !important;
  box-shadow: 0 24px 90px rgba(255,176,32,.10), 0 20px 70px rgba(0,0,0,.26) !important;
}

.desktop-price-badge{
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(255,176,32,.12) !important;
  border: 1px solid rgba(255,176,32,.22) !important;
  color: #ffcf6d !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.desktop-plan-kicker{
  color: #ffb020 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.desktop-price-top h3{
  margin: 0 0 10px !important;
  color: #eef2ff !important;
  font-size: 34px !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
}

.desktop-price-row{
  display: flex !important;
  align-items: flex-end !important;
  gap: 8px !important;
  margin: 0 0 14px !important;
}

.desktop-price-row strong{
  color: #fff !important;
  font-size: 48px !important;
  line-height: 1 !important;
  letter-spacing: -.06em !important;
}

.desktop-price-row span{
  color: #a8b4cf !important;
  font-size: 15px !important;
  padding-bottom: 6px !important;
}

.desktop-price-top p{
  margin: 0 0 20px !important;
  color: #b7c3de !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.desktop-feature-list{
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  display: grid !important;
  gap: 14px !important;
}

.desktop-feature-list li{
  position: relative !important;
  padding-left: 20px !important;
  color: #e1e7fb !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.desktop-feature-list li::before{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: .72em !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #ffb020 !important;
  box-shadow: 0 0 12px rgba(255,176,32,.35) !important;
  transform: translateY(-50%) !important;
}

.desktop-plan-btn{
  width: 100% !important;
  justify-content: center !important;
  min-height: 58px !important;
  font-size: 17px !important;
  margin-top: auto !important;
}

@media (max-width: 1100px){
  .desktop-pricing-grid{
    grid-template-columns: 1fr !important;
  }
}




/* ===== MOBILE BLOCK FIX SIZE + READABILITY ===== */
.mobile-premium-block{
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.mobile-premium-head{
  max-width: 980px !important;
  margin: 0 auto 30px !important;
  text-align: center !important;
}

.mobile-premium-head h2{
  font-size: clamp(28px, 3.2vw, 48px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  max-width: 980px !important;
  margin: 0 auto 14px !important;
}

.mobile-premium-head p{
  max-width: 860px !important;
  margin: 0 auto !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #c2cbe2 !important;
}

.mobile-center{
  display: flex !important;
  justify-content: center !important;
  margin: 28px auto 26px !important;
}

.mobile-main-img{
  width: 320px !important;       /* было огромно — уменьшаем */
  max-width: 100% !important;
  display: block !important;
  border-radius: 30px !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.34) !important;
}

.mobile-features{
  max-width: 980px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.mf-card{
  padding: 24px 22px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)) !important;
  box-shadow: 0 14px 44px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.mf-card h3{
  margin: 0 0 10px !important;
  font-size: 24px !important;    /* текст крупнее */
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  color: #f5f7ff !important;
}

.mf-card p{
  margin: 0 !important;
  font-size: 18px !important;    /* текст заметно крупнее */
  line-height: 1.6 !important;
  color: #b8c2dc !important;
}

@media (max-width: 980px){
  .mobile-premium-head h2{
    font-size: 34px !important;
  }

  .mobile-premium-head p{
    font-size: 16px !important;
  }

  .mobile-main-img{
    width: 240px !important;
  }

  .mobile-features{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .mf-card h3{
    font-size: 20px !important;
  }

  .mf-card p{
    font-size: 15px !important;
  }
}


/* ===== MOBILE BLOCK FINAL OVERRIDE ===== */
.mobile-premium-block{
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  min-height: auto !important;
}

.mobile-premium-head{
  max-width: 980px !important;
  margin: 0 auto 24px !important;
  text-align: center !important;
}

.mobile-premium-head h2{
  max-width: 980px !important;
  margin: 0 auto 14px !important;
  font-size: clamp(26px, 3vw, 46px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
  color: #eef2ff !important;
}

.mobile-premium-head p{
  max-width: 860px !important;
  margin: 0 auto !important;
  font-size: 19px !important;
  line-height: 1.6 !important;
  color: #c2cbe2 !important;
}

.mobile-center{
  display: flex !important;
  justify-content: center !important;
  margin: 24px auto 24px !important;
}

.mobile-main-img{
  width: 260px !important;
  max-width: 100% !important;
  display: block !important;
  border-radius: 28px !important;
  box-shadow: 0 28px 80px rgba(0,0,0,.34) !important;
}

.mobile-features{
  max-width: 1100px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.mf-card{
  min-height: 100% !important;
  padding: 24px 22px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)) !important;
  box-shadow: 0 14px 44px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.mf-card h3{
  margin: 0 0 10px !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
  color: #f5f7ff !important;
  letter-spacing: -0.02em !important;
}

.mf-card p{
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #b8c2dc !important;
}

@media (max-width: 980px){
  .mobile-premium-head h2{
    font-size: 34px !important;
  }

  .mobile-premium-head p{
    font-size: 16px !important;
  }

  .mobile-main-img{
    width: 220px !important;
  }

  .mobile-features{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .mf-card h3{
    font-size: 19px !important;
  }

  .mf-card p{
    font-size: 15px !important;
  }
}
.accent{color:#ffb020 !important;}


/* ===== HOW IT WORKS PREMIUM ===== */

.hiw-steps-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin:30px 0;
}

.hiw-step-card{
padding:25px;
border-radius:20px;
background:rgba(10,14,28,.9);
border:1px solid rgba(255,255,255,.08);
}

.hiw-step-num{
font-size:20px;
color:#ffb020;
margin-bottom:10px;
}

.usecases-premium{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-top:30px;
}

.usecase-card{
padding:20px;
border-radius:20px;
background:rgba(10,14,28,.9);
border:1px solid rgba(255,255,255,.08);
}



/* ===== HOW IT WORKS + USE CASES PREMIUM BLOCK ===== */
.how-it-works{
  position:relative !important;
}

.hiw-head{
  max-width:940px !important;
  margin:0 auto 34px !important;
}

.hiw-head h2{
  text-transform:uppercase !important;
  font-size:clamp(42px,5.8vw,86px) !important;
  line-height:.93 !important;
  letter-spacing:-.06em !important;
  max-width:1180px !important;
  margin:0 auto 18px !important;
}

.hiw-head p{
  max-width:980px !important;
  margin:0 auto !important;
  color:#b9c4dd !important;
  font-size:18px !important;
  line-height:1.65 !important;
}

.hiw-steps-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:22px !important;
  margin-top:34px !important;
  margin-bottom:30px !important;
}

.hiw-step-card{
  padding:28px 28px 26px !important;
  border-radius:28px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 28%),
    rgba(8,12,24,.92) !important;
  box-shadow:0 18px 70px rgba(0,0,0,.22) !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.hiw-step-card:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 28px 90px rgba(0,0,0,.30) !important;
  border-color:rgba(255,176,32,.18) !important;
}

.hiw-step-num{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  height:auto !important;
  margin-bottom:18px !important;
  color:#ffb020 !important;
  font-size:18px !important;
  font-weight:800 !important;
  letter-spacing:-.03em !important;
}

.hiw-step-card h3{
  margin:0 0 14px !important;
  color:#eef2ff !important;
  font-size:26px !important;
  line-height:1.04 !important;
  letter-spacing:-.04em !important;
}

.hiw-step-card p{
  margin:0 !important;
  color:#d7def1 !important;
  font-size:17px !important;
  line-height:1.55 !important;
}

.usecases-premium{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(0,1.08fr) !important;
  gap:26px !important;
  align-items:start !important;
  margin-top:12px !important;
}

.usecases-copy{
  padding:0 !important;
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
}

.usecases-copy h3{
  margin:0 0 16px !important;
  color:#eef2ff !important;
  font-size:44px !important;
  line-height:.96 !important;
  letter-spacing:-.05em !important;
  text-transform:uppercase !important;
}

.usecases-copy p{
  margin:0 0 22px !important;
  color:#b7c3de !important;
  font-size:18px !important;
  line-height:1.68 !important;
}

.usecases-list{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;
  display:grid !important;
  gap:14px !important;
}

.usecases-list li{
  position:relative !important;
  padding-left:22px !important;
  color:#e1e7fb !important;
  font-size:18px !important;
  line-height:1.58 !important;
}

.usecases-list li::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:.72em !important;
  width:8px !important;
  height:8px !important;
  border-radius:999px !important;
  background:#ffb020 !important;
  box-shadow:0 0 12px rgba(255,176,32,.35) !important;
  transform:translateY(-50%) !important;
}

.usecases-grid{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:16px !important;
  padding:0 !important;
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
}

.usecase-card{
  min-height:auto !important;
  padding:22px 24px !important;
  border-radius:24px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 30%),
    rgba(10,14,28,.92) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03) !important;
  display:flex !important;
  flex-direction:row !important;
  gap:8px !important;
  align-items:baseline !important;
  justify-content:flex-start !important;
}

.usecase-card strong{
  color:#eef2ff !important;
  font-size:20px !important;
  line-height:1.1 !important;
  letter-spacing:-.03em !important;
  text-transform:uppercase !important;
  white-space:nowrap !important;
}

.usecase-card span{
  color:#d7def1 !important;
  font-size:17px !important;
  line-height:1.55 !important;
}

@media (max-width: 1100px){
  .hiw-steps-grid{
    grid-template-columns:1fr !important;
  }

  .usecases-premium{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 820px){
  .usecases-grid{
    grid-template-columns:1fr !important;
  }

  .usecases-copy h3{
    font-size:34px !important;
  }

  .hiw-step-card h3{
    font-size:24px !important;
  }

  .hiw-head h2{
    font-size:clamp(34px,10vw,54px) !important;
  }

  .usecase-card{
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .usecase-card strong{
    white-space:normal !important;
  }
}







/* ===== PREMIUM STATS BLOCK ===== */
.stats-premium{
  position:relative !important;
}

.stats-head{
  max-width:940px !important;
  margin:0 auto 34px !important;
}

.stats-head h2{
  text-transform:uppercase !important;
  font-size:clamp(42px,5.8vw,82px) !important;
  line-height:.93 !important;
  letter-spacing:-.06em !important;
  margin:0 auto 18px !important;
}

.stats-head p{
  max-width:920px !important;
  margin:0 auto !important;
  color:#b9c4dd !important;
  font-size:18px !important;
  line-height:1.65 !important;
}

.stats-premium-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:22px !important;
  margin-top:34px !important;
}

.stats-card{
  padding:30px 26px !important;
  border-radius:30px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 28%),
    rgba(8,12,24,.92) !important;
  box-shadow:0 18px 70px rgba(0,0,0,.22) !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.stats-card:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 28px 90px rgba(0,0,0,.30) !important;
  border-color:rgba(255,176,32,.18) !important;
}

.stats-card-featured{
  border-color:rgba(255,176,32,.22) !important;
  box-shadow:0 24px 90px rgba(255,176,32,.10), 0 20px 70px rgba(0,0,0,.26) !important;
}

.stats-num{
  margin:0 0 14px !important;
  color:#ffb020 !important;
  font-size:48px !important;
  font-weight:800 !important;
  line-height:.95 !important;
  letter-spacing:-.05em !important;
}

.stats-card h3{
  margin:0 0 12px !important;
  color:#eef2ff !important;
  font-size:24px !important;
  line-height:1.05 !important;
  letter-spacing:-.03em !important;
}

.stats-card p{
  margin:0 !important;
  color:#c3cde4 !important;
  font-size:16px !important;
  line-height:1.62 !important;
}

@media (max-width: 1100px){
  .stats-premium-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width: 700px){
  .stats-premium-grid{
    grid-template-columns:1fr !important;
  }

  .stats-head h2{
    font-size:clamp(34px,10vw,54px) !important;
  }
}



/* ===== CONTACT PREMIUM BLOCK ===== */
.contact-premium-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(0,1.02fr) !important;
  gap:28px !important;
  align-items:stretch !important;
}

.contact-premium-copy,
.contact-premium-form-wrap{
  padding:34px 30px !important;
  border-radius:34px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(255,176,32,.08), transparent 28%),
    rgba(8,12,24,.92) !important;
  box-shadow:0 18px 70px rgba(0,0,0,.22) !important;
}

.contact-premium-copy h2{
  margin:0 0 18px !important;
  color:#eef2ff !important;
  font-size:clamp(40px,5vw,74px) !important;
  line-height:.94 !important;
  letter-spacing:-.06em !important;
  text-transform:uppercase !important;
}

.contact-premium-copy p{
  margin:0 0 22px !important;
  color:#b9c4dd !important;
  font-size:18px !important;
  line-height:1.68 !important;
}

.contact-premium-list{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 28px !important;
  display:grid !important;
  gap:14px !important;
}

.contact-premium-list li{
  position:relative !important;
  padding-left:22px !important;
  color:#e1e7fb !important;
  font-size:18px !important;
  line-height:1.58 !important;
}

.contact-premium-list li::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:.72em !important;
  width:8px !important;
  height:8px !important;
  border-radius:999px !important;
  background:#ffb020 !important;
  box-shadow:0 0 12px rgba(255,176,32,.35) !important;
  transform:translateY(-50%) !important;
}

.contact-mail-card{
  display:flex !important;
  align-items:center !important;
  gap:16px !important;
  padding:18px 18px !important;
  border-radius:22px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(255,255,255,.03) !important;
}

.contact-mail-logo{
  width:64px !important;
  height:64px !important;
  border-radius:18px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(255,255,255,.03) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  overflow:hidden !important;
}

.contact-mail-logo img{
  width:40px !important;
  height:40px !important;
  object-fit:contain !important;
}

.contact-mail-meta strong{
  display:block !important;
  color:#eef2ff !important;
  font-size:28px !important;
  line-height:1.05 !important;
  letter-spacing:-.04em !important;
}

.contact-mail-meta span{
  display:block !important;
  color:#b9c4dd !important;
  font-size:22px !important;
  line-height:1.3 !important;
  word-break:break-word !important;
}

.contact-premium-form{
  display:block !important;
}

.contact-field-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:18px !important;
  margin-bottom:18px !important;
}

.contact-premium-form .field{
  margin-bottom:18px !important;
}

.contact-premium-form label{
  display:block !important;
  margin-bottom:10px !important;
  color:#eef2ff !important;
  font-size:16px !important;
  font-weight:700 !important;
}

.contact-premium-form input,
.contact-premium-form textarea{
  width:100% !important;
  border-radius:22px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(255,255,255,.03) !important;
  color:#eef2ff !important;
  padding:18px 18px !important;
  font-size:18px !important;
  line-height:1.45 !important;
  outline:none !important;
  box-shadow:none !important;
}

.contact-premium-form input::placeholder,
.contact-premium-form textarea::placeholder{
  color:#7f8ba8 !important;
}

.contact-premium-form textarea{
  min-height:220px !important;
  resize:vertical !important;
}

.contact-premium-actions{
  display:flex !important;
  gap:14px !important;
  flex-wrap:wrap !important;
  margin-top:8px !important;
}

.contact-premium-actions .btn{
  min-height:60px !important;
  padding-left:26px !important;
  padding-right:26px !important;
}

.contact-premium-note{
  margin:18px 0 0 !important;
  color:#9ca8c4 !important;
  font-size:15px !important;
  line-height:1.6 !important;
}

@media (max-width: 1100px){
  .contact-premium-grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 760px){
  .contact-field-grid{
    grid-template-columns:1fr !important;
  }

  .contact-mail-meta strong{
    font-size:24px !important;
  }

  .contact-mail-meta span{
    font-size:18px !important;
  }
}



#products{
  min-height:auto !important;
  padding-bottom:24px !important;
}
#mobile-experience{
  padding-top:24px !important;
}

/* FINAL GAP FIX */
section#products,
#products,
.section.products,
.product-section{
  min-height: auto !important;
  height: auto !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

section#products .container,
#products .container,
section#products .intro-grid,
#products .intro-grid,
section#products .products-grid,
#products .products-grid{
  min-height: auto !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  align-items: start !important;
}

section#mobile-experience,
#mobile-experience{
  margin-top: 0 !important;
  padding-top: 16px !important;
}

/* spacing between blocks (final) */
#products{
  margin-bottom: 40px !important;
}

#mobile-experience{
  padding-top: 40px !important;
}

