/* =============================================
   XAILES Recovery Landing Page — CSS
   Light, clean, emotional, convincing design
   ============================================= */

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

:root {
  --primary: #1a73e8;
  --primary-dark: #1558c0;
  --primary-light: #e8f0fe;
  --telegram: #0088cc;
  --telegram-dark: #006eaa;
  --telegram-light: #e3f4fd;
  --accent: #34a853;
  --accent-light: #e6f4ea;
  --gold: #f59e0b;
  --gold-light: #fef3c7;
  --danger: #ea4335;
  --text-dark: #1a1a2e;
  --text-body: #3d3d5c;
  --text-muted: #6b7280;
  --bg-main: #f8faff;
  --bg-white: #ffffff;
  --bg-soft: #f0f4ff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.13);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font-main: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================
   LANGUAGE BAR
   ======================== */
.lang-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.lang-btn {
  padding: 5px 16px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--font-main);
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(26,115,232,0.28);
}

/* Quick-access Telegram buttons in nav bar */
.lang-tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--telegram);
  color: #fff;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.22s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,136,204,0.25);
}

.lang-tg-btn:hover {
  background: var(--telegram-dark);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.lang-tg-btn.support {
  background: #5865f2;
  box-shadow: 0 2px 8px rgba(88,101,242,0.25);
}

.lang-tg-btn.support:hover {
  background: #4752c4;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 90px;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 25%, #fafeff 50%, #fef9f0 75%, #e6f4ea 100%);
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,115,232,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(52,168,83,0.1) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation: floatShape 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation: floatShape 10s ease-in-out infinite 3s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a73e8' fill-opacity='0.018'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
  animation: fadeDown 0.8s ease both;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--telegram));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.logo-icon.small {
  width: 26px; height: 26px; font-size: 11px;
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 2.5px;
}

.logo-divider {
  color: var(--border);
  font-size: 16px;
}

.logo-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeUp 0.9s ease 0.35s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.9s ease 0.5s both;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 8px 32px;
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.65s both;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 20px;
  animation: bounce 2.2s infinite;
  opacity: 0.6;
}

/* ========================
   BUTTONS
   ======================== */
.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--telegram), #00aaff);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0,136,204,0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-telegram:hover {
  background: linear-gradient(135deg, var(--telegram-dark), var(--telegram));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,136,204,0.45);
  color: #fff;
  text-decoration: none;
}

.btn-telegram.large { padding: 17px 38px; font-size: 16px; }
.btn-telegram.footer-btn { padding: 12px 22px; font-size: 14px; }

.btn-telegram.secondary {
  background: linear-gradient(135deg, #5865f2, #7b68ee);
  box-shadow: 0 6px 20px rgba(88,101,242,0.3);
}
.btn-telegram.secondary:hover {
  background: linear-gradient(135deg, #4752c4, #5865f2);
  box-shadow: 0 10px 28px rgba(88,101,242,0.42);
}

.btn-telegram-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--telegram);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: 2.5px solid var(--telegram);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-telegram-outline:hover {
  background: var(--telegram-light);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--telegram-dark);
}

.btn-telegram-outline.large { padding: 16px 36px; font-size: 16px; }

.pulse { animation: pulseGlow 2.5s infinite; }

/* ========================
   LETTER SECTION
   ======================== */
.section-letter {
  padding: 90px 0 80px;
  background: var(--bg-white);
}

.letter-wrapper {
  background: linear-gradient(145deg, #fffdf7, #fff9f0, #f9faff);
  border: 1px solid #f0e6c8;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.letter-wrapper::before {
  content: '❝';
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  font-family: Georgia, serif;
}

.letter-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.letter-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold-light), #fde68a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.letter-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-dark);
  font-weight: 700;
}

.letter-body p {
  font-size: clamp(0.97rem, 1.7vw, 1.07rem);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.letter-bold {
  font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
  font-weight: 700;
  color: var(--text-dark) !important;
  font-style: italic;
  padding: 18px 24px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  margin: 24px 0 !important;
}

.letter-signature {
  margin-top: 36px;
  padding-top: 24px;
}

.sig-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 12px;
}

.letter-signature span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
}

/* ========================
   ANNOUNCEMENT BANNER
   ======================== */
.section-announcement {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--accent-light), #d1fae5);
}

.announce-badge {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg-white);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.announce-icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--accent), #2d9b4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(52,168,83,0.38);
}

.announce-text h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.announce-text p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================
   REFUND TABLE
   ======================== */
