:root {
    --primary: #0052ff;
    --primary-dark: #003cb3;
    --dark: #0a0b0d;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0ebff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.protection-list {
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.protection-list p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.protection-list ul {
    list-style: none;
    text-align: left;
}

.protection-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.protection-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    left: -10px;
    top: -20px;
}

.testimonial-text:after {
    right: -10px;
    bottom: -40px;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-title {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    background: var(--light);
    text-align: center;
}

.trusted-by h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.logo-item {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.logo-item:hover {
    transform: translateY(-2px);
}

.trusted-subtext {
    color: var(--gray);
    margin-top: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
    background: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step p {
    color: var(--gray);
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: var(--light);
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* Ecosystem */
.ecosystem {
    padding: 80px 0;
    background: var(--white);
}

.ecosystem h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ecosystem-item {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: transform 0.2s;
}

.ecosystem-item:hover {
    transform: translateY(-5px);
}

.eco-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.ecosystem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.ecosystem-item p {
    color: var(--gray);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: var(--white);
}

.case-studies h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.case-card p {
    color: var(--gray);
}

/* Backed By */
.backed-by {
    padding: 60px 0;
    background: var(--light);
    text-align: center;
}

.backed-by h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.backers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.backer-logo {
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* As Seen In */
.as-seen-in {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.as-seen-in h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.media-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.media-logo {
    padding: 1rem 2rem;
    background: var(--light);
    border-radius: 8px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0052ff 0%, #003cb3 100%);
    color: var(--white);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .steps-grid,
    .features-grid,
    .ecosystem-grid,
    .stats-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid,
    .backers-grid,
    .media-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-item,
    .backer-logo,
    .media-logo {
        width: 100%;
        max-width: 250px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .step,
    .feature-card,
    .ecosystem-item,
    .case-card {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
}