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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0F172A;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #0F172A;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0F172A;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1rem;
}

a {
    color: #F97316;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.cta-button, .product-cta, a.cta-button, a.product-cta {
    background-color: #F97316;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover, .product-cta:hover, a.cta-button:hover, a.product-cta:hover {
    background-color: #EA580C;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Header and Brand */
.brand {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
}

.hero-header {
    margin-bottom: 3rem;
}

#hero .brand-name {
    color: white;
}

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

#hero p {
    color: #CBD5E1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
#about {
    padding: 80px 0;
    text-align: center;
    background-color: #f8fafc;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.stat h3 {
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748B;
}

/* Features Section */
#features {
    padding: 80px 0;
}

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

.feature-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #F97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0F172A;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748B;
}

/* How It Works Section */
#how-it-works {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #F97316;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Products Section */
#products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #F97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.product-card.featured {
    border-color: #F97316;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F97316;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F97316;
    margin: 1rem 0;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
}

.product-cta {
    width: 100%;
    margin-top: 1.5rem;
}

/* Benefits Section */
#benefits {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.benefit-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-item:first-child {
    grid-column: 1;
}

.benefit-item:nth-child(2),
.benefit-item:nth-child(3),
.benefit-item:nth-child(4) {
    grid-column: auto;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
}

.benefit-item p {
    margin: 0;
}

/* Use Cases Section */
#use-cases {
    padding: 80px 0;
}

.use-cases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case:hover {
    border-color: #F97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.use-case h3 {
    color: #0F172A;
    margin-bottom: 1rem;
}

.use-case p {
    color: #64748B;
    margin-bottom: 1.5rem;
}

.use-case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Contact Section */
#contact {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0;
}

.contact-cta {
    margin-top: 2rem;
}

/* Footer */
#footer {
    background-color: #0F172A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #CBD5E1;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #CBD5E1;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E1;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    #hero h2 {
        font-size: 1.8rem;
    }

    #hero p {
        font-size: 1rem;
    }

    #hero {
        padding: 40px 0 60px;
    }

    .features-grid,
    .products-grid,
    .benefits-grid,
    .use-cases-container {
        grid-template-columns: 1fr;
    }

    .benefit-item:first-child,
    .benefit-item:nth-child(2),
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        grid-column: auto;
    }

    .about-stats,
    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .product-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.75rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    #hero {
        padding: 30px 0 50px;
    }

    #hero h2 {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}