@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    /* Base palette: align with app (turquoise + deep graphite) */
    --primary-dark: #0A0F14;          /* app --background */
    --primary-medium: #111922;        /* app --background-light */
    --primary-light: #F0F4F8;         /* app --text */

    --primary-accent: #40E0D0;        /* app --primary */
    --primary-accent-dark: #2BA5A0;   /* app --primary-dark */
    --primary-accent-darker: #1E7B7B; /* app --turquoise-dark */
    --primary-accent-dimmest: #0F4C4C;/* app --turquoise-darker */

    --primary-transition: #6366F1;    /* app-like indigo */
    --primary-transition-2: #8B5CF6;  /* app-like purple */

    --secondary-accent: #F87171;      /* app --error */
    --tertiary-accent: #5EEAD4;       /* app --success */
    --gold: #FCD34D;                  /* app-like warm accent */
    --link: #67E8F9;                  /* app-like link/cyan */

    --accent-rgb: 64, 224, 208;
    --accent-dark-rgb: 43, 165, 160;
    --transition-rgb: 99, 102, 241;
    --transition-2-rgb: 139, 92, 246;

    --gradient-blue: linear-gradient(135deg, #0F2435 0%, var(--primary-accent-darker) 55%, var(--primary-accent) 100%);
    --gradient-purple: linear-gradient(135deg, #0F2435 0%, var(--primary-transition) 55%, var(--primary-transition-2) 100%);
    --gradient-dark: linear-gradient(135deg, #060A0D 0%, var(--primary-dark) 60%, var(--primary-medium) 100%);

    /* Section gradients (top → bottom) */
    --hero-0: #060A0D;
    --hero-1: var(--primary-dark);
    --hero-2: #0F2435;
    --hero-3: var(--primary-accent-dimmest);

    --process-0: var(--hero-3);
    --process-1: #0F2435;
    --process-2: var(--primary-medium);
    --process-3: var(--primary-dark);

    --audience-0: var(--process-3);
    --audience-1: #0F2435;
    --audience-2: #1A3A52;
    --audience-3: var(--primary-accent-darker);

    --features-0: var(--audience-3);
    --features-1: var(--primary-accent-dark);
    --features-2: #0F2435;
    /* Keep section backgrounds in dark+turtle (purple stays as a small accent, not a full section fill) */
    --features-3: #0F2435;

    --ai-0: var(--features-3);
    --ai-1: #1A3A52;
    --ai-2: #0F2435;
    --ai-3: var(--primary-dark);

    --works-0: var(--ai-3);
    --works-1: #0F2435;
    --works-2: #1A3A52;
    --works-3: var(--primary-accent-dark);

    --pricing-0: var(--works-3);
    --pricing-1: var(--primary-accent-darker);
    --pricing-2: #0F2435;
    --pricing-3: var(--primary-dark);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--primary-dark);
    background-image: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}


/* Footer should match the landing's final dark tone */
footer {
    background-color: #060A0D !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-transition-2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 22px rgba(64, 224, 208, 0.18);
}

.tooltip {
    position: fixed;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(17, 25, 34, 0.92);
    color: white;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
}

.company-info {
    font-size: 0.875rem;
    color: rgba(240, 244, 248, 0.72);
    line-height: 1.6;
}

.company-info-group {
    margin-bottom: 1rem;
}

.company-info-label {
    color: rgba(240, 244, 248, 0.92);
    font-weight: 500;
}

.section-gradient-blue {
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.section-gradient-blue::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-dark), transparent);
    pointer-events: none;
    z-index: 1;
}

.section-gradient-purple {
    background: var(--gradient-purple);
}

.section-gradient-dark {
    background: var(--gradient-dark);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-primary-medium {
    background-color: var(--primary-medium);
}

.bg-primary-accent {
    background-color: var(--primary-accent-dark);
    background-image: linear-gradient(135deg, var(--primary-accent-darker), var(--primary-accent-dark));
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-primary-transition {
    background-color: var(--primary-transition);
    background-image: linear-gradient(135deg, var(--primary-transition), var(--primary-transition-2));
}

.text-primary-accent {
    color: var(--primary-accent);
}

.text-primary-transition {
    color: var(--primary-transition);
}

.text-secondary-accent {
    color: var(--secondary-accent);
}

.bg-secondary-accent {
    background-color: var(--secondary-accent) !important;
}

.text-tertiary-accent {
    color: var(--tertiary-accent);
}

.text-gold {
    color: var(--gold);
}

.text-gemini {
    color: #2dd4bf;
}

.text-deepseek {
    color: #f9a8d4;
}

.text-primary-light {
    color: var(--primary-light);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.border-primary-accent {
    border-color: var(--primary-accent);
}

.glass-card {
    background: linear-gradient(135deg, rgba(17, 25, 34, 0.62), rgba(6, 10, 13, 0.42));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.35);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.32);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38), 0 0 18px rgba(64, 224, 208, 0.14);
}

/* Gift banner */
.gift-banner {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(255, 153, 102, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-banner:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 153, 102, 0.45);
    box-shadow: 0 14px 36px rgba(255, 153, 102, 0.14);
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF9966 0%, #FFD700 100%);
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 153, 102, 0.3);
}

.gift-banner-compact {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.12) 0%, rgba(255, 215, 0, 0.12) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 102, 0.25);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(255, 153, 102, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-banner-compact:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 153, 102, 0.38);
    box-shadow: 0 12px 34px rgba(255, 153, 102, 0.12);
}

.gift-nav-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    border: 1px solid rgba(255, 153, 102, 0.4);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-nav-indicator:hover {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    border-color: rgba(255, 153, 102, 0.6);
    transform: scale(1.05);
}

.gift-nav-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.98);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.gift-nav-indicator:hover .gift-nav-tooltip {
    opacity: 1;
    pointer-events: auto;
}

.gift-nav-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 153, 102, 0.3);
}

.gift-mobile-banner {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    text-align: center;
}

h2.font-display,
h3.font-display {
    line-height: 1.35;
}

@media (max-width: 640px) {
    .gift-banner {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .gift-nav-tooltip {
        min-width: 220px;
        font-size: 0.75rem;
    }
}

/* Fix missing Tailwind-like helpers used in template (CDN build has no custom colors) */
.bg-primary-dark\\/90 { background-color: rgba(10, 15, 20, 0.90) !important; }
.bg-primary-dark\\/95 { background-color: rgba(10, 15, 20, 0.95) !important; }
.hover\\:bg-primary-transition:hover { background-image: linear-gradient(135deg, var(--primary-transition), var(--primary-transition-2)) !important; }
.hover\\:bg-primary-accent\\/10:hover { background-color: rgba(var(--accent-rgb), 0.10) !important; }
.hover\\:text-primary-accent:hover { color: var(--primary-accent) !important; }
.hover\\:border-primary-accent:hover { border-color: var(--primary-accent) !important; }
.bg-white\\/5 { background-color: rgba(255, 255, 255, 0.05) !important; }
.bg-white\\/10 { background-color: rgba(255, 255, 255, 0.10) !important; }
.bg-white\\/30 { background-color: rgba(255, 255, 255, 0.30) !important; }
.border-white\\/10 { border-color: rgba(255, 255, 255, 0.10) !important; }
.from-primary-dark { --tw-gradient-from: var(--primary-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(10, 15, 20, 0)); }

/* Slightly tint Tailwind grays towards app look (landing-only) */
.border-gray-800 { border-color: rgba(255, 255, 255, 0.08) !important; }
.text-gray-400 { color: rgba(240, 244, 248, 0.62) !important; }
.text-gray-300 { color: rgba(240, 244, 248, 0.76) !important; }
.text-gray-200 { color: rgba(240, 244, 248, 0.90) !important; }

/* FAQ */
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform 0.2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.gemini-bar {
    background-color: #2dd4bf;
    background-image: linear-gradient(90deg, #2dd4bf 0%, #0ea5e9 100%);
}

.deepseek-bar {
    background-color: #f9a8d4;
    background-image: linear-gradient(90deg, #c4b5fd 0%, #f9a8d4 100%);
}

.heading-xl {
    font-size: clamp(3rem, 5vw, 4rem); /* увеличенный размер шрифта для Карманный консультант */
    line-height: 1.1;
    font-family: 'Unbounded', sans-serif;
}

.hero-subtitle {
    font-size: 3rem;
    line-height: 1.15;
    max-width: 100%;
    margin-top: 0.25rem;
    display: block;
    word-break: normal;
    white-space: normal;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    max-width: 580px;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Мобильное выпадающее меню */
.mobile-dropdown {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.mobile-dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 24px;
}

.mobile-nav-link:hover {
    background-color: rgba(var(--accent-rgb), 0.10);
    color: var(--primary-accent);
}

.mobile-registration-btn {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    min-width: 220px;
}

.cta-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--primary-accent);
    color: var(--primary-light);
    background: transparent;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(var(--accent-rgb), 0.18);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.cta-outline-btn:hover,
.cta-outline-btn:focus {
    background-color: rgba(var(--accent-rgb), 0.12);
    color: var(--primary-light);
    transform: translateY(-1px);
}

.cta-outline-btn:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.35);
    outline-offset: 2px;
}

.nav-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.75rem;
    border-radius: 0.85rem;
    border: 1.5px solid var(--primary-accent);
    color: var(--primary-light);
    font-weight: 600;
    background: transparent;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.14);
    text-decoration: none;
}

.nav-outline-btn:hover,
.nav-outline-btn:focus {
    background-color: rgba(var(--accent-rgb), 0.15);
    color: var(--primary-light);
}

.nav-outline-btn:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.35);
    outline-offset: 2px;
}

