/* SkillPro AC - Modern Dark Theme */

:root {
  --bg: #0f1220;
  --bg-2: #13162a;
  --panel: #14172a;
  --card: #181b33;
  --card-hover: #1c1f3a;
  --text: #e6e7ef;
  --text-muted: #9aa0b5;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --accent-light: #a78bfa;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --teal: #14b8a6;
  --success: #10b981;
  --border: #232648;
  --border-light: #2b3054;
}

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

html {
  background: var(--bg);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 250px;
  padding-right: 250px;
}

@media (max-width: 1024px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
  
  body::before,
  body::after {
    display: none !important;
  }
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ===== STICKY HEADER ===== */
.sticky-header {
  position: fixed;
  top: -100px;
  left: 250px;
  right: 250px;
  background: rgba(15, 18, 32, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  z-index: 1000;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: 0 0 12px 12px;
}

.sticky-header.visible {
  top: 0;
}

.sticky-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-logo {
  display: flex;
  align-items: center;
}

.sticky-logo-img {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}

.sticky-logo-img:hover {
  transform: scale(1.05);
}

.sticky-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.sticky-phone:hover {
  color: var(--accent-light);
}

.sticky-phone i {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
}

.sticky-cta {
  padding: 10px 20px !important;
  font-size: 15px !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
  
  body::before,
  body::after {
    display: none;
  }
  
  .wrap {
    padding: 0 20px;
  }
  
  .sticky-header {
    left: 0;
    right: 0;
  }
  
  .sticky-phone span {
    display: none;
  }
  
  .sticky-cta {
    padding: 10px 16px !important;
    font-size: 14px !important;
  }
  
  .sticky-logo-img {
    height: 28px;
  }
  
  /* Компактнее на планшетах */
  h1 {
    font-size: 36px;
  }
  
  .btn, button {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .sticky-header {
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(180deg, rgba(15, 18, 32, 0.6) 0%, rgba(15, 18, 32, 0.5) 100%),
    url('/static/images/hero-illustration.jpg') center/cover no-repeat,
    radial-gradient(1400px 700px at 50% -60%, #2a2f59 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -80px 100px -50px rgba(15, 18, 32, 0.7);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0.3;
}

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

.badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.upload-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  animation: counterGlow 3s ease-in-out infinite;
}

.upload-counter i {
  width: 16px;
  height: 16px;
}

.upload-counter span {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-light);
}

@keyframes counterGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  }
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 20px;
  color: #d7d9ed;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.sub b {
  color: var(--accent-light);
  font-weight: 600;
}

.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-badges i {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: #1a1d36;
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn:hover {
  border-color: #50568a;
  transform: translateY(-2px);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 
    0 8px 24px rgba(124, 58, 237, 0.4),
    0 4px 12px rgba(6, 182, 212, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transform: translateY(0) scale(1);
}

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

.btn.primary:hover::before {
  left: 100%;
}

.btn.primary:hover {
  box-shadow: 
    0 12px 32px rgba(124, 58, 237, 0.6),
    0 6px 16px rgba(6, 182, 212, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
}

.btn.ghost:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--accent);
}

.btn.secondary {
  background: #241a44;
  border-color: var(--accent);
  color: #c7b5ff;
}

.btn.wide {
  width: 100%;
  margin-top: 16px;
}

.btn i {
  width: 18px;
  height: 18px;
}

.icon-btn {
  min-width: 52px;
  height: 52px;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-btn:hover {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.1);
}

.icon-btn:active {
  transform: scale(0.95);
}

.icon-btn i {
  width: 20px;
  height: 20px;
}

/* Voice input active state */
#micBtn.recording {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  animation: micPulse 1.5s ease-in-out infinite;
}

@keyframes micPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
  padding: 24px;
}

