/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0d0f17;
    --bg-secondary: #141824;
    --bg-card: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #8b95a5;
    --accent-purple: #6C5CE7;
    --accent-green: #00D9A5;
    --accent-blue: #4A90D9;
    --border-color: #2d3748;
}

.show-mobile {
    display: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(13, 15, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1;
    letter-spacing: 0.2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   PREMIUM HEADER STYLES
   ======================================== */
.header-premium {
    background: rgba(13, 15, 23, 0.85);
    border-bottom: 1px solid rgba(108, 92, 231, 0.15);
}

.header-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Logo Premium Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 1;
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
}

.logo-link:hover .logo-pulse {
    opacity: 1;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-pulse {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.4) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: logo-pulse-anim 2s ease-in-out infinite;
}

@keyframes logo-pulse-anim {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.logo-ai {
    background: linear-gradient(135deg, #6C5CE7, #00D9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Navigation Premium Styles */
.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-text {
    position: relative;
    z-index: 1;
}

.nav-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-green));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

/* Header Contact Links */
.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 217, 165, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.header-contact:hover::before {
    opacity: 1;
}

.header-contact:hover {
    color: var(--text-primary);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.header-contact:hover .contact-icon {
    transform: scale(1.15);
}

/* Phone Link */
.phone-link:hover .contact-icon {
    color: var(--accent-green);
    animation: phone-ring 0.5s ease;
}

@keyframes phone-ring {

    0%,
    100% {
        transform: rotate(0deg) scale(1.15);
    }

    20% {
        transform: rotate(-15deg) scale(1.15);
    }

    40% {
        transform: rotate(15deg) scale(1.15);
    }

    60% {
        transform: rotate(-10deg) scale(1.15);
    }

    80% {
        transform: rotate(10deg) scale(1.15);
    }
}

/* Telegram Link */
.tg-link:hover .contact-icon {
    color: #0088cc;
}

.tg-icon {
    transition: transform 0.3s ease;
}

.tg-link:hover .tg-icon {
    transform: scale(1.15) rotate(-5deg);
    animation: tg-fly 0.4s ease;
}

@keyframes tg-fly {
    0% {
        transform: scale(1.15) translateX(0);
    }

    50% {
        transform: scale(1.15) translateX(3px);
    }

    100% {
        transform: scale(1.15) translateX(0) rotate(-5deg);
    }
}

.contact-text {
    position: relative;
    z-index: 1;
}

/* Header CTA Button */
.btn-header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-purple), #5B4BD5);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-header-cta:hover::before {
    left: 100%;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, #7B6CF0, #6C5CE7);
}

.btn-header-text {
    position: relative;
    z-index: 1;
}

.btn-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-header-cta:hover .btn-header-icon {
    transform: translateX(4px);
}

/* Cabinet Button */
.btn-header-cabinet {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-header-cabinet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 217, 165, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-header-cabinet:hover::before {
    opacity: 1;
}

.btn-header-cabinet:hover {
    color: var(--text-primary);
    border-color: rgba(108, 92, 231, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.15);
}

.cabinet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-header-cabinet:hover .cabinet-icon {
    color: var(--accent-purple);
    transform: scale(1.1);
}

.btn-header-cabinet .btn-header-text {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--accent-green);
    color: #0d0f17;
}

.btn-primary:hover {
    background: #00c795;
    transform: translateY(-1px);
}

.btn-cta {
    background: var(--accent-green);
    color: #0d0f17;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-cta:hover {
    background: #00c795;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 165, 0.3);
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.typewriter-container {
    display: inline-block;
    color: var(--accent-green);
    margin-left: 0;
    min-width: 0;
    white-space: nowrap;
}

.typewriter-container .txt {
    border-right: 4px solid var(--accent-green);
    padding-right: 4px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-green)
    }
}

.typewriter-text {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00f2ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-right: 3px solid var(--accent-green);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(30) infinite alternate, cursor .4s step-end infinite alternate;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes cursor {
    50% {
        border-color: transparent
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 580px;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-badge.active {
    color: var(--text-primary);
}

/* Hero Visual - Restored & Polished Dashboard */
.hero-visual {
    position: relative;
    z-index: 1;
}

.dashboard-mockup {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dashboard-mockup img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 217, 165, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.stat-trend {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}

.stat-trend.up {
    background: rgba(0, 217, 165, 0.15);
    color: var(--accent-green);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
}

.chart-area {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
}

.chart-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 150px;
}

.bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(180deg, #4A90D9 0%, #357ABD 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    height: 100%;
}

.bar-fill.purple {
    background: linear-gradient(180deg, #6C5CE7 0%, #5849c4 100%);
}

.bar-fill.green {
    background: linear-gradient(180deg, #00D9A5 0%, #00b88a 100%);
}

.bar-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-badge.conversion {
    top: 20px;
    right: -30px;
    background: var(--accent-green);
    color: #0d0f17;
    border: none;
}

.floating-badge.tasks {
    bottom: 80px;
    left: -20px;
    background: var(--bg-primary);
}

.floating-badge.score {
    bottom: 20px;
    right: -20px;
    padding: 16px;
}

.score-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-green);
}

/* Features Section - Modern */
.features {
    padding: 70px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Floating particles */
.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-purple);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Section badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.badge-wave {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.3), transparent);
    animation: badge-shimmer 2s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(150px);
    }
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern features grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
}