/* Адаптивные стили */
@media (max-width: 1024px) {
    .hero-subtitle {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    section {
        padding: 3rem 0;
    }

    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }

    .py-20 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-subtitle {
        font-size: 2.1rem !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1.2rem !important;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .heading-xl {
        font-size: 2.5rem;
    }

    .mobile-menu {
        display: block;
    }

    .md\:flex {
        display: none !important;
    }

    .mobile-nav-content {
        padding: 0 20px;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 16px 24px;
        margin: 0 auto;
        max-width: 280px;
    }

    .mobile-registration-btn {
        margin-top: 8px;
        padding: 14px 32px;
        font-size: 1.1rem;
        max-width: 280px;
    }

    .cta-outline-btn,
    .nav-outline-btn {
        width: 100%;
        max-width: 320px;
    }

    .nav-outline-btn {
        margin-top: 0.5rem;
    }

    .flex.flex-wrap.gap-4 {
        padding: 0 1rem;
        justify-content: center;
        width: 100%;
    }

.registration-btn {
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    white-space: nowrap;
    padding: 0.875rem 2.5rem !important;
    z-index: 10000;
    line-height: 1.5;
}

/* Desktop кнопки */
@media (min-width: 769px) {
    .registration-btn {
        width: auto !important;
        max-width: none;
        padding: 0.875rem 3rem !important;
        white-space: nowrap;
    }
}

.personal-plan-btn {
    transition: all 0.2s ease;
    border: none;
}

.personal-plan-btn:hover,
.personal-plan-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), 0 0 18px rgba(var(--accent-rgb), 0.12);
}

.personal-plan-btn:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.35);
    outline-offset: 2px;
}

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .hero-registration-btn {
        margin: 0 auto !important;
        display: block !important;
    }

    .flex.flex-wrap.gap-4 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-btn-container {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 12px;
    }
    .hero-registration-btn {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: block !important;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1.5rem 0;
    }

    .py-20 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.85rem !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1.1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-floating {
        max-width: 120% !important;
        margin-left: 10% !important;
        padding: 0;
    }

    .hero-floating img {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-subtitle {
        font-size: 1.55rem !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-floating {
        max-width: 125% !important;
        margin-left: 12% !important;
    }

    .heading-xl {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem !important;
        margin-bottom: 2rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .stats-item {
        padding: 1.5rem 1rem;
    }

    /* Мобильное меню на очень маленьких экранах */
    .mobile-nav-content {
        padding: 0 16px;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 14px 20px;
        max-width: 260px;
    }

    .mobile-registration-btn {
        padding: 12px 28px;
        font-size: 1rem;
        max-width: 260px;
    }

    .mobile-dropdown {
        top: 60px; /* Для очень маленьких экранов навбар может быть меньше */
    }
}

h2 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem) !important;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 3rem;
    margin-top: 1rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-transition {
    position: relative;
    z-index: 1;
}

.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    z-index: -1;
}

.section-transition-reverse::after {
    transform: rotate(180deg);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.feature-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(17, 25, 34, 0.55), rgba(6, 10, 13, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.stats-item {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.stats-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px circle at 20% 15%, rgba(var(--accent-rgb), 0.14) 0%, transparent 52%),
        radial-gradient(600px circle at 90% 90%, rgba(var(--transition-rgb), 0.10) 0%, transparent 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.stats-item::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    top: 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 20%, rgba(var(--accent-rgb), 0.22) 50%, rgba(255, 255, 255, 0.14) 80%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.stats-item > * {
    position: relative;
    z-index: 1;
}

.stats-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--accent-rgb), 0.22);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(var(--accent-rgb), 0.08) inset,
        0 0 26px rgba(var(--accent-rgb), 0.10);
}

.stat-number {
    --stat-from: var(--primary-accent);
    --stat-to: var(--link, var(--primary-accent));
    letter-spacing: -0.02em;
    font-feature-settings: "tnum" 1, "ss01" 1;
    background: linear-gradient(135deg, var(--stat-from) 0%, var(--stat-to) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.16);
}

.stat-number--warm {
    --stat-from: #FF9966;
    --stat-to: var(--gold);
    text-shadow: 0 0 18px rgba(252, 211, 77, 0.18);
}

.stat-number--mint {
    --stat-from: var(--primary-accent-dark);
    --stat-to: var(--primary-accent);
    text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.18);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.connect-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.45) 50%, transparent 100%);
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .floating {
        max-width: 85%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    .floating img {
        max-width: 100%;
        height: auto;
    }
}

@media (min-width: 1025px) {
    .hero-floating {
        max-width: 650% !important;
        transform: translateX(0%) !important;
        position: relative !important;
        right: -1% !important;
        margin-right: -10% !important;
        margin-left: 0 !important;
    }

    .hero-floating img {
        width: 100%;
        height: auto;
        object-fit: contain;
        scale: 1.25;
    }

    .floating {
        max-width: 100%;
        position: relative;
    }

.floating img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
}

@media (max-width: 768px) {
    .heading-xl {
        font-size: 2rem;
    }

    .company-info {
        text-align: left;
        margin-top: 1rem;
        padding: 0;
    }

    .company-info-group {
        margin-bottom: 1.5rem;
    }

    .company-info p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        white-space: normal;
        word-break: break-word;
    }

    .tooltip {
        width: 80%;
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 640px) {
    footer .grid {
        gap: 2rem;
    }

    .company-info-group {
        margin-bottom: 1rem;
    }

    footer .flex-col {
        text-align: left;
    }

    footer .space-x-4 {
        justify-content: flex-start;
    }
}

/* Стили для hero-slider секции */
.bg-primary-darkest {
    background-color: #0a1620; /* Темнее основного цвета */
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.3;
    }
}

/* Стили для слайдера */
.slider-3d-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.slider-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 350px;
    perspective: 1000px;
}

.slider-card {
    position: absolute;
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
    overflow: hidden;
}

.slider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.slider-card:hover::before {
    transform: translateX(100%);
}

.slider-primary {
    z-index: 30;
    opacity: 1;
    transform: translateZ(0) scale(1);
}

.slider-secondary[data-position="left"] {
    z-index: 20;
    opacity: 0.8;
    transform: translateX(-70%) translateZ(-100px) scale(0.85);
    filter: brightness(0.9);
}

.slider-secondary[data-position="right"] {
    z-index: 20;
    opacity: 0.8;
    transform: translateX(70%) translateZ(-100px) scale(0.85);
    filter: brightness(0.9);
}

.slider-hidden {
    opacity: 0;
    transform: translateZ(-200px) scale(0.7);
    pointer-events: none;
}

.slider-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.16);
}

.slider-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Unbounded', sans-serif;
}

.slider-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Навигация карусели */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.carousel-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: var(--primary-accent);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .slider-secondary[data-position="left"] {
        transform: translateX(-30%) translateZ(-80px) scale(0.8);
    }

    .slider-secondary[data-position="right"] {
        transform: translateX(30%) translateZ(-80px) scale(0.8);
    }

    .slider-icon {
        font-size: 2rem;
    }

    .slider-card h3 {
        font-size: 1.25rem;
    }

    .slider-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slider-secondary {
        display: none;
    }

    .slider-card {
        max-width: 95%;
        min-height: auto;
    }

    .carousel-control {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Override for smoother section transition */
.section-gradient-blue {
    background-image: linear-gradient(to top, var(--primary-dark) 0%, transparent 20%), var(--gradient-blue);
    background-repeat: no-repeat;
    background-size: cover;
}
.section-gradient-blue::before {
    display: none !important;
}

.hero-btn-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero-registration-btn {
    width: 16rem; /* w-64 */
}

@media (max-width: 768px) {
    .hero-btn-container {
        justify-content: center;
        padding: 0;
    }

    .hero-registration-btn {
        width: 100%;
        max-width: 280px;
    }
}

.only-desktop { display: block; }
.only-mobile { display: none; }

@media (max-width: 768px) {
    .only-desktop { display: none !important; }
    .only-mobile {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }
    .hero-btn-container {
        justify-content: center;
        padding: 0 12px;
    }
}

/* Центрирование надписей "Бесплатный период" и "Без обязательств" на мобильных */
@media (max-width: 768px) {
    .hero-benefits {
        justify-content: center !important;
        margin-top: 1rem;
    }

    /* Центрирование заголовка и описания на мобильных */
    .space-y-8 {
        padding: 0 1rem !important;
    }

    .space-y-8 h1,
    .space-y-8 p.text-xl,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .space-y-8 p.text-xl {
        max-width: 100% !important;
    }

    .hero-subtitle {
        text-align: center !important;
        display: block !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Fix mobile stats section overlap issue */
@media (max-width: 768px) {
    .mobile-stats-section {
        margin-top: 0 !important;
        padding-top: 4rem !important;
    }
}

@media (max-width: 480px) {
    .mobile-stats-section {
        margin-top: 0 !important;
        padding-top: 3rem !important;
    }
}

/* 🌊 ПЛАВНЫЕ ГРАДИЕНТНЫЕ ПЕРЕХОДЫ КАК В KONTUR */

/* Hero Section с плавным переходом */
.hero-section {
    background: linear-gradient(180deg,
        var(--hero-0) 0%,
        var(--hero-1) 40%,
        var(--hero-2) 78%,
        var(--hero-3) 100%
    );
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto !important;
        padding-bottom: 2rem;
        padding-top: 5rem !important;
    }

    .hero-section .relative.overflow-visible {
        margin-bottom: 0 !important;
        padding-bottom: 1rem !important;
    }

    .hero-floating {
        max-width: 115%;
        margin-left: 8%;
        text-align: center;
        padding: 0;
    }

    .hero-floating img {
        max-width: 100%;
        margin: 0;
        display: block;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--hero-3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Process Section (Comparison - теперь после Hero) */
.process-section {
    background: linear-gradient(180deg,
        var(--process-0) 0%,
        var(--process-1) 32%,
        var(--process-2) 72%,
        var(--process-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.process-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--process-3) 100%);
    pointer-events: none;
}

/* Target Audience Section */
.audience-section {
    background: linear-gradient(180deg,
        var(--audience-0) 0%,
        var(--audience-1) 24%,
        var(--audience-2) 64%,
        var(--audience-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.audience-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--audience-3) 100%);
    pointer-events: none;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg,
        var(--features-0) 0%,
        var(--features-1) 28%,
        var(--features-2) 68%,
        var(--features-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.features-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--features-3) 100%);
    pointer-events: none;
}

/* AI vs Human Section */
.ai-section {
    background: linear-gradient(180deg,
        var(--ai-0) 0%,
        var(--ai-1) 24%,
        var(--ai-2) 70%,
        var(--ai-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.ai-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--ai-3) 100%);
    pointer-events: none;
}

/* How it Works Section */
.works-section {
    background: linear-gradient(180deg,
        var(--works-0) 0%,
        var(--works-1) 28%,
        var(--works-2) 70%,
        var(--works-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.works-section--from-features {
    background: linear-gradient(180deg,
        var(--features-3) 0%,
        var(--works-1) 28%,
        var(--works-2) 70%,
        var(--works-3) 100%
    );
}

.works-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--works-3) 100%);
    pointer-events: none;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    padding: 0;
}

.timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    display: flex;
    min-width: 0;
}

.timeline-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.26) 0%, rgba(var(--accent-rgb), 0.10) 100%);
    color: rgba(240, 244, 248, 0.95);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(var(--accent-rgb), 0.26);
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    padding: 4.1rem 1.75rem 1.65rem;
    border-radius: 26px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px circle at 18% 18%, rgba(var(--accent-rgb), 0.12) 0%, transparent 52%),
        radial-gradient(720px circle at 88% 90%, rgba(var(--transition-rgb), 0.08) 0%, transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.timeline-content > * {
    position: relative;
    z-index: 1;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 26px 85px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(var(--accent-rgb), 0.08) inset;
    border-color: rgba(var(--accent-rgb), 0.20);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(240, 244, 248, 0.95);
    font-weight: 800;
    line-height: 1.25;
}

.timeline-duration {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 244, 248, 0.86);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 0;
}

