/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0c0a07;
  --bg-alt:      #080604;
  --surface:     #131009;
  --surface-2:   #19160f;
  --border:      rgba(212,149,106,.11);
  --border-hover:rgba(200,116,58,.35);
  --text:        #e2cdb4;
  --text-muted:  #8a7b6a;
  --text-dim:    #4e4840;
  --accent:      #c8743a;
  --accent-dark: #a05a28;
  --accent-dim:  rgba(200,116,58,.12);
  --accent-glow: rgba(200,116,58,.28);
  --gold:        #d4a56a;
  --green:       #c8a060;
  --purple:      #c8743a;
  --warn:        #d46050;
  --radius:      12px;
  --radius-lg:   18px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow:      0 4px 30px rgba(0,0,0,.65);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 10%, rgba(160,80,30,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(100,50,18,.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

.text-accent { color: var(--gold); }
.bold { font-weight: 700; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn--sm   { padding: 7px 16px; font-size: 13px; }
.btn--lg   { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn--full { width: 100%; margin-top: auto; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--border-hover);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(212,165,106,.3);
  background: rgba(200,116,58,.06);
  transform: translateY(-1px);
}

/* ===== Fade-up animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,10,7,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav--scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand logo — matches index.html */
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  transition: opacity .2s;
}
.nav__brand:hover { opacity: .85; }
.nav__brand-ak {
  font-family: 'Bungee', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .06em;
  background: linear-gradient(130deg, var(--gold) 20%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(212,165,106,.3));
  transition: filter .2s;
}
.nav__brand:hover .nav__brand-ak {
  filter: drop-shadow(0 0 14px rgba(212,165,106,.6));
}
.nav__brand-div {
  display: inline-block;
  width: 1px;
  height: 1.1em;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .4;
  flex-shrink: 0;
}
.nav__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.nav__brand:hover .nav__brand-name { color: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,116,58,.13) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,80,30,.09) 0%, transparent 70%);
  bottom: -50px; right: -100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1.2fr; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__byline {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .06em;
}

/* ===== Hero Visual ===== */
.hero__visual { 
  /*display: flex;*/ 
  justify-content: center; 
  align-items: flex-start; 
}

.hero__video-frame {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding: 3px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 50%, var(--accent-dark) 100%);
  box-shadow:
    0 0 0 1px rgba(200,116,58,.2),
    0 0 40px rgba(200,116,58,.2),
    0 0 80px rgba(160,80,30,.12),
    0 20px 60px rgba(0,0,0,.7);
}

/* Animated gradient border */
.hero__video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, var(--accent), var(--gold), var(--accent-dark), var(--gold), var(--accent));
  background-size: 300% 300%;
  animation: border-flow 5s linear infinite;
  z-index: -1;
  filter: blur(10px);
  opacity: .55;
}
@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__video-frame::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  border: 1px solid rgba(200,116,58,.15);
  pointer-events: none;
  z-index: 1;
}

.hero__video-wrap {
  width: 100%;
  border-radius: 17px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Corner decorations */
.hero__video-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
  pointer-events: none;
}
.hero__video-corner--tl { top: -1px;  left: -1px;  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-radius: 4px 0 0 0; }
.hero__video-corner--tr { top: -1px;  right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 4px 0 0; }
.hero__video-corner--bl { bottom: -1px; left: -1px;  border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); border-radius: 0 0 0 4px; }
.hero__video-corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); border-radius: 0 0 4px 0; }

/* Label under video */
.hero__video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__video-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Corner decorations */
.hero__video-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
  pointer-events: none;
}
.hero__video-corner--tl { top: -1px;  left: -1px;  border-top: 2px solid #00d4ff; border-left: 2px solid #00d4ff; border-radius: 4px 0 0 0; }
.hero__video-corner--tr { top: -1px;  right: -1px; border-top: 2px solid #00d4ff; border-right: 2px solid #00d4ff; border-radius: 0 4px 0 0; }
.hero__video-corner--bl { bottom: -1px; left: -1px;  border-bottom: 2px solid #00e5a0; border-left: 2px solid #00e5a0; border-radius: 0 0 0 4px; }
.hero__video-corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid #00e5a0; border-right: 2px solid #00e5a0; border-radius: 0 0 4px 0; }

/* Label under video */
.hero__video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero__video-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ===== Stats ===== */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
  z-index: 1;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
@media (max-width: 639px) {
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1),
  .stats__item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.stats__num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(130deg, var(--gold) 20%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stats__num small { font-size: 1.2rem; }
.stats__label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 120px;
}
.stats__source {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  opacity: .7;
}

/* ===== Generic section ===== */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section__lead {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.7;
}

/* ===== Problem ===== */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.problem__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.problem__card--warn {
  border-left: 3px solid rgba(212,96,80,.5);
}
.problem__card:hover { border-color: rgba(212,96,80,.3); }
.problem__icon {
  font-size: 22px;
  margin-bottom: 12px;
}
.problem__card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #d46050;
}
.problem__card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Transform ===== */
.transform__grid {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.transform__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transform__item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  min-width: 180px;
  text-align: center;
}
.transform__item--accent {
  background: var(--accent-dim);
  border-color: rgba(200,116,58,.3);
  color: var(--gold);
  font-weight: 700;
}
.transform__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.transform__avatar {
  position: relative;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transform__avatar-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim), transparent);
}
.transform__avatar-svg {
  width: 56px; height: 56px;
  position: relative;
}
.transform__arrow {
  font-size: 24px;
  color: var(--accent);
  font-weight: 900;
}

