/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #1a2634;
  color: #ecf0f1;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(26, 38, 52, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.nav-link:hover {
  color: #e67e22;
}

.nav-link:focus,
.nav-link:active {
  outline: none;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.menu-toggle:focus,
.menu-toggle:active {
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-appearance: none;
}

.btn:focus,
.btn:active {
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #4a5a6e;
  color: #bdc3c7;
}

.btn-outline {
  background: transparent;
  border: 2px solid #e67e22;
  color: #e67e22;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: linear-gradient(180deg, rgba(26, 38, 52, 0) 0%, #1a2634 100%),
              radial-gradient(circle at 50% 0%, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hero-content {
  width: 100%;
  padding-top: 20px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #bdc3c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: #e67e22;
  -webkit-text-fill-color: #e67e22;
}

.hero-description {
  font-size: 1.25rem;
  color: #bdc3c7;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-features {
  list-style: none;
  margin-bottom: 40px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.hero-features li svg {
  stroke: #e67e22;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #bdc3c7;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Upload Zone */
.hero-uploader {
  width: 100%;
}

.upload-zone {
  background: rgba(30, 40, 55, 0.8);
  border-radius: 16px;
  padding: 10px;
  border: 2px dashed #4a5a6e;
  transition: all 0.3s;
  position: relative;
}

.upload-zone.dragover {
  border-color: #e67e22;
  background: rgba(30, 40, 55, 0.9);
}

.upload-area {
  text-align: center;
  padding: 30px 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.upload-area:focus {
  outline: none;
}

.upload-icon {
  margin-bottom: 15px;
  font-size: 48px;
}

.upload-icon svg {
  stroke: #e67e22;
}

.upload-area h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}

.upload-area p {
  color: #bdc3c7;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.upload-note {
  font-size: 0.8rem;
  color: #e67e22;
  margin-top: 10px;
}

.image-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.image-preview-wrap {
  container-type: inline-size;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-preview-wrap .image-preview {
  max-height: 100cqw;
}

.image-preview img {
  max-width: 100%;
  max-height: 100cqw;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.btn-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Processing Overlay (обновлённый) */
.processing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 12px;
}

.processing-content {
  text-align: center;
  color: white;
  max-width: 90%;
}

.processing-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.progress-ring-bg {
  stroke: #4a5a6e;
  fill: transparent;
}

.progress-ring-fg {
  stroke: #e67e22;
  fill: transparent;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.5s;
}

.processing-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.processing-percent {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.processing-status {
  font-size: 1.1rem;
  color: #e67e22;
  font-weight: 500;
}

.processing-details {
  font-size: 1rem;
  color: #bdc3c7;
  margin-top: 5px;
}

/* Style Selector */
.style-selector {
  background: rgba(30, 40, 55, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.style-selector h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #fff;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.style-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  color: #bdc3c7;
}

.style-btn:focus,
.style-btn:active {
  outline: none;
}

.style-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #e67e22;
}

.style-btn.active {
  background: rgba(230, 126, 34, 0.2);
  border-color: #e67e22;
  color: #fff;
}

.style-btn span {
  font-size: 0.90rem;
  color: inherit;
  text-align: center;
  line-height: 1.2;
}

/* Breast Slider */
.breast-slider {
  margin-top: 20px;
}

.breast-slider label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-size: 0.95rem;
}

.slider-container {
  position: relative;
  height: 40px;
}

.slider-container input[type="range"] {
  width: 100%;
  height: 6px;
  background: #4a5a6e;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.slider-container input[type="range"]:focus {
  outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: #e67e22;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.slider-labels span {
  font-size: 0.8rem;
  color: #bdc3c7;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 15px;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.slider-labels span:focus,
.slider-labels span:active {
  outline: none;
}

.slider-labels span.active {
  background: rgba(230, 126, 34, 0.2);
  color: #e67e22;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.action-buttons .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.9rem;
  min-height: 48px;
}

/* Quota */
.quota-info {
  background: rgba(30, 40, 55, 0.6);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.quota-bar {
  height: 6px;
  background: #4a5a6e;
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}

.quota-progress {
  height: 100%;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  border-radius: 3px;
  transition: width 0.5s;
}

.quota-info p {
  text-align: center;
  font-size: 0.85rem;
  color: #bdc3c7;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #bdc3c7;
}

.trust-item svg {
  fill: #e67e22;
}

/* Result Popup */
.result-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-content {
  background: linear-gradient(135deg, #2c3e50, #1a2634);
  border-radius: 16px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: white;
  border: 1px solid rgba(230, 126, 34, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.popup-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.popup-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 16px;
  color: #bdc3c7;
  margin-bottom: 20px;
  line-height: 1.5;
}

.popup-content .btn {
  margin: 5px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #bdc3c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #bdc3c7;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg {
  stroke: #e67e22;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}

.step p {
  color: #bdc3c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Examples */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.example-card {
  background: rgba(30, 40, 55, 0.6);
  border-radius: 15px;
  overflow: hidden;
}

.example-comparison {
  position: relative;
  height: 300px;
}

.example-before,
.example-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.example-before {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.example-comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-label {
  position: absolute;
  top: 15px;
  padding: 5px 15px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.example-before .example-label {
  left: 15px;
}

.example-after .example-label {
  right: 15px;
}

.example-description {
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #bdc3c7;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: rgba(30, 40, 55, 0.6);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  fill: #e67e22;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.benefit-card p {
  color: #bdc3c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: rgba(30, 40, 55, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid #e67e22;
  background: rgba(30, 40, 55, 0.8);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e67e22;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 1rem;
  color: #bdc3c7;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bdc3c7;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: #f39c12;
  font-weight: bold;
}

.pricing-features li.disabled {
  color: #7f8c8d;
}

.pricing-features li.disabled::before {
  content: '×';
  color: #7f8c8d;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 20px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(30, 40, 55, 0.6);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.faq-question svg {
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: #bdc3c7;
  line-height: 1.6;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
  border-radius: 30px;
  margin: 80px 20px;
}

.cta-content {
  text-align: center;
  padding: 60px 40px;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-text {
  font-size: 1.2rem;
  color: #bdc3c7;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #e67e22;
}

/* Footer */
.footer {
  background: #111a24;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-description {
  color: #bdc3c7;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.social-link:hover {
  background: #e67e22;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #e67e22;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f8c8d;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 5px;
}

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

/* Navigation enhancements */
.header.scrolled {
  background: rgba(26, 38, 52, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
  color: #e67e22 !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  border-radius: 1px;
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(26, 38, 52, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .telegram-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    background: linear-gradient(135deg, #0088cc, #24a1de);
    color: white;
    border: none;
    height: 40px;
    text-decoration: none;
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }
  
  .telegram-text {
    font-size: 0.85rem;
  }
  
  .desktop-telegram {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-grid,
  .steps,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }
  
  .popup-content {
    padding: 20px;
  }

  /* Processing overlay mobile */
  .processing-circle {
    width: 80px;
    height: 80px;
  }
  .progress-ring {
    width: 80px;
    height: 80px;
  }
  .processing-percent {
    font-size: 1.5rem;
  }
  .processing-status {
    font-size: 1rem;
  }
  .processing-details {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .telegram-text {
    display: none;
  }
  
  .telegram-mobile-btn {
    width: 40px;
    padding: 6px;
    justify-content: center;
  }
}