.timeline-content > p {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    color: rgba(240, 244, 248, 0.72);
    line-height: 1.55;
}

.timeline-goals {
    margin-top: auto;
    text-align: left;
}

.timeline-goals strong {
    color: rgba(240, 244, 248, 0.88);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.timeline-goals ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-goals li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(240, 244, 248, 0.68);
    font-size: 0.85rem;
    line-height: 1.4;
}

.timeline-goals li::before {
    content: '•';
    color: rgba(var(--accent-rgb), 0.95);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.plan-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.plan-feature {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.5;
    color: inherit;
}

.plan-feature::before {
    content: '•';
    color: var(--tertiary-accent);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Timeline Responsive */
@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .timeline-number {
        top: 14px;
        left: 14px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .timeline-duration {
        top: 14px;
        right: 14px;
    }

    .timeline-content {
        padding: 3.9rem 1.25rem 1.25rem;
        border-radius: 22px;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg,
        var(--pricing-0) 0%,
        var(--pricing-1) 26%,
        var(--pricing-2) 70%,
        var(--pricing-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.pricing-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--pricing-3) 100%);
    pointer-events: none;
}

/* Sources Notice Inline (в секции тарифов) */
.sources-notice-inline {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sources-notice-inline {
        margin-bottom: 3rem !important;
    }

    .sources-notice-inline p {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
    }

    .sources-notice-inline .flex {
        font-size: 0.8rem !important;
        gap: 1rem !important;
    }

    .sources-notice-inline svg {
        width: 0.875rem !important;
        height: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .sources-notice-inline {
        margin-bottom: 2.5rem !important;
    }

    .sources-notice-inline p {
        font-size: 0.8rem !important;
        margin-bottom: 0.625rem !important;
    }

    .sources-notice-inline .flex {
        font-size: 0.75rem !important;
        gap: 0.75rem !important;
    }

    .sources-notice-inline svg {
        width: 0.75rem !important;
        height: 0.75rem !important;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg,
        var(--primary-dark) 0%,
        #0F2435 34%,
        #0A0F14 72%,
        #060A0D 100%
    );
    margin-top: -2rem;
    position: relative;
    padding: 5rem 0 3rem 0;
}

/* FAQ Section (after CTA, before footer) */
.faq-section {
    background: linear-gradient(180deg,
        #060A0D 0%,
        rgba(10, 15, 20, 0.96) 55%,
        #060A0D 100%
    );
    margin-top: -2rem;
    position: relative;
}

/* Обертка для контента чтобы он был поверх градиентов */
.gradient-content {
    position: relative;
    z-index: 2;
}

/* Адаптивность градиентов */
@media (max-width: 768px) {
    .hero-section::after,
    .audience-section::after,
    .features-section::after,
    .ai-section::after,
    .works-section::after,
    .process-section::after,
    .pricing-section::after {
        height: 80px;
    }

    .audience-section,
    .features-section,
    .ai-section,
    .works-section,
    .process-section,
    .pricing-section,
    .cta-section,
    .faq-section {
        margin-top: -1rem;
    }
}

/* ===================================== */
/* Transformation Scenarios Section     */
/* ===================================== */

.transformation-scenarios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(900px circle at 15% 15%, rgba(var(--accent-rgb), 0.10) 0%, transparent 45%),
        radial-gradient(900px circle at 85% 85%, rgba(var(--transition-rgb), 0.10) 0%, transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%);
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.scenario-card::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.10) 82%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.scenario-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.22);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(var(--accent-rgb), 0.08) inset,
        0 0 24px rgba(var(--accent-rgb), 0.08);
}

/* Before State (Left Side) */
.scenario-before {
    position: relative;
    z-index: 2;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(6, 10, 13, 0.10), rgba(17, 25, 34, 0.45));
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease;
}

.scenario-card:hover .scenario-before {
    background: linear-gradient(135deg, rgba(6, 10, 13, 0.14), rgba(17, 25, 34, 0.52));
}

/* After State (Right Side) */
.scenario-after {
    position: relative;
    z-index: 2;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(6, 10, 13, 0.10) 58%);
    transition: background 0.25s ease;
}

.scenario-card:hover .scenario-after {
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.16) 0%,
        rgba(6, 10, 13, 0.12) 58%
    );
}

/* Labels */
.scenario-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(240, 244, 248, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.scenario-before .scenario-label {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 244, 248, 0.68);
}

.scenario-after .scenario-label {
    background: rgba(var(--accent-rgb), 0.14);
    color: rgba(240, 244, 248, 0.95);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.06) inset;
}

/* Titles */
.scenario-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.3;
}

.scenario-before .scenario-title {
    color: rgba(240, 244, 248, 0.82);
}

.scenario-after .scenario-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
                 0 0 16px rgba(var(--accent-rgb), 0.32);
    font-weight: 800;
}

/* Text */
.scenario-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.scenario-before .scenario-text {
    color: rgba(240, 244, 248, 0.68);
}

.scenario-after .scenario-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

/* Arrow */
.scenario-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2B4A64 0%, #1A3A52 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
    backdrop-filter: blur(14px);
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.scenario-card:hover .scenario-arrow {
    border-color: rgba(var(--accent-rgb), 0.26);
    box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.14);
}

.arrow-icon {
    width: 30px;
    height: 30px;
    color: rgba(var(--accent-rgb), 0.92);
    transition: all 0.3s ease;
}

.scenario-card:hover .arrow-icon {
    color: white;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scenario-card {
        border-radius: 24px;
    }

    .scenario-title {
        font-size: 1rem;
    }

    .scenario-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .scenario-card {
        grid-template-columns: 1fr;
    }

    .scenario-arrow {
        position: relative;
        left: auto;
        top: auto;
        transform: rotate(90deg);
        margin: 0 auto;
        width: 48px;
        height: 48px;
    }

    .scenario-card:hover .scenario-arrow {
        transform: rotate(90deg);
    }

    .arrow-icon {
        width: 24px;
        height: 24px;
    }

    .scenario-card:hover .arrow-icon {
        transform: none;
    }

    .scenario-before,
    .scenario-after {
        padding: 1.5rem 1.5rem;
    }

    .scenario-title {
        font-size: 1.05rem;
    }

    .scenario-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .scenario-card::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .scenario-card {
        border-radius: 20px;
    }

    .scenario-card::before {
        opacity: 0.9;
    }

    .scenario-before,
    .scenario-after {
        padding: 1rem;
    }

    .scenario-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .scenario-text {
        font-size: 0.85rem;
    }

    .scenario-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .scenario-arrow {
        width: 44px;
        height: 44px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===================================== */
/* Practice Showcase                      */
/* ===================================== */

.practice-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 1.75rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(17, 25, 34, 0.64), rgba(6, 10, 13, 0.42));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.practice-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 66px rgba(0, 0, 0, 0.42);
}

.practice-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px circle at 20% 15%, rgba(var(--accent-rgb), 0.10) 0%, transparent 48%),
        radial-gradient(900px circle at 90% 80%, rgba(var(--transition-rgb), 0.10) 0%, transparent 52%);
    opacity: 1;
    pointer-events: none;
}

.practice-panel--problem::before {
    background:
        radial-gradient(900px circle at 10% 15%, rgba(255, 255, 255, 0.07) 0%, transparent 52%),
        radial-gradient(900px circle at 90% 85%, rgba(255, 255, 255, 0.05) 0%, transparent 56%);
}

