/* Index.cshtml стили */

/* Platforms Strip - полоска с логотипами платформ */
.platforms-strip {
    background: #fff;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -4rem;
}

.platforms-label {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.platforms-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-width: 180px;
}

.platform-item:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
}

.platform-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon-box svg {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.platform-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

@@media (max-width: 992px) {
    .platforms-row {
        gap: 1.5rem;
    }

    .platform-item {
        padding: 0.6rem 1rem;
    }
}

/* Для больших экранов с высотой 1080px+ (FullHD) поднимаем platforms-strip выше */
@media (min-height: 1080px) and (max-height: 1399px) and (min-width: 1200px) {
    .platforms-strip {
        margin-top: -9rem;
    }
}

/* Для очень больших экранов (1440p+, 2K/4K) немного уменьшаем отступ */
@media (min-height: 1400px) and (min-width: 1920px) {
    .platforms-strip {
        margin-top: -6rem;
    }
}

@@media (max-width: 576px) {
    .platforms-strip {
        padding: 1.5rem 0;
    }

    .platforms-row {
        gap: 1rem;
    }

    .platform-item {
        padding: 0.5rem 0.75rem;
    }

    .platform-name {
        font-size: 0.85rem;
    }

    .platform-icon-box {
        width: 32px;
        height: 32px;
    }

    .platform-icon-box svg {
        width: 24px;
        height: 24px;
    }
}

/* Announcement Bar */
.announcement-bar {
    margin-top: 0.4rem;
    background: linear-gradient(90deg, rgba(44, 62, 80, 0.02) 0%, rgba(44, 62, 80, 0.03) 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    height: 42px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.announcement-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #e6fffc75;
}

.announcement-text {
    display: flex;
    white-space: nowrap;
    animation: scrollText 120s linear infinite;
    color: #2C3E50;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transform: translateX(0);
}

.announcement-text span {
    padding: 0 100px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.announcement-text span:hover {
    opacity: 1;
}

.announcement-text span i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.announcement-text span i.bi-warning {
    color: #2C3E50 !important;
    animation: warningPulse 3s infinite;
    margin-right: 0.3rem;
    transform-origin: center;
}

.announcement-text span i.bi-calendar-event {
    color: #079383;
    margin-right: 0.3rem;
}

@keyframes warningPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.announcement-text span:has(i.bi-warning) {
    color: #2C3E50;
    font-weight: 600;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.announcement-bar::before,
.announcement-bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.announcement-bar::before {
    left: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.announcement-bar::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

/* Floating Hero Section */
.floating-hero-section {
    min-height: 900px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: #fff;
}

.floating-scene {
    position: absolute;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.floating-image-wrapper {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: auto;
    z-index: 1;
}

.floating-image-wrapper.visible {
    opacity: 1;
    transform: scale(1);
}

.floating-image-wrapper.hiding {
    opacity: 0;
    transform: scale(0.8);
}

.floating-image {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.floating-group-badge {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(9, 182, 162, 0.35);
    z-index: 5;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating-group-badge.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.floating-group-badge.hiding {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.floating-hero-content {
    text-align: center;
    max-width: 750px;
    z-index: 10;
    position: relative;
}

.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, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-hero-lead {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.floating-hero-buttons {
    margin-bottom: 2.5rem;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    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);
    box-shadow: 0 4px 15px rgba(9, 182, 162, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.4);
    background: linear-gradient(120deg, #0ac9b3 0%, #08a593 100%);
}

.hero-features-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 190px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #64748b;
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-feature-divider {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* How It Works Section */
.how-it-works-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section h1 {
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 4rem !important;
    position: relative;
    font-size: 2.5rem;
}

.how-it-works-section h1 .hero-subtitle {
    display: block;
    font-size: 0.5em;
    margin-top: 0.5rem;
    background: #2C3E50;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.how-it-works-advs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.how-adv {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    flex: 1;
}

.how-adv:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(var(--primary-rgb), 0.1);
}

.how-adv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 14px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.how-adv:hover .how-adv-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.2);
}
    transform: scale(1.1);
}

.how-adv-text {
    text-align: left;
    flex-grow: 1;
}

.how-adv-title {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.how-adv-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.5;
}

/* Autoposting Section */
.autoposting-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.autoposting-section h1 {
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.autoposting-section .hero-subtitle {
    display: block;
    font-size: 0.5em;
    margin-top: 0.5rem;
    background: #2C3E50;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.autopost-steps {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.autopost-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.autopost-step.reverse {
    flex-direction: row-reverse;
}

.autopost-content {
    flex: 1;
    position: relative;
}

.autopost-image {
    flex: 1;
    position: relative;
}

.autopost-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.autopost-step:hover .autopost-image img {
    transform: scale(1.02);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(var(--primary-rgb), 0.1);
    margin-bottom: 1rem;
    line-height: 1;
}

.autopost-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.autopost-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.platform-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.platform-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.feature-tags {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hide-cursor {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-tag i {
    color: var(--primary-color);
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.autoposting-section .platform-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.autoposting-section .platform-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.autoposting-section .platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1B87EC, #454CEE);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.autoposting-section .platform-text {
    flex-grow: 1;
}

.autoposting-section .platform-text h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.autoposting-section .platform-text p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Referral Section */
.referral-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.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: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.referral-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;
}

.referral-section .hero-subtitle {
    color: #475569;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
    opacity: 0.9;
}

.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%;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0 2rem 0 !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: #ffffff;
}

.features-section .container {
    padding: 2rem 1rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h1 {
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 4rem !important;
    position: relative;
    font-size: 2.5rem;
}

.features-section h1 .hero-subtitle {
    display: block;
    font-size: 0.5em;
    margin-top: 0.5rem;
    background: #2C3E50;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 14px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.2);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.75rem;
}

.feature-content p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features-section .feature-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.features-section .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--primary-rgb), 0.04);
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.features-section .feature-tag:hover {
    background: rgba(var(--primary-rgb), 0.08);
    transform: none;
}

.features-section .feature-tag i {
    font-size: 1rem;
}

.features-section:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.features-section .features-grid {
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon.no-bg {
    background: none;
    box-shadow: none;
}

.feature-icon.no-bg .feature-svg {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-card:hover .feature-icon.no-bg {
    transform: scale(1.1);
    background: none;
    box-shadow: none;
}

/* Floating Letters */
.floating-letters {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.letter {
    position: absolute;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    animation: floatLetter 20s linear infinite;
    will-change: transform;
}

@keyframes floatLetter {
    0% {
        transform: translate(0, 100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: var(--letter-opacity, 0.05);
    }
    90% {
        opacity: var(--letter-opacity, 0.05);
    }
    100% {
        transform: translate(0, -100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: 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%);
    padding-bottom: 8rem;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    width: 45%;
    padding-right: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    max-width: 600px;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: -25%;
    transform: translateY(-50%);
    width: 75%;
    height: 90vh;
    overflow: visible;
}

.main-hero-image {
    height: 90%;
    object-fit: cover;
    object-position: left center;
}

.hero-image::after {
    display: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    display: block;
    font-size: 0.5em;
    margin-top: 0.5rem;
}

.lead {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    width: auto;
    max-width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    padding: 0 1rem;
    text-align: center;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.service-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(9, 182, 162, 0.15);
    border-radius: 12px;
    flex: 1;
    min-width: 0;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 182, 162, 0.1);
    border-color: rgba(9, 182, 162, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.badge-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 182, 162, 0.1);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.badge-item:hover .badge-icon {
    background: var(--primary-color);
}

.badge-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.badge-item:hover .badge-icon i {
    color: white;
}

.badge-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.badge-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-label {
    font-size: 0.65rem;
    color: #6B7280;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #4B5563;
    position: relative;
    backdrop-filter: blur(8px);
}

.feature-label i {
    font-size: 1.25rem;
    color: #0088cc;
}

.feature-hint {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
    margin-top: 0.125rem;
}

.autopost-labels {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.autopost-label {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    gap: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.autopost-label i {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.autopost-label.telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.08) 0%, rgba(0, 136, 204, 0.12) 100%);
    color: #0088cc;
}

.autopost-label.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.12) 0%, rgba(0, 136, 204, 0.16) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.15);
}

.autopost-label.telegram:hover i {
    transform: scale(1.1);
}

.autopost-label.wordpress {
    background: linear-gradient(135deg, rgba(23, 135, 185, 0.08) 0%, rgba(23, 135, 185, 0.12) 100%);
    color: #1787b9;
}

.autopost-label.wordpress:hover {
    background: linear-gradient(135deg, rgba(23, 135, 185, 0.12) 0%, rgba(23, 135, 185, 0.16) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 135, 185, 0.15);
}

.autopost-label.wordpress:hover i {
    transform: scale(1.1);
}

.autopost-label:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.content-type-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(9, 182, 162, 0.15);
    color: var(--text-color);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    margin: 0.2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.content-type-tag i {
    margin-right: 0.4rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.content-type-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-color: rgba(9, 182, 162, 0.25);
}

.tag-seo {
    color: #4F46E5;
    border-color: rgba(79, 70, 229, 0.15);
}

.tag-seo:hover {
    border-color: rgba(79, 70, 229, 0.25);
    background: rgba(79, 70, 229, 0.03);
}

.tag-format {
    color: #EC4899;
    border-color: rgba(236, 72, 153, 0.15);
}

.tag-format:hover {
    border-color: rgba(236, 72, 153, 0.25);
    background: rgba(236, 72, 153, 0.03);
}

.tag-emoji {
    color: #F59E0B;
    border-color: rgba(245, 158, 11, 0.15);
}

.tag-emoji:hover {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.03);
}

.tag-features {
    color: #10B981;
    border-color: rgba(16, 185, 129, 0.15);
}

.tag-features:hover {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.03);
}

.tag-cta {
    color: #8B5CF6;
    border-color: rgba(139, 92, 246, 0.15);
}

.tag-cta:hover {
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.03);
}

.content-type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
    transform: none;
}

.features-section .row {
    margin: 0 -1.5rem;
}

.features-section .col-md-3 {
    padding: 1.5rem;
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.feature-box h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 5rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.05) 15%,
            rgba(0, 0, 0, 0.05) 85%,
            transparent);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-light);
    position: relative;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-info {
    flex-grow: 1;
}

/* Content Types Section */
.content-types-section {
    background: linear-gradient(180deg,
            rgba(248, 250, 252, 0) 0%,
            rgba(248, 250, 252, 1) 15%,
            rgba(248, 250, 252, 1) 85%,
            rgba(241, 245, 249, 0) 100%);
    position: relative;
    padding-top: 8rem;
}

.content-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2rem;
    background: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.content-type-card:hover {
    transform: none;
}

.content-type-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
    border: none;
    margin-bottom: 0.75rem;
}

.content-type-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    width: 100%;
}

.content-type-card p {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 0.5rem;
    width: 100%;
}

.content-types-section .content-type-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.article-icon {
    color: #FFB800;
    background: rgba(255, 184, 0, 0.1);
}

.telegram-icon {
    color: #229ED9;
    background: rgba(34, 158, 217, 0.1);
}

.marketplace-icon {
    color: #8B3FFD;
    background: rgba(139, 63, 253, 0.1);
}

.ads-icon {
    color: #FF3333;
    background: rgba(255, 51, 51, 0.1);
}

.content-type-card:hover .content-type-icon {
    transform: scale(1.05);
}

.content-type-card:hover .article-icon {
    background: rgba(255, 184, 0, 0.15);
}

.content-type-card:hover .telegram-icon {
    background: rgba(34, 158, 217, 0.15);
}

.content-type-card:hover .marketplace-icon {
    background: rgba(139, 63, 253, 0.15);
}

.content-type-card:hover .ads-icon {
    background: rgba(255, 51, 51, 0.15);
}

.content-type-card:hover .content-type-icon i {
    color: white !important;
}

.content-type-card:nth-child(1):hover {
    border-color: #FFB800;
    background: rgba(255, 184, 0, 0.05);
}

.content-type-card:nth-child(2):hover {
    border-color: #229ED9;
    background: rgba(34, 158, 217, 0.05);
}

.content-type-card:nth-child(3):hover {
    border-color: #8B3FFD;
    background: rgba(139, 63, 253, 0.05);
}

.content-type-card:nth-child(4):hover {
    border-color: #FF3333;
    background: rgba(255, 51, 51, 0.05);
}

.content-type-card:hover .content-type-icon {
    background: white;
    border-color: transparent;
}

.content-type-card:nth-child(1):hover .content-type-icon {
    background: #FFB800;
    border-color: #FFB800;
}

.content-type-card:nth-child(2):hover .content-type-icon {
    background: #229ED9;
    border-color: #229ED9;
}

.content-type-card:nth-child(3):hover .content-type-icon {
    background: #8B3FFD;
    border-color: #8B3FFD;
}

.content-type-card:nth-child(4):hover .content-type-icon {
    background: #FF3333;
    border-color: #FF3333;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.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;
}

.section-full-width:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Section Header - общий стиль для заголовков секций */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bg-gradient {
    background: white;
}

.telegram-icon i {
    color: #229ED9 !important;
}

.telegram-icon {
    background: rgba(34, 158, 217, 0.1) !important;
    border-color: rgba(34, 158, 217, 0.2) !important;
}

.content-type-card:hover .telegram-icon {
    background: #229ED9 !important;
    border-color: #229ED9 !important;
}

.content-type-card:hover .telegram-icon i {
    color: white !important;
}

.article-icon i {
    color: #FFB800 !important;
}

.article-icon {
    background: rgba(255, 184, 0, 0.1) !important;
    border-color: rgba(255, 184, 0, 0.2) !important;
}

.content-type-card:hover .article-icon {
    background: #FFB800 !important;
    border-color: #FFB800 !important;
}

.marketplace-icon i {
    color: #8B3FFD !important;
}

.marketplace-icon {
    background: rgba(139, 63, 253, 0.1) !important;
    border-color: rgba(139, 63, 253, 0.2) !important;
}

.content-type-card:hover .marketplace-icon {
    background: #8B3FFD !important;
    border-color: #8B3FFD !important;
}

.ads-icon i {
    color: #FF3333 !important;
}

.ads-icon {
    background: rgba(255, 51, 51, 0.1) !important;
    border-color: rgba(255, 51, 51, 0.2) !important;
}

.content-type-card:hover .ads-icon {
    background: #FF3333 !important;
    border-color: #FF3333 !important;
}

.content-type-card:nth-child(1):hover {
    background: rgba(255, 184, 0, 0.02);
}

.content-type-card:nth-child(2):hover {
    background: rgba(34, 158, 217, 0.02);
}

.content-type-card:nth-child(3):hover {
    background: rgba(139, 63, 253, 0.02);
}

.content-type-card:nth-child(4):hover {
    background: rgba(255, 51, 51, 0.02);
}

.hero-section ::selection {
    background-color: rgba(9, 182, 162, 0.2);
    color: var(--text-color);
    -webkit-text-fill-color: var(--text-color);
}

.hero-section ::-moz-selection {
    background-color: rgba(9, 182, 162, 0.2);
    color: var(--text-color);
    -webkit-text-fill-color: var(--text-color);
}

.typing-text {
    display: inline-block;
    font-size: 0.5em;
    margin: 0.5rem auto 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    white-space: nowrap;
    overflow: visible;
    border-right: none !important;
}

@keyframes typing {
    from {
        width: 0;
        margin-left: 50%;
    }
    to {
        width: 300px;
        margin-left: calc(50% - 150px);
        overflow: visible;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }
    50% {
        border-color: var(--primary-color)
    }
}

/* Capabilities Section */
.capabilities-section {
    padding: 5rem 0;
    background: #ffffff;
}

.capabilities-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.capabilities-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.capabilities-section .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.capability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.capability-row:last-child {
    margin-bottom: 0;
}

.capability-row-reverse {
    direction: rtl;
}

.capability-row-reverse>* {
    direction: ltr;
}

.capability-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    transition: transform 0.4s ease;
    overflow: visible;
}

