/* ============================================
   ШЫНДЫҚ — style.css  v2
   Серкебай Досымжан
   Palette: Dark Walnut · Green Velvet · Tan · Almond
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
--black:   #1A0F0A;
--black2:  #1F130D;
--black3:  #261710;
  --black4:  #3A2415;
  --green:   #2E5844;
  --green2:  #3D7060;
  --green3:  #2F6F56;
  --green-light: #7FE0B0;
  --tan:     #C4996A;
  --tan2:    #D4AA7D;
  --tan3:    #A07848;
  --almond:  #F2E8D9;
  --almond2: #E8D8C0;
  --almond3: #D4C4A8;
  --muted:   #A89880;
  --red:     #B8321A;
  --red2:    #D04020;
  --red3:    #7A1E10;
  --border:  rgba(196, 153, 106, 0.12);
  --border2: rgba(196, 153, 106, 0.22);
}

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: 18px;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--almond);
  text-transform: uppercase;
}
.nav-logo span { color: var(--tan2); }
.nav-name {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-cta {
  background: var(--green);
  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: 1px solid var(--green3);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--green2);
  transform: scale(1.04);
}

/* ============================================
   FLOATING CTA BAND
   ============================================ */
.free-cta-band {
  width: 100%;
  background: var(--green3);
  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: var(--green-light);
  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;
}

.hero-right {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.45) contrast(1.15) saturate(1.05);
  object-position: 75% 20%;
  background: linear-gradient(
  to right,
  rgba(0,0,0,0.6),
  rgba(0,0,0,0.2)
);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(28,18,10,0.98) 0%,
    rgba(28,18,10,0.92) 32%,
    rgba(28,18,10,0.45) 52%,
    rgba(28,18,10,0.05) 68%,
    transparent 100%
  );
  z-index: 1;
}
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(28,18,10,0.85), transparent);
  z-index: 1;
}

.hero-left-bg { display: none; }

.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-bg-word {
  position: absolute;
  top: 88px;
  left: 56px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 153, 106, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -2px;
  z-index: 3;
}

.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 CONTENT ── */
.hero-content { display: contents; }

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  gap: 0;
}

.hero-top { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 8px; }
.hero-mid { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 0; }

.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;
}

.kaz-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(242, 232, 217, 0.75);
  letter-spacing: 2px;
  animation: fadeDown 0.7s ease both;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 6;
  width: 100%;
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 36px;
  border: 1px solid rgba(196, 153, 106, 0.3);
  background: rgba(196, 153, 106, 0.07);
  border-radius: 2px;
  padding: 7px 18px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan2);
  font-weight: 600;
  animation: fadeDown 0.7s ease 0.1s both;
}
.pdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green2);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.5); }
}

.hero-name { display: none; }

.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);
  font-size: clamp(18 px, 4.5vw, 46px);
  letter-spacing: 8px;
}
.about-problems {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.about-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: var(--black2);
  border-left: 2px solid var(--green3);
  transition: background 0.2s;
}

.about-problem-item:hover {
  background: var(--black3);
}

.ap-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: var(--tan);
  letter-spacing: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ap-text {
  font-size: 13px;
  color: var(--almond3);
  line-height: 1.6;
  font-weight: 500;
}

.about-result {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--tan2);
  margin-bottom: 20px;
  padding-left: 4px;
}

.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.88;
  letter-spacing: 4px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: -15px;
  animation: fadeUp 0.8s ease 0.25s both;
  color: var(--almond);
}
.hero-h1 .red { color: var(--tan2); }