/* Адаптивность цифр и иконок */
@media (max-width: 1200px) {
  .step-number {
    font-size: 28px;
  }
  .step-icon {
    width: 100px;
    height: 100px;
  }
  .step-icon i {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 900px) {
  .step-number {
    font-size: 24px;
  }
  .step-icon {
    width: 80px;
    height: 80px;
  }
  .step-icon i {
    width: 36px;
    height: 36px;
  }
}

.step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(124, 58, 237, 0.4),
    0 0 60px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.step-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.step:hover .step-icon::before {
  opacity: 0.6;
}

.step:hover .step-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(124, 58, 237, 0.5),
    0 0 80px rgba(124, 58, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-icon i {
  width: 56px;
  height: 56px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ЦИФРЫ - маленькие, белые, БЕЗ фона */
.step-number {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 8px;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* Services */
.services {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.services > .wrap {
  position: relative;
  z-index: 1;
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 16px 40px rgba(124, 58, 237, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card i {
  width: 48px;
  height: 48px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Cards */
main {
  padding: 60px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

.card-header i {
  width: 28px;
  height: 28px;
  color: var(--accent-light);
}

.card-header h2 {
  font-size: 24px;
  margin: 0;
  color: var(--text);
}

.muted {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Forms */
.inline-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.inline-form input {
  flex: 1;
  min-width: 240px;
}

label {
  display: block;
  margin: 20px 0 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #0f1226;
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

input::placeholder, textarea::placeholder {
  color: #737aa2;
}

/* Select optgroup styling */
select optgroup {
  font-weight: 700;
  color: var(--accent-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

select option {
  padding: 8px;
  color: var(--text);
}

/* Better mobile select appearance */
@media (max-width: 768px) {
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 16px;
  }
  
  input[type="tel"],
  input[type="email"] {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

textarea {
  min-height: 100px;
  resize: vertical;
}

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

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

.row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.row textarea {
  flex: 1;
}

/* File Uploader */
.uploader {
  border: 2px dashed var(--border-light);
  border-radius: 16px;
  padding: 24px;
  background: #11152a;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.uploader:hover {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.05);
}

.previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.preview {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  background: #0f1226;
  aspect-ratio: 1;
}

.preview img, .preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview .del {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preview .del:hover {
  background: #ef4444;
  border-color: #ef4444;
}

/* Result */
.result {
  margin-top: 24px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #121633, #0e1229);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result h3 {
  color: var(--accent-light);
  margin-bottom: 12px;
}

.result p {
  margin: 12px 0;
  color: var(--text-muted);
}

.result b {
  color: var(--text);
}

.note {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-light);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-question i {
  width: 24px;
  height: 24px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.faq-answer {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-left: 36px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Footer */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-section p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section i {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom small {
  color: #737aa2;
  font-size: 13px;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 18px;
  }

  .cta {
    flex-direction: column;
    width: 100%;
  }

  .cta .btn {
    width: 100%;
  }

  .trust-badges {
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .how-it-works, .services {
    padding: 48px 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 24px;
  }

  .previews {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Logo Placeholder */
.logo-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  animation: logoFloat 4s ease-in-out infinite;
}

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

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 8px 24px rgba(124, 58, 237, 0.4)) 
            drop-shadow(0 0 40px rgba(6, 182, 212, 0.2));
  }
  50% {
    filter: drop-shadow(0 12px 32px rgba(124, 58, 237, 0.6)) 
            drop-shadow(0 0 60px rgba(6, 182, 212, 0.4));
  }
}

.logo-image {
  max-width: 350px;
  height: auto;
  animation: logoGlow 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  animation: logoGlow 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(28px, 4.5vw, 48px) !important;
  margin: 16px 0 8px !important;
}

/* Button Sizes */
.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Service Images */
.service-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.service-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(6, 182, 212, 0.7));
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card:hover .service-img::before {
  opacity: 0.6;
}

.service-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overlay i {
  width: 64px;
  height: 64px;
  color: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Service Image Placeholders (legacy) */
.service-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.service-img-placeholder i {
  width: 56px;
  height: 56px;
  color: var(--accent-light);
}

/* 3 Steps Layout */
.steps-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* ЦИФРЫ БЕЗ ОРАНЖЕВОГО ФОНА - переопределяем десктопные стили */
.step-number {
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  display: block;
  font-weight: 700;
  font-size: 32px;
  color: white;
  box-shadow: none !important;
  border: none !important;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  text-align: center;
}

.step-number::before {
  display: none !important;
}

.step:hover .step-number {
  transform: none !important;
  box-shadow: none !important;
}

.step:hover .step-number::before {
  display: none !important;
}

.step {
  position: relative;
  padding: 40px 24px 28px;
  background: rgba(124, 58, 237, 0.03);
  border-radius: 20px;
  border: 2px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-8px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(251, 191, 36, 0.15);
}

.step h3 {
  font-size: 22px;
}

/* File Upload Info */
.file-upload-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 0 4px;
}

.file-counter {
  font-weight: 700;
  color: var(--accent-light);
  font-size: 14px;
}

.file-hint {
  color: var(--text-muted);
  font-size: 13px;
}

/* Upload Progress */
.upload-progress {
  margin-top: 16px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 999px;
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  width: 28px;
  height: 28px;
  color: white;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 
                0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float i {
    width: 24px;
    height: 24px;
  }
}

/* Sticky Action Bar (Mobile) */
.sticky-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.sticky-btn i {
  width: 24px;
  height: 24px;
}

.sticky-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  border: none;
}

.sticky-btn.secondary {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-light);
  border: 1px solid var(--accent);
}

@media (max-width: 768px) {
  .sticky-action-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .steps-3 {
    grid-template-columns: 1fr;
  }
}

/* Operator Panel Styles */
.ops-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.ops-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ops-nav h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin: 0;
}

.ops-nav h1 i {
  width: 28px;
  height: 28px;
  color: var(--accent-light);
}

.button-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.link-output {
  margin-top: 24px;
  padding: 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #10b981;
}

.success-message i {
  width: 28px;
  height: 28px;
}

.success-message h3 {
  margin: 0;
  color: #10b981;
}

.link-box {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.link-box input {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  background: #0f1226;
}

.recent-links {
  margin-top: 16px;
}

.recent-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
}

.link-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-info strong {
  color: var(--text);
}

.link-info .phone {
  color: var(--text-muted);
  font-size: 14px;
}

.link-info .time {
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
}

.link-actions {
  display: flex;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-state i {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat-card {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  width: 24px;
  height: 24px;
  color: #fff;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
  margin: 8px 0;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
}

/* Hero Background Placeholder */
.hero-bg-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15), transparent 50%),
    linear-gradient(135deg, #13162a 0%, #0f1220 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}


.hero-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(124, 58, 237, 0.03) 50px,
      rgba(124, 58, 237, 0.03) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(6, 182, 212, 0.03) 50px,
      rgba(6, 182, 212, 0.03) 51px
    );
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  z-index: 1;
}

.hero {
  position: relative;
}

.hero .wrap,
.hero-content {
  position: relative;
  z-index: 2;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.gallery-section > .wrap {
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  margin: -32px auto 48px;
  max-width: 600px;
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, 
    rgba(124, 58, 237, 0.1) 0%, 
    rgba(6, 182, 212, 0.1) 100%);
  border: 2px dashed rgba(124, 58, 237, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, 
    rgba(124, 58, 237, 0.1) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-placeholder::before {
  opacity: 1;
}

.gallery-item:hover .gallery-placeholder {
  border-color: var(--cyan);
  background: linear-gradient(135deg, 
    rgba(124, 58, 237, 0.15) 0%, 
    rgba(6, 182, 212, 0.15) 100%);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 60px rgba(6, 182, 212, 0.1);
}

.gallery-placeholder i {
  width: 48px;
  height: 48px;
  color: var(--accent-light);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder i {
  transform: scale(1.2);
  opacity: 1;
  color: var(--cyan-light);
}

.gallery-placeholder span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section > .wrap {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(124, 58, 237, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 
    0 20px 48px rgba(124, 58, 237, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-avatar-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 24px rgba(124, 58, 237, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar-placeholder {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 32px rgba(124, 58, 237, 0.5),
    0 0 40px rgba(6, 182, 212, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonial-avatar-placeholder i {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.testimonial-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-author strong {
  color: var(--accent-light);
  font-weight: 600;
}

/* Responsive for Gallery and Testimonials */
@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .gallery-section,
  .testimonials-section {
    padding: 48px 0;
  }
}

/* ===== SIDE BACKGROUND IMAGES ===== */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  width: 250px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 0;
  background-image: 
    linear-gradient(
      to right,
      rgba(15, 18, 32, 0.4) 0%,
      rgba(15, 18, 32, 0.2) 60%,
      transparent 100%
    ),
    url('/static/images/side-left.jpg');
}

body::after {
  right: 0;
  background-image: 
    linear-gradient(
      to left,
      rgba(15, 18, 32, 0.4) 0%,
      rgba(15, 18, 32, 0.2) 60%,
      transparent 100%
    ),
    url('/static/images/side-right.jpg');
}

/* Content positioning */
header, section, main, footer {
  position: relative;
  z-index: 1;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-us {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.why-us > .wrap {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 
    0 20px 48px rgba(124, 58, 237, 0.3),
    0 8px 24px rgba(6, 182, 212, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 12px 32px rgba(124, 58, 237, 0.4),
    0 6px 16px rgba(6, 182, 212, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  width: 36px;
  height: 36px;
  color: white;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS WITH INITIALS ===== */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.avatar-initials {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== GALLERY REAL IMAGES ===== */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.4);
}

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

.section-title,
.section-subtitle,
.feature-card,
.service-card,
.testimonial-card,
.gallery-item {
  animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Why Us */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-us {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
  
  body::before,
  body::after {
    display: none; /* Убираем боковые картинки на мобильных */
  }
  
  .wrap {
    padding: 0 16px !important; /* Нормальные отступы */
  }
  
  /* Контейнеры форм - без дополнительных отступов */
  .upload-form,
  .quote-form {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Компактный заголовок */
  h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }
  
  h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  
  .section-title {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
  }
  
  .section-subtitle {
    margin-top: 12px !important;
    margin-bottom: 24px !important;
    padding-top: 4px !important;
  }
  
  h3 {
    font-size: 18px !important;
  }
  
  /* РАДИКАЛЬНО компактные кнопки */
  .btn, button, .cta-button {
    padding: 10px 16px !important;
    font-size: 13px !important;
    min-height: 42px !important;
    line-height: 1.2 !important;
  }
  
  .btn i, button i {
    width: 14px !important;
    height: 14px !important;
  }
  
  /* Поле голосового ввода - НА ВСЮ ШИРИНУ */
  textarea, 
  textarea[name="notes"],
  .voice-input-container textarea,
  textarea[placeholder*="Describe"] {
    min-height: 240px !important;
    font-size: 16px !important;
    padding: 16px !important;
    line-height: 1.5 !important;
    resize: vertical !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  
  /* Voice input container - block */
  .voice-input-container {
    display: block !important;
  }
  
  /* Микрофон - СПРАВА ОТ ПОДСКАЗКИ (в одной строке) ВИДИМЫЙ */
  .voice-btn,
  #micBtn,
  .icon-btn {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 10px !important;
    background: rgba(59, 130, 246, 0.2) !important;
    border-radius: 50% !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    font-size: 0 !important;
    color: #3b82f6 !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
  }
  
  .voice-btn:hover,
  #micBtn:hover {
    background: rgba(59, 130, 246, 0.25) !important;
    transform: scale(1.05) !important;
  }
  
  .voice-btn i,
  #micBtn i,
  .icon-btn i {
    width: 20px !important;
    height: 20px !important;
    color: #3b82f6 !important;
    display: block !important;
  }
  
  /* Select - Apple style (шире, без лишних отступов) */
  select {
    padding: 14px 16px !important;
    font-size: 15px !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 12px !important;
    background: rgba(24, 27, 51, 0.6) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
  }
  
  /* Form group - МИНИМАЛЬНЫЕ отступы */
  .form-group {
    margin-bottom: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* МИНИМАЛЬНЫЕ отступы секций */
  section {
    padding: 24px 0 !important;
  }
  
  .hero {
    padding: 40px 0 30px !important;
  }
  
  /* Компактные карточки */
  .card, .service-card, .testimonial-card {
    padding: 16px !important;
    margin-bottom: 16px !important;
  }
  
  /* Убираем лишние отступы */
  .feature-item, .step-card {
    padding: 16px !important;
  }
  
  /* Sticky header на всю ширину */
  .sticky-header {
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }
  
  /* WhatsApp - появляется при остановке скролла */
  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    bottom: 70px !important;
    right: 12px !important;
    z-index: 10001 !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    opacity: 0 !important;
    transform: scale(0.8) translateY(20px) !important;
    transition: all 0.3s ease !important;
  }
  
  .whatsapp-float.show {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
  }
  
  .whatsapp-float i {
    width: 26px !important;
    height: 26px !important;
  }
  
  /* Компактный footer */
  .footer-content {
    gap: 20px !important;
  }
  
  /* Телефонные номера компактнее */
  .phone-number {
    font-size: 18px !important;
  }
  
  /* Значки меньше */
  .icon, svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  /* Галерея в 2 колонки */
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  
  /* Отзывы СУПЕР компактные */
  .testimonials-grid {
    gap: 12px !important;
  }
  
  .testimonial-card {
    padding: 16px !important;
    margin-bottom: 12px !important;
    max-height: 200px !important;
    overflow: hidden !important;
  }
  
  .testimonial-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
    max-height: 80px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
  }
  
  .testimonial-stars {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  
  /* Sticky action bar - менее яркие кнопки */
  .sticky-action-bar {
    padding: 10px 16px !important;
    gap: 10px !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(15, 18, 32, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(124, 58, 237, 0.15) !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4) !important;
  }
  
  /* Показывается при скролле */
  .sticky-action-bar.show {
    transform: translateY(0) !important;
  }
  
  .sticky-action-bar .btn,
  .sticky-action-bar .sticky-btn {
    padding: 12px 16px !important;
    font-size: 14px !important;
    flex: 1;
    min-height: 48px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    opacity: 0.9 !important;
    background: rgba(124, 58, 237, 0.7) !important;
  }
  
  .sticky-action-bar .btn:hover,
  .sticky-action-bar .sticky-btn:hover {
    opacity: 1 !important;
    background: rgba(124, 58, 237, 0.85) !important;
  }
  
  .sticky-action-bar i {
    width: 18px !important;
    height: 18px !important;
  }
  
  .sticky-action-bar span {
    font-size: 14px !important;
  }
  
  /* FAQ компактнее */
  .faq-item {
    padding: 16px !important;
    margin-bottom: 12px !important;
  }
  
  .faq-question {
    font-size: 15px !important;
    padding-right: 30px !important;
  }
  
  .faq-answer {
    font-size: 14px !important;
    padding-top: 10px !important;
  }
  
  /* Services компактнее */
  .service-card {
    padding: 16px !important;
  }
  
  .service-card h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  
  .service-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  
  /* Steps - ЕЩЕ БОЛЬШЕ контейнер для разнесения цифр и иконок */
  .step {
    padding: 32px 16px !important;
    min-height: 200px !important;
  }
  
  .step-icon {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 16px !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .step-icon i {
    width: 28px !important;
    height: 28px !important;
  }
  
  /* ЦИФРЫ - маленькие, БЕЗ ФОНА, ВЫШЕ иконок */
  .step-number,
  .step-icon span {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: white !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 20px !important;
    display: block !important;
  }
  
  .step-icon::before {
    display: none !important;
  }
  
  .step h3 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
    margin-top: 4px !important;
    font-weight: 600 !important;
  }
  
  .step p {
    font-size: 11px !important;
    line-height: 1.3 !important;
    color: var(--text-muted) !important;
  }
  
  /* Number в иконке меньше */
  .step-number {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  
  /* Input fields - Apple style */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="file"] {
    padding: 14px 16px !important;
    font-size: 15px !important;
    min-height: 48px !important;
    border-radius: 12px !important;
    background: rgba(24, 27, 51, 0.6) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2) !important;
    outline: none !important;
  }
  
  /* Labels КОМПАКТНЫЕ */
  label {
    font-size: 12px !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
  
  /* File upload компактнее */
  .upload-area {
    padding: 30px 16px !important;
    min-height: 150px !important;
  }
  
  .upload-label {
    font-size: 15px !important;
  }
  
  /* Progress bar */
  .progress-container {
    margin: 16px 0 !important;
  }
  
  /* Voice button */
  .voice-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 10px !important;
  }
  
  /* Hero КОМПАКТНЫЙ */
  .hero h1, .hero-title {
    font-size: 26px !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
  }
  
  .hero p, .tagline, .sub {
    font-size: 14px !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
  }
  
  .hero .badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
  }
  
  .upload-counter {
    font-size: 12px !important;
    padding: 6px 12px !important;
    margin-bottom: 12px !important;
  }
  
  /* CTA кнопки в hero компактнее */
  .hero .cta {
    gap: 8px !important;
    flex-direction: column !important;
  }
  
  .hero .cta .btn {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
  }
  
  /* Секции меньше padding */
  section {
    padding: 30px 0 !important;
  }
  
  .testimonials-section,
  .services-section,
  .how-it-works {
    padding: 30px 0 !important;
  }
  
  /* Badges/Pills компактнее */
  .badge, .pill {
    padding: 4px 10px !important;
    font-size: 12px !important;
  }
  
  /* Form groups */
  .form-group {
    margin-bottom: 16px !important;
  }
  
  /* Testimonials avatars */
  .testimonial-avatar {
    width: 40px !important;
    height: 40px !important;
  }
  
  .testimonial-name {
    font-size: 14px !important;
  }
  
  .testimonial-role {
    font-size: 12px !important;
  }
  
  /* Icons в кнопках */
  .btn i, button i {
    width: 16px !important;
    height: 16px !important;
  }
  
  /* Убираем избыточные margins */
  p {
    margin-bottom: 12px !important;
  }
  
  /* Upload button */
  button[type="submit"] {
    width: 100% !important;
    padding: 14px !important;
    font-size: 15px !important;
    margin-top: 20px !important;
  }
  
  /* Добавляем отступ снизу чтобы sticky bar не перекрывал контент */
  body {
    padding-bottom: 60px !important;
  }
  
  footer {
    margin-bottom: 60px !important;
  }
  
  /* Trust badges компактнее */
  .trust-badges {
    gap: 12px !important;
    font-size: 12px !important;
  }
  
  .trust-badges span {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }
  
  /* Logo меньше */
  .logo-image {
    max-height: 50px !important;
  }
}