/* Large feature card */
.feature-card-large {
    grid-row: span 2;
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card-large:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    animation: glow-rotate 10s linear infinite;
}

@keyframes glow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-icon-large {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(0, 217, 165, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

/* Mic waves animation */
.mic-waves {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-wave {
    position: absolute;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    animation: mic-pulse 2s ease-out infinite;
}

.mic-wave:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.mic-wave:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.4s;
}

.mic-wave:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 0.8s;
}

@keyframes mic-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.feature-card-large h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card-large p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-stats {
    display: flex;
    gap: 24px;
}

.feature-stat {
    display: flex;
    flex-direction: column;
}

.feature-stat .stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-green);
}

.feature-stat .stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern feature card */
.feature-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-icon-modern {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.feature-icon-modern.ai {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(0, 217, 165, 0.1) 100%);
}

.ai-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent-purple);
    border-radius: 18px;
    animation: ai-think 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes ai-think {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.feature-card-modern:hover .feature-icon-modern {
    background: rgba(108, 92, 231, 0.2);
    transform: scale(1.05);
}

.feature-card-modern h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.feature-card-modern p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Legacy feature grid support */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: -16px;
    margin-bottom: 20px;
}

/* Button Variants */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    margin-left: 16px;
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 100%;
}

.btn-outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

/* Problem Section - Modern */
.problem {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background waves animation */
.problem-bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.05;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    border-radius: 45%;
    animation: wave-rotate 20s linear infinite;
}

.wave-1 {
    top: -70%;
    background: linear-gradient(135deg, #FF6B6B 0%, transparent 50%);
    animation-duration: 25s;
}

.wave-2 {
    top: -75%;
    background: linear-gradient(135deg, #6C5CE7 0%, transparent 50%);
    animation-duration: 30s;
    animation-delay: -5s;
}

.wave-3 {
    top: -80%;
    background: linear-gradient(135deg, #FF6B6B 0%, transparent 50%);
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes wave-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Phone signal animation */
.phone-signal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.signal-ring {
    position: absolute;
    border: 2px solid #FF6B6B;
    border-radius: 50%;
    animation: signal-pulse 2s ease-out infinite;
}

.signal-ring:nth-child(1) {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.signal-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    animation-delay: 0.3s;
}

.signal-ring:nth-child(3) {
    width: 80px;
    height: 80px;
    animation-delay: 0.6s;
}

@keyframes signal-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.problem-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.problem-content {
    padding: 20px 18px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-content {
    max-height: 0;
    padding: 0 18px;
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.15) 0%, rgba(0, 217, 165, 0.05) 100%);
    border-top: 2px solid transparent;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        border-color 0.3s ease;
    transition-delay: 0s;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-green);
    color: #0a0a0f;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.solution-badge svg {
    width: 12px;
    height: 12px;
}

.solution-content h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 6px;
    line-height: 1.3;
}

.solution-content p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.solution-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-good {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 217, 165, 0.5);
}

.solution-stat .stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-hover-hint {
    position: absolute;
    bottom: 12px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.card-hover-hint svg {
    animation: hint-arrow 1.5s ease-in-out infinite;
}

@keyframes hint-arrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #ff8e8e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 10;
}

/* Hover state - expand card and show solution */
.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 165, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 165, 0.2), 0 0 0 1px rgba(0, 217, 165, 0.1);
}

.problem-card:hover::before {
    background: linear-gradient(90deg, var(--accent-green), #00f2ba);
    transform: scaleX(1);
}

.problem-card:hover .solution-content {
    max-height: 180px;
    padding: 14px 18px;
    opacity: 1;
    border-top-color: var(--accent-green);
    transition-delay: 0.8s;
}

.problem-card:hover .card-hover-hint {
    opacity: 0;
}

.problem-card:hover .problem-icon-wrap .icon-pulse {
    background: rgba(0, 217, 165, 0.1);
}

.problem-card:hover .problem-icon {
    background: rgba(0, 217, 165, 0.15);
    color: var(--accent-green);
}

/* Healing animation - pulse green glow */
.problem-card:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.3), transparent, rgba(0, 217, 165, 0.3));
    z-index: -1;
    animation: healing-glow 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 0.8s;
}