.section-refunds {
  padding: 88px 0;
  background: var(--bg-main);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.07rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  background: var(--bg-white);
  border: 1px solid var(--border);
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.refund-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.refund-table thead th {
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.refund-table thead th i { margin-right: 7px; opacity: 0.75; }

.refund-table tbody tr {
  border-bottom: 1px solid #f0f4ff;
  transition: background 0.2s ease;
}

.refund-table tbody tr:last-child { border-bottom: none; }
.refund-table tbody tr:hover { background: var(--bg-soft); }
.refund-table tbody tr:nth-child(even) { background: #fafbff; }
.refund-table tbody tr:nth-child(even):hover { background: var(--bg-soft); }

.refund-table td {
  padding: 15px 22px;
  color: var(--text-body);
  font-size: 13.5px;
  word-break: break-word;
}

.refund-table td:nth-child(2) {
  font-weight: 600;
  color: var(--text-dark);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-light);
  color: #166534;
  padding: 4px 13px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid #86efac;
  white-space: nowrap;
}

.table-note {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.6;
}

.table-note i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
}

/* ========================
   EMOTIONAL CARDS
   ======================== */
.section-emotional {
  padding: 88px 0;
  background: var(--bg-white);
}

.emotional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 24px;
}

.emotion-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.emotion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.emotion-card:nth-child(1):hover { background: linear-gradient(145deg, #fff0f0, #fff5f5); }
.emotion-card:nth-child(2):hover { background: linear-gradient(145deg, #fffdf0, #fff9e6); }
.emotion-card:nth-child(3):hover { background: linear-gradient(145deg, #f0fdf4, #e6f9ec); }

.emotion-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
}

.emotion-card:nth-child(1) .emotion-icon { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #e11d48; }
.emotion-card:nth-child(2) .emotion-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: var(--gold); }
.emotion-card:nth-child(3) .emotion-icon { background: linear-gradient(135deg, var(--accent-light), #bbf7d0); color: var(--accent); }

.emotion-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.emotion-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ========================
   RECOVERY PLAN
   ======================== */
.section-plan {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-main) 100%);
}

.plan-steps {
  max-width: 820px;
  margin: 0 auto 48px;
}

.plan-step {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.plan-step:last-child { border-bottom: none; }

.plan-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 70px;
  bottom: -34px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(26,115,232,0.35), transparent);
  z-index: 0;
}
.plan-step:last-child::before { display: none; }

.step-number {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(26,115,232,0.3);
  position: relative;
  z-index: 1;
}

.step-content { flex: 1; padding-top: 8px; }

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.plan-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding-top: 12px;
}

/* ========================
   YOUR ROLE SECTION
   ======================== */
.section-your-role {
  padding: 88px 0;
  background: linear-gradient(135deg, #fdf4ff 0%, #f5f0ff 50%, #eff6ff 100%);
}

.role-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.role-header {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.role-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.role-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.role-body {
  padding: 44px 48px;
}

.role-body p {
  font-size: clamp(0.97rem, 1.7vw, 1.07rem);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.role-callout {
  background: linear-gradient(135deg, #f5f0ff, #ede9fe);
  border: 1px solid #c4b5fd;
  border-left: 4px solid #7c3aed;
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-top: 8px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.role-callout i {
  color: #7c3aed;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.role-callout p {
  font-size: 15px !important;
  color: #4c1d95 !important;
  font-style: italic;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

/* ========================
   CTA SECTION
   ======================== */
.section-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 40%, #e3f4fd 100%);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,115,232,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,136,204,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-icon-big {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 24px;
  opacity: 0.85;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.2;
}

.cta-text {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.85;
}

.cta-subtext {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}

.cta-disclaimer {
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 600;
  opacity: 0.8;
  font-style: italic;
}

/* ========================
   CLOSING SECTION
   ======================== */
.section-closing {
  padding: 88px 0;
  background: var(--bg-white);
}

.closing-card {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.closing-icon {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 28px;
  opacity: 0.75;
}

.closing-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  color: var(--text-dark);
  line-height: 1.9;
  font-style: italic;
  padding: 44px 48px;
  background: linear-gradient(145deg, var(--bg-soft), var(--primary-light));
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.closing-sig {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sig-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #fecdd3, #ffe4e6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #e11d48;
}

.closing-tg-wrap {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.closing-tg-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.closing-tg-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, #0f172a, #1a1a2e);
  color: #fff;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 34px;
  font-style: italic;
  font-family: var(--font-serif);
}

.footer-telegram-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 12.5px;
  letter-spacing: 0.3px;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,136,204,0.35); }
  50% { box-shadow: 0 8px 38px rgba(0,136,204,0.65), 0 0 0 10px rgba(0,136,204,0.08); }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-row {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-row.visible { opacity: 1; transform: translateX(0); }

/* ========================
   UPLINE URGENCY BLOCK
   ======================== */
.upline-urgent {
  margin-top: 32px;
  background: linear-gradient(135deg, #fff7ed, #fff1e0);
  border: 2px solid #f97316;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(249,115,22,0.18);
}

.upline-urgent-header {
  background: linear-gradient(135deg, #ea580c, #f97316);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.upline-fire {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  animation: fireFlicker 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.upline-urgent-header h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.upline-urgent-body {
  padding: 32px;
}

.upline-urgent-body > p {
  font-size: 15.5px;
  color: #7c2d12;
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 500;
}

.upline-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.upline-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 16px 20px;
}

.ustep-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(249,115,22,0.35);
}

.ustep-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ustep-text strong {
  font-size: 14.5px;
  font-weight: 800;
  color: #7c2d12;
}

.ustep-text span {
  font-size: 13.5px;
  color: #9a3412;
  font-style: italic;
}

.upline-tg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@keyframes fireFlicker {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50% { transform: scale(1.1) rotate(3deg); }
}

/* ========================
   GOAL META ROW
   ======================== */
.goal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 13.5px;
}

.goal-count-label {
  font-weight: 600;
  color: var(--text-muted);
}

.goal-count-num {
  font-weight: 800;
  color: var(--text-dark);
}

.goal-count-num.goal-remaining {
  color: #b45309;
}

.goal-count-sep {
  color: var(--border);
  font-size: 16px;
}

.goal-urgent-note {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1.5px solid #fde68a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  color: #92400e;
  font-weight: 600;
  line-height: 1.6;
}

.goal-urgent-note i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
}

/* ========================
   XPROBOT LIFETIME SECTION
   ======================== */
.section-lifetime {
  padding: 96px 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 40%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.section-lifetime::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-lifetime::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,136,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lifetime-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lifetime-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.25);
  border: 1.5px solid rgba(167,139,250,0.4);
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.lifetime-badge i {
  font-size: 14px;
  color: #a78bfa;
}

.lifetime-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lifetime-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.85;
}

.lifetime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.lifetime-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.lifetime-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.lc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.lifetime-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.lifetime-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.lifetime-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(79,70,229,0.2));
  border: 1.5px solid rgba(167,139,250,0.35);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
}

.lifetime-highlight i {
  color: #fbbf24;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lifetime-highlight p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e0e7ff;
  line-height: 1.8;
  font-style: italic;
}

/* ========================
   RECOVERY PROMISE SECTION
   ======================== */
.section-promise {
  padding: 96px 0;
  background: linear-gradient(135deg, #fff0f9 0%, #fdf4ff 50%, #f0f9ff 100%);
}

.promise-wrapper {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.promise-icon {
  font-size: 60px;
  color: #e11d48;
  margin-bottom: 24px;
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}

.promise-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.promise-text {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.promise-update-box {
  background: var(--bg-white);
  border: 1.5px solid #e879f9;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  text-align: left;
}

.pub-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pub-dot {
  width: 12px; height: 12px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0.1); }
}

.pub-header h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  color: var(--text-dark);
}

.promise-update-box > p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
}

.pub-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pub-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 28px;
  background: var(--accent-light);
  border: 1.5px solid #a7f3d0;
  border-radius: var(--radius);
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.pub-stat.accent {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-color: #7dd3fc;
}

.pub-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.pub-stat.accent .pub-stat-num {
  color: var(--primary);
}

.pub-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================
   CTA LAST TIME BADGE & BOX
   ======================== */
.cta-last-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(245,158,11,0.25);
}

.cta-last-time-badge i {
  color: #f97316;
  animation: fireFlicker 1.5s ease-in-out infinite;
}

.cta-impossible-box {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border: 2px solid #f59e0b;
  border-radius: var(--radius);
  padding: 24px 32px;
  margin: 20px 0 24px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.15);
}

