/* Product Photos Page Styles */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Mobile optimizations */
* {
    -webkit-tap-highlight-color: rgba(9, 182, 162, 0.15);
    -webkit-touch-callout: none;
}

/* Smooth scrolling for iOS */
body {
    -webkit-overflow-scrolling: touch;
}

/* App-like mobile design */
@media (max-width: 768px) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    }

    /* Отключаем hover эффекты на тач-устройствах */
    @media (hover: none) {

        .photo-card:hover,
        .result-photo:hover,
        .adv-photo:hover {
            transform: none !important;
        }
    }

    /* Modern app-like shadows for mobile */
    .photo-card {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid rgba(9, 182, 162, 0.1);
    }

    .result-photo {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08) !important;
    }

    .photo-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12) !important;
    }
}

/* Section Full Width */
.section-full-width {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.section-full-width .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

/* Universal Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 20px;
}

.floating-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2C3E50;
    text-transform: uppercase;
}

.floating-hero-subtitle {
    display: block;
    font-size: 0.5em;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #09B6A2, #079383);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.subtitle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #09b6a2;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 4px;
}

.subtitle-arrow:hover {
    color: #079383;
    transform: translateX(4px);
}

.subtitle-arrow svg {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Section Background Pattern - Zigzag */
.how-it-works-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(9, 182, 162, 0.1) 50%, transparent 100%);
}

.gallery-showcase-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #353535 50%, #2d2d2d 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(9, 182, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(9, 182, 162, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-showcase-section .section-title {
    color: #ffffff;
}

.gallery-showcase-section .section-subtitle {
    color: #d1d5db;
}

.pricing-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.why-choose-section {
    background: #ffffff;
    padding: 5rem 0;
}

