/* CSS Variables */
:root {
  --primary: 223 87% 23%;
  --primary-foreground: 0 0% 100%;
  --primary-dark: 223 87% 18%;
  
  --secondary: 178 52% 51%;
  --secondary-foreground: 0 0% 100%;
  --secondary-dark: 178 52% 40%;
  
  --background: 0 0% 100%;
  --foreground: 223 87% 15%;
  
  --card: 0 0% 100%;
  --card-foreground: 223 87% 15%;
  
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  
  --border: 220 13% 91%;
  
  --telegram: 200 100% 50%;
  
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn-primary:hover {
  background: hsl(var(--primary-dark));
  border-color: hsl(var(--primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(var(--primary) / 0.25);
}

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

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

.btn-ghost {
  background: transparent;
  color: hsl(var(--muted-foreground));
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
}

.btn-telegram {
  background: hsl(var(--telegram));
  color: white;
  border-color: hsl(var(--telegram));
}

.btn-telegram:hover {
  background: hsl(200 100% 45%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(var(--telegram) / 0.3);
}

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

.btn-block {
  width: 100%;
}

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

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

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

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

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

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

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

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

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

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: 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 1.25rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: hsl(var(--background));
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 6rem;
  }
  
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.15) 0%, transparent 70%);
}

.shape-2 {
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(var(--primary) / 0.1) 0%, transparent 70%);
}

.shape-3 {
  top: 30%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--muted));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.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.25rem;
  }
}

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

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

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

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 2rem 0;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.trust-avatars {
  display: flex;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  margin-left: -0.5rem;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:nth-child(2) {
  background: hsl(var(--secondary));
}

.avatar:nth-child(3) {
  background: hsl(223 60% 50%);
}

.avatar:nth-child(4) {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.trust-text {
  text-align: left;
}

.trust-rating {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Hero Visual */
.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.phone-mockup {
  width: 280px;
  margin: 0 auto;
  background: hsl(var(--foreground));
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px hsl(var(--primary) / 0.25);
}

.phone-screen {
  background: hsl(var(--background));
  border-radius: 2rem;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: hsl(var(--foreground));
  border-radius: 9999px;
}

.phone-icons {
  display: flex;
  gap: 4px;
}

.phone-content {
  padding: 0.75rem;
}

.msg-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: hsl(var(--muted));
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.msg-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
}

.msg-sms {
  background: hsl(var(--primary));
}

.msg-call {
  background: hsl(var(--secondary));
}

.msg-social {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
}

.msg-details {
  flex: 1;
}

.msg-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.msg-code {
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--secondary));
  letter-spacing: 0.1em;
}

.msg-subtitle {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.msg-time {
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
}

.msg-badge {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: hsl(var(--secondary));
  color: white;
  border-radius: 9999px;
}

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

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px hsl(var(--primary) / 0.15);
  animation: float 3s ease-in-out infinite;
}

.card-countries {
  top: 20%;
  right: -10%;
}

.card-uptime {
  bottom: 25%;
  left: -5%;
  animation-delay: 1.5s;
}

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

.floating-icon {
  font-size: 1.5rem;
}

.floating-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: hsl(var(--primary));
}

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

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

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

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

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

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

/* Services Section */
.services {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.5);
}

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

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

@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: 1.25rem;
  transition: all 0.3s ease;
}

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

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

.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: hsl(var(--secondary));
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-number {
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--muted) / 0.8);
  line-height: 1;
}

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

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

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

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

.check-icon {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: hsl(var(--secondary) / 0.15);
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  transform: translate(-50%, -50%);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

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

.features-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.features-content .section-tag,
.features-content .section-title,
.features-content .section-description {
  text-align: left;
}

.features-content .section-description {
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icon-alt {
  background: hsl(var(--secondary));
}

.feature-text h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.features-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 2rem 1.5rem;
  background: hsl(var(--primary));
  border-radius: 1.25rem;
  text-align: center;
  color: white;
}

.stat-card-alt {
  background: hsl(var(--secondary));
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.5);
}

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

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  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: 1.25rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 15px 40px hsl(var(--primary) / 0.1);
}

.pricing-card-popular {
  border-color: hsl(var(--primary));
  transform: scale(1.02);
}

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

.popular-tag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: hsl(var(--primary));
  color: white;
  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-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

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

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

.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));
}

.check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsl(var(--secondary) / 0.15);
  position: relative;
  flex-shrink: 0;
}

.check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  transform: translate(-50%, -50%);
}

/* Telegram CTA */
.telegram-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(223 70% 35%) 100%);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: white;
  border-radius: 1.25rem;
  color: hsl(var(--telegram));
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

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

.cta-description {
  font-size: 1.0625rem;
  color: hsl(0 0% 100% / 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: hsl(var(--foreground));
  color: white;
}

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

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

.footer-brand .logo-icon {
  background: linear-gradient(135deg, white 0%, hsl(var(--secondary)) 100%);
  color: hsl(var(--primary));
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: hsl(0 0% 100% / 0.6);
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(0 0% 100% / 0.5);
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-size: 0.9375rem;
  color: hsl(0 0% 100% / 0.8);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.5);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(0 0% 100% / 0.1);
  border-radius: 0.5rem;
  color: white;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: hsl(var(--secondary));
}

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

.telegram-float-inner {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(var(--telegram));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px hsl(var(--telegram) / 0.4);
  transition: all 0.3s ease;
}

.telegram-float:hover .telegram-float-inner {
  transform: scale(1.1);
  box-shadow: 0 12px 32px hsl(var(--telegram) / 0.5);
}

.telegram-float-text {
  display: none;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.1);
}

.telegram-float:hover .telegram-float-text {
  display: block;
}

@media (min-width: 768px) {
  .telegram-float {
    bottom: 2rem;
    left: 2rem;
  }
}