.practice-panel--engine {
    border-color: rgba(var(--accent-rgb), 0.28);
}

.practice-panel--engine:hover {
    border-color: rgba(var(--accent-rgb), 0.36);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.44), 0 0 28px rgba(var(--accent-rgb), 0.10);
}

.practice-panel--engine::before {
    background:
        radial-gradient(900px circle at 18% 18%, rgba(var(--accent-rgb), 0.16) 0%, transparent 52%),
        radial-gradient(900px circle at 92% 82%, rgba(var(--transition-rgb), 0.12) 0%, transparent 56%);
}

.practice-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 244, 248, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.practice-kicker--accent {
    border-color: rgba(var(--accent-rgb), 0.28);
    background: rgba(var(--accent-rgb), 0.12);
    color: rgba(240, 244, 248, 0.92);
}

.practice-kicker i {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.72);
}

.practice-kicker--accent i {
    color: var(--primary-accent);
}

.practice-panel-title {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.practice-panel-subtitle {
    position: relative;
    z-index: 1;
    margin-top: 0.75rem;
    color: rgba(240, 244, 248, 0.75);
    font-size: 0.95rem;
    line-height: 1.55;
}

.practice-list {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.practice-list li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(240, 244, 248, 0.82);
    font-size: 0.95rem;
    line-height: 1.5;
}

.practice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.practice-flow {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.practice-step {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.practice-step:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.practice-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    color: var(--primary-accent);
    flex-shrink: 0;
}

.practice-step-icon i {
    font-size: 1rem;
}

.practice-step-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.practice-flow-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    color: rgba(240, 244, 248, 0.45);
}

.practice-flow-arrow i {
    font-size: 0.9rem;
}

.practice-preview {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(135deg, rgba(6, 10, 13, 0.42), rgba(17, 25, 34, 0.32));
    padding: 1rem;
    overflow: hidden;
}

.practice-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(650px circle at 20% 0%, rgba(var(--accent-rgb), 0.14) 0%, transparent 52%);
    opacity: 1;
    pointer-events: none;
}

.practice-preview-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.practice-stamp {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    border: 1px dashed rgba(var(--accent-rgb), 0.42);
    background: rgba(var(--accent-rgb), 0.10);
    color: rgba(240, 244, 248, 0.92);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.practice-preview-label {
    color: rgba(240, 244, 248, 0.55);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.practice-preview-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.practice-preview-row + .practice-preview-row {
    margin-top: 0.6rem;
}

.practice-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.practice-chip--ok {
    border-color: rgba(var(--accent-rgb), 0.32);
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--primary-accent);
}

.practice-chip--warn {
    border-color: rgba(255, 215, 0, 0.28);
    background: rgba(255, 215, 0, 0.10);
    color: var(--gold);
}

.practice-preview-text {
    flex: 1;
    color: rgba(240, 244, 248, 0.88);
    font-size: 0.9rem;
    line-height: 1.35;
}

.practice-preview-link {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 13, 0.20);
    color: rgba(240, 244, 248, 0.48);
    flex-shrink: 0;
}

.practice-preview-footnote {
    position: relative;
    z-index: 1;
    margin-top: 0.75rem;
    color: rgba(240, 244, 248, 0.55);
    font-size: 0.8rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .practice-panel {
        padding: 1.4rem 1.25rem;
    }

    .practice-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .practice-flow-arrow {
        width: auto;
        transform: rotate(90deg);
    }

    .practice-preview-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Кастомные утилиты для 1920px+ */
@media (min-width: 1920px) {
    /* Переопределяем размеры текста с высоким приоритетом */
    .text-5xl {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .text-4xl {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .text-3xl {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }

    .text-2xl {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .text-xl {
        font-size: 1.125rem !important;
        line-height: 1.4 !important;
    }

    .text-lg {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* Специально для hero */
    .heading-xl {
        font-size: 2.75rem !important;
    }

    /* Hero заголовок остается крупным */
    .hero-subtitle {
        font-size: 2.75rem !important;
        line-height: 1.2 !important;
    }

    /* Расширяем контейнеры */
    .max-w-6xl {
        max-width: 1280px !important;
    }

    .max-w-7xl {
        max-width: 1400px !important;
    }
}

/* Оптимизация для больших экранов 1920px+ */
@media (min-width: 1920px) {
    /* Навигация - исправляем переносы */
    nav {
        padding: 0.5rem 0;
    }

    nav .flex.items-center.space-x-4 {
        space-x-2 !important;
        white-space: nowrap;
    }

    nav .text-xl {
        font-size: 1rem !important;
        white-space: nowrap;
    }

    nav img {
        height: 2rem;
        margin-right: 0.5rem !important;
    }

    .nav-link {
        font-size: 0.75rem !important;
        white-space: nowrap;
        padding: 0 0.5rem;
    }

    #main-nav {
        gap: 1rem !important;
    }

    .registration-btn {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
        white-space: nowrap;
    }

    /* Заголовки */
    h1 {
        font-size: 2.75rem !important;
    }

    h2 {
        font-size: 2.25rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    /* Hero section */
    .hero-section .text-5xl {
        font-size: 2.75rem !important;
    }

    .hero-section .text-xl {
        font-size: 1.125rem !important;
    }

    /* Статистика */
    .stats-item .text-4xl {
        font-size: 2.25rem !important;
    }

    /* Карточки */
    .glass-card {
        padding: 1.75rem;
    }

    .glass-card h3 {
        font-size: 1.25rem !important;
    }

    .glass-card p {
        font-size: 0.9rem;
    }

    /* Процесс */
    .process-item h3 {
        font-size: 1.125rem !important;
    }

    /* Тарифы */
    .pricing-card h3 {
        font-size: 1.25rem !important;
    }

    .pricing-card .text-5xl {
        font-size: 2.5rem !important;
    }

    /* CTA секция */
    .cta-section h2 {
        font-size: 2rem !important;
    }

    .cta-section .text-xl {
        font-size: 1.125rem !important;
    }

    /* Карусель */
    .slider-card h3 {
        font-size: 1.125rem !important;
    }

    .slider-card p {
        font-size: 0.875rem;
    }

    /* Общие параграфы */
    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* Кнопки */
    button {
        font-size: 0.95rem;
    }

    /* Списки */
    ul li {
        font-size: 0.9rem;
    }
}

/* ===================================== */
/* Hero Sources Block - Compact         */
/* ===================================== */

.sources-hero-block {
    margin: 0;
    padding: 0;
    max-width: 620px;
    font-family: 'Manrope', sans-serif;
}

.sources-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.625rem;
    font-family: 'Manrope', sans-serif;
}

.sources-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sources-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.source-item {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
}

.source-item:hover {
    background: rgba(var(--accent-rgb), 0.12);
    color: white;
}

.source-more {
    color: var(--primary-accent);
    background: rgba(var(--accent-rgb), 0.10);
}

.source-more:hover {
    background: rgba(var(--accent-rgb), 0.16);
}

/* Responsive */
@media (max-width: 768px) {
    .sources-hero-block {
        max-width: 100%;
    }

    .sources-title {
        font-size: 0.9rem;
        text-align: center;
    }

    .sources-list {
        gap: 0.4rem;
    }

    .sources-row {
        justify-content: center;
        gap: 0.4rem;
    }

    .source-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.55rem;
    }
}

@media (max-width: 480px) {
    .sources-title {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .sources-list {
        gap: 0.35rem;
    }

    .sources-row {
        gap: 0.3rem;
    }

    .source-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.45rem;
    }
}

@media (max-width: 360px) {
    .sources-title {
        font-size: 0.75rem;
    }

    .sources-row {
        gap: 0.25rem;
    }

    .source-item {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Еще больше оптимизации для 2560px+ (4K мониторы) */
@media (min-width: 2560px) {
    /* Максимальная ширина контейнера */
    .max-w-7xl {
        max-width: 1400px;
    }

    .max-w-6xl {
        max-width: 1200px;
    }

    /* Еще немного уменьшаем шрифты */
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hero-section .text-5xl {
        font-size: 2.5rem !important;
    }
}

/* Специальные стили для навигации на больших экранах */
@media (min-width: 1920px) {
    nav .max-w-7xl {
        max-width: 1400px !important;
    }
}

/* Для сверхшироких мониторов */
@media (min-width: 2560px) {
    nav .max-w-7xl {
        max-width: 1600px !important;
    }
}

/* Дополнительные настройки для 1920px+ */
@media (min-width: 1920px) {
    /* Карточки в карусели */
    .slider-card h3 {
        font-size: 1.125rem !important;
    }

    .slider-card p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }

    /* Иконки в карточках */
    .slider-icon {
        font-size: 2rem !important;
    }

    /* Сравнение AI vs Human */
    .glass-card ul li {
        font-size: 0.9rem !important;
    }

    /* Кнопки в тарифах */
    .pricing-card button {
        font-size: 0.875rem !important;
        padding: 0.625rem 1.5rem !important;
    }

    /* Статистика в процессе */
    .process-stats {
        font-size: 0.9rem !important;
    }

    /* Подзаголовки */
    p.text-gray-300,
    p.text-gray-200 {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    /* Общие отступы секций */
    section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Hero section особые настройки */
    .hero-section {
        padding-top: 7rem !important;
        min-height: 0 !important;
    }
}


body > section.hero-section.relative.min-h-screen.md\:min-h-screen.pt-32 > div > div.max-w-7xl.mx-auto.px-4.sm\:px-6.lg\:px-8.relative > div > div.space-y-8 > div.flex.flex-wrap.gap-4 > a {
    z-index: 10000;
}

.heading-relaxed {
    line-height: 1.5 !important;
}
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    /* Base palette: align with app (turquoise + deep graphite) */
    --primary-dark: #0A0F14;          /* app --background */
    --primary-medium: #111922;        /* app --background-light */
    --primary-light: #F0F4F8;         /* app --text */

    --primary-accent: #40E0D0;        /* app --primary */
    --primary-accent-dark: #2BA5A0;   /* app --primary-dark */
    --primary-accent-darker: #1E7B7B; /* app --turquoise-dark */
    --primary-accent-dimmest: #0F4C4C;/* app --turquoise-darker */

    --primary-transition: #6366F1;    /* app-like indigo */
    --primary-transition-2: #8B5CF6;  /* app-like purple */

    --secondary-accent: #F87171;      /* app --error */
    --tertiary-accent: #5EEAD4;       /* app --success */
    --gold: #FCD34D;                  /* app-like warm accent */
    --link: #67E8F9;                  /* app-like link/cyan */

    --accent-rgb: 64, 224, 208;
    --accent-dark-rgb: 43, 165, 160;
    --transition-rgb: 99, 102, 241;
    --transition-2-rgb: 139, 92, 246;

    --gradient-blue: linear-gradient(135deg, #0F2435 0%, var(--primary-accent-darker) 55%, var(--primary-accent) 100%);
    --gradient-purple: linear-gradient(135deg, #0F2435 0%, var(--primary-transition) 55%, var(--primary-transition-2) 100%);
    --gradient-dark: linear-gradient(135deg, #060A0D 0%, var(--primary-dark) 60%, var(--primary-medium) 100%);

    /* Section gradients (top → bottom) */
    --hero-0: #060A0D;
    --hero-1: var(--primary-dark);
    --hero-2: #0F2435;
    --hero-3: var(--primary-accent-dimmest);

    --process-0: var(--hero-3);
    --process-1: #0F2435;
    --process-2: var(--primary-medium);
    --process-3: var(--primary-dark);

    --audience-0: var(--process-3);
    --audience-1: #0F2435;
    --audience-2: #1A3A52;
    --audience-3: var(--primary-accent-darker);

    --features-0: var(--audience-3);
    --features-1: var(--primary-accent-dark);
    --features-2: #0F2435;
    /* Keep section backgrounds in dark+turtle (purple stays as a small accent, not a full section fill) */
    --features-3: #0F2435;

    --ai-0: var(--features-3);
    --ai-1: #1A3A52;
    --ai-2: #0F2435;
    --ai-3: var(--primary-dark);

    --works-0: var(--ai-3);
    --works-1: #0F2435;
    --works-2: #1A3A52;
    --works-3: var(--primary-accent-dark);

    --pricing-0: var(--works-3);
    --pricing-1: var(--primary-accent-darker);
    --pricing-2: #0F2435;
    --pricing-3: var(--primary-dark);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--primary-dark);
    background-image: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}


/* Footer should match the landing's final dark tone */
footer {
    background-color: #060A0D !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-transition-2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 22px rgba(64, 224, 208, 0.18);
}

.tooltip {
    position: fixed;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(17, 25, 34, 0.92);
    color: white;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
}

.company-info {
    font-size: 0.875rem;
    color: rgba(240, 244, 248, 0.72);
    line-height: 1.6;
}

.company-info-group {
    margin-bottom: 1rem;
}

.company-info-label {
    color: rgba(240, 244, 248, 0.92);
    font-weight: 500;
}

.section-gradient-blue {
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.section-gradient-blue::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-dark), transparent);
    pointer-events: none;
    z-index: 1;
}

.section-gradient-purple {
    background: var(--gradient-purple);
}

.section-gradient-dark {
    background: var(--gradient-dark);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-primary-medium {
    background-color: var(--primary-medium);
}

.bg-primary-accent {
    background-color: var(--primary-accent-dark);
    background-image: linear-gradient(135deg, var(--primary-accent-darker), var(--primary-accent-dark));
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-primary-transition {
    background-color: var(--primary-transition);
    background-image: linear-gradient(135deg, var(--primary-transition), var(--primary-transition-2));
}

.text-primary-accent {
    color: var(--primary-accent);
}

.text-primary-transition {
    color: var(--primary-transition);
}

.text-secondary-accent {
    color: var(--secondary-accent);
}

.bg-secondary-accent {
    background-color: var(--secondary-accent) !important;
}

.text-tertiary-accent {
    color: var(--tertiary-accent);
}

.text-gold {
    color: var(--gold);
}

.text-gemini {
    color: #2dd4bf;
}

.text-deepseek {
    color: #f9a8d4;
}

.text-primary-light {
    color: var(--primary-light);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.border-primary-accent {
    border-color: var(--primary-accent);
}

.glass-card {
    background: linear-gradient(135deg, rgba(17, 25, 34, 0.62), rgba(6, 10, 13, 0.42));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.35);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.32);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38), 0 0 18px rgba(64, 224, 208, 0.14);
}

/* Gift banner */
.gift-banner {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(255, 153, 102, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-banner:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 153, 102, 0.45);
    box-shadow: 0 14px 36px rgba(255, 153, 102, 0.14);
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF9966 0%, #FFD700 100%);
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 153, 102, 0.3);
}

.gift-banner-compact {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.12) 0%, rgba(255, 215, 0, 0.12) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 102, 0.25);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(255, 153, 102, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-banner-compact:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 153, 102, 0.38);
    box-shadow: 0 12px 34px rgba(255, 153, 102, 0.12);
}

.gift-nav-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    border: 1px solid rgba(255, 153, 102, 0.4);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-nav-indicator:hover {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    border-color: rgba(255, 153, 102, 0.6);
    transform: scale(1.05);
}

.gift-nav-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.98);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.gift-nav-indicator:hover .gift-nav-tooltip {
    opacity: 1;
    pointer-events: auto;
}

