.hero-modern {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  display: flex;
  align-items: center;
}

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

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}
.hero-gradient-orb.hero-gradient-orb-1 {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(159, 39, 222, 0.4) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero-gradient-orb.hero-gradient-orb-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
  animation-delay: -10s;
}

.hero-glow-shape {
  position: absolute;
  width: 400px;
  height: 500px;
  top: 10%;
  right: 10%;
  background: linear-gradient(180deg, transparent 0%, rgba(159, 39, 222, 0.2) 50%, transparent 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  filter: blur(30px);
  opacity: 0.6;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
.hero-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 16px;
  width: 1400px;
  margin: auto;
}

.hero-content {
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  color: #ffffff;
}
.hero-title-line.hero-title-gradient {
  background: linear-gradient(135deg, #9f27de 0%, #ec4899 50%, #9f27de 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: auto;
}
.hero-cta svg {
  transition: transform 0.3s ease;
}
.hero-cta.hero-cta-primary {
  background: #ffffff;
  color: #0a0a0f;
}
.hero-cta.hero-cta-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.hero-cta.hero-cta-primary:hover svg {
  transform: translateX(4px);
}
.hero-cta.hero-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-cta.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 16px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-stat-content {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(8px);
  }
}
.clients-section {
  background: #0a0a0f;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.clients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(159, 39, 222, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.clients-section .clients-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.clients-section .clients-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.clients-section .clients-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
}
.clients-section .clients-logos-wrapper {
  margin-bottom: 50px;
}
.clients-section .clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.clients-section .client-logo-item {
  width: 100%;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.clients-section .client-logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}
.clients-section .client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.clients-section .client-logo-item:hover img {
  filter: grayscale(0%) brightness(1) invert(0);
  opacity: 1;
}
.clients-section .client-logo-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.clients-section .client-logo-placeholder .placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
}
.clients-section .clients-placeholder-info {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
  font-size: 0.95rem;
}
.clients-section .clients-placeholder-info strong {
  color: rgba(255, 255, 255, 0.8);
}
.clients-section .clients-cta {
  margin-top: 40px;
}

.about-services-section {
  padding: 120px 0;
  background: #ffffff;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(159, 39, 222, 0.1);
  color: #9f27de;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.section-title-large {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #212529;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-description-large {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #6c757d;
  line-height: 1.7;
}

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

.service-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.service-tile:hover .service-tile-image {
  transform: scale(1.1);
}
.service-tile:hover .service-tile-overlay {
  opacity: 0.85;
}
.service-tile:hover .service-tile-icon,
.service-tile:hover .service-tile-title {
  transform: translateY(-8px);
}
.service-tile:hover .service-tile-description {
  opacity: 1;
  transform: translateY(0);
}
.service-tile:hover .service-tile-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-tile-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: auto;
  text-decoration: none;
}

.service-tile-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.service-tile-placeholder {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.4) 50%, transparent 100%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.service-tile-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.service-tile-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.service-tile-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.service-tile-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(16px);
  transition: all 0.3s ease;
}
.service-tile-arrow svg {
  color: #ffffff;
}

.services-cta {
  text-align: center;
}

.services-cta-subtitle {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: auto;
  border: none;
  cursor: pointer;
}
.cta-button svg {
  transition: transform 0.3s ease;
}
.cta-button.cta-button-primary {
  background: #9f27de;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(159, 39, 222, 0.3);
}
.cta-button.cta-button-primary:hover {
  background: #871dbf;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(159, 39, 222, 0.4);
}
.cta-button.cta-button-primary:hover svg {
  transform: translateX(4px);
}
.cta-button.cta-button-secondary {
  background: transparent;
  color: #212529;
  border: 2px solid rgba(33, 37, 41, 0.2);
}
.cta-button.cta-button-secondary:hover {
  border-color: #9f27de;
  color: #9f27de;
}
.cta-button.cta-button-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.portfolio-section {
  padding: 120px 0;
  background: #f9fafb;
}
.portfolio-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.portfolio-section .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.portfolio-section .section-header .section-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #6c757d;
  line-height: 1.6;
}
.portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.portfolio-section .portfolio-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}
.portfolio-section .portfolio-item:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transform: translateY(-8px);
}
.portfolio-section .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-section .portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}
.portfolio-section .portfolio-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f9fafb;
}
.portfolio-section .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-section .portfolio-image .portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #9ca3af;
}
.portfolio-section .portfolio-image .portfolio-placeholder svg {
  opacity: 0.3;
}
.portfolio-section .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-section .portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #212529;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: auto;
}
.portfolio-section .portfolio-link svg {
  transition: transform 0.3s ease;
}
.portfolio-section .portfolio-link:hover {
  background: #ffffff;
  transform: translateY(-2px);
}
.portfolio-section .portfolio-link:hover svg {
  transform: translate(2px, -2px);
}
.portfolio-section .portfolio-content {
  padding: 24px;
}
.portfolio-section .portfolio-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(159, 39, 222, 0.1);
  color: #9f27de;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.portfolio-section .portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.portfolio-section .portfolio-title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
}
.portfolio-section .portfolio-title a:hover {
  color: #9f27de;
}
.portfolio-section .portfolio-client {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.portfolio-section .portfolio-client svg {
  flex-shrink: 0;
  opacity: 0.5;
}
.portfolio-section .portfolio-excerpt {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}
.portfolio-section .portfolio-cta {
  text-align: center;
}
.portfolio-section .portfolio-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.news-section {
  padding: 120px 0;
  background: #ffffff;
}
.news-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.news-section .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.news-section .section-header .section-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #6c757d;
  line-height: 1.6;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.news-section .news-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}
.news-section .news-item:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transform: translateY(-8px);
}
.news-section .news-item:hover .news-image img {
  transform: scale(1.05);
}
.news-section .news-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f9fafb;
}
.news-section .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-section .news-content {
  padding: 24px;
}
.news-section .news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #6c757d;
}
.news-section .news-category {
  padding: 4px 12px;
  background: rgba(159, 39, 222, 0.1);
  color: #9f27de;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.news-section .news-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.news-section .news-title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
}
.news-section .news-title a:hover {
  color: #9f27de;
}
.news-section .news-excerpt {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
}
.news-section .news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9f27de;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: auto;
}
.news-section .news-link svg {
  transition: transform 0.3s ease;
}
.news-section .news-link:hover {
  gap: 12px;
}
.news-section .news-link:hover svg {
  transform: translateX(4px);
}
.news-section .news-cta {
  text-align: center;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-section .portfolio-grid,
  .news-section .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-stats {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .hero-modern {
    min-height: auto;
    padding: 120px 0 180px;
  }
  .hero-container {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    position: relative;
    bottom: auto;
    margin-top: 60px;
    flex-direction: column;
    gap: 20px;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .clients-section,
  .about-services-section,
  .portfolio-section,
  .news-section {
    padding: 80px 0;
  }
  .clients-section .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-tile {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .clients-section .clients-logos {
    grid-template-columns: 1fr;
  }
  .service-tile-content {
    padding: 20px;
  }
  .service-tile-title {
    font-size: 1.1rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-content,
.section-intro,
.services-grid,
.portfolio-grid,
.news-grid {
  animation: fadeIn 0.8s ease-out;
}

/*# sourceMappingURL=front-page.css.map */
