/* public/css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --bg-card: rgba(0, 230, 118, 0.03);
  --border-color: rgba(0, 230, 118, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #555555;
  --accent-start: #00E676;
  --accent-end: #00BFA5;
  --accent-gradient: linear-gradient(135deg, #00E676, #00BFA5);
  --radius: 16px;
  --shadow-glow: 0 8px 40px rgba(0, 230, 118, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  
}

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

/* =========================================== */
/* 1. КАСТОМНЫЙ КУРСОР (Премиум)              */
/* =========================================== */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #00E676;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s;
}
/* Увеличение курсора при наведении на кнопки/карточки */
a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring,
.service-card:hover ~ .cursor-ring,
.btn:hover ~ .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: #00E676;
}

/* =========================================== */
/* 2. ШУМ (GRAIN OVERLAY)                     */
/* =========================================== */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* =========================================== */
/* 3. ПРОГРЕСС-БАР СКРОЛЛА                    */
/* =========================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

/* =========================================== */
/* 4. ПРЕЛОАДЕР                              */
/* =========================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #00E676;
  border-bottom-color: #00BFA5;
  animation: spin 1s cubic-bezier(0.6, 0, 0.4, 1) infinite;
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.2);
}
.loader-logo {
  font-size: 2rem;
  font-weight: 800;
}
.loader-logo i { color: #00E676; margin-right: 8px; }
.loader-text {
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 2px;
  animation: pulseText 1.5s ease-in-out infinite;
}

/* =========================================== */
/* 5. БАЗОВЫЕ КНОПКИ (улучшенные)             */
/* =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  cursor: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn--primary {
  background: var(--accent-gradient);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 60px;
  background: linear-gradient(135deg, #00E676, #00BFA5, #00E676);
  background-size: 300% 300%;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s;
}
.btn--primary:hover::after { opacity: 1; }
.btn--primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 60px rgba(0, 230, 118, 0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  border-color: rgba(0, 230, 118, 0.3);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(0, 230, 118, 0.08);
  border-color: #00E676;
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}
.btn--telegram {
  background: #27A0D9;
  color: #fff;
}
.btn--telegram:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(39, 160, 217, 0.4);
}
.btn--small { padding: 10px 28px; font-size: 0.9rem; }
.btn--large { padding: 16px 40px; font-size: 1.1rem; }

/* =========================================== */
/* 6. HEADER (стекло)                         */
/* =========================================== */
.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav { display: flex; gap: 32px; }
.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.nav a:hover {
  color: #00E676;
  text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}
@media (max-width: 768px) { .nav, .header .btn--small { display: none; } }

/* =========================================== */
/* 7. HERO (улучшенный типографика)           */
/* =========================================== */
.hero {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background: rgba(0, 230, 118, 0.08);
  padding: 6px 24px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00E676;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 230, 118, 0.15);
  animation: pulseBorder 2s ease-in-out infinite;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  min-height: 3rem;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
#typewriter::after {
  content: '|';
  color: #00E676;
  animation: blink 0.8s step-end infinite;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.hero__stats i { color: #00E676; margin-right: 8px; }
.hero__stats span { font-size: 1.1rem; letter-spacing: 0.3px; }
.hero__stats .counter { font-weight: 700; color: #fff; }

/* =========================================== */
/* 8. СЕКЦИИ                                  */
/* =========================================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(0, 230, 118, 0.06);
  padding: 4px 20px;
  border-radius: 60px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #00E676;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 230, 118, 0.08);
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; letter-spacing: -1px; }
.section-desc { color: var(--text-secondary); max-width: 500px; margin: 12px auto 0; font-weight: 300; }

/* =========================================== */
/* 9. УСЛУГИ (С БЕГУЩЕЙ ГРАНИЦЕЙ)           */
/* =========================================== */
.services {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(0, 230, 118, 0.06);
}
/* БЕГУЩАЯ АНИМИРОВАННАЯ ГРАНИЦА */
.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  padding: 2px;
  background: conic-gradient(from var(--angle, 0deg), 
    transparent 0%, 
    #00E676 30%, 
    #00BFA5 60%, 
    transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  animation: rotateBorder 4s linear infinite;
}
.service-card:hover::before {
  opacity: 0.9;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.03), transparent 70%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 230, 118, 0.08);
}
.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--accent-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}
.service-card:hover .service-card__icon {
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0 0 50px rgba(0, 230, 118, 0.2);
}
.service-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.service-card__desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; font-weight: 300; }
.service-card__price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #00E676;
  background: rgba(0, 230, 118, 0.05);
  padding: 8px 16px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 230, 118, 0.1);
  letter-spacing: 0.5px;
}

