/* CSS Variables */
:root {
  /* ── Core colors ──────────────────────────────────────── */
  --primary: 217 91% 50%;          /* keep your nice blue */
  --primary-foreground: 0 0% 100%; /* white text on primary */
  --primary-dark: 217 91% 40%;
  --primary-light: 199 89% 60%;

  --secondary: 86 65% 50%;         /* keep green */
  --secondary-foreground: 0 0% 100%;

  /* ── Light theme foundation ───────────────────────────── */
  --background: 0 0% 98%;          /* almost white - very clean */
  --foreground: 222 47% 11%;       /* dark gray-blue for text */

  --card: 0 0% 100%;               /* pure white cards */
  --card-foreground: 222 47% 11%;

  --muted: 0 0% 92%;               /* very light gray */
  --muted-foreground: 215 16% 47%; /* softer medium gray for secondary text */

  --border: 0 0% 88%;              /* light gray borders */

  /* Keep your telegram & gradient colors as they were */
  --telegram: 199 100% 40%;
  --gradient-start: 217 91% 50%;
  --gradient-end: 199 89% 48%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary {
  color: hsl(var(--secondary));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.5);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: 1px solid hsl(var(--secondary));
  box-shadow: 0 4px 15px hsl(var(--secondary) / 0.4);
}

.btn-secondary:hover {
  background: hsl(86 65% 45%);
  border-color: hsl(86 65% 45%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--secondary) / 0.5);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--primary) / 0.5);
}

.btn-outline:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
}

.btn-telegram {
  background: hsl(var(--telegram));
  color: white;
  box-shadow: 0 4px 15px hsl(var(--telegram) / 0.4);
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--telegram) / 0.5);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-container {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
  color: hsl(var(--primary-foreground));
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-mobile {
  padding: 1rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile .nav-link {
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  top: -10%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: hsl(var(--primary) / 0.15);
}

.hero-blob-2 {
  bottom: -20%;
  left: -10%;
  width: 35rem;
  height: 35rem;
  background: hsl(var(--primary-light) / 0.1);
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--primary-light));
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
}

@media (min-width: 640px) {
  .hero-stats {
    gap: 3rem;
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.stat-divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: hsl(var(--border));
}

@media (min-width: 640px) {
  .stat-divider {
    display: block;
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary-light));
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Services Section */
.services {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .services {
    padding: 8rem 0;
  }
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px hsl(var(--primary) / 0.1);
}

.service-card.featured {
  border-color: hsl(var(--primary) / 0.5);
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--primary) / 0.05) 100%);
}

.featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.service-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  padding: 0.375rem 0;
}

.service-features svg {
  color: hsl(var(--secondary));
  flex-shrink: 0;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
}

@media (min-width: 1024px) {
  .features {
    padding: 8rem 0;
  }
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(var(--primary) / 0.2);
  box-shadow: 0 8px 24px hsl(var(--primary) / 0.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(86 65% 40%) 100%);
  box-shadow: 0 4px 12px hsl(var(--secondary) / 0.3);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.375rem;
}

.feature-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .pricing {
    padding: 8rem 0;
  }
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pricing-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: hsl(var(--primary));
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--primary) / 0.08) 100%);
  transform: scale(1.02);
}

@media (min-width: 1024px) {
  .pricing-card.popular {
    transform: scale(1.05);
  }
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

@media (min-width: 1024px) {
  .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
  }
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.pricing-features svg {
  color: hsl(var(--secondary));
  flex-shrink: 0;
}

/* Telegram CTA Section */
.telegram-cta {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .telegram-cta {
    padding: 8rem 0;
  }
}

.telegram-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.telegram-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.telegram-blob-1 {
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  background: hsl(var(--primary-light) / 0.3);
}

.telegram-blob-2 {
  bottom: 25%;
  right: 33%;
  width: 20rem;
  height: 20rem;
  background: hsl(var(--primary-foreground) / 0.1);
}

.telegram-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.telegram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: hsl(var(--telegram));
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: white;
  animation: float 3s ease-in-out infinite;
}

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

.telegram-title {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .telegram-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .telegram-title {
    font-size: 3rem;
  }
}

.telegram-description {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.telegram-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .telegram-stats {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.telegram-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.telegram-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary-foreground) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-light));
}

.telegram-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.telegram-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.social-link:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(var(--primary-light));
}

.footer-links svg {
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: hsl(var(--primary-light));
}

/* Floating Telegram Button */
.floating-telegram {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0;
}

.floating-telegram-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsl(var(--telegram) / 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.floating-telegram-btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsl(var(--telegram));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px hsl(var(--telegram) / 0.4);
  transition: all 0.3s ease;
}

.floating-telegram:hover .floating-telegram-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 20px hsl(var(--telegram) / 0.5);
}

.floating-telegram-tooltip {
  position: absolute;
  left: 4.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-telegram:hover .floating-telegram-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
