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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    padding: 12px 24px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #fafafa 0%, white 100%);
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: white;
}

.problem h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background: #fef2f2;
    border-radius: 16px;
    border: 2px solid #fecaca;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #991b1b;
}

.problem-card p {
    color: #7f1d1d;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--gray);
}

.feature-showcase {
    margin-bottom: 64px;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.feature-visual {
    position: relative;
}

.dashboard-preview {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    color: white;
    font-weight: 600;
}

.live-badge {
    color: #10b981;
    font-size: 14px;
}

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

.bar {
    flex: 1;
    background: var(--color);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 8px;
    transition: all 0.3s;
}

.bar:hover {
    opacity: 0.8;
    transform: translateY(-4px);
}

.bar-label {
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.bar-value {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.feature-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 12px;
    padding-left: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
    background: white;
}

.use-cases h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.use-case {
    padding: 32px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 2px solid #bae6fd;
}

.use-case h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #075985;
}

.use-case p {
    color: #0c4a6e;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.stat {
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-teaser {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-teaser h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.price span {
    font-size: 20px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    padding: 12px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--light-gray);
}

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

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, white 100%);
}

.waitlist-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.waitlist-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.waitlist-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.waitlist-subtitle {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.6;
}

.waitlist-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.perk {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.perk:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.perk-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.perk-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.perk-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.waitlist-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.waitlist-form input,
.waitlist-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-hint {
    font-size: 12px;
    color: var(--gray);
    margin-top: 6px;
    font-style: italic;
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

.form-footer {
    margin-top: 24px;
    text-align: center;
}

.form-note {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-privacy {
    font-size: 13px;
    color: var(--gray);
}

.success-message {
    background: white;
    padding: 64px 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-animation {
    margin-bottom: 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.success-main {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.success-next {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.success-next h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.success-next ul {
    list-style: none;
}

.success-next li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 15px;
}

.success-share {
    padding-top: 32px;
    border-top: 2px solid var(--light-gray);
}

.success-share p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 14px;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .waitlist-benefits {
        gap: 12px;
    }
    
    .benefit-item {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .feature-main {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form {
        padding: 32px 24px;
    }
    
    .waitlist-content h2 {
        font-size: 36px;
    }
    
    .waitlist-perks {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content h2 {
        font-size: 36px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.step {
    position: relative;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.code-snippet {
    background: #1e293b;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.code-snippet code {
    color: #10b981;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
}

/* Deep Features Section */
.deep-features {
    padding: 80px 0;
    background: var(--light-gray);
}

.deep-features > .container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 64px;
}

.deep-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.deep-feature.reverse {
    direction: rtl;
}

.deep-feature.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ddd6fe, #e9d5ff);
    color: #6b21a8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deep-feature-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.deep-feature-content > p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-details {
    list-style: none;
}

.feature-details li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.feature-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.feature-details strong {
    color: var(--dark);
    font-weight: 600;
}

/* Analytics Card */
.analytics-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.time-range {
    color: var(--gray);
    font-size: 14px;
}

.analytics-metric {
    margin-bottom: 32px;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.metric-change {
    font-size: 14px;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.analytics-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.breakdown-item {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breakdown-bar {
    height: 8px;
    border-radius: 4px;
    transition: width 0.5s ease-out;
}

/* Limit Card */
.limit-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #bae6fd;
}

.limit-header {
    font-size: 18px;
    font-weight: 700;
    color: #075985;
    margin-bottom: 20px;
}

.limit-rule {
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
}

.rule-name {
    font-weight: 600;
    color: var(--dark);
}

.rule-value {
    color: var(--gray);
    font-size: 14px;
}

.rule-status {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Alert Card */
.alert-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.alert-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.alert-item.critical {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.alert-item.warning {
    background: #fffbeb;
    border: 2px solid #fde68a;
}

.alert-icon {
    font-size: 32px;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.alert-message {
    color: var(--gray);
    margin-bottom: 8px;
}

.alert-meta {
    font-size: 12px;
    color: var(--gray);
}

/* Model Card */
.model-card {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #fcd34d;
}

.model-header {
    font-size: 18px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 20px;
}

.model-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.model-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-name {
    font-weight: 600;
    color: var(--dark);
}

.model-cost {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

/* Integrations Section */
.integrations {
    padding: 80px 0;
    background: white;
}

.integrations h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.integrations-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 64px;
}

.integration-grid {
    display: grid;
    gap: 48px;
}

.integration-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--dark);
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.integration-logo {
    background: var(--light-gray);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.integration-logo:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 64px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
}

.author-title {
    font-size: 14px;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 64px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 32px;
    background: var(--light-gray);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .deep-feature,
    .deep-feature.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 64px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    background: var(--light-gray);
    font-weight: 700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.feature-name {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--dark);
}

.comparison-cell.highlight {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.comparison-logo {
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
}

.check {
    color: #10b981;
    font-size: 20px;
    font-weight: 700;
    margin-right: 8px;
}

.cross {
    color: #ef4444;
    font-size: 20px;
    font-weight: 700;
    margin-right: 8px;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
}

.security-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.security-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.security-subtitle {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 48px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.security-feature {
    display: flex;
    gap: 20px;
}

.security-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.security-feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-feature p {
    color: #94a3b8;
    line-height: 1.6;
}

.security-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-text {
    font-size: 18px;
    font-weight: 700;
}

/* ROI Calculator */
.roi-calculator {
    padding: 80px 0;
    background: var(--light-gray);
}

.roi-calculator h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.roi-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
}

.calculator-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.input-wrapper {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--gray);
}

.input-wrapper input[type="number"] {
    width: 100%;
    padding: 16px 16px 16px 32px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
}

.input-wrapper input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
}

.input-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.input-wrapper input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

.range-value {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px;
    background: var(--light-gray);
    border-radius: 16px;
    margin-bottom: 24px;
}

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

.result-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.result-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
}

.result-value.primary {
    color: var(--primary);
    font-size: 40px;
}

.calculator-cta {
    text-align: center;
    margin-top: 32px;
}

.calculator-note {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.calculator-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

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

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-content > p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.95;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.cta-benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-benefit strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.cta-benefit span {
    font-size: 14px;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background: white;
    color: var(--primary);
    font-size: 18px;
    padding: 20px 48px;
    margin-bottom: 24px;
}

.final-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.urgency-text {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 0.7; }
}

/* Responsive Updates for New Sections */
@media (max-width: 968px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 14px;
    }
    
    .comparison-cell {
        padding: 12px 8px;
    }
    
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .comparison-header,
    .comparison-row {
        display: none;
    }
    
    .comparison-table {
        padding: 24px;
    }
    
    .comparison-table::before {
        content: "View on desktop for full comparison";
        display: block;
        text-align: center;
        color: var(--gray);
        font-style: italic;
    }
}

/* Trust Bar */
.trust-bar {
    padding: 48px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.trust-text {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    color: var(--gray);
    font-weight: 600;
    font-size: 18px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

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

/* Why Now Section */
.why-now {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.why-now h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 64px;
    color: #92400e;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.why-now-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.why-now-stat {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.why-now-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-now-card p {
    color: var(--gray);
    line-height: 1.6;
}

.why-now-cta {
    text-align: center;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.why-now-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

/* Additional responsive updates */
@media (max-width: 768px) {
    .why-now-stat {
        font-size: 40px;
    }
}
