/* ==========================================================================
   EmirFX Landing Page - Custom Premium Design System
   ========================================================================== */

/* 1. Reset and Variables */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  /* Color Palette */
  --bg-main: #0B1320;
  --bg-section: #101A2C;
  --bg-card-alt: #16243B;
  --color-gold: #D4A24C;
  --color-gold-hover: #E8BE6B;
  --color-gold-muted: rgba(212, 162, 76, 0.15);
  --color-text-primary: #FFFFFF;
  --color-text-muted: #A0A8B8;
  --color-success: #4CAF50;
  --color-success-bg: rgba(76, 175, 80, 0.08);
  --color-telegram: #24A1DE;
  --color-telegram-hover: #35B3ED;
  
  /* Light Theme Rhythm Break (Social Proof) */
  --bg-light: #F5F3EE;
  --color-text-light-primary: #1A1A2E;
  --color-text-light-muted: #5A6270;
  --color-card-light: #FFFFFF;
  --color-border-light: #E5E2D9;
  
  /* Fonts */
  --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 20px rgba(212, 162, 76, 0.15);
  --shadow-telegram: 0 4px 15px rgba(36, 161, 222, 0.25);
}

/* Fluid Typography */
h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem); /* Mobile: ~32-36px, Desktop: ~52-60px */
  line-height: 1.15;
  font-weight: 700;
  font-family: var(--font-heading);
}

h2 {
  font-size: clamp(1.625rem, 3vw + 0.875rem, 2.5rem); /* Mobile: ~26-30px, Desktop: ~36-40px */
  line-height: 1.25;
  font-weight: 700;
  font-family: var(--font-heading);
}

h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.5rem); /* Mobile: ~18-20px, Desktop: ~22-24px */
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--font-heading);
}

p, li {
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.125rem); /* Mobile: ~15-16px, Desktop: ~16-18px */
  line-height: 1.6;
  font-family: var(--font-body);
}

.micro-copy {
  font-size: clamp(0.75rem, 0.25vw + 0.6875rem, 0.875rem); /* Mobile: ~12-13px, Desktop: ~13-14px */
  line-height: 1.5;
  color: var(--color-text-muted);
}

.caption {
  font-size: clamp(0.75rem, 0.2vw + 0.7rem, 0.8125rem); /* Mobile: ~12px, Desktop: ~13px */
  font-style: italic;
  line-height: 1.4;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  background: radial-gradient(circle at 50% 0%, #16243B 0%, #0B1320 60%);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* General Layout Components */
section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
}

.gold-text {
  color: var(--color-gold);
}

.gold-italic {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 600;
  text-align: center;
  margin-top: 1.5rem;
  display: block;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-telegram);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem); /* Mobile: 16-18px, Desktop: 18-20px */
  padding: 18px 36px;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-telegram);
  width: auto;
  position: relative;
  overflow: hidden;
  gap: 12px; /* Space between logo and text */
}

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: var(--color-telegram-hover);
  box-shadow: 0 6px 20px rgba(36, 161, 222, 0.45);
}

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

.btn-primary:active {
  transform: translateY(1px) scale(1.0);
}

.btn-secondary-link {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px dashed var(--color-gold);
  padding-bottom: 2px;
}

.btn-secondary-link:hover {
  color: var(--color-gold-hover);
  border-bottom-color: var(--color-gold-hover);
  gap: 10px;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 55fr 40fr;
    gap: 60px;
  }
}

.hero-eyebrow {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--color-gold-muted);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(212, 162, 76, 0.3);
}

.hero-title {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-supporting {
  color: var(--color-text-muted);
  margin-bottom: 2.25rem;
}

.hero-cta-wrapper {
  margin-bottom: 1.5rem;
}

.hero-micro-copy {
  display: block;
  margin-top: 10px;
  color: var(--color-text-muted);
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-image-container {
    grid-row: 1; /* Move image above headline on mobile */
    max-width: 380px;
  }
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Fades the bottom of the image into the page background */
.hero-image-mask {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 65%, var(--bg-main) 100%);
  pointer-events: none;
}

/* Trust Bar (Hero Bottom) */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(15px, 3vw, 30px);
  padding: clamp(15px, 3vw, 25px);
  background: rgba(16, 26, 44, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .trust-bar {
    justify-content: flex-start;
  }
}

.trust-item-logo {
  height: clamp(24px, 3vw, 28px);
  width: auto;
  object-fit: contain;
}

.trust-divider {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
  display: none;
}

@media (min-width: 480px) {
  .trust-divider {
    display: inline;
  }
}

.trust-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--color-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* ==========================================================================
   2. PAIN POINTS SECTION
   ========================================================================== */
.pain-points {
  background-color: var(--bg-section);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem) auto;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 30px);
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-card {
  background-color: var(--bg-card-alt);
  border-radius: var(--border-radius-md);
  padding: clamp(25px, 4vw, 40px);
  border: 1px solid rgba(212, 162, 76, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background-color: transparent;
  transition: var(--transition-fast);
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 162, 76, 0.25);
  box-shadow: var(--shadow-gold);
}

