:root {
    --primary-blue: #4F94FE;
    --primary-hover: #3a75d1;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 40px;
}

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

body {
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 148, 254, 0.3);
}

.btn-black {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-black:hover {
    background-color: #000;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    margin-top: 20px;
    background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center top;
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Add a light overlay to make text readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-subtitle {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-description {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.btn-play:hover {
    transform: scale(1.1);
}

.hero-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.know-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-card-images {
    display: flex;
    align-items: center;
}

.hero-card-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    margin-right: -15px;
}

.hero-card-text {
    margin-left: 25px;
    font-size: 0.8rem;
}

.hero-card-text p {
    color: var(--text-light);
}

/* Brands Section */
.brands {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.social-follow i {
    color: var(--text-dark);
    cursor: pointer;
}

.brand-logos {
    display: flex;
    gap: 40px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-logos .brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-info {
    padding: 25px;
    text-align: left;
    position: relative;
}

.benefit-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.solution-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}

.solution-card .icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.solution-card h3 {
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.solution-card.highlight {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 60px 30px;
    transform: scale(1.05);
    z-index: 2;
    overflow: hidden;
}

.solution-card.highlight .icon-wrap {
    background: rgba(255,255,255,0.2);
    color: var(--bg-white);
}

.solution-card.highlight p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.btn-outline-white {
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: var(--bg-white);
    color: var(--primary-blue);
}

.solution-decor-img {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-blue);
    opacity: 0.5;
}

.solution-decor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-image {
    flex: 1;
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.cta-badge {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    color: var(--primary-blue);
}

.cta-badge strong {
    display: block;
    font-size: 1.5rem;
}

.cta-badge span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
}

.footer {
    padding: 40px 0;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid, .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-card.highlight {
        transform: none;
    }
    .cta-wrapper {
        flex-direction: column;
    }
    .hero {
        padding: 60px 30px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .benefits-grid, .solution-grid {
        grid-template-columns: 1fr;
    }
    .brands {
        flex-direction: column;
        gap: 20px;
    }
    .brand-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cta-title {
        font-size: 2rem;
    }
}