@keyframes healing-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.problem-number {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 36px;
    font-weight: 800;
    color: var(--border-color);
    opacity: 0.25;
    line-height: 1;
}

.problem-icon-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.icon-pulse {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.problem-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 107, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B6B;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.3;
}

.problem-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.problem-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.stat-bad {
    font-size: 18px;
    font-weight: 800;
    color: #FF6B6B;
}

.problem-stat .stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* How it Works Section - Modern Timeline */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

/* Signal flow animation */
.signal-flow {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
}

.flow-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-green));
    border-radius: 2px;
    animation: flow-progress 3s ease-in-out infinite;
}

.flow-pulse {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-green);
}

@keyframes flow-progress {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

/* Steps Timeline */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 40px;
    position: relative;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
}

.connector-dot {
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border: 3px solid var(--accent-purple);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.connector-dot.active {
    background: var(--accent-purple);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.connector-dot.success {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 217, 165, 0.5);
}

.connector-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--border-color) 100%);
    min-height: 60px;
}

.step-content {
    flex-grow: 1;
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    align-items: flex-start;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-purple);
    letter-spacing: 1px;
}

.step-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.step-icon-modern.success {
    color: var(--accent-green);
    border-color: rgba(0, 217, 165, 0.3);
}

.step-item:hover .step-icon-modern {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.2);
}

/* Sound wave animation in step */
.sound-wave-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
}

.sound-bar {
    width: 6px;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-green) 100%);
    border-radius: 3px;
    animation: sound-wave 1s ease-in-out infinite;
}

.sound-bar:nth-child(1) {
    height: 15px;
}

.sound-bar:nth-child(2) {
    height: 25px;
}

.sound-bar:nth-child(3) {
    height: 35px;
}

.sound-bar:nth-child(4) {
    height: 25px;
}

.sound-bar:nth-child(5) {
    height: 15px;
}

@keyframes sound-wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

/* Upload waves */
.upload-waves {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-wave {
    position: absolute;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    opacity: 0;
    animation: upload-pulse 2s ease-out infinite;
}

.upload-wave:nth-child(1) {
    width: 60px;
    height: 60px;
}

.upload-wave:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

@keyframes upload-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* AI brain animation */
.ai-brain {
    position: relative;
}

.brain-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    animation: brain-think 1.5s ease-in-out infinite;
}

@keyframes brain-think {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.step-info {
    flex-grow: 1;
}

.step-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.tag.accent {
    background: rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.3);
    color: var(--accent-purple);
}

.tag.success {
    background: rgba(0, 217, 165, 0.15);
    border-color: rgba(0, 217, 165, 0.3);
    color: var(--accent-green);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(26, 31, 46, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    background: rgba(108, 92, 231, 0.05);
    border: 2px solid var(--accent-purple);
    box-shadow: 0 16px 32px rgba(108, 92, 231, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-purple), #a29bfe);
    color: white;
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-primary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.pricing-features li.disabled {
    color: var(--text-secondary);
    opacity: 0.4;
}

.pricing-features li.disabled span {
    text-decoration: line-through;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0.8;
}

/* Comparison Section */
.comparison {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 32px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    font-size: 16px;
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    color: var(--text-primary);
    font-weight: 600;
    width: 40%;
}

.comparison-table td.highlight {
    color: var(--accent-green);
    font-weight: 700;
    background: rgba(0, 217, 165, 0.02);
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ========================================
   FAQ SECTION - MODERN ACCORDION
   ======================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-primary);
    scroll-margin-top: 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header .section-badge {
    margin-bottom: 16px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.faq-item.active {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(108, 92, 231, 0.05);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--accent-purple);
    color: white;
    transform: rotate(90deg);
}

.faq-q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-green);
    background: rgba(0, 217, 165, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px 72px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--accent-green);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 217, 165, 0.1) 100%);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.3);
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
}

.faq-contact-btn svg {
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 217, 165, 0.1) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    margin-left: 0;
}

/* Benefits Section */
.benefits {
    padding: 40px 0 30px;
    background: var(--bg-primary);
    scroll-margin-top: 100px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 0;
}

.benefit-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-green);
    box-shadow: 0 12px 30px rgba(0, 217, 165, 0.1);
}