.gift-nav-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 153, 102, 0.3);
}

.gift-mobile-banner {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    text-align: center;
}

h2.font-display,
h3.font-display {
    line-height: 1.35;
}

@media (max-width: 640px) {
    .gift-banner {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .gift-nav-tooltip {
        min-width: 220px;
        font-size: 0.75rem;
    }
}

/* Fix missing Tailwind-like helpers used in template (CDN build has no custom colors) */
.bg-primary-dark\\/90 { background-color: rgba(10, 15, 20, 0.90) !important; }
.bg-primary-dark\\/95 { background-color: rgba(10, 15, 20, 0.95) !important; }
.hover\\:bg-primary-transition:hover { background-image: linear-gradient(135deg, var(--primary-transition), var(--primary-transition-2)) !important; }
.hover\\:bg-primary-accent\\/10:hover { background-color: rgba(var(--accent-rgb), 0.10) !important; }
.hover\\:text-primary-accent:hover { color: var(--primary-accent) !important; }
.hover\\:border-primary-accent:hover { border-color: var(--primary-accent) !important; }
.bg-white\\/5 { background-color: rgba(255, 255, 255, 0.05) !important; }
.bg-white\\/10 { background-color: rgba(255, 255, 255, 0.10) !important; }
.bg-white\\/30 { background-color: rgba(255, 255, 255, 0.30) !important; }
.border-white\\/10 { border-color: rgba(255, 255, 255, 0.10) !important; }
.from-primary-dark { --tw-gradient-from: var(--primary-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(10, 15, 20, 0)); }

/* Slightly tint Tailwind grays towards app look (landing-only) */
.border-gray-800 { border-color: rgba(255, 255, 255, 0.08) !important; }
.text-gray-400 { color: rgba(240, 244, 248, 0.62) !important; }
.text-gray-300 { color: rgba(240, 244, 248, 0.76) !important; }
.text-gray-200 { color: rgba(240, 244, 248, 0.90) !important; }

/* FAQ */
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform 0.2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.gemini-bar {
    background-color: #2dd4bf;
    background-image: linear-gradient(90deg, #2dd4bf 0%, #0ea5e9 100%);
}

.deepseek-bar {
    background-color: #f9a8d4;
    background-image: linear-gradient(90deg, #c4b5fd 0%, #f9a8d4 100%);
}

.heading-xl {
    font-size: clamp(3rem, 5vw, 4rem); /* увеличенный размер шрифта для Карманный консультант */
    line-height: 1.1;
    font-family: 'Unbounded', sans-serif;
}

.hero-subtitle {
    font-size: 3rem;
    line-height: 1.15;
    max-width: 100%;
    margin-top: 0.25rem;
    display: block;
    word-break: normal;
    white-space: normal;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    max-width: 580px;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Мобильное выпадающее меню */
.mobile-dropdown {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.mobile-dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 24px;
}

.mobile-nav-link:hover {
    background-color: rgba(var(--accent-rgb), 0.10);
    color: var(--primary-accent);
}

.mobile-registration-btn {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    min-width: 220px;
}

.cta-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--primary-accent);
    color: var(--primary-light);
    background: transparent;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(var(--accent-rgb), 0.18);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.cta-outline-btn:hover,
.cta-outline-btn:focus {
    background-color: rgba(var(--accent-rgb), 0.12);
    color: var(--primary-light);
    transform: translateY(-1px);
}

.cta-outline-btn:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.35);
    outline-offset: 2px;
}

.nav-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.75rem;
    border-radius: 0.85rem;
    border: 1.5px solid var(--primary-accent);
    color: var(--primary-light);
    font-weight: 600;
    background: transparent;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.14);
    text-decoration: none;
}

.nav-outline-btn:hover,
.nav-outline-btn:focus {
    background-color: rgba(var(--accent-rgb), 0.15);
    color: var(--primary-light);
}

.nav-outline-btn:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.35);
    outline-offset: 2px;
}