/* =========================================== */
/* 10. ПОЧЕМУ МЫ / КАК / ОТЗЫВЫ              */
/* =========================================== */
.why, .how, .reviews {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.why { background: var(--bg-primary); }
.how { background: var(--bg-secondary); }
.reviews { background: var(--bg-primary); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.why-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.4s;
}
.why-item:hover {
  border-color: rgba(0, 230, 118, 0.1);
  background: rgba(0, 230, 118, 0.02);
  transform: translateY(-6px);
}
.why-item__icon { font-size: 2.4rem; color: #00E676; margin-bottom: 16px; }
.why-item h4 { font-size: 1.1rem; font-weight: 700; }
.why-item p { color: var(--text-secondary); font-size: 0.95rem; font-weight: 300; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.step__number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
}
.step__icon { font-size: 2.2rem; color: #00E676; margin: 12px 0; }
.step h4 { font-size: 1.1rem; font-weight: 700; }
.step p { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.review-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s;
}
.review-card:hover {
  border-color: #00E676;
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}
.review-card__stars { color: #FBBF24; margin-bottom: 16px; letter-spacing: 4px; }
.review-card__text { font-size: 1rem; font-style: italic; color: var(--text-secondary); margin-bottom: 20px; font-weight: 300; }
.review-card__author { font-weight: 600; }
.review-card__author span { font-weight: 400; color: var(--text-muted); font-size: 0.85rem; }

/* =========================================== */
/* 11. CTA / FOOTER                          */
/* =========================================== */
.cta {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}
.cta__inner { text-align: center; }
.cta__inner h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.cta__inner p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 40px; font-weight: 300; }
.cta__hint { display: block; margin-top: 16px; color: var(--text-muted); font-size: 0.85rem; }

.footer {
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__col h4 { font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer__col a, .footer__col span {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-weight: 300;
}
.footer__col a:hover { color: #00E676; }
.footer__col i { width: 20px; color: #00E676; }
.footer__bottom { border-top: 1px solid var(--border-color); padding-top: 24px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; text-align: center; } .hero__title { font-size: 2.6rem; } .hero__stats { gap: 20px; } }

/* =========================================== */
/* 12. ВСЕ АНИМАЦИИ                         */
/* =========================================== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseText { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes pulseBorder { 0%,100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.1); } 50% { box-shadow: 0 0 20px 5px rgba(0,230,118,0.05); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(80px, 60px) scale(1.2); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes rotateBorder { to { --angle: 360deg; } }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

/* =========================================== */
/* 13. FADE-IN АНИМАЦИЯ                      */
/* =========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.why-item:nth-child(2) { transition-delay: 0.1s; }
.why-item:nth-child(3) { transition-delay: 0.2s; }
.why-item:nth-child(4) { transition-delay: 0.3s; }
.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }
.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.2s; }

/* =========================================== */
/* 14. ФОНОВЫЕ ШАРЫ                          */
/* =========================================== */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: floatOrb 20s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: #00E676; top: -10%; left: -10%; animation-duration: 25s; }
.orb-2 { width: 400px; height: 400px; background: #00BFA5; bottom: -10%; right: -10%; animation-duration: 20s; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: #00695C; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 30s; animation-delay: -10s; }



/* Дополнительные стили для авторизации */
.header__auth {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-greeting {
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-greeting i {
  color: #00E676;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .header__auth .btn--small {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .user-greeting {
    font-size: 0.9rem;
  }
}

.subscribe-form {
  max-width: 500px;
  margin: 30px auto 20px;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.subscribe-input {
  flex: 1 1 260px;
  padding: 18px 24px;
  border-radius: 60px;
  border: 2px solid var(--border-color);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
  min-width: 200px;
}

.subscribe-input:focus {
  border-color: #00E676;
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1);
}

.subscribe-label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-weight: 300;
  pointer-events: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  background: transparent;
  padding: 0 4px;
}

.subscribe-input:focus + .subscribe-label,
.subscribe-input:not(:placeholder-shown) + .subscribe-label {
  top: 0;
  transform: translateY(-50%) scale(0.8);
  color: #00E676;
  background: var(--bg-secondary);
  padding: 0 8px;
  left: 20px;
}

.subscribe-btn {
  flex: 0 0 auto;
  padding: 18px 36px;
}

.form-message {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  min-height: 1.6rem;
}

.form-message.success {
  color: #00E676;
}

.form-message.error {
  color: #ff6b6b;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  border: 1px solid var(--border-color);
}
.btn-close {
  float: right;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}
.flash-message {
  padding: 12px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 500;
}
.flash-message.success {
  background: rgba(0,230,118,0.1);
  border: 1px solid #00E676;
  color: #00E676;
}
.flash-message.error {
  background: rgba(255,0,0,0.1);
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
}

/* =========================================== */
/* ПОДВАЛ — премиум                          */
/* =========================================== */
.footer {
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__col h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.footer__col a, .footer__col span {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}
.footer__col a:hover {
  color: #00E676;
}
.footer__col i {
  width: 20px;
  color: #00E676;
  margin-right: 8px;
}
.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}
.footer__socials a:hover {
  border-color: #00E676;
  background: rgba(0,230,118,0.08);
}
.footer__subscribe {
  display: flex;
  gap: 8px;
}
.footer__subscribe input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 60px;
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.03);
  color: #fff;
  outline: none;
}
.footer__subscribe input:focus {
  border-color: #00E676;
}
.footer__subscribe button {
  background: var(--accent-gradient);
  border: none;
  border-radius: 60px;
  width: 44px;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
.footer__subscribe button:hover {
  transform: scale(1.05);
}
.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer__bottom a {
  color: #00E676;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__socials { justify-content: center; }
  .footer__subscribe { flex-direction: column; align-items: center; }
}

/* =========================================== */
/* КНОПКИ В ЗАКАЗАХ (премиум)                */
/* =========================================== */
.order-card .btn {
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}
.order-card .btn--primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: var(--shadow-glow);
}
.order-card .btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0,230,118,0.3);
}
.order-card .btn--telegram {
  background: #27A0D9;
  color: #fff;
}
.order-card .btn--telegram:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(39,160,217,0.3);
}

/* =========================================== */
/* ЛОГОТИП (улучшенный)                       */
/* =========================================== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.02);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.logo:hover .logo-icon {
  box-shadow: 0 4px 25px rgba(0, 230, 118, 0.6);
  transform: rotate(-8deg) scale(1.05);
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-prof {
  color: #fff;
}
.logo-service {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #00E676;
  border-bottom: 2px solid rgba(0, 230, 118, 0.1);
  padding-bottom: 8px;
}


/* =========================================== */
/* ПРЕМИУМ СТИЛИ — EpromAi                  */
/* =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-text-primary: #ffffff;
  --color-text-secondary: #b0b0b0;
  --color-text-muted: #6c6c6c;
  --color-accent: #00E676;
  --color-accent-dark: #00BFA5;
  --color-border: rgba(255, 255, 255, 0.05);
  --color-card-bg: rgba(255, 255, 255, 0.02);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-speed: 0.3s;
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* =========================================== */
/* АНИМАЦИИ                                   */
/* =========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes heroPulse {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(3deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 230, 118, 0.1); }
  50% { box-shadow: 0 0 40px rgba(0, 230, 118, 0.25); }
}

/* =========================================== */
/* КНОПКИ                                     */
/* =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 60px;
  text-decoration: none;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.35);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--large { padding: 16px 40px; font-size: 1.1rem; }
.btn--small { padding: 8px 20px; font-size: 0.85rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-animated {
  background: linear-gradient(135deg, #00E676, #00BFA5, #00E676);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}

/* =========================================== */
/* HERO                                       */
/* =========================================== */
.hero-premium {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 230, 118, 0.03), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 191, 165, 0.03), transparent 60%);
  animation: heroPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-premium .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 50px;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.hero-stats span:hover {
  color: #fff;
  transform: translateY(-3px);
}