.benefit-icon {
    margin-bottom: 8px;
    display: inline-flex;
    padding: 10px;
    background: rgba(0, 217, 165, 0.1);
    border-radius: 12px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.benefit-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.roi-calculator {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(0, 217, 165, 0.15) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.roi-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.roi-header p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.roi-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.roi-stat {
    text-align: center;
}

.roi-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.roi-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 12px 20px;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

/* CTA Form Section */
/* Compact CTA Layout - One Screen */
.cta-wrapper-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Robot Container */
.robot-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.robot-svg {
    width: 160px;
    height: auto;
    overflow: visible;
}

/* Robot drawing animation */
.robot-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-robot 2s ease forwards;
}

@keyframes draw-robot {
    to {
        stroke-dashoffset: 0;
    }
}

.robot-head {
    animation-delay: 0s;
}

.visor {
    animation-delay: 0.3s;
}

.robot-body {
    animation-delay: 0.5s;
}

.accent {
    animation-delay: 0.7s;
}

/* Eye LED lines */
.robot-eye-line {
    opacity: 0;
    animation: eye-on 0.3s ease forwards 1s, eye-glow-pulse 2s ease-in-out infinite 1.3s;
}

@keyframes eye-on {
    to {
        opacity: 1;
    }
}

@keyframes eye-glow-pulse {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 4px #00D9A5);
    }

    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 8px #00D9A5);
    }
}

/* Smile */
.robot-smile {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: draw-robot 0.5s ease forwards 1.2s;
}

/* Antenna pulse */
.antenna-pulse {
    animation: antenna-glow 1.5s ease-in-out infinite;
}

@keyframes antenna-glow {

    0%,
    100% {
        opacity: 0.6;
        r: 3;
    }

    50% {
        opacity: 1;
        r: 4;
    }
}

/* Core animations */
.core-outer {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw-robot 1s ease forwards 0.8s, core-rotate 8s linear infinite 1.8s;
    transform-origin: 80px 130px;
}

@keyframes core-rotate {
    to {
        transform: rotate(360deg);
    }
}

.core-middle {
    animation: core-pulse-mid 2s ease-in-out infinite;
}

@keyframes core-pulse-mid {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.core-inner {
    animation: core-pulse-inner 1.5s ease-in-out infinite;
}

@keyframes core-pulse-inner {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Energy lines */
.energy-line {
    stroke-dasharray: 15;
    stroke-dashoffset: 15;
    animation: energy-flow 1.5s ease-in-out infinite;
}

.e1 {
    animation-delay: 0s;
}

.e2 {
    animation-delay: 0.4s;
}

.e3 {
    animation-delay: 0.8s;
}

.e4 {
    animation-delay: 1.2s;
}

@keyframes energy-flow {
    0% {
        opacity: 0;
        stroke-dashoffset: 15;
    }

    50% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    100% {
        opacity: 0;
        stroke-dashoffset: -15;
    }
}

/* Floating particles */
.particle {
    animation: float-particle 3s ease-in-out infinite;
}

.p1 {
    animation-delay: 0s;
}

.p2 {
    animation-delay: 0.8s;
}

.p3 {
    animation-delay: 1.5s;
}

.p4 {
    animation-delay: 2.2s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

/* Glow ring */
.glow-ring {
    animation: ring-breathe 4s ease-in-out infinite;
}

@keyframes ring-breathe {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }
}

/* Status dots */
.status-dot {
    animation: dot-blink 2s ease-in-out infinite;
}

.s1 {
    animation-delay: 0s;
}

.s2 {
    animation-delay: 0.5s;
}

.s3 {
    animation-delay: 1s;
}

.s4 {
    animation-delay: 1.5s;
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Circuit patterns */
.circuit {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: circuit-draw 1s ease forwards 1.5s;
}

@keyframes circuit-draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Base glow */
.base-glow {
    animation: base-pulse 2s ease-in-out infinite;
}

@keyframes base-pulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

/* Robot text section */
.cta-robot-text {
    text-align: center;
    max-width: 320px;
}

.robot-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #6C5CE7, #00D9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-robot-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
}

.cta-benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.benefit-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 217, 165, 0.1);
    border: 1px solid rgba(0, 217, 165, 0.2);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
}

.benefit-chip svg {
    flex-shrink: 0;
}

/* Premium Form Styles */
.cta-form-wrapper {
    position: relative;
}

.form-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6C5CE7, #00D9A5, #6C5CE7);
    background-size: 200% 200%;
    border-radius: 22px;
    animation: gradient-rotate 4s ease infinite;
    opacity: 0.6;
    z-index: -1;
    filter: blur(8px);
}

@keyframes gradient-rotate {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.form-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(0, 217, 165, 0.3));
    border-radius: 20px;
    z-index: -1;
}