/* Адаптивные стили */
@media (max-width: 1024px) {
    .hero-subtitle {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    section {
        padding: 3rem 0;
    }

    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }

    .py-20 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-subtitle {
        font-size: 2.1rem !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1.2rem !important;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .heading-xl {
        font-size: 2.5rem;
    }

    .mobile-menu {
        display: block;
    }

    .md\:flex {
        display: none !important;
    }

    .mobile-nav-content {
        padding: 0 20px;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 16px 24px;
        margin: 0 auto;
        max-width: 280px;
    }

    .mobile-registration-btn {
        margin-top: 8px;
        padding: 14px 32px;
        font-size: 1.1rem;
        max-width: 280px;
    }

    .cta-outline-btn,
    .nav-outline-btn {
        width: 100%;
        max-width: 320px;
    }

    .nav-outline-btn {
        margin-top: 0.5rem;
    }

    .flex.flex-wrap.gap-4 {
        padding: 0 1rem;
        justify-content: center;
        width: 100%;
    }

.registration-btn {
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    white-space: nowrap;
    padding: 0.875rem 2.5rem !important;
    z-index: 10000;
    line-height: 1.5;
}

/* Desktop кнопки */
@media (min-width: 769px) {
    .registration-btn {
        width: auto !important;
        max-width: none;
        padding: 0.875rem 3rem !important;
        white-space: nowrap;
    }
}

.personal-plan-btn {
    transition: all 0.2s ease;
    border: none;
}

.personal-plan-btn:hover,
.personal-plan-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), 0 0 18px rgba(var(--accent-rgb), 0.12);
}

.personal-plan-btn:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.35);
    outline-offset: 2px;
}

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .hero-registration-btn {
        margin: 0 auto !important;
        display: block !important;
    }

    .flex.flex-wrap.gap-4 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-btn-container {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 12px;
    }
    .hero-registration-btn {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: block !important;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1.5rem 0;
    }

    .py-20 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.85rem !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1.1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-floating {
        max-width: 120% !important;
        margin-left: 10% !important;
        padding: 0;
    }

    .hero-floating img {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-subtitle {
        font-size: 1.55rem !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-floating {
        max-width: 125% !important;
        margin-left: 12% !important;
    }

    .heading-xl {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem !important;
        margin-bottom: 2rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .stats-item {
        padding: 1.5rem 1rem;
    }

    /* Мобильное меню на очень маленьких экранах */
    .mobile-nav-content {
        padding: 0 16px;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 14px 20px;
        max-width: 260px;
    }

    .mobile-registration-btn {
        padding: 12px 28px;
        font-size: 1rem;
        max-width: 260px;
    }

    .mobile-dropdown {
        top: 60px; /* Для очень маленьких экранов навбар может быть меньше */
    }
}

h2 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem) !important;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 3rem;
    margin-top: 1rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-transition {
    position: relative;
    z-index: 1;
}

.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    z-index: -1;
}

.section-transition-reverse::after {
    transform: rotate(180deg);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.feature-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(17, 25, 34, 0.55), rgba(6, 10, 13, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.stats-item {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.stats-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px circle at 20% 15%, rgba(var(--accent-rgb), 0.14) 0%, transparent 52%),
        radial-gradient(600px circle at 90% 90%, rgba(var(--transition-rgb), 0.10) 0%, transparent 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.stats-item::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    top: 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 20%, rgba(var(--accent-rgb), 0.22) 50%, rgba(255, 255, 255, 0.14) 80%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.stats-item > * {
    position: relative;
    z-index: 1;
}

.stats-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--accent-rgb), 0.22);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(var(--accent-rgb), 0.08) inset,
        0 0 26px rgba(var(--accent-rgb), 0.10);
}

.stat-number {
    --stat-from: var(--primary-accent);
    --stat-to: var(--link, var(--primary-accent));
    letter-spacing: -0.02em;
    font-feature-settings: "tnum" 1, "ss01" 1;
    background: linear-gradient(135deg, var(--stat-from) 0%, var(--stat-to) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.16);
}

.stat-number--warm {
    --stat-from: #FF9966;
    --stat-to: var(--gold);
    text-shadow: 0 0 18px rgba(252, 211, 77, 0.18);
}

.stat-number--mint {
    --stat-from: var(--primary-accent-dark);
    --stat-to: var(--primary-accent);
    text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.18);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.connect-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.45) 50%, transparent 100%);
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .floating {
        max-width: 85%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    .floating img {
        max-width: 100%;
        height: auto;
    }
}

@media (min-width: 1025px) {
    .hero-floating {
        max-width: 650% !important;
        transform: translateX(0%) !important;
        position: relative !important;
        right: -1% !important;
        margin-right: -10% !important;
        margin-left: 0 !important;
    }

    .hero-floating img {
        width: 100%;
        height: auto;
        object-fit: contain;
        scale: 1.25;
    }

    .floating {
        max-width: 100%;
        position: relative;
    }

.floating img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
}

@media (max-width: 768px) {
    .heading-xl {
        font-size: 2rem;
    }

    .company-info {
        text-align: left;
        margin-top: 1rem;
        padding: 0;
    }

    .company-info-group {
        margin-bottom: 1.5rem;
    }

    .company-info p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        white-space: normal;
        word-break: break-word;
    }

    .tooltip {
        width: 80%;
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 640px) {
    footer .grid {
        gap: 2rem;
    }

    .company-info-group {
        margin-bottom: 1rem;
    }

    footer .flex-col {
        text-align: left;
    }

    footer .space-x-4 {
        justify-content: flex-start;
    }
}

/* Стили для hero-slider секции */
.bg-primary-darkest {
    background-color: #0a1620; /* Темнее основного цвета */
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.3;
    }
}

/* Стили для слайдера */
.slider-3d-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.slider-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 350px;
    perspective: 1000px;
}

.slider-card {
    position: absolute;
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
    overflow: hidden;
}

.slider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.slider-card:hover::before {
    transform: translateX(100%);
}

.slider-primary {
    z-index: 30;
    opacity: 1;
    transform: translateZ(0) scale(1);
}

.slider-secondary[data-position="left"] {
    z-index: 20;
    opacity: 0.8;
    transform: translateX(-70%) translateZ(-100px) scale(0.85);
    filter: brightness(0.9);
}

.slider-secondary[data-position="right"] {
    z-index: 20;
    opacity: 0.8;
    transform: translateX(70%) translateZ(-100px) scale(0.85);
    filter: brightness(0.9);
}

.slider-hidden {
    opacity: 0;
    transform: translateZ(-200px) scale(0.7);
    pointer-events: none;
}

.slider-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.16);
}

.slider-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Unbounded', sans-serif;
}

.slider-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Навигация карусели */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.carousel-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: var(--primary-accent);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .slider-secondary[data-position="left"] {
        transform: translateX(-30%) translateZ(-80px) scale(0.8);
    }

    .slider-secondary[data-position="right"] {
        transform: translateX(30%) translateZ(-80px) scale(0.8);
    }

    .slider-icon {
        font-size: 2rem;
    }

    .slider-card h3 {
        font-size: 1.25rem;
    }

    .slider-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slider-secondary {
        display: none;
    }

    .slider-card {
        max-width: 95%;
        min-height: auto;
    }

    .carousel-control {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Override for smoother section transition */
.section-gradient-blue {
    background-image: linear-gradient(to top, var(--primary-dark) 0%, transparent 20%), var(--gradient-blue);
    background-repeat: no-repeat;
    background-size: cover;
}
.section-gradient-blue::before {
    display: none !important;
}

.hero-btn-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero-registration-btn {
    width: 16rem; /* w-64 */
}

@media (max-width: 768px) {
    .hero-btn-container {
        justify-content: center;
        padding: 0;
    }

    .hero-registration-btn {
        width: 100%;
        max-width: 280px;
    }
}

.only-desktop { display: block; }
.only-mobile { display: none; }

@media (max-width: 768px) {
    .only-desktop { display: none !important; }
    .only-mobile {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }
    .hero-btn-container {
        justify-content: center;
        padding: 0 12px;
    }
}

/* Центрирование надписей "Бесплатный период" и "Без обязательств" на мобильных */
@media (max-width: 768px) {
    .hero-benefits {
        justify-content: center !important;
        margin-top: 1rem;
    }

    /* Центрирование заголовка и описания на мобильных */
    .space-y-8 {
        padding: 0 1rem !important;
    }

    .space-y-8 h1,
    .space-y-8 p.text-xl,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .space-y-8 p.text-xl {
        max-width: 100% !important;
    }

    .hero-subtitle {
        text-align: center !important;
        display: block !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Fix mobile stats section overlap issue */
@media (max-width: 768px) {
    .mobile-stats-section {
        margin-top: 0 !important;
        padding-top: 4rem !important;
    }
}

@media (max-width: 480px) {
    .mobile-stats-section {
        margin-top: 0 !important;
        padding-top: 3rem !important;
    }
}

/* 🌊 ПЛАВНЫЕ ГРАДИЕНТНЫЕ ПЕРЕХОДЫ КАК В KONTUR */

/* Hero Section с плавным переходом */
.hero-section {
    background: linear-gradient(180deg,
        var(--hero-0) 0%,
        var(--hero-1) 40%,
        var(--hero-2) 78%,
        var(--hero-3) 100%
    );
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto !important;
        padding-bottom: 2rem;
        padding-top: 5rem !important;
    }

    .hero-section .relative.overflow-visible {
        margin-bottom: 0 !important;
        padding-bottom: 1rem !important;
    }

    .hero-floating {
        max-width: 115%;
        margin-left: 8%;
        text-align: center;
        padding: 0;
    }

    .hero-floating img {
        max-width: 100%;
        margin: 0;
        display: block;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--hero-3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Process Section (Comparison - теперь после Hero) */
.process-section {
    background: linear-gradient(180deg,
        var(--process-0) 0%,
        var(--process-1) 32%,
        var(--process-2) 72%,
        var(--process-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.process-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--process-3) 100%);
    pointer-events: none;
}

/* Target Audience Section */
.audience-section {
    background: linear-gradient(180deg,
        var(--audience-0) 0%,
        var(--audience-1) 24%,
        var(--audience-2) 64%,
        var(--audience-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.audience-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--audience-3) 100%);
    pointer-events: none;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg,
        var(--features-0) 0%,
        var(--features-1) 28%,
        var(--features-2) 68%,
        var(--features-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.features-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--features-3) 100%);
    pointer-events: none;
}

/* AI vs Human Section */
.ai-section {
    background: linear-gradient(180deg,
        var(--ai-0) 0%,
        var(--ai-1) 24%,
        var(--ai-2) 70%,
        var(--ai-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.ai-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--ai-3) 100%);
    pointer-events: none;
}

/* How it Works Section */
.works-section {
    background: linear-gradient(180deg,
        var(--works-0) 0%,
        var(--works-1) 28%,
        var(--works-2) 70%,
        var(--works-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.works-section--from-features {
    background: linear-gradient(180deg,
        var(--features-3) 0%,
        var(--works-1) 28%,
        var(--works-2) 70%,
        var(--works-3) 100%
    );
}

.works-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--works-3) 100%);
    pointer-events: none;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    padding: 0;
}

.timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    display: flex;
    min-width: 0;
}

.timeline-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.26) 0%, rgba(var(--accent-rgb), 0.10) 100%);
    color: rgba(240, 244, 248, 0.95);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(var(--accent-rgb), 0.26);
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    padding: 4.1rem 1.75rem 1.65rem;
    border-radius: 26px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px circle at 18% 18%, rgba(var(--accent-rgb), 0.12) 0%, transparent 52%),
        radial-gradient(720px circle at 88% 90%, rgba(var(--transition-rgb), 0.08) 0%, transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.timeline-content > * {
    position: relative;
    z-index: 1;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 26px 85px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(var(--accent-rgb), 0.08) inset;
    border-color: rgba(var(--accent-rgb), 0.20);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(240, 244, 248, 0.95);
    font-weight: 800;
    line-height: 1.25;
}

.timeline-duration {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 244, 248, 0.86);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 0;
}

