/* ============================================
   13 Колес - Стили для лендинга покраски дисков
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #02bbe9;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(90deg, #02bbe9, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-primary {
  box-shadow: 0 0 20px rgba(2, 187, 233, 0.3), 0 0 40px rgba(2, 187, 233, 0.1);
}

.glass {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
}

/*.logo-text {
  font-size: 20px;
  font-weight: 700;
}

.logo-text span {
  color: #02bbe9;
}*/

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

.nav-link {
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #02bbe9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #02bbe9;
}

.phone-link svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: #02bbe9;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #02a8d1;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(2, 187, 233, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  color: #fff;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu .nav-link {
  font-size: 16px;
  padding: 8px 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  padding-top: 80px;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(2, 187, 233, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 187, 233, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-glow-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(2, 187, 233, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(2, 187, 233, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 187, 233, 0.1);
  border: 1px solid rgba(2, 187, 233, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 32px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #02bbe9;
}

.hero-badge span {
  color: #02bbe9;
  font-size: 14px;
  font-weight: 500;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #9f9f9f;
  max-width: 500px;
  margin-bottom: 40px;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: #02bbe9;
}

.stat-label {
  font-size: 14px;
  color: #9f9f9f;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #02bbe9;
  background: rgba(2, 187, 233, 0.1);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-wheel-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

.hero-wheel-glow {
  position: absolute;
  inset: 0;
  background: rgba(2, 187, 233, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 3s ease-in-out infinite;
}

.hero-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  animation: spin 30s linear infinite;
}

.hero-wheel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-float-card {
  position: absolute;
  background: #1a1a1a;
  border: 1px solid rgba(2, 187, 233, 0.3);
  border-radius: 12px;
  padding: 16px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: -20px;
  right: -20px;
}

.hero-float-card.card-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 1s;
}

.hero-float-card .value {
  font-size: 24px;
  font-weight: 700;
  color: #02bbe9;
}

.hero-float-card .label {
  font-size: 12px;
  color: #9f9f9f;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: #02bbe9;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #9f9f9f;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(2, 187, 233, 0.5);
  transform: translateY(-8px);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a1a1a, transparent 50%);
}

.service-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: #02bbe9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.service-content {
  padding: 24px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #02bbe9;
}

.service-description {
  color: #9f9f9f;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9f9f9f;
  font-size: 13px;
  margin-bottom: 8px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #02bbe9;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  background: #0a0a0a;
}

.pricing-table-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-table {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(2, 187, 233, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header div {
  padding: 16px 24px;
  color: #02bbe9;
  font-weight: 600;
  text-align: center;
}

.pricing-header div:first-child {
  text-align: left;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.pricing-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-row:nth-child(even) {
  background: #111;
}

.pricing-row:nth-child(even):hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-row div {
  padding: 16px 24px;
  text-align: center;
  color: #9f9f9f;
}

.pricing-row div:first-child {
  text-align: left;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-row div:first-child::before {
  content: '✓';
  color: #02bbe9;
  font-weight: 700;
}

.pricing-row .price-set {
  color: #02bbe9;
  font-weight: 700;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: #9f9f9f;
  font-size: 14px;
}

.pricing-note svg {
  width: 20px;
  height: 20px;
  color: #02bbe9;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Additional Services */
.additional-services {
  max-width: 800px;
  margin: 0 auto;
}

.additional-services h3 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.additional-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.3s ease;
}

.additional-item:hover {
  border-color: rgba(2, 187, 233, 0.3);
}

.additional-item .name {
  color: #9f9f9f;
  font-size: 13px;
  margin-bottom: 8px;
}

.additional-item .price {
  color: #02bbe9;
  font-weight: 700;
}

.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
  background: #0a0a0a;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.portfolio-desc {
  font-size: 12px;
  color: #9f9f9f;
}

.portfolio-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 48px;
  height: 48px;
  background: #02bbe9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-zoom svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Portfolio Stats */
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat-card .number {
  font-size: 32px;
  font-weight: 700;
  color: #02bbe9;
  margin-bottom: 8px;
}

.stat-card .text {
  font-size: 14px;
  color: #9f9f9f;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  border-radius: 0 0 8px 8px;
}

.lightbox-caption h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.lightbox-caption p {
  color: #9f9f9f;
  font-size: 14px;
}

.lightbox-counter {
  color: #02bbe9;
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
  background: #111;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(2, 187, 233, 0.5);
  transform: translateY(-8px);
}

.why-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(2, 187, 233, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(2, 187, 233, 0.2);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: #02bbe9;
}

.why-stat {
  text-align: right;
}

.why-stat .value {
  font-size: 36px;
  font-weight: 800;
  color: #02bbe9;
  line-height: 1;
}

.why-stat .label {
  font-size: 12px;
  color: #9f9f9f;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: #02bbe9;
}

.why-card p {
  color: #9f9f9f;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  background: #0a0a0a;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #02bbe9, rgba(2, 187, 233, 0.3), transparent);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  margin-bottom: 40px;
}

.process-step:nth-child(even) .step-content {
  grid-column: 2;
}



.process-step:nth-child(even) > * {
  direction: ltr;
}

.step-content {
  position: relative;
}

.step-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: rgba(2, 187, 233, 0.3);
}

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

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(2, 187, 233, 0.2);
  line-height: 1;
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(2, 187, 233, 0.4);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: #02bbe9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.step-card:hover h3 {
  color: #02bbe9;
}

.step-card p {
  color: #9f9f9f;
  font-size: 14px;
  line-height: 1.6;
}

.step-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #02bbe9;
  border-radius: 50%;
  border: 4px solid #0a0a0a;
}

