/* --- Basic Setup & Variables --- */
:root {
    --bg-color: #F8F8F8;
    --text-color: #222222;
    --subtitle-color: #555555;
    --primary-blue: #0084fff5;
    --gradient-text-start: #ff3b3b;
    --gradient-text-end: #3b82ff;
    --card-bg: #FFFFFF;
    --card-border: #EAEAEA;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Layout Containers --- */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-container {
    max-width: 1300px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

section {
    padding: 80px 0;
}

/* --- Typography & Text Styles --- */
h1 {
    font-size: 85px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    color: var(--subtitle-color);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* --- Gradient & Color Enhancements --- */
.gradient-text {
    background: linear-gradient(90deg, var(--gradient-text-start), var(--gradient-text-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue {
    color: var(--primary-blue);
}

.cta-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: #0073e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

/* --- Section Specific Styles --- */
.trust-counter {
    margin: 15px auto 0 auto;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
}

/* UPDATED: Simplified image container with border removed */
.image-container {
    margin: 50px auto 0 auto;
}

.hero .product-preview {
    width: 95%;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
}

.problem-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.problem .card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.problem .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.problem .card h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.problem .card p {
    font-size: 1rem;
    margin: 0 auto;
    max-width: 100%;
    color: var(--subtitle-color);
    line-height: 1.7;
}

.solution {
    background: radial-gradient(circle at 100% 0%, #ffffff, var(--bg-color) 40%);
}

.solution-text {
    flex: 1.5;
    text-align: left;
}

.solution-text p.solution-description {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
    margin-bottom: 30px;
}

.solution-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.solution-visual lottie-player {
    max-width: 400px;
}

.solution-text ul {
    list-style: none;
    margin: 30px 0;
}

.solution-text li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.solution-text li::before {
    content: '✓';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.social-proof {
    padding-bottom: 30px;
}

.final-cta {
    padding-top: 30px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .problem-cards,
    .container-split {
        flex-direction: column;
    }

    .solution-text {
        text-align: center;
    }

    .solution-text p.solution-description {
        text-align: center;
    }

    .solution-visual {
        justify-content: center;
        max-width: 350px;
        margin-top: 40px;
    }
}