.hero-stats i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}
.float-animation.delay-1 { animation-delay: 0.5s; }
.float-animation.delay-2 { animation-delay: 1s; }

/* =========================================== */
/* СЕКЦИИ                                     */
/* =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =========================================== */
/* УСЛУГИ (карточки)                          */
/* =========================================== */
.services-premium {
  padding: 80px 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.services-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.02), transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.category-title {
  grid-column: 1 / -1;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 230, 118, 0.2), transparent);
}

.product-card-premium {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.product-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), transparent 50%, rgba(0, 230, 118, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card-premium:hover::before {
  opacity: 1;
}

.product-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 118, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 230, 118, 0.05);
}

.product-card-premium .product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 191, 165, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.product-card-premium:hover .product-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.15);
}

.product-card-premium h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-premium .product-desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  flex-grow: 1;
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card-premium .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 12px 0 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card-premium .product-price .rub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.product-card-premium .btn {
  align-self: flex-start;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-view-all:hover {
  background: rgba(0, 230, 118, 0.05);
  border-color: rgba(0, 230, 118, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.05);
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(4px);
}

/* =========================================== */
/* ПРЕИМУЩЕСТВА                               */
/* =========================================== */
.advantages-premium {
  padding: 80px 0;
  background: var(--color-bg);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.advantage-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.advantage-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 118, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.advantage-item .advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 191, 165, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-accent);
  transition: all 0.4s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}