.timeline-content > p {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    color: rgba(240, 244, 248, 0.72);
    line-height: 1.55;
}

.timeline-goals {
    margin-top: auto;
    text-align: left;
}

.timeline-goals strong {
    color: rgba(240, 244, 248, 0.88);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.timeline-goals ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-goals li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(240, 244, 248, 0.68);
    font-size: 0.85rem;
    line-height: 1.4;
}

.timeline-goals li::before {
    content: '•';
    color: rgba(var(--accent-rgb), 0.95);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.plan-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.plan-feature {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.5;
    color: inherit;
}

.plan-feature::before {
    content: '•';
    color: var(--tertiary-accent);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Timeline Responsive */
@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .timeline-number {
        top: 14px;
        left: 14px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .timeline-duration {
        top: 14px;
        right: 14px;
    }

    .timeline-content {
        padding: 3.9rem 1.25rem 1.25rem;
        border-radius: 22px;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg,
        var(--pricing-0) 0%,
        var(--pricing-1) 26%,
        var(--pricing-2) 70%,
        var(--pricing-3) 100%
    );
    margin-top: -2rem;
    position: relative;
}

.pricing-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--pricing-3) 100%);
    pointer-events: none;
}

/* Sources Notice Inline (в секции тарифов) */
.sources-notice-inline {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sources-notice-inline {
        margin-bottom: 3rem !important;
    }

    .sources-notice-inline p {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
    }

    .sources-notice-inline .flex {
        font-size: 0.8rem !important;
        gap: 1rem !important;
    }

    .sources-notice-inline svg {
        width: 0.875rem !important;
        height: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .sources-notice-inline {
        margin-bottom: 2.5rem !important;
    }

    .sources-notice-inline p {
        font-size: 0.8rem !important;
        margin-bottom: 0.625rem !important;
    }

    .sources-notice-inline .flex {
        font-size: 0.75rem !important;
        gap: 0.75rem !important;
    }

    .sources-notice-inline svg {
        width: 0.75rem !important;
        height: 0.75rem !important;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg,
        var(--primary-dark) 0%,
        #0F2435 34%,
        #0A0F14 72%,
        #060A0D 100%
    );
    margin-top: -2rem;
    position: relative;
    padding: 5rem 0 3rem 0;
}

/* FAQ Section (after CTA, before footer) */
.faq-section {
    background: linear-gradient(180deg,
        #060A0D 0%,
        rgba(10, 15, 20, 0.96) 55%,
        #060A0D 100%
    );
    margin-top: -2rem;
    position: relative;
}

/* Обертка для контента чтобы он был поверх градиентов */
.gradient-content {
    position: relative;
    z-index: 2;
}

/* Адаптивность градиентов */
@media (max-width: 768px) {
    .hero-section::after,
    .audience-section::after,
    .features-section::after,
    .ai-section::after,
    .works-section::after,
    .process-section::after,
    .pricing-section::after {
        height: 80px;
    }

    .audience-section,
    .features-section,
    .ai-section,
    .works-section,
    .process-section,
    .pricing-section,
    .cta-section,
    .faq-section {
        margin-top: -1rem;
    }
}

/* ===================================== */
/* Transformation Scenarios Section     */
/* ===================================== */

.transformation-scenarios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(900px circle at 15% 15%, rgba(var(--accent-rgb), 0.10) 0%, transparent 45%),
        radial-gradient(900px circle at 85% 85%, rgba(var(--transition-rgb), 0.10) 0%, transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%);
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.scenario-card::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.10) 82%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.scenario-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.22);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(var(--accent-rgb), 0.08) inset,
        0 0 24px rgba(var(--accent-rgb), 0.08);
}

/* Before State (Left Side) */
.scenario-before {
    position: relative;
    z-index: 2;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(6, 10, 13, 0.10), rgba(17, 25, 34, 0.45));
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease;
}

.scenario-card:hover .scenario-before {
    background: linear-gradient(135deg, rgba(6, 10, 13, 0.14), rgba(17, 25, 34, 0.52));
}

/* After State (Right Side) */
.scenario-after {
    position: relative;
    z-index: 2;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(6, 10, 13, 0.10) 58%);
    transition: background 0.25s ease;
}

.scenario-card:hover .scenario-after {
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.16) 0%,
        rgba(6, 10, 13, 0.12) 58%
    );
}

/* Labels */
.scenario-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(240, 244, 248, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.scenario-before .scenario-label {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 244, 248, 0.68);
}

.scenario-after .scenario-label {
    background: rgba(var(--accent-rgb), 0.14);
    color: rgba(240, 244, 248, 0.95);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.06) inset;
}

/* Titles */
.scenario-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.3;
}

.scenario-before .scenario-title {
    color: rgba(240, 244, 248, 0.82);
}

.scenario-after .scenario-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
                 0 0 16px rgba(var(--accent-rgb), 0.32);
    font-weight: 800;
}

/* Text */
.scenario-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.scenario-before .scenario-text {
    color: rgba(240, 244, 248, 0.68);
}

.scenario-after .scenario-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

/* Arrow */
.scenario-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2B4A64 0%, #1A3A52 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
    backdrop-filter: blur(14px);
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.scenario-card:hover .scenario-arrow {
    border-color: rgba(var(--accent-rgb), 0.26);
    box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.14);
}

.arrow-icon {
    width: 30px;
    height: 30px;
    color: rgba(var(--accent-rgb), 0.92);
    transition: all 0.3s ease;
}

.scenario-card:hover .arrow-icon {
    color: white;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scenario-card {
        border-radius: 24px;
    }

    .scenario-title {
        font-size: 1rem;
    }

    .scenario-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .scenario-card {
        grid-template-columns: 1fr;
    }

    .scenario-arrow {
        position: relative;
        left: auto;
        top: auto;
        transform: rotate(90deg);
        margin: 0 auto;
        width: 48px;
        height: 48px;
    }

    .scenario-card:hover .scenario-arrow {
        transform: rotate(90deg);
    }

    .arrow-icon {
        width: 24px;
        height: 24px;
    }

    .scenario-card:hover .arrow-icon {
        transform: none;
    }

    .scenario-before,
    .scenario-after {
        padding: 1.5rem 1.5rem;
    }

    .scenario-title {
        font-size: 1.05rem;
    }

    .scenario-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .scenario-card::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .scenario-card {
        border-radius: 20px;
    }

    .scenario-card::before {
        opacity: 0.9;
    }

    .scenario-before,
    .scenario-after {
        padding: 1rem;
    }

    .scenario-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .scenario-text {
        font-size: 0.85rem;
    }

    .scenario-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .scenario-arrow {
        width: 44px;
        height: 44px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===================================== */
/* Practice Showcase                      */
/* ===================================== */

.practice-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 1.75rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(17, 25, 34, 0.64), rgba(6, 10, 13, 0.42));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.practice-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 66px rgba(0, 0, 0, 0.42);
}

.practice-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px circle at 20% 15%, rgba(var(--accent-rgb), 0.10) 0%, transparent 48%),
        radial-gradient(900px circle at 90% 80%, rgba(var(--transition-rgb), 0.10) 0%, transparent 52%);
    opacity: 1;
    pointer-events: none;
}

.practice-panel--problem::before {
    background:
        radial-gradient(900px circle at 10% 15%, rgba(255, 255, 255, 0.07) 0%, transparent 52%),
        radial-gradient(900px circle at 90% 85%, rgba(255, 255, 255, 0.05) 0%, transparent 56%);
}

