/* ============================================
   Серкебай Досымжан — style.css
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:   #1A0F0A;
  --black2:  #1F130D;
  --black3:  #261710;
  --black4:  #3A2415;
  --green:   #8B5A1E;
  --green2:  #A07030;
  --green3:  #4f1f83;
  --green-light: #E8C99A;
  --tan:     #C4996A;
  --tan2:    #D4AA7D;
  --tan3:    #f8f8f8;
  --almond:  #ffffff;
  --almond2: #E8D8C0;
  --almond3: #d4a8d1;
  --muted:   #A89880;
  --red:     #B8321A;
  --red2:    #8825d3;
  --red3:    #7A1E10;
  --border:  rgba(196, 153, 106, 0.12);
  --border2: rgba(196, 153, 106, 0.22);
  --white:   rgba(255, 255, 255, 0.967);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--almond);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================
   CURSOR
   ============================================ */
.cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--green2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cur-ring {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(61, 112, 96, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: linear-gradient(to bottom, rgba(28,18,10,0.97), transparent);
  backdrop-filter: blur(14px);
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--almond);
  text-transform: uppercase;
  flex: 1;
}
.nav-divider {
  width: 4px;
  height: 40px;
  background: rgb(228, 221, 221);
  margin: 0 auto;
}
.nav-cta {
  background: transparent;
  color: var(--almond);
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.2s;
  text-align: right;
  flex: 1;
}
.nav-cta:hover {
  color: var(--tan2);
  transform: scale(1.04);
}

/* ============================================
   FLOATING CTA BAND
   ============================================ */
.free-cta-band {
  width: 100%;
  background: #641572;
  border-top: 1px solid rgba(90, 158, 130, 0.2);
  border-bottom: 1px solid rgba(90, 158, 130, 0.2);
  padding: 0;
  display: flex;
  justify-content: center;
}
.free-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E8C99A;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.free-cta-link:hover { color: var(--almond); gap: 18px; }
.free-cta-link .cta-arrow {
  color: var(--green-light);
  font-size: 14px;
  transition: transform 0.2s;
}
.free-cta-link:hover .cta-arrow { transform: translateX(4px); }
.free-cta-link .cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green2);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: linear-gradient(to right, #0a0a0a 0%, #1a0a2e 50%, #2d0a4e 100%);
}
.hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}
.hero-photo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin-right: 100px;
}

.hero-left {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px 52% 48px 60px;
  min-height: 100vh;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: calc(52% - 1px);
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,153,106,0.18), transparent);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  gap: 0;
}

.hero-mid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  margin-top: 140px;
}
.hero-spacer { flex: 1; }

.hero-quote-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
}
.hero-bottom-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.hero-name-split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 8px;
  gap: 2px;
}
.hero-name-line {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 4.5vw, 46px);
  font-weight: 900;
  color: var(--almond);
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-name-line.dim {
  font-weight: 900;
  color: var(--almond);
  letter-spacing: 8px;
}
.hero-bio {
  font-size: 16px;
  color: rgba(246, 234, 215, 0.7);
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-sub {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  border-radius: 4px;
  text-align: center;
  max-width: 380px;
}
.hero-sub-line1,
.hero-sub-line2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--almond);
  letter-spacing: 1px;
  line-height: 1.5;
}
.hero-sub-line1 em,
.hero-sub-line2 em {
  font-style: normal;
  color: var(--tan2);
}
.hero-sub-divider {
  font-size: 40px;
  color: rgba(237, 231, 224, 0.3);
  margin: 8px 0;
  letter-spacing: 6px;
}

.btn-red {
  display: inline-block;
  background: #6c1e8b;
  color: var(--almond);
  padding: 16px 48px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #bb40d6;
  cursor: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 40px rgba(215, 176, 228, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-red:hover {
  background: #A07030;
  transform: translateY(-3px);
  box-shadow: 0 0 70px rgba(160, 112, 48, 0.5);
}

.hero-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  font-weight: 500;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #5DE08A;
  padding: 12px 24px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover {
  background: rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--green3);
  border-top: 1px solid rgba(90,158,130,0.25);
  padding: 12px 0;
  width: 100%;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--green-light);
  padding: 0 36px;
  white-space: nowrap;
  text-transform: uppercase;
}
.ticker-item::after {
  content: '·';
  margin-left: 36px;
  opacity: 0.4;
  color: var(--tan);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   ОБЩИЕ ЭЛЕМЕНТЫ
   ============================================ */
.s-label {
  display: inline-block;
  border-left: 2px solid var(--white);
  padding-left: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}
.big-h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: var(--almond);
}
.big-h em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--tan2);
  font-size: 0.9em;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 2px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 28px;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-stats { display: flex; flex-direction: column; gap: 2px; }
