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

:root {
    --primary-color: #f27438;
    --primary-dark: #e0632a;
    --secondary-color: #ff8c52;
    --bg-gradient-start: #1a1a1a;
    --bg-gradient-end: #2d2d2d;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --card-bg: rgba(45, 45, 45, 0.8);
    --card-border: rgba(242, 116, 56, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(242, 116, 56, 0.3));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card.wisesend {
    background: linear-gradient(135deg, rgba(45, 156, 219, 0.15) 0%, rgba(33, 150, 243, 0.1) 100%);
    border-color: rgba(45, 156, 219, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(242, 116, 56, 0.2);
}

.product-card.wisesend:hover {
    border-color: #2d9cdb;
    box-shadow: 0 20px 40px rgba(45, 156, 219, 0.3);
}

.product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon .product-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(45, 156, 219, 0.3));
}

.product-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-card.wisesend h4 {
    color: #2d9cdb;
}

.product-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-tag {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 116, 56, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 116, 56, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.product-card.wisesend .btn-primary {
    background: linear-gradient(135deg, #2196f3, #2d9cdb);
    box-shadow: 0 4px 15px rgba(45, 156, 219, 0.4);
}

.product-card.wisesend .btn-primary:hover {
    background: linear-gradient(135deg, #1976d2, #2196f3);
    box-shadow: 0 6px 20px rgba(45, 156, 219, 0.5);
}

footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 180px;
    }

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

    .tagline {
        font-size: 1.1rem;
    }

    .product-card {
        padding: 30px;
    }

    .product-icon {
        width: 100px;
        height: 100px;
    }
}
