* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(129, 140, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #f472b6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.4);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(129, 140, 248, 0.5);
}

.btn-secondary {
    background: rgba(129, 140, 248, 0.1);
    color: #a5b4fc;
    border: 2px solid rgba(129, 140, 248, 0.3);
}

.btn-secondary:hover {
    background: rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #a5b4fc;
    border: 2px solid rgba(129, 140, 248, 0.3);
}

.btn-outline:hover {
    background: rgba(129, 140, 248, 0.1);
    border-color: rgba(129, 140, 248, 0.5);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.hero-visual {
    margin: 3rem 0;
}

/* ВАРИАНТ 2: Визуализация процесса (3 шага) */
.process-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 150px;
    position: relative;
}

.step-icon {
    font-size: 3.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(129, 140, 248, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(129, 140, 248, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.step-content {
    text-align: center;
}

.step-content h4 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #818cf8;
    font-weight: bold;
}

.process-step:last-child .step-arrow {
    display: none;
}

@media (max-width: 768px) {
    .process-visualization {
        flex-direction: column;
        gap: 1.5rem;
    }
    .step-arrow {
        display: none;
    }
}

/* ВАРИАНТ 4: Схема работы системы */
.system-scheme {
    padding: 3rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scheme-item {
    padding: 1.5rem 2rem;
    background: rgba(129, 140, 248, 0.1);
    border: 2px solid rgba(129, 140, 248, 0.3);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
}

.scheme-item.highlight {
    background: rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.5);
    color: #a5b4fc;
}

.scheme-arrow {
    font-size: 2rem;
    color: #818cf8;
    font-weight: bold;
}

.scheme-process {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.scheme-box {
    padding: 1.5rem;
    background: rgba(129, 140, 248, 0.1);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
}

.scheme-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.scheme-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* ВАРИАНТ 5: Мокап с градиентами */
.dashboard-mockup {
    padding: 2rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    min-height: 400px;
}

.mockup-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(129, 140, 248, 0.3);
}

.mockup-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.mockup-card {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(129, 140, 248, 0.1);
    position: relative;
    overflow: hidden;
}

.mockup-card.large {
    grid-row: 1 / 3;
}

.mockup-gradient {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.gradient-1 {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    height: 200px;
}

.gradient-2 {
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
    height: 80px;
}

.gradient-3 {
    background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
    height: 80px;
}

.gradient-4 {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    height: 80px;
}

.mockup-label {
    position: relative;
    z-index: 1;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
}

.mockup-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ВАРИАНТ 6: Пример инсайтов и метрики */
.insights-preview {
    padding: 2.5rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    min-height: 400px;
}

.insights-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.insight-card {
    background: rgba(129, 140, 248, 0.1);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.5);
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.insight-badge {
    background: rgba(129, 140, 248, 0.2);
    color: #a5b4fc;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.insight-er {
    color: #818cf8;
    font-size: 1rem;
    font-weight: bold;
}

.insight-title {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.insight-ai-note {
    background: rgba(129, 140, 248, 0.1);
    border-left: 3px solid #818cf8;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.insight-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.insight-metric {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(129, 140, 248, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow: 0 5px 15px rgba(129, 140, 248, 0.1);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    color: #818cf8;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
}

.dashboard-placeholder {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid rgba(129, 140, 248, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-placeholder p {
    font-size: 2rem;
    color: #94a3b8;
}

.trust-elements {
    margin-top: 2rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Pain Points Section */
.pain-points {
    background: rgba(30, 30, 30, 0.5);
}

.pain-points h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-points-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pain-point-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    border: 2px solid rgba(129, 140, 248, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pain-point-item:hover {
    border-color: rgba(129, 140, 248, 0.4);
    background: rgba(10, 10, 10, 0.7);
    transform: translateX(5px);
}

.pain-point-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(129, 140, 248, 0.3);
    border-radius: 6px;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.pain-point-item input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    border-color: #818cf8;
}

.pain-point-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.pain-text {
    flex: 1;
    font-size: 1.1rem;
    color: #f1f5f9;
}

/* Solution Section */
.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #a5b4fc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: rgba(30, 30, 30, 0.5);
}

.how-it-works .process-visualization {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works .insights-preview {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.how-it-works .insights-cards {
    margin-bottom: 2.5rem;
    width: 100%;
}

.how-it-works .insights-grid {
    width: 100%;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Social Proof Section */
.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    padding: 2rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    position: relative;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(129, 140, 248, 0.2);
    color: #a5b4fc;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-text {
    color: #f1f5f9;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #94a3b8;
    font-size: 0.9rem;
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    background: rgba(30, 30, 30, 0.5);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.roi-example-card {
    padding: 2rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
}

.roi-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.4);
}

.roi-example-card.highlight {
    border: 2px solid rgba(129, 140, 248, 0.5);
    background: rgba(129, 140, 248, 0.05);
}

.example-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.example-label {
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-scenario {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
}

.example-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.example-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.example-text strong {
    color: #a5b4fc;
    font-weight: 600;
}

.example-savings {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(129, 140, 248, 0.1);
    color: #a5b4fc;
    font-size: 1.1rem;
    font-weight: 600;
}

.example-savings strong {
    color: #818cf8;
    font-size: 1.3rem;
}

.roi-calculator {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.roi-calculator h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    color: #cbd5e1;
    font-size: 1rem;
}

.input-group input {
    padding: 1rem;
    border: 2px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.5);
    color: #f1f5f9;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.calculator-result {
    text-align: center;
    padding: 1.5rem;
    background: rgba(129, 140, 248, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.calculator-result p {
    color: #f1f5f9;
    font-size: 1.2rem;
}

#savings-amount {
    color: #a5b4fc;
    font-weight: bold;
    font-size: 1.5rem;
}

#calculate-roi-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    padding: 2.5rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.4);
}

.plan-card.featured {
    border: 2px solid rgba(129, 140, 248, 0.5);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-card h3 {
    color: #f1f5f9;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.plan-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    color: #94a3b8;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(129, 140, 248, 0.1);
}

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

.plan-features li::before {
    content: '✓';
    color: #818cf8;
    margin-right: 0.5rem;
    font-weight: bold;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

/* FAQ Section */
.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(10, 10, 10, 0.5);
}

.faq-question h3 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: #818cf8;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    background: rgba(30, 30, 30, 0.5);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.5);
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 32px;
}

.checkbox-group label:hover {
    color: #f1f5f9;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkbox-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(129, 140, 248, 0.3);
    border-radius: 6px;
    background: rgba(10, 10, 10, 0.5);
    transition: all 0.3s ease;
}

.checkbox-group label:hover::before {
    border-color: rgba(129, 140, 248, 0.5);
}

.checkbox-group input[type="checkbox"]:checked + span {
    color: #f1f5f9;
}

.checkbox-group label.checked::before,
.checkbox-group label:has(input[type="checkbox"]:checked)::before {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    border-color: #818cf8;
}

.checkbox-group label.checked::after,
.checkbox-group label:has(input[type="checkbox"]:checked)::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.checkbox-group input[type="checkbox"]:focus + span {
    outline: none;
}

.checkbox-group label:focus-within::before,
.checkbox-group label:has(input[type="checkbox"]:focus)::before {
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
    border-color: #818cf8;
}

.form-trust {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(129, 140, 248, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #a5b4fc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a5b4fc;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(129, 140, 248, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a5b4fc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .insights-cards {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .insight-metric {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .insight-card {
        padding: 1.25rem;
    }
    }

    section {
        padding: 3rem 0;
    }

    .pain-points h2,
    .solution h2,
    .how-it-works h2,
    .social-proof h2,
    .pricing h2,
    .faq h2,
    .final-cta h2 {
        font-size: 2rem;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