.hero-bio {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(242, 232, 217, 0.7);
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 10px;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* ✅ Рамка blur */
.hero-sub {
  font-size: 13px;
  color: var(--almond3);
  text-align: center;
  max-width: 380px;
  line-height: 1.85;
  margin: 0;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: 4px;
}
.hero-sub strong { color: var(--almond); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 14px;
}

.btn-red {
  display: inline-block;
  background: var(--green);
  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 var(--green3);
  cursor: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 40px rgba(83, 123, 104, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-red:hover {
  background: var(--green2);
  transform: translateY(-3px);
  box-shadow: 0 0 70px rgba(98, 133, 122, 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);
}

.hero-bottom-band { display: none; }

/* ============================================
   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%); }
}

.hero-glow { display: none; }
.hero-glow-bot { display: none; }

/* ============================================
   ОБЩИЕ ЭЛЕМЕНТЫ
   ============================================ */
.s-label {
  display: inline-block;
  border-left: 2px solid var(--tan);
  padding-left: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan2);
  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-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--almond);
  margin-bottom: 24px;
}
.about-quote em { font-style: italic; color: var(--tan2); }
.about-desc {
  font-size: 13px;
  color: var(--almond3);
  line-height: 1.9;
  font-weight: 400;
}
.about-desc strong { color: var(--almond); font-weight: 600; }
.about-stats { display: flex; flex-direction: column; gap: 2px; }
.stat-card {
  background: var(--black2);
  padding: 28px 24px;
  border-left: 2px solid var(--tan);
  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(--tan2);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  color: var(--almond3);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   ОРТА
   ============================================ */
.orta {
  padding: 100px 28px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.orta::before {
  content: 'ОРТА';
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 200px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,153,106,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.orta-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.orta-desc {
  font-size: 14px;
  color: var(--almond3);
  line-height: 1.95;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}
.orta-gallery-wrap {
  position: relative;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.8s ease;
  margin-top: 32px;
}
.orta-gallery-wrap.open { max-height: 900px; }
.orta-gallery-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--black) 30%, transparent);
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.orta-gallery-wrap.open::after { opacity: 0; }
.orta-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: stretch;
  min-height: 320px;
}
.og-main { position: relative; overflow: hidden; border-radius: 2px; }
.og-main img {
  width: 100%; height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85) sepia(0.15);
}
.og-main:hover img { transform: scale(1.04); filter: brightness(1) sepia(0); }
.og-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(28,18,10,0.85), transparent);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}
.og-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.og-item { overflow: hidden; border-radius: 2px; aspect-ratio: 1/1; }
.og-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.8) sepia(0.1);
}
.og-item:hover img { transform: scale(1.06); filter: brightness(1) sepia(0); }
.orta-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  padding-bottom: 24px;
  user-select: none;
  transition: opacity 0.4s;
  border: none;
  background: none;
}
.orta-toggle.open { opacity: 0; pointer-events: none; }
.orta-toggle-text { display: none; }
.orta-arrow-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: arrowBounce 1.8s ease infinite;
}
.orta-arr { font-size: 32px; color: var(--tan); line-height: 0.75; opacity: 0.3; }
.orta-arr:nth-child(2) { opacity: 0.6; }
.orta-arr:nth-child(3) { opacity: 1; }
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================
   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; }
