* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: rgba(0, 0, 0, 0.35);
  --panel-2: rgba(255, 255, 255, 0.055);
  --gold: #d6aa34;
  --gold-light: #ffe58a;
  --gold-dark: #8a6418;
  --line: rgba(214, 170, 52, 0.35);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.68);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(214,170,52,0.20), transparent 34%),
    linear-gradient(180deg, #151b22, #050505 70%);
  display: grid;
  place-items: center;
  padding: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.05;
  pointer-events: none;
}

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

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 430px);
  height: min(920px, calc(100vh - 24px));
  border: 1px solid rgba(214,170,52,0.28);
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(214,170,52,0.18), transparent 32%),
    linear-gradient(180deg, #111827, #050505 68%);
  box-shadow: 0 25px 90px rgba(0,0,0,0.65);
}

.phone-status {
  height: 48px;
  padding: 16px 30px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: rgba(255,255,255,0.9);
}


.top-lang {
  position: absolute;
  top: 60px;
  right: 76px;
  z-index: 30;
  border: 1px solid rgba(214,170,52,0.45);
  background: rgba(0,0,0,0.32);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.top-back, .top-menu {
  position: absolute;
  top: 58px;
  z-index: 30;
  border: none;
  background: transparent;
  color: var(--gold-light);
  font-size: 30px;
}

.top-back {
  left: 24px;
}

.top-menu {
  right: 28px;
}

.screen {
  height: 100%;
  overflow-y: auto;
  padding: 76px 24px 112px;
  scrollbar-width: none;
}

.screen::-webkit-scrollbar {
  display: none;
}

.brand {
  text-align: center;
  padding-top: 12px;
  margin-bottom: 28px;
}

.kv-logo {
  margin: 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(255,229,138,0.62);
  background: rgba(0,0,0,0.43);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 38px;
  box-shadow: 0 0 36px rgba(214,170,52,0.25);
}

.brand-name {
  margin-top: 16px;
  letter-spacing: 0.34em;
  font-family: Georgia, serif;
  font-size: 13px;
  color: var(--gold-light);
}

.brand-studio {
  margin-top: 3px;
  letter-spacing: 0.55em;
  font-size: 10px;
  color: rgba(255,229,138,0.74);
}

.title {
  text-align: center;
  font-family: Georgia, serif;
  color: #fff3b9;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0.07em;
  margin: 0;
}

.subtitle {
  text-align: center;
  color: var(--muted);
  line-height: 1.55;
  margin: 14px auto 0;
  max-width: 330px;
}

.gold-line {
  height: 1px;
  width: 150px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.hero-card, .card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 22px;
}

.feature {
  border: 1px solid rgba(214,170,52,0.23);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 14px 8px;
  text-align: center;
  color: rgba(255,255,255,0.72);
}

.feature strong {
  display: block;
  color: var(--gold-light);
  font-size: 22px;
  margin-bottom: 7px;
}

.btn {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(214,170,52,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  margin-top: 14px;
}

.btn-primary {
  color: #050505;
  border: none;
  background: linear-gradient(135deg, #fff1a5, #c89426);
  box-shadow: 0 0 28px rgba(214,170,52,0.23);
}

.btn-secondary {
  color: var(--gold-light);
  background: rgba(0,0,0,0.25);
}

.btn-whatsapp {
  color: white;
  border: none;
  background: linear-gradient(135deg, #0f6b3a, #25d366);
}

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

.service-card {
  min-height: 132px;
  border-radius: 24px;
  border: 1px solid rgba(214,170,52,0.28);
  background: rgba(0,0,0,0.25);
  color: white;
  padding: 14px;
  text-align: center;
}

.service-card.selected {
  border-color: var(--gold-light);
  background: rgba(214,170,52,0.14);
  box-shadow: 0 0 25px rgba(214,170,52,0.17);
}

.service-card .icon {
  color: var(--gold-light);
  font-size: 34px;
  display: block;
  margin-bottom: 12px;
}

.service-card small {
  display: block;
  color: var(--muted);
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.25;
}

.form-stack {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.field, .toggle-row, .option-box {
  border: 1px solid rgba(214,170,52,0.26);
  background: rgba(0,0,0,0.25);
  border-radius: 22px;
  padding: 15px;
}

.label {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: white;
  font-size: 17px;
}

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

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.segment {
  display: flex;
  border: 1px solid rgba(214,170,52,0.30);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.segment button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.62);
  padding: 9px 16px;
  font-weight: 800;
}

.segment button.active {
  background: var(--gold-light);
  color: #050505;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border: 1px solid rgba(214,170,52,0.26);
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  padding: 9px 13px;
}

.pill.active {
  background: var(--gold-light);
  color: #050505;
  font-weight: 800;
}

.budget-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.budget-card {
  text-align: left;
  width: 100%;
  border: 1px solid rgba(214,170,52,0.28);
  background: rgba(0,0,0,0.25);
  color: white;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.budget-card.selected {
  border-color: var(--gold-light);
  background: rgba(214,170,52,0.14);
}

.check-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(214,170,52,0.35);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.budget-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: 20px;
}

.budget-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.review {
  margin-top: 24px;
  overflow: hidden;
}

.review-line {
  padding: 18px;
  border-bottom: 1px solid rgba(214,170,52,0.15);
  display: flex;
  gap: 14px;
}

.review-line:last-child {
  border-bottom: none;
}

.review-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214,170,52,0.30);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.review-line small {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.review-line p {
  margin: 4px 0 0;
  font-size: 17px;
}

.review-line span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 13px;
}

.step-dots {
  margin: 24px 0 0;
  text-align: center;
  color: var(--muted);
}

.dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
}

.dot.active {
  background: var(--gold-light);
}

.bottom-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.bottom-actions .btn {
  margin-top: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 25px;
}

.portfolio-card {
  height: 138px;
  border: 1px solid rgba(214,170,52,0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(214,170,52,0.20), transparent),
    rgba(0,0,0,0.25);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

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

.portfolio-card small {
  color: var(--muted);
  margin-top: 5px;
}

.bottom-nav {
  height: 98px;
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 22px 17px;
}

.nav-item {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.52);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.nav-item span {
  font-size: 25px;
}

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

.nav-main {
  margin-top: -34px;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  border: 1px solid rgba(214,170,52,0.45);
  background: #050505;
  color: var(--gold-light);
  font-size: 30px;
  box-shadow: 0 0 30px rgba(214,170,52,0.23);
}

@media (max-width: 480px) {
  body {
    padding: 0;
    display: block;
  }

  .app-shell {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    border: none;
  }

  .title {
    font-size: 30px;
  }
}


/* v18 drawer menu */
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86%, 335px);
  height: 100%;
  z-index: 60;
  background:
    radial-gradient(circle at top, rgba(214,170,52,0.18), transparent 34%),
    rgba(6, 6, 7, 0.98);
  border-left: 1px solid rgba(214,170,52,0.35);
  box-shadow: -22px 0 60px rgba(0,0,0,0.55);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  padding: 28px 22px;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(214,170,52,0.20);
  padding-bottom: 20px;
}

.drawer-kv {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255,229,138,0.62);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 25px;
  margin-bottom: 12px;
  background: rgba(0,0,0,0.35);
}