.stat-card {
  background: var(--black2);
  padding: 28px 24px;
  border-left: 2px solid var(--white);
  transition: background 0.3s;
}
.stat-card:hover { background: var(--black3); }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── SALES-SPECIFIC ── */
.sale-reasons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}
.sale-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: var(--black2);
  border-left: 2px solid #7B3DBE;
  transition: background 0.2s;
}
.sale-reason-item:hover { background: var(--black3); }
.sr-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: var(--red2);
  letter-spacing: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sr-text {
  font-size: 13px;
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================
   BREAKDOWN
   ============================================ */
.breakdown {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 28px;
}
.breakdown-inner { max-width: 780px; margin: 0 auto; }

.gets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.get-card {
  background: var(--black2);
  padding: 32px 24px;
  border-top: 2px solid var(--tan);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.get-card:nth-child(2) { border-top-color: var(--green3); }
.get-card:nth-child(3) { border-top-color: var(--green3); }
.get-card:nth-child(4) { border-top-color: var(--tan); }
.get-card:hover { background: var(--black3); }
.get-icon { font-size: 28px; margin-bottom: 14px; }
.get-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--almond);
  margin-bottom: 10px;
}
.get-desc {
  font-size: 13px;
  color: var(--almond3);
  line-height: 1.75;
}
.get-bg-num {
  position: absolute;
  top: 8px; right: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 70px;
  color: rgba(242,232,217,0.025);
  line-height: 1;
}

/* ============================================
   REGISTRATION
   ============================================ */
.reg {
  background: var(--black);
  padding: 110px 28px;
  position: relative;
  overflow: hidden;
}
.reg-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(46, 88, 68, 0.1), transparent 70%);
  pointer-events: none;
}
.reg::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--green) 40%, transparent);
}
.reg-inner { max-width: 500px; margin: 0 auto; position: relative; z-index: 1; }
.reg-desc { color: var(--almond3); font-size: 14px; line-height: 1.85; margin-top: 12px; font-weight: 400; }
.reg-form { display: flex; flex-direction: column; gap: 14px; margin-top: 44px; }
.f-label { display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 7px; font-weight: 700; }
.f-input {
  width: 100%; padding: 16px 20px;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input::placeholder { color: rgba(242, 232, 217, 0.2); }
.f-input:focus { border-color: var(--tan); box-shadow: 0 0 0 3px rgba(196, 153, 106, 0.08); }
.sel-wrap { position: relative; }
.sel-wrap::after {
  content: '↓';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--tan);
  pointer-events: none;
  font-size: 13px;
}
.f-select {
  width: 100%; padding: 16px 20px;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--almond);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-select:focus { border-color: var(--tan); box-shadow: 0 0 0 3px rgba(196, 153, 106, 0.08); }
.f-select option { background: var(--black2); }
.f-submit {
  width: 100%; padding: 18px;
  background: #891a9a;
  color: var(--almond);
  border: none; border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; margin-top: 6px;
  box-shadow: 0 0 40px rgba(131, 102, 17, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.f-submit:hover { background: #A07030; transform: translateY(-2px); box-shadow: 0 0 70px rgba(61, 112, 96, 0.4); }
.f-submit:disabled { opacity: 0.5; transform: none; }
.f-fine { font-size: 11px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.7; }
.success-box {
  display: none;
  background: rgba(46, 88, 68, 0.08);
  border: 1px solid rgba(46, 88, 68, 0.25);
  border-radius: 3px;
  padding: 44px 28px;
  text-align: center;
}
.s-icon { font-size: 52px; margin-bottom: 16px; }
.success-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 28px;
  color: var(--tan2); letter-spacing: 3px;
  margin-bottom: 12px; text-transform: uppercase;
}
.success-box p { font-size: 14px; color: var(--almond3); line-height: 1.8; }
.ig-link { color: var(--tan2); text-decoration: none; font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.f-ig {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.f-ig:hover { color: var(--almond); }
footer p { font-size: 11px; color: var(--muted); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.5); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.vis { opacity: 1; transform: none; }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 700px) {
  nav { padding: 16px 20px; }
  .nav-name { display: none; }
  .hero { min-height: 100svh; }
  .hero-left {
    padding: 70px 16px 28px 16px;
    min-height: 100svh;
  }
  .hero-left::after { display: none; }
  .hero-main { width: 100%; }
  .about { grid-template-columns: 1fr; gap: 40px; padding: 60px 16px; }
  .gets-grid { grid-template-columns: 1fr; }
  .reg::before { display: none; }
  footer { flex-direction: column; text-align: center; padding: 20px 16px; }

  body { font-size: 14px; }

  .hero-name-line { font-size: 20px; letter-spacing: 4px; }
  .hero-bio { font-size: 14px; line-height: 1.4; }
  .hero-sub { font-size: 13px; padding: 16px 18px; max-width: 100%; }

  .btn-red {
    padding: 14px 24px;
    font-size: 10px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
  }
  .btn-wa { width: 100%; justify-content: center; font-size: 10px; }

  .stat-num { font-size: 32px; }

  .breakdown, .reg { padding: 60px 16px; }
  .big-h { font-size: 28px; line-height: 1.1; }

  .f-input, .f-select { padding: 14px; font-size: 13px; }
  .f-submit { padding: 16px; font-size: 10px; }
}
/* ============================================
   SOCIALS
   ============================================ */
.socials {
  padding: 100px 28px;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.socials-inner {
  max-width: 780px;
  margin: 0 auto;
}
.socials-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--black2);
  border-left: 2px solid #7B3DBE;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.social-card:hover {
  background: var(--black3);
  border-left-color: #bb40d6;
}
.social-icon {
  color: #bb40d6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.social-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.social-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--almond);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.social-handle {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}
.social-arrow {
  color: #7B3DBE;
  font-size: 18px;
  transition: transform 0.2s, color 0.2s;
}
.social-card:hover .social-arrow {
  transform: translateX(6px);
  color: #bb40d6;
}

@media (max-width: 700px) {
  .socials { padding: 60px 16px; }
}