:root {
    --primary-color: #053669;
    --secondary-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --gray-light: #f4f7f6;
    --font-heading: 'League Spartan', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

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

/* Header */
.lp-header {
    padding: 1rem 0;
    background: #1D1E20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    mix-blend-mode: screen;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #032242;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-cta:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #001f3f 100%);
    color: white;
    padding: 80px 0 150px;
    /* Extra padding bottom for wave */
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--secondary-color);
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
}

.guarantee {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 300px;
    height: 300px;
}

.card {
    background: white;
    color: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 180px;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.c1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.c2 {
    top: 40px;
    right: 0;
    z-index: 2;
    transform: rotate(10deg);
    opacity: 0.9;
}

.c3 {
    bottom: 0;
    left: 50px;
    z-index: 1;
    transform: rotate(-2deg);
    opacity: 0.8;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.icon-box.error {
    background: #fff0f0;
    color: #e74c3c;
}

/* Solution */
.solution {
    padding: 80px 0;
    background: var(--gray-light);
}

.solution .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-content {
    flex: 1;
}

.text-primary {
    color: var(--primary-color);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--secondary-color);
}

.solution-image {
    flex: 1;
}

.app-mockup {
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #eee;
}

.mockup-header {
    height: 40px;
    background: var(--primary-color);
    border-radius: 5px;
    margin-bottom: 20px;
    opacity: 0.1;
}

.mockup-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mockup-card {
    height: 100px;
    background: #eee;
    border-radius: 5px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.benefits .section-header h2 {
    color: white;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.testimonial-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.stars {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.author strong {
    display: block;
    color: var(--primary-color);
}

.author span {
    font-size: 0.9rem;
    color: #777;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(5, 54, 105, 0.9), rgba(5, 54, 105, 0.9)), url('../img/bg-pattern.png');
    /* Fallback if no bg image */
    background-size: cover;
    text-align: center;
    color: white;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.price-tag {
    margin: 30px 0;
    font-family: var(--font-heading);
}

.old-price {
    text-decoration: line-through;
    font-size: 1.5rem;
    opacity: 0.7;
    margin-right: 15px;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.secure-payment {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #021a33;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    height: 30px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.socials a:hover {
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .solution .container {
        flex-direction: column;
    }

    .solution-image {
        order: -1;
        width: 100%;
    }
}