:root {
  --bg: #0a0a0a;
  --card: #171310;
  --card-2: #1c1512;
  --border: #2c221c;
  --orange: #ff5a2e;
  --orange-2: #ff8a50;
  --orange-dark: #e2431a;
  --text: #ffffff;
  --muted: #a8a29e;
  --off: #6b6560;
  --font-head: "Oswald", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 460px;
  padding: 32px 20px 24px;
}
.page { padding-bottom: 100px; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
}

/* Hero */
.eyebrow {
  color: var(--orange-2);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.hero h1 {
  font-size: 30px;
  margin-bottom: 8px;
  text-align: center;
}
.hero h1 .hl { color: var(--orange-2); }

.hero-illustration {
  display: flex;
  justify-content: center;
  margin: 16px 0 20px;
}
.hero-illustration svg { width: 100%; max-width: 300px; height: auto; }

.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  margin-top: 24px;
}

.bonus-title {
  color: var(--orange-2);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.bonus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.bonus-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 138, 80, .12);
}
.bonus-icon svg { width: 19px; height: 19px; }

.timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--orange-dark);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  animation: timerGlow 2s ease-in-out infinite;
}
.timer-label {
  font-size: 13px;
  color: var(--muted);
}
.timer #countdown {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--orange-2);
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
}
@keyframes timerGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 90, 46, 0); }
  50% { box-shadow: 0 0 18px rgba(255, 90, 46, .35); }
}

/* Buttons */
.btn {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn-block {
  width: calc(100% - 10px);
  margin: 0 auto;
  display: block;
  transform-origin: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-2), var(--orange-dark));
  color: #fff;
  animation: btnPulse 2.2s ease-in-out infinite;
}
.btn-primary:active { transform: scale(.97); }
.btn-outline {
  background: transparent;
  color: var(--orange-2);
  border: 1.5px solid var(--orange-dark);
  animation: btnPulseOutline 2.2s ease-in-out infinite;
}
.btn-outline:active { transform: scale(.97); }
@keyframes btnPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(255, 90, 46, .35); }
  50% { transform: scale(1.025); box-shadow: 0 8px 30px rgba(255, 90, 46, .65), 0 0 0 6px rgba(255, 90, 46, .08); }
}
@keyframes btnPulseOutline {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 90, 46, 0); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px rgba(255, 90, 46, .25); }
}

/* Fingerprint hint icon inside primary buttons */
.btn-fp { padding-right: 54px; }
.btn-fp::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M16 6c-5.5 0-10 4.5-10 10s2 8 4 9'/%3E%3Cpath d='M16 9c-3.9 0-7 3.1-7 7 0 3 1 5.5 2.5 7'/%3E%3Cpath d='M16 12c-2.3 0-4 1.9-4 4.2 0 2 .6 3.6 1.5 5'/%3E%3Cpath d='M16 15.2c-.9 0-1.6.8-1.6 1.8 0 1 .3 2 .8 3'/%3E%3Cpath d='M20 8c2 2 3 4.7 3 8s-1 6-2.5 7.5'/%3E%3C/svg%3E");
  animation: fpPulse 2.2s ease-in-out infinite;
  opacity: .9;
}
@keyframes fpPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .75; }
  50% { transform: translateY(-50%) scale(.86); opacity: 1; }
}

/* Sticky booking bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(10, 10, 10, .98) 60%, rgba(10, 10, 10, 0));
  transform: translateY(120%);
  transition: transform .25s ease;
  z-index: 90;
}
.sticky-cta.show { transform: translateY(0px); }
.sticky-cta-inner { width: 100%; max-width: 460px; }

/* Sections */
.section { padding: 48px 0 8px; }
.section h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 24px;
}

/* Pricing */
.tariff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 20px;
  position: relative;
}
.tariff-card.featured {
  border-color: var(--orange-dark);
  background: var(--card-2);
}
.tariff-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tariff-name {
  font-family: var(--font-head);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 14px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}
.feature-list li.off {
  color: var(--off);
  text-decoration: line-through;
}
.feature-list li.off::before {
  content: "✕";
  color: var(--off);
}

.pay-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.pay-badges span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--muted);
  text-transform: capitalize;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.price-old {
  color: var(--off);
  text-decoration: line-through;
  font-size: 18px;
}
.price-new {
  font-family: var(--font-head);
  color: var(--orange-2);
  font-size: 32px;
  font-weight: 600;
}

/* Undecided help */
.decide-card {
  background: var(--card);
  border: 1px dashed var(--orange-dark);
  border-radius: 20px;
  padding: 26px 22px;
  text-align: center;
}
.decide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 138, 80, .12);
  margin-bottom: 14px;
}
.decide-icon svg { width: 26px; height: 26px; }
.decide-title {
  font-family: var(--font-head);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.decide-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Speaker */
.speaker-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(160deg, var(--orange-dark), #2a1208);
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker-photo.no-photo img { display: none; }
.speaker-photo.no-photo::after {
  content: "Армен";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-head);
  font-size: 22px;
  color: rgba(255,255,255,.85);
}

.speaker-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.speaker-stats li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--muted);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  color: var(--orange-2);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Questions */
.questions { text-align: center; }
.questions p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.footer {
  text-align: center;
  padding: 32px 0 12px;
  color: var(--off);
  font-size: 12px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 100;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  width: 100%;
  max-width: 460px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform .2s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.modal-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#bookingForm input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
}
#bookingForm input::placeholder { color: var(--off); }
#bookingForm input:focus {
  outline: none;
  border-color: var(--orange-dark);
}
#bookingForm button { margin-top: 6px; }

.hidden { display: none; }

@media (min-width: 480px) {
  body { padding: 24px 0; }
}