.cta-impossible-box p {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: #7c2d12;
  font-weight: 600;
  line-height: 1.85;
  font-style: italic;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 860px) {
  .role-header { padding: 32px 28px; }
  .role-body { padding: 32px 28px; }
  .letter-wrapper { padding: 36px 28px; }
  .lifetime-highlight { padding: 22px 24px; }
  .promise-update-box { padding: 28px 24px; }
  .upline-urgent-body { padding: 24px; }
  .cta-impossible-box { padding: 20px 22px; }
}

@media (max-width: 680px) {
  .hero-stats { padding: 16px 20px; gap: 0; }
  .hero-stat { padding: 8px 16px; }
  .stat-num { font-size: 1.8rem; }
  .stat-divider { height: 36px; }
  .announce-badge { flex-direction: column; text-align: center; padding: 28px 24px; }
  .plan-step { flex-direction: column; gap: 14px; }
  .plan-step::before { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .closing-quote p { padding: 28px 24px; }
  .logo-sub { display: none; }
  .logo-divider { display: none; }
  .upline-step { flex-direction: column; gap: 10px; }
  .upline-tg-row { flex-direction: column; }
  .lifetime-grid { grid-template-columns: 1fr; }
  .goal-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .goal-count-sep { display: none; }
  .pub-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .section-letter, .section-announcement, .section-refunds,
  .section-emotional, .section-plan, .section-your-role,
  .section-cta, .section-closing,
  .section-lifetime, .section-promise {
    padding: 64px 0;
  }
  .btn-telegram.large, .btn-telegram-outline.large {
    padding: 14px 24px;
    font-size: 14.5px;
    width: 100%;
    justify-content: center;
  }
  .lang-bar { gap: 6px; }
  .upline-urgent-header { padding: 16px 20px; }
  .lifetime-card { padding: 24px 18px; }
  .cta-last-time-badge { font-size: 11px; padding: 7px 16px; }
}