.premium-form {
    background: linear-gradient(145deg, var(--bg-secondary) 0%, rgba(26, 31, 46, 0.95) 100%);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.premium-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6C5CE7, #00D9A5);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 217, 165, 0.2));
    border: 1px solid rgba(0, 217, 165, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.form-badge svg {
    color: var(--accent-green);
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    background: rgba(13, 15, 23, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(13, 15, 23, 0.8);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.input-wrapper input:focus+.input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--accent-purple);
}

.input-wrapper input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 8px;
    padding-left: 4px;
}

.form-hint svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Premium Button */
.btn-premium {
    width: 100%;
    position: relative;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6C5CE7, #5B4BD5);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-premium:active {
    transform: translateY(0);
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.btn-content svg {
    transition: transform 0.3s;
}

.btn-premium:hover .btn-content svg {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover .btn-shine {
    left: 100%;
}

/* Trust Items */
.form-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-secondary);
}

.trust-item svg {
    flex-shrink: 0;
}

/* Success State */
.form-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, var(--bg-secondary) 0%, rgba(26, 31, 46, 0.98) 100%);
    border: 1px solid rgba(0, 217, 165, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.form-success.hidden {
    display: none;
}

.success-animation {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.success-circle {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(0, 217, 165, 0.3);
    border-radius: 50%;
    animation: success-ring 1s ease-out forwards;
}

@keyframes success-ring {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw-check 0.5s ease forwards 0.5s;
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

.form-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #6C5CE7, #00D9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-success p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.success-next {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(0, 217, 165, 0.1);
    border: 1px solid rgba(0, 217, 165, 0.2);
    border-radius: 10px;
    font-size: 12px;
}

.next-step {
    font-weight: 600;
    color: var(--accent-green);
}

.success-next span:last-child {
    color: var(--text-secondary);
}

.form-success p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 16px;
    background: transparent;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover .scroll-top-bg {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
}

.scroll-top-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover .scroll-top-icon {
    transform: translateY(-2px);
}

.scroll-top-btn:active .scroll-top-icon {
    transform: translateY(0);
}

.scroll-top-ring {
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 2px solid var(--accent-purple);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover .scroll-top-ring {
    opacity: 0.5;
    transform: scale(1);
    animation: ring-pulse 1.5s ease-in-out infinite;
}

@keyframes ring-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

/* Mobile styles for scroll button */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 24px;
        right: 20px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .scroll-top-bg {
        border-radius: 14px;
    }

    .scroll-top-ring {
        border-radius: 18px;
    }

    .scroll-top-btn.visible {
        animation: slide-up-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes slide-up-bounce {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.5);
        }

        60% {
            transform: translateY(-8px) scale(1.05);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 16px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .scroll-top-bg {
        border-radius: 12px;
    }

    .scroll-top-ring {
        inset: -3px;
        border-radius: 15px;
    }

    .scroll-top-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-badge.conversion,
    .floating-badge.score {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    /* Header mobile styles */
    .header-glow {
        width: 300px;
    }

    .header-contact .contact-text {
        display: none;
    }

    .header-contact {
        padding: 8px;
        border-radius: 8px;
    }

    .btn-header-cta {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn-header-cta .btn-header-icon {
        display: none;
    }

    .btn-header-cabinet {
        padding: 8px;
        border-radius: 8px;
    }

    .btn-header-cabinet .btn-header-text {
        display: none;
    }

    .logo-subtitle {
        display: none;
    }

    .logo-text {
        font-size: 18px;
    }

    .header-actions {
        gap: 8px;
    }

    /* Hero mobile optimization */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .header {
        padding: 12px 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-title-main {
        display: block;
        font-size: 28px;
    }

    .hero-highlight {
        font-size: 42px;
        display: block;
        margin: 8px 0;
    }

    .hero-title-sub {
        display: block;
        font-size: 22px;
        color: var(--text-secondary);
    }

    .typewriter-container {
        display: block;
        font-size: 24px;
        margin-top: 4px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 32px;
        padding: 0 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-secondary-link {
        font-size: 14px;
    }

    /* Hide trust triggers on mobile - less clutter */
    .hero-trust {
        display: none !important;
    }

    /* Hero visual / Dashboard mobile fix - ПОЛНАЯ ПЕРЕРАБОТКА */
    .hero-visual {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .managers-dashboard {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        border-radius: 16px;
        box-sizing: border-box;
        position: relative;
    }

    /* Скрыть плавающие элементы на мобильных */
    .ai-analyzing-badge,
    .profit-counter {
        display: none !important;
    }

    .dashboard-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .dashboard-title {
        font-size: 11px;
    }

    /* Карточки менеджеров - ОДНА КОЛОНКА */
    .managers-grid {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .manager-card {
        padding: 12px;
        opacity: 1 !important;
        transform: none !important;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .manager-avatar {
        width: 36px;
        height: 36px;
        min-width: 36px;
        flex-shrink: 0;
        font-size: 14px;
        border-radius: 10px;
    }

    .manager-info {
        flex: 1;
        min-width: 0;
    }

    .manager-name {
        font-size: 14px;
        font-weight: 600;
        display: block;
    }

    .manager-calls {
        font-size: 11px;
        color: var(--text-secondary);
    }

    .manager-score {
        width: 40px;
        height: 40px;
        min-width: 40px;
        flex-shrink: 0;
    }

    .score-value {
        font-size: 12px;
        font-weight: 700;
    }

    .score-ring {
        width: 100%;
        height: 100%;
    }

    /* Мини-график */
    .mini-chart {
        padding: 12px;
        margin-top: 8px;
    }

    .chart-header {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .chart-header span:first-child {
        font-size: 12px;
    }

    .chart-trend {
        font-size: 11px !important;
    }

    .chart-bars-animated {
        height: 60px;
    }

    .bar-animated {
        border-radius: 4px;
    }

    /* Redundant feature cards rules removed for consolidation */

    .feature-card-large {
        grid-row: span 1;
        padding: 20px;
    }

    .feature-card-large h3 {
        font-size: 18px;
    }

    .feature-card-large p {
        font-size: 14px;
    }

    .feature-icon-large {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .feature-card-modern {
        padding: 16px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .feature-card-modern .feature-icon-modern {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-card-modern h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .feature-card-modern p {
        font-size: 12px;
        line-height: 1.4;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    /* On mobile, show solution always */
    .solution-content {
        max-height: 200px;
        padding: 14px 18px;
        opacity: 1;
        border-top-color: var(--accent-green);
    }

    .card-hover-hint {
        display: none;
    }

    .problem-number {
        font-size: 32px;
    }

    .steps-timeline {
        padding-left: 0;
    }

    .step-content {
        flex-direction: column;
    }

    .step-item {
        gap: 20px;
    }

    .signal-flow {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .roi-stats {
        flex-direction: column;
        gap: 24px;
    }

    .cta-wrapper-compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-left {
        order: 1;
    }

    .cta-form-wrapper {
        order: 0;
    }

    .robot-svg {
        width: 120px;
    }

    .cta-robot-text {
        max-width: 100%;
    }

    .cta-robot-text p {
        font-size: 13px;
    }

    .robot-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .benefit-chip {
        font-size: 10px;
        padding: 4px 8px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .section-subtitle {
        font-size: 16px;
        margin-top: -30px;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn-secondary {
        margin-left: 0;
    }

    .header-actions .btn-ghost {
        display: none;
    }
}

/* iPhone 14 Pro and similar (393px width) */
@media (max-width: 430px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 20px;
    }

    .hero-badge span:last-child {
        max-width: 200px;
        text-align: center;
        line-height: 1.3;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-title-main {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-highlight {
        font-size: 38px;
        margin: 6px 0;
    }

    .hero-title-sub {
        font-size: 18px;
        line-height: 1.3;
    }

    .typewriter-container {
        font-size: 20px;
        margin-top: 2px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 28px;
        padding: 0 5px;
    }

    .hero-description strong {
        font-weight: 600;
    }

    .btn-cta {
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-text {
        font-size: 14px;
    }

    .btn-subtext {
        font-size: 11px;
    }

    .btn-secondary-link {
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Features grid consolidation */

    .feature-card-large {
        padding: 18px;
    }

    .feature-card-large h3 {
        font-size: 16px;
    }

    .feature-card-large p {
        font-size: 13px;
    }

    .feature-stats {
        gap: 16px;
    }

    .feature-stats .stat-value {
        font-size: 22px;
    }

    .feature-stats .stat-label {
        font-size: 10px;
    }

    .feature-icon-large {
        width: 50px;
        height: 50px;
    }

    .feature-card-modern {
        padding: 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .feature-card-modern .feature-icon-modern {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-card-modern h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .feature-card-modern p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title-main {
        font-size: 22px;
    }

    .hero-highlight {
        font-size: 34px;
    }

    .hero-title-sub {
        font-size: 16px;
    }

    .typewriter-container {
        font-size: 18px;
    }

    .hero-description {
        font-size: 13px;
    }

    .btn-cta {
        max-width: 260px;
        padding: 11px 18px;
    }
}

@media (max-width: 1024px) {
    /* Redundant rule removed */

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Grid rules moved to consolidated block */

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   GLOBAL FLOATING PARTICLES
   ======================================== */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.g-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 50%;
    opacity: 0.15;
    animation: g-float 20s linear infinite;
}

.g-particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.g-particle:nth-child(2) {
    left: 15%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.g-particle:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.g-particle:nth-child(4) {
    left: 35%;
    animation-delay: 6s;
    animation-duration: 24s;
}

.g-particle:nth-child(5) {
    left: 45%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.g-particle:nth-child(6) {
    left: 55%;
    animation-delay: 10s;
    animation-duration: 23s;
}

.g-particle:nth-child(7) {
    left: 65%;
    animation-delay: 12s;
    animation-duration: 27s;
}

.g-particle:nth-child(8) {
    left: 75%;
    animation-delay: 14s;
    animation-duration: 21s;
}

.g-particle:nth-child(9) {
    left: 85%;
    animation-delay: 16s;
    animation-duration: 29s;
}

.g-particle:nth-child(10) {
    left: 95%;
    animation-delay: 18s;
    animation-duration: 25s;
}

.g-particle:nth-child(11) {
    left: 10%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.g-particle:nth-child(12) {
    left: 90%;
    animation-delay: 15s;
    animation-duration: 20s;
}

.g-particle:nth-child(odd) {
    background: var(--accent-green);
}

@keyframes g-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.15;
    }

    95% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   MANAGERS DASHBOARD (Hero Visual)
   ======================================== */
.managers-dashboard {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow: visible;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.manager-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.manager-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.manager-card:nth-child(1) {
    transition-delay: 0s;
}

.manager-card:nth-child(2) {
    transition-delay: 0.1s;
}

.manager-card:nth-child(3) {
    transition-delay: 0.2s;
}

.manager-card:nth-child(4) {
    transition-delay: 0.3s;
}

.manager-card:nth-child(5) {
    transition-delay: 0.4s;
}

.manager-card:nth-child(6) {
    transition-delay: 0.5s;
}

.manager-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-2px);
}

.manager-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.manager-info {
    flex: 1;
    min-width: 0;
}

.manager-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.manager-calls {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
}

.manager-score {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.score-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 3;
}

.score-ring-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.manager-score.excellent .score-ring-fill {
    stroke: var(--accent-green);
}

.manager-score.good .score-ring-fill {
    stroke: #4A90D9;
}

.manager-score.average .score-ring-fill {
    stroke: #fdcb6e;
}

.manager-score.warning .score-ring-fill {
    stroke: #FF6B6B;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Mini Chart */
.mini-chart {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-header span:first-child {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.chart-trend {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-green);
    background: rgba(0, 217, 165, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.chart-bars-animated {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.bar-animated {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-green) 100%);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    animation: bar-grow 1s ease forwards;
    animation-delay: var(--delay);
    transform-origin: bottom;
    transform: scaleY(0);
}

@keyframes bar-grow {
    to {
        transform: scaleY(1);
    }
}

/* Floating AI Badge */
.ai-analyzing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(108, 92, 231, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    animation: badge-float 3s ease-in-out infinite;
    z-index: 10;
}

.ai-pulse-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent-purple);
    border-radius: 24px;
    animation: ai-ring-pulse 2s ease-out infinite;
    opacity: 0.5;
}

@keyframes ai-ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Profit Counter */
.profit-counter {
    position: absolute;
    bottom: -20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(0, 217, 165, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 217, 165, 0.3);
    animation: profit-float 4s ease-in-out infinite;
    z-index: 10;
}

.profit-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.profit-info {
    display: flex;
    flex-direction: column;
}

.profit-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.profit-value {
    font-size: 18px;
    font-weight: 800;
    color: white;
}

@keyframes profit-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ========================================
   LOSS CALCULATOR - MODERN ANIMATED
   ======================================== */
.loss-calculator {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.loss-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, var(--accent-purple), var(--accent-green));
    background-size: 200% 100%;
    animation: gradient-slide 3s ease infinite;
}

@keyframes gradient-slide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.calc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calc-icon.loss {
    background: rgba(255, 107, 107, 0.15);
    color: #FF6B6B;
}

.calc-icon.loss::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: icon-ring-pulse 2s ease-out infinite;
}

@keyframes icon-ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.calc-icon svg {
    width: 22px;
    height: 22px;
}

.calc-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.calc-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-input-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-suffix {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.3s ease;
}

.input-with-suffix:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.input-with-suffix:hover {
    border-color: rgba(108, 92, 231, 0.4);
}

.input-with-suffix input[type="number"] {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    outline: none;
    width: 100%;
}

.input-with-suffix input[type="number"]::-webkit-outer-spin-button,
.input-with-suffix input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-with-suffix input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-purple) var(--range-progress, 50%), var(--border-color) var(--range-progress, 50%), var(--border-color) 100%);
    height: 6px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.1s;
}

.input-with-suffix input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, #a29bfe 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.input-with-suffix input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.6);
}

.input-with-suffix span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    min-width: 32px;
    text-align: right;
}

/* Results Grid - Modern Cards */
.calc-results {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.calc-result {
    padding: 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.calc-result.updating::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 1s ease;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.loss-result {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.gain-result {
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.1) 0%, rgba(0, 217, 165, 0.05) 100%);
    border: 1px solid rgba(0, 217, 165, 0.25);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.result-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.result-icon.loss {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.result-icon.gain {
    background: rgba(0, 217, 165, 0.2);
    color: var(--accent-green);
}

.result-header span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Separated Value Cards */
.result-values {
    display: flex;
    gap: 12px;
}

.result-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.result-item:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.result-value {
    font-size: 24px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    transition: transform 0.3s, color 0.3s;
    display: block;
}

.result-value.animating {
    animation: value-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes value-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.result-value.loss {
    color: #FF6B6B;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.result-value.gain {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 217, 165, 0.4);
}

.result-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* Animated Arrow */
.calc-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-secondary);
    padding: 0 8px;
}

.calc-arrow svg {
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(6px);
        opacity: 1;
    }
}

.calc-arrow::before,
.calc-arrow::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.5;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

.calc-arrow::after {
    animation-delay: 0.3s;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ========================================
   UPDATED HERO STYLES
   ======================================== */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-title-main {
    display: block;
    color: var(--text-primary);
}

.hero-highlight {
    color: var(--accent-green);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(0, 217, 165, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.hero-title-sub {
    display: block;
    font-size: 36px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 8px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

/* Glow Button with Shine Effect */
.btn-glow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #00f2ba 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 217, 165, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 217, 165, 0.5);
}

.btn-glow .btn-text {
    font-size: 17px;
    font-weight: 700;
    color: #0d0f17;
}

.btn-glow .btn-subtext {
    font-size: 12px;
    font-weight: 500;
    color: rgba(13, 15, 23, 0.7);
    margin-top: 2px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-secondary-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.2s ease;
}

.btn-secondary-link:hover {
    color: var(--text-primary);
}

.btn-secondary-link svg {
    transition: transform 0.2s ease;
}

.btn-secondary-link:hover svg {
    transform: translateX(4px);
}

/* Trust Items */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item svg {
    flex-shrink: 0;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.calc-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.calc-footer p {
    font-size: 10px;
    color: var(--text-secondary);
    text-align: center;
}

/* ========================================
   MOBILE RESPONSIVE UPDATES
   ======================================== */
@media (max-width: 991px) {
    .hide-mobile {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 15, 23, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        /* Ensure it is flex */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 150;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 24px;
        color: var(--text-primary);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    /* Consolidated Mobile Rules Block */
    .features-grid-modern {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 16px !important;
    }

    .feature-card-large {
        grid-column: span 1 !important;
        grid-row: auto !important;
        width: 100% !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 20px !important;
    }

    .feature-icon-large {
        margin: 0 auto 20px !important;
    }

    .feature-stats {
        justify-content: center !important;
        gap: 24px !important;
        margin-top: 20px !important;
    }

    .feature-card-modern {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 14px;
    }

    .feature-card-modern .feature-icon-modern {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-card-modern h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .feature-card-modern p {
        font-size: 12px;
        line-height: 1.4;
    }

    .problems-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 16px !important;
    }

    .problem-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 20px !important;
    }

    .problem-icon-wrap {
        margin: 0 auto 16px !important;
    }

    .solution-badge {
        margin: 0 auto 12px !important;
        justify-content: center !important;
    }

    .problem-stat,
    .solution-stat {
        justify-content: center !important;
        margin-top: 15px !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 20px !important;
    }

    .pricing-card {
        padding: 30px 24px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-card .btn-cta {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .pricing-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .pricing-features li {
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 12px 0 !important;
    }

    .cta-wrapper-compact {
        grid-template-columns: 1fr;
    }

    /* Loss Calculator Mobile Refinement */
    .loss-calculator {
        padding: 20px 16px !important;
    }

    .calc-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .calc-inputs {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .calc-results {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .calc-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
        justify-content: center;
    }

    .calc-result {
        padding: 20px !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .result-header {
        justify-content: center;
        width: 100%;
        margin-bottom: 16px;
    }

    .result-values {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .result-item {
        text-align: center;
    }

    /* Standardize spacing for section headers on mobile */
    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-badge {
        justify-content: center;
        margin: 0 auto 12px;
    }

    /* Mobile menu actions */
    .show-mobile {
        display: flex !important;
    }

    .nav-mobile-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        width: 100%;
        padding: 0 40px;
    }

    .nav-mobile-contact {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s;
    }

    .nav-mobile-contact:hover {
        color: var(--text-primary);
    }

    .nav-mobile-contact svg {
        color: var(--accent-purple);
    }

    .nav-mobile-cta {
        width: 100%;
        margin-top: 10px;
        padding: 16px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-connector {
        display: none;
    }

    .step-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .step-info {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .step-tags {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

body.menu-open {
    overflow: hidden;
}