.cta-section-new {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

/* Hero Section - Professional Full Screen */
.hero-section.section-full-width {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(180deg,
            rgba(9, 182, 162, 0.04) 0%,
            rgba(9, 182, 162, 0.02) 35%,
            rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
    padding: 3rem 0 3rem;
    margin-top: -1rem;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
}

/* Header */
.hero-header {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    margin-top: 0;
}

.hero-header .floating-hero-title {
    font-size: clamp(1.875rem, 4.5vw, 3.5rem);
    margin: 2rem 0 1.5rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(9, 182, 162, 0.1);
    border: 1px solid rgba(9, 182, 162, 0.2);
    border-radius: 100px;
    color: #09B6A2;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: #5A6C7D;
    margin: 0 0 2rem 0;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.hero-btn-primary {
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    color: white !important;
    border: 3px solid #09B6A2;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, #079383 0%, #06806f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-btn-primary:hover {
    color: white !important;
    border-color: #079383;
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(3px);
}

.hero-btn-secondary {
    background: transparent;
    color: #09B6A2 !important;
    border: 3px solid #09B6A2;
}

.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-btn-secondary:hover {
    color: white !important;
    border-color: #09B6A2;
}

.hero-btn-secondary:hover::before {
    opacity: 1;
}

/* Transformation Showcase */
.transformation-showcase {
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Example Navigation Dots */
.example-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Оптимизация для FullHD и близких разрешений */
@media (min-width: 1000px) and (max-width: 1950px) {
    .example-navigation {
        display: none;
    }

    .transformation-container {
        transform: scale(0.9);
        transform-origin: top center;
    }
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #09B6A2;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dot:hover {
    transform: scale(1.2);
    border-color: #079383;
}

.nav-dot.active {
    background: #09B6A2;
    border-color: #09B6A2;
    transform: scale(1.1);
}

.nav-dot.active .dot-inner {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Photo transition effects */
.photo-image {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.result-photo {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.photo-transitioning {
    opacity: 0.3;
    transform: scale(0.95);
}

.transformation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

/* Photo Cards */
.photo-card {
    position: relative;
    background: transparent;
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.photo-card:hover {
    transform: translateY(-10px);
}

.photo-caption {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: -0.01em;
}

.photo-image {
    display: block;
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

/* Results Wrapper */
.results-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Results Fan Layout */
.results-fan {
    position: relative;
    width: 600px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-photo {
    position: absolute;
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.result-photo-1 {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    z-index: 1;
}

.result-photo-2 {
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    z-index: 2;
}

/* Hover Effects */
.result-photo-1:hover {
    transform: translateY(-50%) rotate(-2deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.result-photo-2:hover {
    transform: translateY(-50%) rotate(2deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* When hovering one, slightly fade the other */
.results-fan:hover .result-photo:not(:hover) {
    opacity: 0.7;
    filter: brightness(0.9);
}

/* Arrow */
.arrow-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: center;
    padding-right: 50px;
}

.arrow-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    color: #09B6A2;
    position: relative;
    z-index: 2;
    animation: arrowSlide 2s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(9, 182, 162, 0.25));
}

.arrow-pulse {
    display: none;
}

@keyframes arrowSlide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* CTA Button */
.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(9, 182, 162, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.4);
    background: linear-gradient(120deg, #0AC5B0 0%, #08A391 100%);
    color: white;
    text-decoration: none;
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* CTA Button with Outline */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: #09B6A2;
    border: 2px solid #09B6A2;
    box-shadow: 0 4px 15px rgba(9, 182, 162, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-hero-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.3);
    color: white;
    border-color: #09B6A2;
    text-decoration: none;
}

.btn-hero-outline:hover::before {
    opacity: 1;
}

.btn-hero-outline i {
    transition: transform 0.3s ease;
}

.btn-hero-outline:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .results-fan {
        width: 450px;
        height: 440px;
    }

    .result-photo {
        width: 340px;
        height: 440px;
    }

    .result-photo-1 {
        left: -45px;
    }

    .result-photo-2 {
        right: -45px;
    }
}

@media (max-width: 1400px) {
    .hero-actions {
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 1200px) {
    .transformation-container {
        gap: 2rem;
    }

    .photo-image {
        width: 300px;
        height: 300px;
    }

    .results-fan {
        width: 500px;
        height: 460px;
    }

    .result-photo {
        width: 380px;
        height: 460px;
    }

    .result-photo-1 {
        left: -50px;
    }

    .result-photo-2 {
        right: -50px;
    }
}

@media (max-width: 992px) {
    .hero-section.section-full-width {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }

    .hero-wrapper {
        gap: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .transformation-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .arrow-wrapper {
        transform: rotate(90deg);
    }

    .photo-image {
        width: 320px;
        height: 320px;
    }

    .results-fan {
        width: 420px;
        height: 420px;
    }

    .result-photo {
        width: 350px;
        height: 440px;
    }
}

@media (max-width: 768px) {
    .hero-section.section-full-width {
        min-height: auto;
        padding: 2.5rem 0 3.5rem;
    }

    .hero-wrapper {
        padding: 0 1.25rem;
        gap: 2rem;
    }

    .hero-header {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .example-navigation {
        margin-bottom: 1.25rem;
    }

    .transformation-container {
        gap: 2rem;
    }

    .photo-card {
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .photo-image {
        width: 200px;
        height: 200px;
    }

    .arrow-icon {
        width: 50px;
        height: 50px;
    }

    .results-fan {
        width: 280px;
        height: 300px;
    }

    .result-photo {
        width: 220px;
        height: 280px;
        border-radius: 18px;
    }

    .result-photo-1 {
        left: -25px;
    }

    .result-photo-2 {
        right: -25px;
    }

    .btn-hero,
    .btn-hero-outline {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Улучшенная навигация для тач-устройств */
    .nav-dot {
        width: 14px;
        height: 14px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-dot:active {
        transform: scale(0.9);
    }

    /* Улучшенная прокрутка */
    .transformation-showcase {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .hero-section.section-full-width {
        padding: 2rem 0 3rem;
        min-height: auto;
    }

    .hero-wrapper {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .example-navigation {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }

    .transformation-container {
        gap: 1.5rem;
    }

    .photo-card {
        padding: 0.75rem;
    }

    .photo-image {
        width: 160px;
        height: 160px;
    }

    .arrow-icon {
        width: 40px;
        height: 40px;
    }

    .arrow-container {
        padding-right: 0;
    }

    .results-fan {
        width: 240px;
        height: 260px;
    }

    .result-photo {
        width: 180px;
        height: 240px;
        border-radius: 16px;
    }

    .result-photo-1 {
        left: -20px;
    }

    .result-photo-2 {
        right: -20px;
    }

    .result-photo-1:hover,
    .result-photo-2:hover {
        transform: translateY(-50%) rotate(0deg) scale(1.02);
    }
}

/* How It Works Section */

.how-step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.how-step-row:last-child {
    margin-bottom: 0;
}

.how-step-row-reverse {
    direction: rtl;
}

.how-step-row-reverse>* {
    direction: ltr;
}

.how-step-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.how-step-image:hover {
    transform: translateY(-10px);
}

.how-step-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.how-step-content {
    padding: 20px 0;
}

.how-step-number {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #09B6A2 0%, #079383 50%, #06846B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.4;
    letter-spacing: -0.02em;
}

.how-step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.2;
}

.how-step-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .how-step-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .how-step-row-reverse {
        direction: ltr;
    }

    .how-step-number {
        font-size: 3.5rem;
    }

    .how-step-title {
        font-size: 1.5rem;
    }

    .how-step-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 2rem 0;
    }

    .how-it-works-section h1 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem !important;
    }

    .how-it-works-section h1 .hero-subtitle {
        font-size: 0.875rem;
        margin-top: 0.375rem;
    }

    .how-it-works-advs {
        padding: 1rem;
        gap: 1rem;
        border-radius: 12px;
    }

    .how-adv {
        padding: 1rem;
        gap: 1rem;
        border-radius: 12px;
        background: rgba(9, 182, 162, 0.01);
    }

    .how-adv:active {
        background: rgba(9, 182, 162, 0.03);
    }

    .how-adv-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
        border-radius: 12px;
    }

    .how-adv-title {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }

    .how-adv-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    /* Убираем разделители на мобильных */
    .how-adv:not(:last-child)::after {
        display: none;
    }
}

/* AI Models Section - Exact copy from ImageGenerator.css */
.advantages-section-photos {
    padding: 0 0 2rem 0;
    position: relative;
    z-index: 2;
}

.advs-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.adv-photo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    background: white;
    height: auto;
    position: relative;
}

.adv-photo:hover {
    transform: none;
    box-shadow: none;
}

.adv-photo:active {
    transform: none;
}

.adv-photo.selected {
    background: rgba(0, 166, 147, 0.05);
    border-color: #00A693;
}

.adv-photo.selected .adv-icon-photo {
    background: linear-gradient(135deg, #1B87EC, #454CEE);
}

.adv-photo.selected .adv-icon-photo svg path {
    fill: white;
}

.adv-photo.selected .adv-icon-photo svg polygon {
    fill: white;
}

.adv-photo.selected .adv-icon-photo svg .cls-1,
.adv-photo.selected .adv-icon-photo svg .cls-2,
.adv-photo.selected .adv-icon-photo svg .cls-3,
.adv-photo.selected .adv-icon-photo svg .cls-4 {
    fill: white;
}

.adv-photo.selected .adv-icon-photo svg path[fill="#4285F4"],
.adv-photo.selected .adv-icon-photo svg path[fill="#34A853"],
.adv-photo.selected .adv-icon-photo svg path[fill="#FBBC05"],
.adv-photo.selected .adv-icon-photo svg path[fill="#EB4335"] {
    fill: white;
}

.adv-icon-photo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 135, 236, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: #6c757d;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Специальные стили для красивых логотипов моделей */
.ai-tunnel-icon {
    width: 24px;
    height: 24px;
    transition: color 0.2s ease;
}

.adv-icon-photo svg {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

/* Специальные стили для SVG логотипов FLUX и Seedream */
.adv-icon-photo svg[id="_Слой_1"] {
    width: 20px;
    height: 20px;
}

.adv-icon-photo svg polygon {
    transition: fill 0.2s ease;
}

/* Специальные стили для логотипа Seedream-3 */
.adv-icon-photo svg[data-name="Слой 1"] {
    width: 20px;
    height: 20px;
}

/* Специальные стили для многоцветного логотипа Seedream */
.adv-icon-photo svg .cls-1 {
    fill: #6248DE;
    transition: fill 0.2s ease;
}

.adv-icon-photo svg .cls-2 {
    fill: #547eb9;
    transition: fill 0.2s ease;
}

.adv-icon-photo svg .cls-3 {
    fill: #88c5c1;
    transition: fill 0.2s ease;
}

.adv-icon-photo svg .cls-4 {
    fill: #405fa3;
    transition: fill 0.2s ease;
}

.adv-text-photo {
    text-align: left;
    flex-grow: 1;
    min-width: 0;
    padding-right: 16px;
}

.adv-title-photo {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.125rem;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.adv-desc-photo {
    font-size: 0.75rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Dynamic icon backgrounds based on model keys - ALWAYS ACTIVE HOVER STATE */
.replicate-flux-schnell-lq-icon {
    background: rgba(27, 135, 236, 0.1);
}

.replicate-flux-schnell-icon {
    background: rgba(27, 135, 236, 0.1);
}

.replicate-minimax-image-01-icon {
    background: rgba(27, 135, 236, 0.1);
}

.replicate-qwen-image-icon {
    background: rgba(27, 135, 236, 0.1);
}

.replicate-seedream-4-icon {
    background: rgba(27, 135, 236, 0.1);
}

.replicate-ideogram-v3-turbo-icon {
    background: rgba(27, 135, 236, 0.1);
}

.imagen-3-icon {
    background: rgba(27, 135, 236, 0.1);
}

.stable-diffusion-3-5-large-turbo-icon {
    background: rgba(27, 135, 236, 0.1);
}

/* Override gradient backgrounds for specific models */
.replicate-flux-schnell-lq-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.replicate-flux-schnell-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.replicate-minimax-image-01-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.replicate-qwen-image-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.replicate-seedream-4-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.replicate-ideogram-v3-turbo-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.imagen-3-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

.stable-diffusion-3-5-large-turbo-icon {
    background: rgba(27, 135, 236, 0.1) !important;
}

@media (max-width: 991px) {
    .advs-photos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .adv-photo {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .advantages-section-photos {
        margin-top: 0;
        padding: 1rem 0;
    }

    .advs-photos {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 12px;
    }

    .adv-photo {
        padding: 0.875rem;
        border-radius: 12px;
        background: rgba(9, 182, 162, 0.02);
        transition: all 0.2s ease;
    }

    .adv-photo:active {
        background: rgba(9, 182, 162, 0.05);
        transform: scale(0.98);
    }

    .adv-icon-photo {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .adv-icon-photo svg {
        width: 18px;
        height: 18px;
    }

    .adv-title-photo {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .adv-desc-photo {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Убираем белое пространство для мобильных */
    .advantages-section-photos .container {
        padding: 0 1rem;
    }
}

/* CTA Section - Referral Program Style */
.cta-section {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.cta-background-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-background-icons::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 0% 0%, rgba(9, 182, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(9, 182, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section h1 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem !important;
    position: relative;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-section .hero-subtitle {
    color: #475569;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
    opacity: 0.9;
}

.cta-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
    margin: 1.25rem auto 1.75rem;
    max-width: 580px;
}

.cta-button {
    margin-top: 0.25rem;
    position: relative;
}

.cta-button .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 182, 162, 0.3);
}

.cta-button .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.4);
    background: linear-gradient(120deg, #0AC5B0 0%, #08A391 100%);
    color: white;
    text-decoration: none;
}

.cta-button .btn-primary i {
    transition: transform 0.3s ease;
}

.cta-button .btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-section h1 {
        font-size: 2rem;
    }

    .cta-section .hero-subtitle {
        font-size: 1rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Pricing Section Styles */
.pricing-hero {
    display: none;
}

.pricing-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    overflow: visible;
}

.pricing-hero .hero-content h1 {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #079383;
    -webkit-text-fill-color: #2c3e50;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: none;
    border-color: #09b6a2;
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgb(7 147 131 / 50%);
}

.pricing-card.popular:hover {
    transform: none;
    border-color: #09b6a2;
}

.popular-label {
    position: absolute;
    top: -12px;
    right: 24px;
    transform: none;
    background: linear-gradient(135deg, #09b6a2 0%, #079383 100%);
    color: white;
    padding: 5px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    z-index: 1;
    letter-spacing: 0.02em;
}

.card-header {
    text-align: center;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex-grow: 1;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.3rem 0;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.4;
}

.features li i {
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    top: -1px;
    color: #2C3E50;
}

.features li i.bi-x {
    font-size: 1.125rem;
    color: #718096;
}

.features li i.bi-check2 {
    color: #079383;
}

.pricing-card.popular .features li i.bi-collection-play-fill,
.pricing-card.popular .features li i.bi-rocket-takeoff-fill,
.pricing-card.popular .features li i.bi-layers-fill,
.pricing-card.popular .features li i.bi-piggy-bank-fill {
    color: #099388;
}

.pricing-card.popular .features li:has(i.bi-collection-play-fill) span,
.pricing-card.popular .features li:has(i.bi-rocket-takeoff-fill) span,
.pricing-card.popular .features li:has(i.bi-layers-fill) span,
.pricing-card.popular .features li:has(i.bi-piggy-bank-fill) .bonus-amount {
    color: #099388;
    font-weight: 600;
}

.generation-cost {
    margin: 1rem -1.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(9, 182, 162, 0.04);
    border-top: 1px solid rgba(9, 182, 162, 0.08);
    border-bottom: 1px solid rgba(9, 182, 162, 0.08);
}

.generation-cost-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 600;
}

.generation-cost-header i {
    color: #099388;
    font-size: 1.2rem;
    animation: pulse-lightning 2s ease-in-out infinite;
}

.generation-cost-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.1rem 0;
    gap: 0.5rem;
}

.cost-label {
    color: #4a5568;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cost-label::before {
    content: '•';
    color: #099388;
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}

.cost-value {
    color: #099388;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    margin-left: 1rem;
}

@keyframes pulse-lightning {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.pricing-card .btn-primary {
    background: #09b6a2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
}

.pricing-card .btn-primary:hover {
    transform: none;
    background: #06846b;
}

.pricing-notice {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.pricing-notice .price {
    color: #1DBCAA;
}

.pricing-notice.free {
    color: #2c3e50;
}

.card-action {
    padding: 0.875rem 0 0;
}

.pricing-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    color: white !important;
    border: 3px solid #09B6A2;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, #0ac9b3 0%, #08a593 100%);
}

.pricing-card.popular .btn-primary {
    background: linear-gradient(120deg, #09B6A2 0%, #079383 100%);
    color: white;
}

.pricing-card.popular .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, #0ac9b3 0%, #08a593 100%);
}

.pricing-card.popular .features li i.bi-check2 {
    color: #09b6a2;
}

.vip-title {
    position: relative;
    display: inline-block;
}

.p-with-crown {
    position: relative;
    display: inline-block;
}

.crown-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    top: -18px;
    right: -22px;
    transform: rotate(16deg);
    transition: all 0.3s ease;
}

.pricing-card:hover .crown-icon {
    top: -22px;
    right: -3px;
    transform: rotate(1deg);
}

.crown-main {
    fill: #ffcf08;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
}

.crown-base {
    fill: #857247;
}

.bonus-amount {
    color: #09b6a2;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

.pricing-card:hover .bonus-amount {
    color: #06846b;
}

.bonus-tooltip-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 0.375rem;
    vertical-align: middle;
}

.bonus-help-icon {
    font-size: 0.9375rem;
    color: #09b6a2;
    cursor: help;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: rgba(9, 182, 162, 0.08);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(9, 182, 162, 0.15);
}

.bonus-help-icon:hover {
    opacity: 1;
    background: rgba(9, 182, 162, 0.15);
    border-color: rgba(9, 182, 162, 0.3);
    transform: scale(1.1);
}

.bonus-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(9, 182, 162, 0.2);
    border-radius: 10px;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #2d3748;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(9, 182, 162, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 10;
    line-height: 1.4;
}

.bonus-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.98);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.bonus-tooltip-wrapper:hover .bonus-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 12px);
}

@media (max-width: 1200px) {
    .pricing-grid {
        gap: 1.5rem;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .pricing-hero .hero-content h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }

    .pricing-card.popular {
        transform: translateY(0);
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 0 1rem 2rem;
    }

    .pricing-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .card-header h3 {
        font-size: 1.75rem;
    }

    .pricing-notice {
        font-size: 1.25rem;
    }
}

/* Referral Section */
.referral-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.referral-background-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.referral-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.08;
    color: rgba(9, 182, 162, 0.8);
    transform-origin: center;
}

.icon1 {
    top: -20px;
    left: 15%;
    transform: rotate(-15deg);
    animation: floatIcon 20s infinite ease-in-out;
    opacity: 0.1;
}

.icon2 {
    top: 40%;
    right: 10%;
    transform: rotate(15deg) scale(0.8);
    animation: floatIcon 25s infinite ease-in-out reverse;
    opacity: 0.12;
}

.icon3 {
    bottom: -30px;
    left: 25%;
    transform: rotate(5deg) scale(1.2);
    animation: floatIcon 22s infinite ease-in-out;
    opacity: 0.09;
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.referral-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 0% 0%, rgba(9, 182, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(9, 182, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.referral-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.referral-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
    margin: 1.25rem auto 1.75rem;
    max-width: 580px;
}

.referral-button {
    margin-top: 0.25rem;
    position: relative;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(9, 182, 162, 0.15), rgba(9, 182, 162, 0.25));
    border: 1px solid rgba(9, 182, 162, 0.2);
    border-radius: 8px;
    color: #09B6A2;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.coming-soon-badge i {
    font-size: 1.1rem;
    animation: starPulse 2s infinite;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shimmer 3s infinite;
    transform: skewX(-20deg);
}

@keyframes starPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* New CTA Section Styles */
.cta-section-new {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #09B6A2, #079383, #09B6A2);
    animation: shimmerBorder 3s infinite;
}

@keyframes shimmerBorder {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cta-visual {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-app-image {
    width: 280px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-app-image:hover {
    transform: none;
    box-shadow: none;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(9, 182, 162, 0.3);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.particle-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: -20px;
    animation-delay: 0.5s;
}

.particle-3 {
    bottom: 20%;
    left: -10px;
    animation-delay: 1s;
}

.particle-4 {
    top: 40%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.6;
    }
}

.cta-text-content {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.25rem;
    color: #09B6A2;
    flex-shrink: 0;
}

.cta-button-wrapper {
    display: inline-block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #09B6A2, #079383);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(9, 182, 162, 0.4);
    background: linear-gradient(135deg, #0AC5B0, #08A391);
    color: white;
    text-decoration: none;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .cta-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .cta-text-content {
        text-align: center;
    }

    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .cta-section-new {
        padding: 3rem 0;
    }

    .cta-container {
        padding: 0 1rem;
    }

    .cta-content-wrapper {
        padding: 1.5rem;
    }

    .cta-app-image {
        width: 220px;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section-new {
        padding: 2.5rem 0;
    }

    .cta-container {
        padding: 0 0.75rem;
    }

    .cta-content-wrapper {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        border-radius: 20px;
    }

    .cta-app-image {
        width: 160px;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .cta-subtitle {
        font-size: 0.9375rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1.75rem;
        align-items: flex-start;
    }

    .cta-feature {
        font-size: 0.875rem;
        gap: 0.625rem;
    }

    .cta-feature i {
        font-size: 1.125rem;
    }

    .cta-button {
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
        border-radius: 10px;
        width: 100%;
        justify-content: center;
    }

    .particle {
        width: 6px;
        height: 6px;
    }
}

/* Gallery Showcase Section */

.gallery-showcase-section .floating-hero-title {
    color: white;
}

.gallery-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}

.gallery-scroll-container:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 0 40px;
    width: fit-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 280px;
    height: 373px;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-choose-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card:hover {
}

.why-choose-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-icon svg {
    width: 50px;
    height: 50px;
}

.why-choose-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.why-choose-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-choose-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .why-choose-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Universal sections mobile */
    .floating-hero-title {
        font-size: 2rem;
    }

    .floating-hero-subtitle {
        font-size: 0.55em;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .how-it-works-section,
    .gallery-showcase-section,
    .pricing-section,
    .referral-section,
    .why-choose-section,
    .cta-section-new {
        padding: 60px 0;
    }

    /* Gallery specific */
    .gallery-item {
        width: 220px;
        height: 293px;
    }

    .gallery-track {
        gap: 16px;
        padding: 0 20px;
    }

    /* Why Choose specific */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .why-choose-card {
        padding: 32px 24px;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .why-choose-icon svg {
        width: 35px;
        height: 35px;
    }

    .why-choose-title {
        font-size: 1.25rem;
    }

    .why-choose-description {
        font-size: 0.9375rem;
    }
}
