/* =============================================
   SOFINA — Mystical Fortune Teller Website
   Main Stylesheet
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg-deep:      #0d0618;
  --color-bg-dark:      #130824;
  --color-bg-mid:       #1a0a2e;
  --color-bg-card:      #1e0d35;
  --color-bg-light:     #2a1245;
  --color-purple-main:  #6b21a8;
  --color-purple-light: #9333ea;
  --color-purple-glow:  #a855f7;
  --color-gold:         #d4af37;
  --color-gold-light:   #f0d060;
  --color-gold-dim:     #b8962e;
  --color-text-white:   #f8f4ff;
  --color-text-light:   #e2d9f3;
  --color-text-muted:   #9d8bbf;
  --color-border:       rgba(212, 175, 55, 0.25);
  --color-border-glow:  rgba(168, 85, 247, 0.4);
  --font-heading:       'Cinzel', serif;
  --font-body:          'Raleway', sans-serif;
  --font-accent:        'Playfair Display', serif;
  --shadow-gold:        0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-purple:      0 0 40px rgba(107, 33, 168, 0.5);
  --shadow-card:        0 8px 40px rgba(0, 0, 0, 0.6);
  --radius-card:        16px;
  --transition:         all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-purple-main);
  border-radius: 3px;
}

/* --- Stars Background Animation --- */
.stars-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.3); }
}

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* --- Section Base --- */
section {
  position: relative;
  z-index: 2;
}

/* --- Gold Divider --- */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 40px;
}

/* --- Section Title --- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold), var(--color-gold-light));
  color: var(--color-bg-deep);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7), 0 0 60px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* =============================================
   BLOCK 1 — HERO (ПЕРВЫЙ ЭКРАН)
   ============================================= */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 6, 24, 0.88) 0%,
    rgba(26, 10, 46, 0.75) 50%,
    rgba(13, 6, 24, 0.92) 100%
  );
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 901px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex-direction: row;
  }
}

.hero-content {
  animation: fadeInLeft 1s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.07);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--color-gold-light);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 44px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--color-text-light);
}

.hero-bullets li::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.hero-image-wrap {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
  width: 100%;
  max-width: 100%;
  display: none;
}

@media (min-width: 901px) {
  .hero-image-wrap {
    max-width: 440px;
    display: block;
  }
}

.hero-image-wrap img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 80px rgba(107, 33, 168, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 2;
}

@media (min-width: 901px) {
  .hero-image-wrap img {
    max-width: 440px;
  }
}

.hero-image-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(107, 33, 168, 0.4) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-light));
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px 20px;
  z-index: 3;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.hero-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   BLOCK 2 — WHY US
   ============================================= */

#why-us {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-dark) 50%, var(--color-bg-deep) 100%);
}

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

.why-card {
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-mid));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.15);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-card-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.why-card-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
}

.why-card-title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 12px;
}

.why-card-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* =============================================
   BLOCK 3 — URGENCY
   ============================================= */

#urgency {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.urgency-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/urgency_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.urgency-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 6, 24, 0.92) 0%,
    rgba(26, 10, 46, 0.88) 100%
  );
}

.urgency-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.urgency-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.urgency-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-gold-light);
  margin-bottom: 40px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.urgency-points {
  list-style: none;
  text-align: left;
  margin-bottom: 48px;
  display: inline-block;
}

.urgency-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.urgency-points li::before {
  content: '◆';
  color: var(--color-gold);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.urgency-conclusion {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 44px;
  padding: 20px 32px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.05);
}

/* =============================================
   BLOCK 4 — LEAD GEN WITH TIMER
   ============================================= */

#lead-gen {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-dark) 100%);
}

.lead-gen-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.lead-gen-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--color-text-white);
  margin-bottom: 12px;
}

.lead-gen-title span {
  color: var(--color-gold-light);
}

.lead-gen-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

/* Timer */
.timer-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-light));
  border: 1px solid var(--color-border);
  border-radius: 12px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.timer-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.timer-unit-ms {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num-ms {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-light));
  border: 1px solid var(--color-border);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@media (min-width: 901px) {
  .timer-num-ms {
    font-size: 3rem;
    width: 90px;
    height: 90px;
  }
}

.timer-label-ms {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

@media (min-width: 901px) {
  .timer-label-ms {
    font-size: 0.7rem;
  }
}

.timer-colon {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 90px;
  opacity: 0.6;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 0.1; }
}

/* Form */
.lead-form {
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-mid));
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-wrap {
  margin-top: 28px;
  text-align: center;
}

.form-submit-wrap .btn-primary {
  width: 100%;
  font-size: 1.05rem;
  padding: 20px;
}

/* Triggers */
.lead-triggers {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
  flex-direction: column;
}

.trigger-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.trigger-item .trigger-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .lead-triggers {
    justify-content: center;
    flex-direction: row;
    gap: 24px;
  }
  
  .trigger-item {
    font-size: 0.95rem;
  }
  
  .trigger-item .trigger-icon {
    font-size: 1.1rem;
  }
}

/* =============================================
   BLOCK 5 — REVIEWS
   ============================================= */

#reviews {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/reviews_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.reviews-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 6, 24, 0.88);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.review-card {
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-mid));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-accent);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.12;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-white);
}

.review-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* =============================================
   BLOCK 6 — ABOUT SOFINA
   ============================================= */

#about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-dark) 50%, var(--color-bg-deep) 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 80px rgba(107, 33, 168, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.about-image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 26px;
  pointer-events: none;
}

.about-image-frame::before,
.about-image-frame::after {
  content: '✦';
  position: absolute;
  color: var(--color-gold);
  font-size: 1.2rem;
  opacity: 0.6;
}

.about-image-frame::before { top: -10px; left: -10px; }
.about-image-frame::after  { bottom: -10px; right: -10px; }

.about-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-light));
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.about-stat-text {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content {
  animation: fadeInRight 0.8s ease both;
}

.about-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-text-white);
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-title span {
  color: var(--color-gold-light);
}

.about-story {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-gold-light);
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.7;
}

.about-achievements {
  list-style: none;
  margin-bottom: 40px;
}

.about-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.about-achievements li::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =============================================
   POPUP MODAL
   ============================================= */

.popup-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.popup-modal.active {
  display: flex;
}

.popup-content {
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-mid));
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gold);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  transform: rotate(90deg);
  color: var(--color-gold-light);
}

.popup-header {
  margin-bottom: 28px;
  text-align: center;
}

.popup-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-gold-light);
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.popup-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-cta-wrap {
    align-items: center;
  }

  .hero-bullets li {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image-wrap img {
    max-width: 320px;
  }

  .hero-badge {
    right: 10px;
    bottom: 10px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-stat {
    left: 10px;
    bottom: -10px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .timer-num {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  .timer-colon {
    font-size: 2.2rem;
    line-height: 70px;
  }

  .lead-form {
    padding: 28px 20px;
  }

  .lead-triggers {
    flex-direction: column;
    align-items: center;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}