.drawer-head strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.2;
}

.drawer-head small {
  display: block;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

.drawer-close {
  border: 1px solid rgba(214,170,52,0.35);
  color: var(--gold-light);
  background: rgba(255,255,255,0.04);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.drawer-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.drawer-links button,
.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(214,170,52,0.22);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0 16px;
  font-weight: 800;
  text-align: left;
}

.drawer-links button::after,
.drawer-links a::after {
  content: "›";
  color: var(--gold-light);
  font-size: 24px;
}

.drawer-install {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg, #fff1a5, #c89426);
  color: #050505;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 22px;
}



/* v35 stable premium home and app polish - real code, no fixed text image */
.app-shell {
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 220, 95, 0.16), transparent 30%),
    radial-gradient(circle at 15% 72%, rgba(255, 220, 95, 0.07), transparent 26%),
    linear-gradient(180deg, #121923 0%, #070a0e 68%, #030304 100%);
  border-color: rgba(255, 226, 133, 0.24);
  box-shadow:
    0 30px 95px rgba(0,0,0,0.78),
    inset 0 0 70px rgba(255, 204, 60, 0.05);
}

.phone-status,
.top-back,
.top-lang,
.top-menu,
.bottom-nav {
  display: flex;
}

.top-lang {
  top: 60px;
  right: 76px;
}

.brand {
  padding-top: 18px;
  margin-bottom: 20px;
}

