/* Hero Section */
.hero-section {
    max-width: 1700px;
    margin: 0 auto;
    background: 
        linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(21, 21, 21, 0.6) 100%);
    background-image: url('../images/brand/gradient.png');
    background-size: cover;
    width: 100%;
    padding: 60px 40px;
    padding-top: 150px;
    border-radius: 0 0 50px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Анимированные частицы */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite linear;
}

.hero-particle:nth-child(2n) {
    width: 3px;
    height: 3px;
    opacity: 0.4;
    animation-duration: 20s;
}

.hero-particle:nth-child(3n) {
    width: 1.5px;
    height: 1.5px;
    opacity: 0.5;
    animation-duration: 12s;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 720px;
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.hero-title {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-size: 64px;
    font-weight: bold;
    color: white;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-tagline {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    color: white;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 40px;
}

.hero-description {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 24px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 400;
    margin-bottom: 40px;
}

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

.btn-primary {
    background: #6468FB;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 18px;
    position: relative;
    border-radius: 30px;
}

.btn-primary:hover {
    background: #5559E8;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 20px;
    line-height: 1;
}

.btn-secondary {
    background: rgba(186, 186, 186, 0.1);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 18px;
    position: relative;
    border-radius: 30px;
}

.btn-secondary:hover {
    background: rgba(186, 186, 186, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 16px;
}

.hero-image {
    width: 715px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-image img {
    width: 715px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.3));
}

/* Modules Section */
.modules-section {
    width: 100%;
    padding: 60px 40px;
    margin-bottom: 50px;
}

.modules-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.modules-carousel {
    flex: 1;
    width: 715px;
    position: relative;
}

.carousel-wrapper {
    width: 100%;
    overflow: visible;
    border-radius: 20px;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(0) scale(0.85) translateZ(-100px);
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
    overflow: visible;
}

.carousel-slide.active {
    cursor: pointer;
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(0);
    z-index: 5;
    pointer-events: auto;
}

.carousel-slide.prev {
    opacity: 0.6;
    transform: translateX(-30px) scale(0.9) translateZ(-50px);
    z-index: 3;
}

.carousel-slide.next {
    opacity: 0.6;
    transform: translateX(30px) scale(0.9) translateZ(-50px);
    z-index: 3;
}

.carousel-slide.prev-2 {
    opacity: 0.3;
    transform: translateX(-60px) scale(0.85) translateZ(-100px);
    z-index: 2;
}

.carousel-slide.next-2 {
    opacity: 0.3;
    transform: translateX(60px) scale(0.85) translateZ(-100px);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: filter 0.6s ease;
    margin: 0;
    padding: 0;
}

.carousel-zoom-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(21, 21, 21, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    backdrop-filter: blur(10px);
}

.carousel-slide.active:hover .carousel-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.carousel-zoom-btn:hover {
    background: rgba(100, 104, 251, 0.9);
    border-color: rgba(100, 104, 251, 0.5);
    transform: scale(1.1);
}

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

.carousel-zoom-btn svg {
    width: 24px;
    height: 24px;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 32px 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

.carousel-slide.active:hover .slide-overlay {
    opacity: 1;
    pointer-events: auto;
}

.slide-title {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.carousel-slide.active:hover .slide-title {
    transform: translateY(0);
}

.btn-slide {
    background: #6468FB;
    color: white;
    padding: 12px 32px;
    font-size: 16px;
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.carousel-slide.active:hover .btn-slide {
    transform: translateY(0);
}

.btn-slide:hover {
    background: #5559E8;
    transform: translateY(-2px) !important;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    background: rgba(186, 186, 186, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    padding: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(186, 186, 186, 0.2);
    transform: scale(1.1);
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-zoom-modal.active {
    display: flex;
    opacity: 1;
}

.image-zoom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.image-zoom-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.zoomed-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.image-zoom-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: rgba(21, 21, 21, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-zoom-modal-close:hover {
    background: rgba(100, 104, 251, 0.95);
    border-color: rgba(100, 104, 251, 0.8);
    box-shadow: 0 6px 30px rgba(100, 104, 251, 0.4);
}

.image-zoom-modal-close:active {
    transform: scale(0.95) rotate(90deg);
}

.image-zoom-modal-close svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 10px;
    height: 10px;
}

.modules-content {
    width: 720px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modules-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.modules-title-accent {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-wrap: nowrap;
}

.modules-description {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 400;
}

.btn-modules {
    max-width: 200px;
    width: auto;
}

/* Module Manager Section */
.module-manager-section {
    width: 100%;
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.module-manager-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    right: -150px;
    bottom: -150px;
    background-image: url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(-12 500 500)'%3E%3Ctext x='100' y='200' font-size='64' fill='%23BABABA' fill-opacity='0.15'%3E🎮%3C/text%3E%3Ctext x='600' y='250' font-size='58' fill='%23BABABA' fill-opacity='0.15'%3E🎯%3C/text%3E%3Ctext x='200' y='700' font-size='62' fill='%23BABABA' fill-opacity='0.15'%3E🕹️%3C/text%3E%3Ctext x='750' y='650' font-size='60' fill='%23BABABA' fill-opacity='0.15'%3E🎲%3C/text%3E%3Ctext x='400' y='450' font-size='56' fill='%23BABABA' fill-opacity='0.15'%3E📊%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-size: 1000px 1000px;
    background-position: 100px 20px;
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.module-manager-section::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    right: -150px;
    bottom: -150px;
    background-image: url("data:image/svg+xml,%3Csvg width='1100' height='1100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(18 550 550)'%3E%3Ctext x='300' y='150' font-size='55' fill='%23BABABA' fill-opacity='0.12'%3E🎨%3C/text%3E%3Ctext x='800' y='250' font-size='52' fill='%23BABABA' fill-opacity='0.12'%3E🖥️%3C/text%3E%3Ctext x='150' y='600' font-size='54' fill='%23BABABA' fill-opacity='0.12'%3E🎬%3C/text%3E%3Ctext x='700' y='800' font-size='58' fill='%23BABABA' fill-opacity='0.12'%3E👾%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-size: 1100px 1100px;
    background-position: 800px 350px;
    background-repeat: repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.module-manager-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.module-manager-content {
    width: 720px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.module-manager-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 24px;
}

.module-manager-icon {
    font-size: 64px;
    line-height: 1;
}

.module-manager-title-text {
    white-space: nowrap;
}

.module-manager-description-main {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 24px;
    color: white;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.module-manager-description-detail {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.module-manager-image {
    flex: 1;
    width: 715px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.module-manager-img {
    width: 100%;
    max-width: 715px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 80px 40px;
}

.features-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    width: 380px;
}

.features-title-accent {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 48px;
    display: block;
}

.features-description {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    max-width: 1000px;
    text-align: center;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto 70px;
    align-items: stretch;
    justify-items: stretch;
}

.feature-card {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 24px;
    padding: 40px 32px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: 100%;
    min-height: 360px;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

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

/* squircle поддержка для feature-card */
@supports (corner-shape: squircle) {
    .feature-card {
      corner-shape: squircle;
      border-radius: 40px;
    }
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}

.feature-icon {
    width: 91px;
    height: 91px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 12px 24px rgba(139, 92, 246, 0.4));
}

.feature-content {
    position: relative;
    top: -20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.feature-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: rgba(255, 255, 255, 1);
}

.features-title-main{
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.feature-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    color: rgba(186, 186, 186, 0.9);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
    flex: 1;
}

.features-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.features-action .btn {
    max-width: 200px;
    width: auto;
}

/* Platforms Section */
.platforms-section {
    width: 100%;
    padding: 80px 40px;
}

.platforms-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platforms-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 24px;
}

.platforms-description {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    max-width: 1000px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 60px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

.platform-item {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 30px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 160px;
    position: relative;
}

/* squircle поддержка */
@supports (corner-shape: squircle) {
    .platform-item {
        corner-shape: squircle;
        border-radius: 50px;
    }
  }

.platform-item:not(.active):not(.in-development) {
    filter: grayscale(100%) opacity(0.5);
}

.platform-item.active {
    filter: none;
    border: 1px solid rgba(100, 104, 251, 0.3);
}

.platform-item.in-development {
    filter: grayscale(30%) opacity(0.8);
    border: 1px solid rgba(255, 165, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.platform-item.in-development::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 165, 0, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.platform-item.in-development:hover {
    filter: grayscale(20%) opacity(0.9);
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.platform-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.platform-icon {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.platform-item:not(.active):not(.in-development) .platform-icon {
    color: rgba(186, 186, 186, 0.6);
}

.platform-item.in-development .platform-icon {
    color: rgba(255, 200, 100, 0.9);
}

.platform-soon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(186, 186, 186, 0.9);
    background: rgba(21, 21, 21, 0.9);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(186, 186, 186, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.platform-item.active .platform-soon {
    background: rgba(100, 104, 251, 0.1);
    border: 1px solid rgba(100, 104, 251, 0.5);
}

.platform-item.in-development .platform-soon {
    color: rgba(255, 200, 100, 0.95);
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.4);
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Audience Section */
.audience-section {
    width: 100%;
    padding: 80px 40px;
}

.audience-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.audience-title-icon {
    font-size: 48px;
    line-height: 1;
}

.audience-title-text {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 48px;
    display: block;
}

.audience-title-first{
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.audience-description {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    max-width: 1000px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 60px;
    margin-top: 24px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 60px;
    align-items: stretch;
    justify-items: stretch;
}

.audience-card {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 24px;
    padding: 40px 32px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: 100%;
    min-height: 300px;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* squircle поддержка для audience-card */
@supports (corner-shape: squircle) {
    .audience-card {
      corner-shape: squircle;
      border-radius: 40px;
    }
}

.audience-card-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}

.audience-card-icon {
    width: 91px;
    height: 91px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover .audience-card-icon {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 12px 24px rgba(139, 92, 246, 0.4));
}

.audience-card-content {
    position: relative;
    top: -20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.audience-card-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.audience-card:hover .audience-card-title {
    color: rgba(255, 255, 255, 1);
}

.audience-card-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    color: rgba(186, 186, 186, 0.9);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
    flex: 1;
}

.audience-conclusion {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.audience-conclusion-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: white;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.audience-conclusion-icon {
    font-size: 24px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .modules-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .modules-carousel {
        width: 100%;
        max-width: 715px;
    }
    
    .modules-content {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .feature-card {
        padding: 36px 28px 20px 28px;
        min-height: 340px;
    }
    
    .feature-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .module-manager-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .module-manager-content {
        width: 100%;
    }
    
    .module-manager-title {
        font-size: 48px;
    }
    
    .module-manager-icon {
        font-size: 48px;
    }
    
    .module-manager-description-main {
        font-size: 20px;
    }
    
    .module-manager-description-detail {
        font-size: 18px;
    }
    
    .module-manager-image {
        width: 100%;
        min-height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 24px 20px 24px;
        min-height: 320px;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .audience-card {
        padding: 36px 28px 20px 28px;
        min-height: 300px;
    }
    
    .audience-card-icon {
        width: 72px;
        height: 72px;
    }
    
    .audience-card-title {
        font-size: 20px;
    }
    
    .audience-card-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-title-accent {
        font-size: 48px;
    }
    
    .features-description {
        font-size: 18px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .platforms-title {
        font-size: 36px;
    }
    
    .platforms-description {
        font-size: 18px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .audience-card {
        padding: 32px 24px 20px 15px;
        min-height: 280px;
    }
    
    .audience-card-icon {
        width: 64px;
        height: 64px;
    }
    
    .audience-title {
        font-size: 36px;
        flex-direction: column;
        gap: 8px;
    }
    
    .audience-title-icon {
        font-size: 36px;
    }
    
    .audience-description {
        font-size: 18px;
    }
    
    .audience-card-title {
        font-size: 18px;
    }
    
    .audience-card-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .audience-conclusion-text {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }
}

/* CTA Section */
.cta-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 160px 40px;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.6) 0%, rgba(0, 0, 0, 0.0) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Геометрический паттерн на фоне */
.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 104, 251, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 104, 251, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 1;
}

/* Анимированные частицы */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite linear;
}

.cta-particle:nth-child(2n) {
    width: 3px;
    height: 3px;
    opacity: 0;
    animation-duration: 20s;
}

.cta-particle:nth-child(3n) {
    width: 1.5px;
    height: 1.5px;
    opacity: 0;
    animation-duration: 12s;
}

@keyframes float-particle {
    0% {
        transform: translateY(calc(100vh + var(--initial-y, 0vh))) translateX(var(--x-offset, 0)) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(calc(var(--x-offset, 0) + 100px)) rotate(360deg);
        opacity: 0;
    }
}

.cta-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 3;
}

.cta-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-title-accent {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #6468FB 0%, #7F82FF 50%, #B5B7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}


.btn-cta {
    background: linear-gradient(135deg, #6468FB 0%, #7F82FF 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(100, 104, 251, 0.4),
        0 4px 12px rgba(100, 104, 251, 0.2);
}

.btn-cta-text {
    position: relative;
    z-index: 2;
}

.btn-cta-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.btn-cta-icon svg {
    width: 18px;
    height: 18px;
}

.btn-cta.gradient-border-purple::before {
    z-index: 1;
    border-radius: 50px;
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px 20px 24px;
        min-height: 300px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .platform-item {
        padding: 28px 20px;
        min-height: 150px;
    }

    .platform-icon-img {
        width: 72px;
        height: 72px;
    }

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

    .audience-card {
        padding: 28px 22px 18px 22px;
        min-height: 260px;
    }

    .audience-card-icon {
        width: 72px;
        height: 72px;
    }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 100px 20px;
        min-height: 500px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 40px;
    }

    .cta-link {
        font-size: 14px;
    }

    .cta-grid-pattern {
        background-size: 30px 30px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 80px 20px;
        min-height: 400px;
    }

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

    .cta-container {
        gap: 32px;
    }
}

/* Модальное окно для полноэкранного просмотра изображения */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.image-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1600px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: modalFadeIn 0.3s ease;
}

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

.image-modal-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.image-modal-close {
    position: absolute;
    right: 0;
    width: 48px;
    height: 48px;
    background: rgba(21, 21, 21, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.image-modal-close:hover {
    background: rgba(100, 104, 251, 0.9);
    border-color: rgba(100, 104, 251, 0.5);
    transform: scale(1.1);
}

.image-modal-close:active {
    transform: scale(0.95);
}

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

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .image-modal-content {
        width: 95%;
        height: 95%;
    }
    
    .image-modal-close {
        top: -50px;
        width: 40px;
        height: 40px;
    }
    
    .image-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-zoom-btn {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }
    
    .carousel-zoom-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Adaptation (< 768px) */
@media (max-width: 767px) {
    /* Hide section navigation on mobile */
    .section-navigation {
        display: none !important;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 20px 16px 32px;
        padding-top: calc(92px + env(safe-area-inset-top));
        border-radius: 0 0 28px 28px;
    }
    
    .hero-container {
        gap: 32px;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 0;
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 34px;
        letter-spacing: 0.5px;
        white-space: normal;
        line-height: 1.1;
    }
    
    .hero-tagline {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 15px;
        height: 50px;
    }
    
    .hero-image {
        width: 100%;
        min-height: 250px;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 100%;
    }
    
    /* Modules Section */
    .modules-section {
        padding: 36px 16px;
        margin-bottom: 32px;
    }
    
    .modules-container {
        gap: 24px;
    }
    
    .modules-carousel {
        width: 100%;
    }
    
    .carousel-wrapper {
        height: 680px;
        padding: 8px;
    }
    
    .carousel-slide {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
    }
    
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .carousel-controls {
        margin-top: 20px;
        gap: 16px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 10px;
        height: 10px;
    }
    
    .slide-overlay {
        padding: 32px 24px 24px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .btn-slide {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .modules-content {
        gap: 20px;
    }
    
    .modules-title {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .modules-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .btn-modules {
        max-width: 100%;
        width: 100%;
    }
    
    /* Features Section */
    .features-section {
        padding: 36px 16px;
    }
    
    .features-title-main {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .features-title-accent {
        font-size: 24px;
        display: inline;
    }
    
    .features-description {
        font-size: 15px;
        margin-top: 16px;
        margin-bottom: 28px;
        line-height: 1.6;
        text-align: left;
    }
    
    .features-grid {
        gap: 16px;
        margin-bottom: 28px;
    }
    
    .feature-card {
        padding: 24px 18px 16px 18px;
        min-height: auto;
    }
    
    .features-action {
        margin-top: 16px;
    }
    
    .features-action .btn-modules {
        max-width: 100%;
        width: 100%;
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
    }
    
    .feature-title {
        font-size: 17px;
    }
    
    .feature-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* Module Manager Section */
    .module-manager-section {
        padding: 36px 16px;
    }
    
    .module-manager-container {
        gap: 24px;
    }
    
    .module-manager-content {
        gap: 16px;
    }
    
    .module-manager-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .module-manager-description-main {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .module-manager-description-detail {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .module-manager-image {
        min-height: 220px;
    }
    
    /* Platforms Section */
    .platforms-section {
        padding: 36px 16px;
    }
    
    .platforms-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .platforms-description {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-item {
        padding: 20px 12px;
        min-height: 130px;
    }
    
    .platform-icon-img {
        width: 56px;
        height: 56px;
    }
    
    .platform-icon {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .platform-soon {
        top: 8px;
        right: 8px;
        font-size: 10px;
        padding: 4px 8px;
    }
    
    /* Audience Section */
    .audience-section {
        padding: 36px 16px;
    }
    
    .audience-title {
        font-size: 24px;
        margin-bottom: 12px;
        flex-direction: column;
        gap: 8px;
    }
    
    .audience-title-first {
        font-size: 24px;
    }
    
    .audience-title-text {
        font-size: 24px;
        display: flex;
    }
    
    .audience-description {
        font-size: 15px;
        margin-top: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
        text-align: left;
    }
    
    .audience-grid {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .audience-card {
        padding: 24px 18px 16px 18px;
        min-height: auto;
    }
    
    .audience-card-icon {
        width: 52px;
        height: 52px;
    }
    
    .audience-card-title {
        font-size: 17px;
    }
    
    .audience-card-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .audience-conclusion-text {
        font-size: 15px;
        flex-direction: column;
        gap: 8px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 56px 16px;
        min-height: 400px;
        border-radius: 24px 24px 0 0;
    }
    
    
    .cta-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .cta-title-accent {
        display: inline;
    }
    
    .btn-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .btn-cta-icon {
        width: 28px;
        height: 28px;
    }
    
    .btn-cta-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .cta-grid-pattern {
        background-size: 22px 22px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .modules-title {
        font-size: 24px;
    }
    
    .features-title-main {
        font-size: 22px;
    }
    
    .features-title-accent {
        font-size: 22px;
    }
    
    .module-manager-title {
        font-size: 24px;
    }
    
    .platforms-title {
        font-size: 22px;
    }
    
    .audience-title-first {
        font-size: 22px;
    }
    
    .audience-title-text {
        font-size: 22px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .carousel-wrapper {
        height: 600px;
    }
}