.bio-box {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 24px;
  margin-bottom: 56px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bio-box-icon { font-size: 24px; flex-shrink: 0; }
.bio-box-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(242, 232, 217, 0.8);
  line-height: 1.65;
}
.bio-box-text strong { color: var(--almond); font-style: normal; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pillar {
  background: var(--black);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pillar:hover { background: var(--black3); }
.pillar.main { border-top: 2px solid var(--tan); }
.pillar.sec  { border-top: 2px solid var(--green3); }
.pillar.main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(196,153,106,0.04), transparent);
  pointer-events: none;
}
.p-bg-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 80px;
  color: rgba(242, 232, 217, 0.025);
  position: absolute;
  top: 8px; right: 14px;
  line-height: 1;
}
.p-icon { font-size: 24px; margin-bottom: 14px; }
.p-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.p-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar.main .p-title { color: var(--almond); }
.pillar.sec  .p-title { color: var(--almond3); }
.p-desc { font-size: 13px; color: var(--almond3); line-height: 1.8; font-weight: 400; }
.p-badge {
  display: inline-block;
  margin-top: 18px;
  background: var(--green);
  color: var(--almond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 28px;
}
.reviews-inner { max-width: 780px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.rv {
  background: var(--black);
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
  transition: background 0.3s;
}
.rv:hover { background: var(--black3); }
.rv::before {
  content: '"';
  position: absolute;
  top: -14px; right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  color: rgba(196, 153, 106, 0.06);
  line-height: 1;
  pointer-events: none;
}
.rv-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rv-av {
  width: 44px; height: 44px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border2);
  flex-shrink: 0;
  background: var(--black3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.rv-av img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 3px;
}
.rv-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: var(--almond); margin-bottom: 3px; }
.rv-tag { font-size: 9px; color: var(--tan2); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.rv-text { font-size: 13px; color: var(--almond3); line-height: 1.75; font-style: italic; }
.ba { display: flex; gap: 2px; margin-top: 14px; }
.ba-chip { flex: 1; text-align: center; padding: 9px 4px; font-size: 11px; line-height: 1.4; font-weight: 600; }
.ba-chip span { display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; margin-bottom: 2px; font-weight: 500; }
.ba-chip.b { background: rgba(242, 232, 217, 0.03); color: var(--almond3); border: 1px solid var(--border); }
.ba-chip.a { background: rgba(46, 88, 68, 0.15); color: var(--green-light); border: 1px solid rgba(46, 88, 68, 0.3); }

/* ============================================
   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(--muted); 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(--almond);
  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: var(--green);
  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(46, 88, 68, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.f-submit:hover { background: var(--green2); 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-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 16px; letter-spacing: 5px; text-transform: uppercase; color: var(--almond); }
.f-logo span { color: var(--tan2); }
.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); }
}
.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-right img { object-position: 62% top; }
  .hero-right::before {
    background: linear-gradient(
      160deg,
      rgba(28,18,10,0.30) 0%,
      rgba(28,18,10,0.65) 45%,
      rgba(28,18,10,0.97) 75%,
      rgba(28,18,10,0.99) 100%
    );
  }
  .hero-left {
    padding: 80px 20px 36px 20px;
    min-height: 100svh;
  }
  .hero-left::after { display: none; }
  .hero-main { width: 100%; }
  .hero-bg-word { display: none; }
  .hero-h1 { font-size: clamp(44px, 13vw, 64px); }
  .about { grid-template-columns: 1fr; gap: 40px; padding: 80px 20px; }
  .pillars, .reviews-grid { grid-template-columns: 1fr; }
  .reg::before { display: none; }
  footer { flex-direction: column; text-align: center; }
  .orta-gallery { grid-template-columns: 1fr; }
  .og-main { aspect-ratio: 4/3; }
  .og-main img { min-height: unset; }
  .og-side { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {

  /* Общий комфорт */
  body {
    font-size: 14px;
  }

  /* HERO */
  .hero-left {
    padding: 70px 16px 28px 16px;
  }

  .kaz-text {
    font-size: 12px;
    top: 60px;
    letter-spacing: 1px;
  }

  .hero-pill {
    font-size: 9px;
    padding: 6px 14px;
    letter-spacing: 2px;
  }

  .hero-h1 {
    font-size: 42px;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: -10px;
  }

  .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;
  }

  /* УБРАТЬ ЛИШНЕЕ */
  .hero-left::after {
    display: none;
  }

  /* ABOUT */
  .about {
    padding: 60px 16px;
  }

  .about-quote {
    font-size: 20px;
  }

  .about-desc {
    font-size: 13px;
  }

  .stat-num {
    font-size: 32px;
  }

  /* ОТСТУПЫ СЕКЦИЙ */
  .breakdown,
  .reviews,
  .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;
  }

  /* ФУТЕР */
  footer {
    padding: 20px 16px;
  }
}