.kv-logo {
  width: 96px;
  height: 96px;
  font-size: 45px;
  border-color: rgba(255, 235, 155, 0.70);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 222, 107, 0.10), rgba(0,0,0,0.54) 68%),
    rgba(0,0,0,0.38);
  box-shadow:
    0 0 42px rgba(255, 216, 94, 0.32),
    inset 0 0 32px rgba(255, 216, 94, 0.08);
}

.brand-name {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.42em;
}

.brand-studio {
  letter-spacing: 0.68em;
}

/* Stable home */
.stable-home {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stable-hero-card {
  border: 1px solid rgba(255, 218, 94, 0.36);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 218, 94, 0.11), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(0,0,0,0.24));
  border-radius: 32px;
  padding: 22px 18px 20px;
  box-shadow:
    0 18px 44px rgba(0,0,0,0.38),
    inset 0 0 0 1px rgba(255,255,255,0.035);
  text-align: center;
}

.hero-orbit {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255, 218, 94, 0.22);
  background:
    radial-gradient(circle at center, rgba(255, 218, 94, 0.08), transparent 54%),
    rgba(0,0,0,0.18);
}

.hero-core {
  position: absolute;
  inset: 43px;
  border-radius: 999px;
  border: 1px solid rgba(255, 235, 155, 0.68);
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.42);
  box-shadow:
    0 0 34px rgba(255, 218, 94, 0.28),
    inset 0 0 22px rgba(255, 218, 94, 0.08);
}

.hero-core span {
  color: #ffe078;
  font-family: Georgia, serif;
  font-size: 44px;
}

.orbit-item {
  position: absolute;
  color: #ffe078;
  font-size: 32px;
  text-shadow: 0 0 18px rgba(255, 218, 94, 0.42);
}

.item-1 { top: 13px; left: 50%; transform: translateX(-50%); }
.item-2 { top: 70px; right: 11px; }
.item-3 { bottom: 16px; left: 50%; transform: translateX(-50%); }
.item-4 { top: 70px; left: 13px; }

.stable-home-title {
  margin: 0 auto;
  max-width: 340px;
  color: #fff0ad;
  font-family: Georgia, serif;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-shadow: 0 0 22px rgba(255, 218, 94, 0.24);
}

.stable-home-sub {
  margin: 16px auto 0;
  max-width: 330px;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.5;
}

.stable-home-actions {
  margin-top: 20px;
}

.stable-home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 16px;
}

.stable-home-services div {
  min-height: 80px;
  border: 1px solid rgba(255, 218, 94, 0.25);
  border-radius: 20px;
  background: rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  text-align: center;
}

.stable-home-services b {
  color: #ffe078;
  font-size: 13px;
  margin-bottom: 5px;
}

.stable-home-services span {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
}

/* General premium screens */
.title {
  color: #fff0ad;
  text-shadow: 0 0 22px rgba(255, 218, 94, 0.24);
}

.gold-line {
  background:
    radial-gradient(circle, rgba(255,255,255,0.86), transparent 7px),
    linear-gradient(90deg, transparent, rgba(255, 218, 94, 0.72), transparent);
  box-shadow: 0 0 18px rgba(255, 219, 93, 0.38);
}

.service-card,
.field,
.toggle-row,
.option-box,
.budget-card,
.card {
  border-color: rgba(255, 218, 94, 0.36);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 218, 94, 0.07), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.24));
}

.service-card.selected,
.budget-card.selected {
  border-color: #fff0a8;
  box-shadow: 0 0 32px rgba(255, 218, 94, 0.18);
}

.btn {
  min-height: 62px;
  border-radius: 20px;
  letter-spacing: 0.14em;
}

.btn-primary {
  background: linear-gradient(180deg, #fff2a9, #d3a333 58%, #9c6f1d);
  color: #080808;
  box-shadow:
    0 0 30px rgba(255, 207, 77, 0.24),
    0 13px 28px rgba(0,0,0,0.40);
}

.btn-secondary {
  border-color: rgba(255, 218, 94, 0.46);
  background: rgba(0,0,0,0.22);
  color: #fff0ad;
}

.step-dots .dots {
  position: relative;
}

.step-dots .dots::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: rgba(255, 218, 94, 0.42);
  z-index: 0;
}

.step-dots .dot {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 218, 94, 0.44);
}

.step-dots .dot.active {
  background: #ffe078;
  box-shadow: 0 0 18px rgba(255, 218, 94, 0.66);
}