.pain-card:hover::before {
  background-color: var(--color-gold);
}

.card-title-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.pain-card-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.pain-card h3 {
  font-weight: 700;
  color: var(--color-text-primary);
}

.pain-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   3. SOLUTION SECTION
   ========================================================================== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 40px);
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 35px);
  align-items: start;
  background: rgba(16, 26, 44, 0.2);
  padding: 25px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.step-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.8;
}

.step-content h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.step-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Pull Quote Block */
.pull-quote-block {
  background-color: var(--bg-card-alt);
  border-radius: var(--border-radius-lg);
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(212, 162, 76, 0.15);
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.75rem, 1.875rem); /* Mobile: ~20px, Desktop: ~30px */
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: left;
}

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

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.credibility-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stamp-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stamp-logo {
  height: 24px;
  width: auto;
}

.stamp-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   4. SOCIAL PROOF SECTION (LIGHT CREAM THEME)
   ========================================================================== */
.social-proof {
  background-color: var(--bg-light);
  color: var(--color-text-light-primary);
  border-top: none;
  border-bottom: none;
  position: relative;
}

.social-proof .section-header p {
  color: var(--color-text-light-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 4.5rem;
}

@media (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--color-card-light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.04);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-text-light-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-meta {
  border-top: 1px solid var(--color-border-light);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-success);
  background-color: rgba(76, 175, 80, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Real Member Conversations Grid */
.chats-wrapper {
  margin-bottom: 5rem;
}

.chats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--color-border-light);
  padding-bottom: 15px;
}

.chats-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  color: var(--color-text-light-muted);
  text-transform: uppercase;
}

.chats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .chats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.chat-card {
  background-color: var(--color-card-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.05);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.chat-card:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 50px rgba(26, 26, 46, 0.1);
}

.chat-img-wrapper {
  position: relative;
  width: 100%;
}

.chat-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.chat-caption-box {
  padding: 20px;
  background-color: var(--color-card-light);
  border-top: 1px solid var(--color-border-light);
}

.chat-caption-box p {
  color: var(--color-text-light-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.chat-caption-box span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 6px;
  display: block;
  font-size: 0.85rem;
}

/* KPI TILES */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 992px) {
  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kpi-tile {
  background-color: var(--color-card-light);
  border-radius: var(--border-radius-md);
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.03);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-smooth);
}

.kpi-tile:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.kpi-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light-muted);
}

/* ==========================================================================
   5. FAQ SECTION (ACCORDION WITH MUTUAL DISCLOSURE DETAILS)
   ========================================================================== */
.faq-accordion-group {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-card {
  background-color: var(--bg-section);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card[open] {
  border-color: rgba(212, 162, 76, 0.3);
  box-shadow: var(--shadow-gold);
}

.faq-card summary {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none; /* Hides default HTML chevron */
  outline: none;
  user-select: none;
}

.faq-card summary::-webkit-details-marker {
  display: none; /* Hides Safari chevron */
}

.faq-card summary h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1vw + 0.8rem, 1.25rem); /* Mobile: ~18px, Desktop: ~20px */
  font-weight: 700;
  color: var(--color-text-primary);
}

.faq-chevron {
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 30px 24px 30px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 15px;
}

.faq-inline-btn {
  margin-top: 15px;
  display: flex;
}

/* ==========================================================================
   6. CALL TO ACTION SECTION
   ========================================================================== */
.cta-section {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
}

.pre-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 18px 6px 8px;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.pre-cta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  object-fit: cover;
}

.pre-cta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.cta-title {
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.cta-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.cta-button-container {
  margin-bottom: 1.5rem;
}

.cta-secondary-container {
  margin-bottom: 3rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto 3rem auto;
  text-align: left;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.checklist-icon {
  color: var(--color-success);
  flex-shrink: 0;
}

.cta-quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1vw + 0.8rem, 1.25rem);
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-top: 2rem;
  display: inline-block;
  border-left: 2px solid var(--color-gold);
  padding-left: 15px;
}

/* ==========================================================================
   7. FOOTER SECTION
   ========================================================================== */
footer {
  background-color: #060B12;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 2rem;
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(1);
  transition: var(--transition-fast);
}

.footer-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.8rem;
  color: rgba(160, 168, 184, 0.6);
  line-height: 1.7;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(160, 168, 184, 0.4);
}

/* ==========================================================================
   8. MOBILE STICKY FLOATING CTA BUTTON
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease;
  display: block;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.btn-sticky {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-telegram);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-telegram);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.btn-sticky:hover {
  background-color: var(--color-telegram-hover);
  box-shadow: 0 8px 25px rgba(36, 161, 222, 0.5);
  transform: translateY(-2px) scale(1.02);
}

/* Hide on desktop, show only on mobile/tablet */
@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}