.process-info {
  text-align: center;
  margin-top: 40px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
}

.process-badge .time {
  font-size: 24px;
  font-weight: 700;
  color: #02bbe9;
}

.process-badge .text {
  text-align: left;
}

.process-badge .text strong {
  display: block;
  color: #fff;
}

.process-badge .text span {
  color: #9f9f9f;
  font-size: 14px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 187, 233, 0.2), rgba(2, 187, 233, 0.1), rgba(2, 187, 233, 0.2));
}

.cta-glow-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(2, 187, 233, 0.2);
  border-radius: 50%;
  filter: blur(150px);
  animation: pulse 3s ease-in-out infinite;
}

.cta-glow-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(2, 187, 233, 0.15);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 3s ease-in-out infinite 1s;
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(rgba(2, 187, 233, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 187, 233, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 18px;
  color: #9f9f9f;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.btn-glow {
  box-shadow: 0 0 30px rgba(2, 187, 233, 0.5);
}

.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9f9f9f;
  font-size: 14px;
}

.trust-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #02bbe9;
  border-radius: 50%;
}

/* ============================================
   CONTACTS SECTION
   ============================================ */

.contacts {
  background: #111;
}

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

.contact-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(2, 187, 233, 0.3);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 187, 233, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(2, 187, 233, 0.2);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #02bbe9;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card .main {
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-card .sub {
  color: #9f9f9f;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #02bbe9;
  font-size: 14px;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-link svg {
  width: 14px;
  height: 14px;
}

.contacts-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 400px;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}

.contacts-map:hover iframe {
  filter: grayscale(0);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  padding: 60px 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
}

.footer-logo span span {
  color: #02bbe9;
}

.footer-about {
  color: #9f9f9f;
  margin-bottom: 24px;
  max-width: 400px;
}

.footer-contacts {
  space-y: 12px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9f9f9f;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: #02bbe9;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: #02bbe9;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #9f9f9f;
  transition: color 0.3s ease;
}

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

.footer-hours {
  space-y: 12px;
}

.footer-hour {
  display: flex;
  justify-content: space-between;
  color: #9f9f9f;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9f9f9f;
  font-size: 14px;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #1a1a1a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9f9f9f;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-body {
  padding: 40px;
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(2, 187, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  color: #02bbe9;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: #9f9f9f;
  font-size: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-label span {
  color: #02bbe9;
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9f9f9f;
}

.form-input {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  padding-left: 48px;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #02bbe9;
}

.form-input::placeholder {
  color: #9f9f9f;
}

textarea.form-input {
  padding-left: 48px;
  min-height: 100px;
  resize: none;
}

.btn-submit {
  width: 100%;
  background: #02bbe9;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #02a8d1;
}

.form-privacy {
  text-align: center;
  margin-top: 16px;
  color: #9f9f9f;
  font-size: 12px;
}

.form-privacy a {
  color: #02bbe9;
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* Success State */
.modal-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.modal-success.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(2, 187, 233, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: #02bbe9;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-text {
  color: #9f9f9f;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-wheel-wrapper {
    width: 300px;
    height: 300px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .additional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    left: 20px;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
  
  .process-step:nth-child(even) .step-content {
    grid-column: 1;
  }
  
  .step-dot {
    left: 20px;
    transform: translateY(-50%);
  }
  
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .cta-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-large,
  .btn-secondary {
    width: 100%;
  }
  
  .pricing-header,
  .pricing-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-header div:nth-child(2),
  .pricing-row div:nth-child(2) {
    display: none;
  }
  
  .additional-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-card .number {
    font-size: 24px;
  }
}