/* ===== Features ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.features__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.features__card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(200,116,58,.1);
  transform: translateY(-4px);
}
.features__icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.features__icon svg { width: 100%; height: 100%; }
.features__name {
  font-size: 18px;
  font-weight: 700;
}
.features__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}
.features__list li::before {
  content: '→ ';
  color: var(--accent);
}
.features__badge {
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.25);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  margin-top: auto;
}

/* ===== Dual grid ===== */
.dual__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.dual__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.dual__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.dual__icon { font-size: 32px; }
.dual__card h3 { font-size: 17px; font-weight: 700; }
.dual__card p  { font-size: 14px; color: var(--text-muted); }

/* ===== Vision ===== */
.vision__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.vision__item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}
.vision__item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.vision__icon { font-size: 26px; }
.vision__item h3 { font-size: 14px; font-weight: 700; }
.vision__item p  { font-size: 13px; color: var(--text-muted); }

/* ===== Installation ===== */
.install__wrap { display: flex; flex-direction: column; gap: 40px; }
.install__group-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.install__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.install__grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.install__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.install__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.install__ico { font-size: 24px; margin-bottom: 8px; }
.install__card strong { font-size: 14px; font-weight: 700; }
.install__card span   { font-size: 13px; color: var(--accent); }
.install__card small  { font-size: 12px; color: var(--text-muted); }

/* ===== Use Cases ===== */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.cases__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cases__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,116,58,.08);
}
.cases__ico { font-size: 32px; }
.cases__card h3 { font-size: 16px; font-weight: 700; color: var(--gold); }
.cases__card p  { font-size: 14px; color: var(--text-muted); }

/* ===== Business Value ===== */
.value__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) {
  .value__wrap { grid-template-columns: 1fr; }
}
.value__sub { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.value__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.value__table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.value__table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.value__table tr:last-child td { border-bottom: none; }
.value__adv-list { display: flex; flex-direction: column; gap: 20px; }
.value__adv {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value__adv-check {
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.value__adv strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; }
.value__adv p      { font-size: 13px; color: var(--text-muted); }

/* ===== Competitive ===== */
.comp__wrap { overflow-x: auto; }
.comp__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}
.comp__table th {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.comp__table th:first-child { text-align: left; }
.comp__table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.comp__table td:first-child { text-align: left; }
.comp__row--highlight {
  background: rgba(200,116,58,.06);
}
.comp__row--highlight td { color: var(--text); }
.ci {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.ci--yes  { background: var(--accent-dim); color: var(--gold); }
.ci--no   { background: rgba(212,96,80,.12); color: #d46050; }
.ci--warn { background: rgba(212,165,106,.1); color: #c8a060; }

/* ===== Pricing ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.pricing__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.pricing__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,116,58,.1);
}
.pricing__card--featured {
  border-color: rgba(200,116,58,.4);
  box-shadow: 0 0 40px rgba(200,116,58,.12);
}
.pricing__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pricing__bar--green  { background: linear-gradient(90deg, var(--accent-dark), var(--gold)); }
.pricing__bar--cyan   { background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-dark)); }
.pricing__bar--purple { background: linear-gradient(90deg, var(--gold), var(--accent)); }

.pricing__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
}
.pricing__tier {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
  margin-top: 10px;
  text-transform: uppercase;
}
.pricing__tagline { font-size: 12px; color: var(--text-muted); font-style: italic; }
.pricing__price {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 4px 0;
  background: linear-gradient(130deg, var(--text) 30%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing__time { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}
.pricing__features li { display: flex; gap: 6px; }

/* Pricing extra */
.pricing__extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
@media (max-width: 640px) {
  .pricing__extra { grid-template-columns: 1fr; }
}
.pricing__extra h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.tag-optional {
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 6px;
}
.pricing__hw-list { display: flex; flex-direction: column; gap: 10px; }
.pricing__hw-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pricing__hw-item:last-child { border-bottom: none; padding-bottom: 0; }
.pricing__hw-item strong { color: var(--text); }
.pricing__hw-total span,
.pricing__hw-total strong { color: var(--gold); font-weight: 800; }

/* ===== Go-To-Market ===== */
.gtm__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.gtm__step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}
.gtm__dot {
  width: 20px; height: 20px;
  border-radius: 50%;
}
.gtm__dot--green  { background: var(--accent-dark); box-shadow: 0 0 16px var(--accent-dark); }
.gtm__dot--cyan   { background: var(--accent);      box-shadow: 0 0 16px var(--accent); }
.gtm__dot--purple { background: var(--gold);        box-shadow: 0 0 16px var(--gold); }
.gtm__step h3 { font-size: 16px; font-weight: 700; }
.gtm__step p  { font-size: 14px; color: var(--text-muted); }
.gtm__connector {
  flex: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  align-self: center;
  margin: 0 -10px;
  opacity: .4;
}
@media (max-width: 640px) { .gtm__connector { display: none; } }

.gtm__entry {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.gtm__entry-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.gtm__entry-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0c0a07 0%, #1a1009 50%, #0f0a05 100%);
  border-top: 1px solid var(--border);
  z-index: 1;
}
.cta__glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,116,58,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  background: linear-gradient(130deg, var(--text) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: var(--text-muted);
  text-align: left;
}
.cta__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.35);
  color: var(--gold);
  font-size: 12px;
  margin-right: 10px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
  justify-content: center;
}
.cta__contacts a { color: var(--accent); }
.cta__contacts a:hover { color: var(--gold); }

/* ===== Footer ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--gold); text-decoration: none; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .section { padding: 60px 0; }
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .transform__grid { flex-direction: column; }
  .transform__arrow { transform: rotate(90deg); }
  .gtm__steps { flex-direction: column; align-items: center; }

  .nav__brand-name { display: none; }
  .nav__brand-div  { display: none; }
}