.capability-icon-box:hover {
    transform: translateY(-10px);
}

.capability-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.capability-icon-box:hover img {
    transform: scale(1.05);
}

.capability-content {
    padding: 20px 0;
}

.capability-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;
}

.capability-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.2;
}

.capability-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.capability-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #09B6A2;
    background: transparent;
    border: 1.5px solid #09B6A2;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.capability-btn:hover {
    background: #09B6A2;
    color: #fff;
}

.capability-btn i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.capability-btn:hover i {
    transform: translateX(3px);
}

/* Specialized Content Section */
.specialized-content-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.specialized-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.posts-preview {
    flex: 0 0 45%;
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.post-image {
    position: absolute;
    width: 58%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.2s ease;
    will-change: transform;
    transform-origin: center center;
}

.post1 {
    transform: translateX(70%) rotate(0deg);
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.post2 {
    transform: translateX(40%) rotate(-5deg);
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.post3 {
    transform: translateX(10%) rotate(-10deg);
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.post1:hover {
    transform: translateX(70%) rotate(0deg) scale(1.02);
    z-index: 10;
}

.post2:hover {
    transform: translateX(40%) rotate(-5deg) scale(1.02);
    z-index: 10;
}

.post3:hover {
    transform: translateX(10%) rotate(-10deg) scale(1.02);
    z-index: 10;
}

.platforms-list {
    flex: 1;
    padding: 4rem 2rem;
    text-align: center;
}

.platforms-list h1 {
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 1rem !important;
    position: relative;
    font-size: 2.5rem;
}

.platform-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.platform-logo svg {
    width: 72px;
    height: 72px;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.platform-logo:hover svg {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

/* Platform Logo Colors */
.platform-logo:nth-child(1) svg {
    fill: #2C3E50;
}

.platform-logo:nth-child(1):hover svg {
    fill: #0088cc;
}

.platform-logo:nth-child(2) svg {
    fill: #2C3E50;
}

.platform-logo:nth-child(2):hover svg {
    fill: #000000;
}

.platform-logo:nth-child(2):hover svg path:first-child {
    fill: #000000;
}

.platform-logo:nth-child(2):hover svg path:last-child {
    fill: white;
}

.platform-logo:nth-child(3) svg .cls-1 {
    fill: #2C3E50;
}

.platform-logo:nth-child(3):hover svg .cls-1 {
    fill: #4C75A3;
}

.platform-logo:nth-child(4) svg path:first-child {
    fill: #2C3E50;
}

.platform-logo:nth-child(4):hover svg path:first-child {
    fill: url(#paint0_linear_7668_1045);
}

.platform-logo:nth-child(5) svg rect {
    fill: #2C3E50;
}

.platform-logo:nth-child(5):hover svg rect {
    fill: #21759B;
}

.platform-logo:nth-child(6) svg {
    fill: #2C3E50;
}

.platform-logo:nth-child(6):hover svg {
    fill: #5091CD;
}

.platform-logo:nth-child(6):hover svg #j-green_1_ {
    fill: #75B13C;
}

.platform-logo:nth-child(6):hover svg #j-orange_1_ {
    fill: #F9A541;
}

.platform-logo:nth-child(6):hover svg #j-red_2_ {
    fill: #EB8B35;
}

.platform-logo:nth-child(6):hover svg #j-blue_2_ {
    fill: #5091CD;
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 1200px) {
    .floating-image {
        max-width: 120px;
        max-height: 150px;
        border-radius: 22px;
    }

    .floating-group-badge {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

@media (max-width: 991px) {
    .floating-hero-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .floating-image-wrapper,
    .floating-group-badge {
        display: none;
    }

    .floating-hero-title {
        font-size: 2.5rem;
    }

    .floating-hero-lead {
        font-size: 1.1rem;
    }

    .how-it-works-advs {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .how-adv {
        width: 100%;
    }

    .how-adv:not(:last-child)::after {
        display: none;
    }

    .how-adv-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .autopost-step {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .autopost-step.reverse {
        flex-direction: column;
    }

    .service-features,
    .feature-tags {
        justify-content: center;
    }

    .step-number {
        text-align: center;
    }

    .autopost-content h3 {
        font-size: 1.5rem;
    }

    .autopost-content p {
        font-size: 1rem;
    }

    .autoposting-section .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .feature-content h4 {
        font-size: 1.125rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

    .features-section .feature-tag {
        padding: 0.4rem 0.875rem;
        font-size: 0.8125rem;
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .capabilities-section {
        padding: 3.5rem 0;
    }

    .capabilities-section .section-header {
        margin-bottom: 2.5rem;
    }

    .capabilities-section .section-title {
        font-size: 2rem;
    }

    .capability-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .capability-row-reverse {
        direction: ltr;
    }

    .capability-icon-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .capability-icon-box i {
        font-size: 5rem;
    }

    .capability-number {
        font-size: 3.5rem;
    }

    .capability-title {
        font-size: 1.5rem;
    }

    .capability-description {
        font-size: 1rem;
    }

    .platform-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0.5rem;
    }

    .platform-logo svg {
        width: 64px;
        height: 64px;
    }

    .platform-logo {
        padding: 1.25rem;
    }

    .specialized-content {
        flex-direction: column;
        gap: 2rem;
    }

    .posts-preview {
        flex: 0 0 auto;
        height: 400px;
        width: 100%;
    }

    .platforms-list {
        padding-top: 3rem;
    }
}

@media (max-width: 768px) {
    .announcement-text span {
        padding: 0 100px;
    }

    .announcement-bar::before,
    .announcement-bar::after {
        width: 80px;
    }

    .announcement-text {
        font-size: 0.85rem;
    }

    .coming-soon-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .coming-soon-badge i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .floating-hero-section {
        padding: 3rem 1rem;
    }

    .floating-hero-title {
        font-size: 2rem;
    }

    .floating-hero-lead {
        font-size: 1rem;
    }

    .hero-tag {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .how-it-works-advs {
        padding: 1rem;
    }

    .how-adv {
        padding: 1rem;
    }

    .how-adv-title {
        font-size: 1rem;
    }

    .how-adv-desc {
        font-size: 0.875rem;
    }

    .autoposting-section {
        padding: 4rem 0;
    }

    .autopost-steps {
        gap: 4rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .autoposting-section .platform-logos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .autoposting-section .platform-logo {
        padding: 1.25rem;
    }

    .features-section {
        padding: 3rem 0;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .features-section .feature-tags {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 0.9rem;
        width: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .service-badges {
        gap: 0.75rem;
        flex-direction: column;
        max-width: 100%;
    }

    .badge-item {
        padding: 0.625rem;
        gap: 0.625rem;
    }

    .badge-icon {
        width: 36px;
        height: 36px;
    }

    .badge-icon i {
        font-size: 1.25rem;
    }

    .badge-value {
        font-size: 1rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .capabilities-section {
        padding: 2rem 0;
    }

    .capability-row {
        gap: 24px;
        margin-bottom: 40px;
    }

    .capability-icon-box {
        max-width: 300px;
    }

    .capability-icon-box i {
        font-size: 4rem;
    }

    .capability-icon-decoration {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -40px;
    }

    .capability-icon-box::before {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: -20px;
    }

    .capability-number {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .capability-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .platform-logo svg {
        width: 56px;
        height: 56px;
    }

    .platform-logo {
        padding: 1rem;
    }

    .platforms-list {
        padding: 16rem 1rem 2rem;
    }

    .platforms-list h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .posts-preview {
        height: 320px;
    }

    .post-image {
        width: 65%;
    }

    .post1 {
        transform: translateX(50%) rotate(0deg);
    }

    .post2 {
        transform: translateX(25%) rotate(-5deg);
    }

    .post3 {
        transform: translateX(0%) rotate(-10deg);
    }

    .post1:hover {
        transform: translateX(50%) rotate(0deg) scale(1.02);
    }

    .post2:hover {
        transform: translateX(25%) rotate(-5deg) scale(1.02);
    }

    .post3:hover {
        transform: translateX(0%) rotate(-10deg) scale(1.02);
    }

    .specialized-content {
        padding: 0 1rem;
    }
}

@media (max-width: 400px) {
    .posts-preview {
        height: 280px;
    }

    .post-image {
        width: 70%;
    }

    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platform-logo svg {
        width: 48px;
        height: 48px;
    }

    .platforms-list h1 {
        font-size: 1.75rem;
    }

    .platforms-list .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* section-header внутри секций с белым фоном */
.features-section .section-header,
.bonus-section .section-header,
.capabilities-section .section-header {
    margin-bottom: 3.5rem;
}

/* section-header внутри секций с серым фоном */
.how-it-works-section .section-header,
.autoposting-section .section-header,
.faq-section .section-header,
.why-choose-section .section-header,
.pricing-section .section-header {
    margin-bottom: 3.5rem;
}

/* Stats Section (Социальное доказательство) */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Адаптивность для статистики */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Почему выбирают нас - секция */
.why-choose-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Тарифные планы - секция */
.pricing-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-choose-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card:hover {
    border-color: #09b6a2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(9, 182, 162, 0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    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: 80px;
    height: 80px;
    object-fit: contain;
}

.why-choose-icon--bi {
    background: linear-gradient(135deg, #09B6A2 0%, #079383 100%);
    border-radius: 50%;
}

.why-choose-icon--bi i {
    font-size: 2.5rem;
    color: white;
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-choose-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    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) {
    .why-choose-section {
        padding: 3.5rem 0;
    }

    .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;
    }
}

/* Тарифные планы - стили */

.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;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: none;
    border-color: #09b6a2;
    box-shadow: 0 0 0 2px rgba(9, 182, 162, 0.1);
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgb(7 147 131 / 50%);
    box-shadow:
        0 0 0 2px rgba(7, 147, 131, 0.05),
        0 8px 16px -8px rgba(7, 147, 131, 0.1);
}

.pricing-card.popular:hover {
    transform: none;
    border-color: #09b6a2;
    box-shadow: 0 0 0 2px rgba(9, 182, 162, 0.1);
}

.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;
    box-shadow: 0 2px 4px rgba(7, 147, 131, 0.15);
}

.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);
    box-shadow: 0 4px 15px rgba(9, 182, 162, 0.3);
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.4);
    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);
    box-shadow: 0 8px 25px rgba(9, 182, 162, 0.4);
    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: -20px;
    right: -4px;
    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;
    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);
}

/* Реферальная программа */
.referral-section {
    position: relative;
    overflow: hidden;
}

.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;
    position: relative;
    z-index: 1;
}

.referral-content .floating-hero-title {
    margin-bottom: 1.5rem;
}

.referral-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 580px;
    text-align: center;
}

/* Бонус при регистрации */
.bonus-section {
    padding: 5rem 0;
    background: #ffffff;
}

.bonus-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.bonus-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #09B6A2 0%, #079383 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1) rotate(5deg);
}

.bonus-icon i {
    font-size: 2.5rem;
    color: white;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bonus-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.bonus-cta-wrapper {
    text-align: center;
}

.bonus-cta-wrapper .hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonus-card {
        padding: 1.5rem;
    }
}

@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;
    }
}

@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);
    }
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
    position: relative;
}

.faq-question::before {
    content: '?';
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #09b6a2 0%, #079383 50%, #065f55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.1;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    padding-right: 1rem;
    padding-left: 3.5rem;
    position: relative;
    z-index: 1;
}

.faq-question i {
    font-size: 1.25rem;
    color: #09b6a2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.25s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > div {
    min-height: 0;
    padding: 0 2rem;
    opacity: 0;
    transition: opacity 0.2s ease, padding 0.2s ease;
}

.faq-item.active .faq-answer > div {
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question::before {
        font-size: 3rem;
        left: 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
        padding-left: 3rem;
    }

    .faq-answer > div {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer > div {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }
}
