:root {
    --primary-color: #3b0a6e;
    /* Deep Purple */
    --accent-color: #f76c35;
    /* Orange */
    --text-main: #2d3748;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    /* Subtle gradient background */
    background: linear-gradient(135deg, #fdfbfd 0%, #f3eff9 100%);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 50px 0 30px;
    text-align: center;
}

.logo {
    /* Increased logo size */
    height: 110px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 80px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    /* Bolder for impact */
    background: linear-gradient(to right, var(--primary-color), #6b21a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* Products Section */
.products-section {
    padding: 20px 0 100px;
    display: flex;
    justify-content: center;
}

.product-display {
    display: flex;
    align-items: flex-start;
    /* Align top to handle list */
    justify-content: space-between;
    gap: 60px;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    /* Elegant shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.product-display:hover {
    transform: translateY(-5px);
}

.product-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-info {
    flex: 1;
    text-align: left;
}

.product-info h2 {
    font-size: 2.2rem;
    margin: 0 0 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.product-info p {
    margin: 0 0 25px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 12px;
}

.feature-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
}

.btn-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(59, 10, 110, 0.2);
}

.btn-minimal:hover {
    background-color: #4c0d8f;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 10, 110, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .product-display {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .product-info {
        text-align: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        text-align: left;
        max-width: 250px;
        margin: 0 auto 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .logo {
        height: 80px;
        /* Slightly smaller on mobile but still prominent */
    }
}