.advantage-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage-item p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* =========================================== */
/* ОТЗЫВЫ                                     */
/* =========================================== */
.reviews-premium {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

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

.review-card-premium {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.review-card-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.review-card-premium .review-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card-premium .review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-card-premium .review-author {
  display: flex;
  flex-direction: column;
}

.review-card-premium .review-author strong {
  color: #fff;
  font-weight: 600;
}

.review-card-premium .review-author span {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

/* =========================================== */
/* HEADER & FOOTER                            */
/* =========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--color-text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #000;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-speed);
}

.nav a:hover {
  color: var(--color-text-primary);
}

.header__auth {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer {
  padding: 60px 0 20px;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__col p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.footer__col h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition-speed);
}

.footer__col a:hover {
  color: var(--color-text-primary);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* =========================================== */
/* АДАПТИВ                                    */
/* =========================================== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .header__auth .btn--small {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-stats {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .category-title::after {
    display: none;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .hero-premium {
    padding: 60px 0 40px;
  }
}

/* =========================================== */
/* УНИКАЛЬНОЕ ПРЕДЛОЖЕНИЕ                      */
/* =========================================== */
.special-offer {
  padding: 60px 0;
  background: var(--color-bg-secondary);
}

.offer-banner {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.05), rgba(0, 191, 165, 0.02));
  border: 1px solid rgba(0, 230, 118, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.05), transparent 70%);
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.offer-discount {
  font-size: 2rem;
  font-weight: 900;
  color: #00E676;
  background: rgba(0, 230, 118, 0.1);
  padding: 4px 16px;
  border-radius: 40px;
  border: 1px solid rgba(0, 230, 118, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

.offer-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.offer-content p {
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.offer-products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.offer-product-item {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.offer-product-item:hover {
  border-color: rgba(0, 230, 118, 0.15);
  transform: translateY(-2px);
}

.offer-product-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  background: #111;
}

.offer-product-item .info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.offer-product-item .info span {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.offer-product-item .info .price {
  color: #00E676;
  font-weight: 600;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.offer-price .old-price {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.offer-price .new-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00E676;
}

.offer-price .savings {
  font-size: 0.9rem;
  color: #00E676;
  background: rgba(0, 230, 118, 0.1);
  padding: 2px 12px;
  border-radius: 40px;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 230, 118, 0.1); }
  50% { box-shadow: 0 0 40px rgba(0, 230, 118, 0.2); }
}

@media (max-width: 768px) {
  .offer-products {
    flex-direction: column;
  }
  .offer-product-item {
    min-width: auto;
  }
  .offer-banner {
    padding: 24px;
  }
  .offer-price {
    flex-wrap: wrap;
  }
}

.company-rekvizity {
  padding: 40px 0 20px;
  background: var(--color-bg-secondary);
}
.company-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 8px 30px rgba(0,230,118,0.05);
}
.company-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.company-card-header h3 i {
  color: #00E676;
  margin-right: 8px;
}
.company-card-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}
.company-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.rekv-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,230,118,0.05);
}
.rekv-item:last-child {
  border-bottom: none;
}
.rekv-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rekv-label i {
  color: #00E676;
  width: 18px;
  font-size: 0.8rem;
}
.rekv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}
@media (max-width: 768px) {
  .company-card-grid {
    grid-template-columns: 1fr;
  }
  .rekv-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .rekv-value {
    text-align: left;
    max-width: 100%;
  }
}