.practice-panel--engine {
    border-color: rgba(var(--accent-rgb), 0.28);
}

.practice-panel--engine:hover {
    border-color: rgba(var(--accent-rgb), 0.36);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.44), 0 0 28px rgba(var(--accent-rgb), 0.10);
}

.practice-panel--engine::before {
    background:
        radial-gradient(900px circle at 18% 18%, rgba(var(--accent-rgb), 0.16) 0%, transparent 52%),
        radial-gradient(900px circle at 92% 82%, rgba(var(--transition-rgb), 0.12) 0%, transparent 56%);
}

.practice-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 244, 248, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.practice-kicker--accent {
    border-color: rgba(var(--accent-rgb), 0.28);
    background: rgba(var(--accent-rgb), 0.12);
    color: rgba(240, 244, 248, 0.92);
}

.practice-kicker i {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.72);
}

.practice-kicker--accent i {
    color: var(--primary-accent);
}

.practice-panel-title {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.practice-panel-subtitle {
    position: relative;
    z-index: 1;
    margin-top: 0.75rem;
    color: rgba(240, 244, 248, 0.75);
    font-size: 0.95rem;
    line-height: 1.55;
}

.practice-list {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.practice-list li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(240, 244, 248, 0.82);
    font-size: 0.95rem;
    line-height: 1.5;
}

.practice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.practice-flow {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.practice-step {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.practice-step:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.practice-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    color: var(--primary-accent);
    flex-shrink: 0;
}

.practice-step-icon i {
    font-size: 1rem;
}

.practice-step-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.practice-flow-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    color: rgba(240, 244, 248, 0.45);
}

.practice-flow-arrow i {
    font-size: 0.9rem;
}

.practice-preview {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(135deg, rgba(6, 10, 13, 0.42), rgba(17, 25, 34, 0.32));
    padding: 1rem;
    overflow: hidden;
}

.practice-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(650px circle at 20% 0%, rgba(var(--accent-rgb), 0.14) 0%, transparent 52%);
    opacity: 1;
    pointer-events: none;
}

.practice-preview-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.practice-stamp {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    border: 1px dashed rgba(var(--accent-rgb), 0.42);
    background: rgba(var(--accent-rgb), 0.10);
    color: rgba(240, 244, 248, 0.92);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.practice-preview-label {
    color: rgba(240, 244, 248, 0.55);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.practice-preview-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.practice-preview-row + .practice-preview-row {
    margin-top: 0.6rem;
}

.practice-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.practice-chip--ok {
    border-color: rgba(var(--accent-rgb), 0.32);
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--primary-accent);
}

.practice-chip--warn {
    border-color: rgba(255, 215, 0, 0.28);
    background: rgba(255, 215, 0, 0.10);
    color: var(--gold);
}

.practice-preview-text {
    flex: 1;
    color: rgba(240, 244, 248, 0.88);
    font-size: 0.9rem;
    line-height: 1.35;
}

.practice-preview-link {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 13, 0.20);
    color: rgba(240, 244, 248, 0.48);
    flex-shrink: 0;
}

.practice-preview-footnote {
    position: relative;
    z-index: 1;
    margin-top: 0.75rem;
    color: rgba(240, 244, 248, 0.55);
    font-size: 0.8rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .practice-panel {
        padding: 1.4rem 1.25rem;
    }

    .practice-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .practice-flow-arrow {
        width: auto;
        transform: rotate(90deg);
    }

    .practice-preview-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Кастомные утилиты для 1920px+ */
@media (min-width: 1920px) {
    /* Переопределяем размеры текста с высоким приоритетом */
    .text-5xl {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .text-4xl {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .text-3xl {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }

    .text-2xl {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .text-xl {
        font-size: 1.125rem !important;
        line-height: 1.4 !important;
    }

    .text-lg {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* Специально для hero */
    .heading-xl {
        font-size: 2.75rem !important;
    }

    /* Hero заголовок остается крупным */
    .hero-subtitle {
        font-size: 2.75rem !important;
        line-height: 1.2 !important;
    }

    /* Расширяем контейнеры */
    .max-w-6xl {
        max-width: 1280px !important;
    }

    .max-w-7xl {
        max-width: 1400px !important;
    }
}

/* Оптимизация для больших экранов 1920px+ */
@media (min-width: 1920px) {
    /* Навигация - исправляем переносы */
    nav {
        padding: 0.5rem 0;
    }

    nav .flex.items-center.space-x-4 {
        space-x-2 !important;
        white-space: nowrap;
    }

    nav .text-xl {
        font-size: 1rem !important;
        white-space: nowrap;
    }

    nav img {
        height: 2rem;
        margin-right: 0.5rem !important;
    }

    .nav-link {
        font-size: 0.75rem !important;
        white-space: nowrap;
        padding: 0 0.5rem;
    }

    #main-nav {
        gap: 1rem !important;
    }

    .registration-btn {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
        white-space: nowrap;
    }

    /* Заголовки */
    h1 {
        font-size: 2.75rem !important;
    }

    h2 {
        font-size: 2.25rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    /* Hero section */
    .hero-section .text-5xl {
        font-size: 2.75rem !important;
    }

    .hero-section .text-xl {
        font-size: 1.125rem !important;
    }

    /* Статистика */
    .stats-item .text-4xl {
        font-size: 2.25rem !important;
    }

    /* Карточки */
    .glass-card {
        padding: 1.75rem;
    }

    .glass-card h3 {
        font-size: 1.25rem !important;
    }

    .glass-card p {
        font-size: 0.9rem;
    }

    /* Процесс */
    .process-item h3 {
        font-size: 1.125rem !important;
    }

    /* Тарифы */
    .pricing-card h3 {
        font-size: 1.25rem !important;
    }

    .pricing-card .text-5xl {
        font-size: 2.5rem !important;
    }

    /* CTA секция */
    .cta-section h2 {
        font-size: 2rem !important;
    }

    .cta-section .text-xl {
        font-size: 1.125rem !important;
    }

    /* Карусель */
    .slider-card h3 {
        font-size: 1.125rem !important;
    }

    .slider-card p {
        font-size: 0.875rem;
    }

    /* Общие параграфы */
    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* Кнопки */
    button {
        font-size: 0.95rem;
    }

    /* Списки */
    ul li {
        font-size: 0.9rem;
    }
}

/* ===================================== */
/* Hero Sources Block - Compact         */
/* ===================================== */

.sources-hero-block {
    margin: 0;
    padding: 0;
    max-width: 620px;
    font-family: 'Manrope', sans-serif;
}

.sources-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.625rem;
    font-family: 'Manrope', sans-serif;
}

.sources-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sources-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.source-item {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
}

.source-item:hover {
    background: rgba(var(--accent-rgb), 0.12);
    color: white;
}

.source-more {
    color: var(--primary-accent);
    background: rgba(var(--accent-rgb), 0.10);
}

.source-more:hover {
    background: rgba(var(--accent-rgb), 0.16);
}

/* Responsive */
@media (max-width: 768px) {
    .sources-hero-block {
        max-width: 100%;
    }

    .sources-title {
        font-size: 0.9rem;
        text-align: center;
    }

    .sources-list {
        gap: 0.4rem;
    }

    .sources-row {
        justify-content: center;
        gap: 0.4rem;
    }

    .source-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.55rem;
    }
}

@media (max-width: 480px) {
    .sources-title {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .sources-list {
        gap: 0.35rem;
    }

    .sources-row {
        gap: 0.3rem;
    }

    .source-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.45rem;
    }
}

@media (max-width: 360px) {
    .sources-title {
        font-size: 0.75rem;
    }

    .sources-row {
        gap: 0.25rem;
    }

    .source-item {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Еще больше оптимизации для 2560px+ (4K мониторы) */
@media (min-width: 2560px) {
    /* Максимальная ширина контейнера */
    .max-w-7xl {
        max-width: 1400px;
    }

    .max-w-6xl {
        max-width: 1200px;
    }

    /* Еще немного уменьшаем шрифты */
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hero-section .text-5xl {
        font-size: 2.5rem !important;
    }
}

/* Специальные стили для навигации на больших экранах */
@media (min-width: 1920px) {
    nav .max-w-7xl {
        max-width: 1400px !important;
    }
}

/* Для сверхшироких мониторов */
@media (min-width: 2560px) {
    nav .max-w-7xl {
        max-width: 1600px !important;
    }
}

/* Дополнительные настройки для 1920px+ */
@media (min-width: 1920px) {
    /* Карточки в карусели */
    .slider-card h3 {
        font-size: 1.125rem !important;
    }

    .slider-card p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }

    /* Иконки в карточках */
    .slider-icon {
        font-size: 2rem !important;
    }

    /* Сравнение AI vs Human */
    .glass-card ul li {
        font-size: 0.9rem !important;
    }

    /* Кнопки в тарифах */
    .pricing-card button {
        font-size: 0.875rem !important;
        padding: 0.625rem 1.5rem !important;
    }

    /* Статистика в процессе */
    .process-stats {
        font-size: 0.9rem !important;
    }

    /* Подзаголовки */
    p.text-gray-300,
    p.text-gray-200 {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    /* Общие отступы секций */
    section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Hero section особые настройки */
    .hero-section {
        padding-top: 7rem !important;
        min-height: 0 !important;
    }
}


body > section.hero-section.relative.min-h-screen.md\:min-h-screen.pt-32 > div > div.max-w-7xl.mx-auto.px-4.sm\:px-6.lg\:px-8.relative > div > div.space-y-8 > div.flex.flex-wrap.gap-4 > a {
    z-index: 10000;
}

.heading-relaxed {
    line-height: 1.5 !important;
}
