/* Base & Reset */
:root {
    --primary: #FF4D00;
    --primary-dark: #cc3d00;
    --dark: #0f0f0f;
    --dark-card: #1a1a1a;
    --light: #ffffff;
    --gray: #888888;
    --gray-light: #f4f4f4;
    --radius: 12px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    color: var(--dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: var(--spacing-sm);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), #FF8000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background-color: var(--light);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #eee;
    color: var(--primary-dark);
}

.w-100 {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: var(--dark);
}

.logo .dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 77, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
}

.hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.03);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    bottom: 30px;
    left: -30px;
}

.card-1 i {
    color: var(--primary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Pain Points */
.pain-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.pain-content .highlight {
    background-color: rgba(255, 77, 0, 0.1);
    padding: 0 5px;
    color: var(--primary);
}

.pain-list {
    margin: 2rem 0;
}

.pain-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pain-list li i {
    color: #ff3333;
}

.solution-text {
    font-size: 1.2rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

/* Features/About */
.bg-dark {
    background-color: var(--dark);
    color: var(--light);
}

.bg-dark h2,
.bg-dark p {
    color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Protocols */
.protocols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.protocol-card {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.protocol-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.protocol-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.protocol-header {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-top: 2rem;
}

.progress-bar .fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* App Section */
.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-features {
    margin: 2rem 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.app-features li i {
    color: var(--primary);
}

.app-image img {
    transform: rotate(-5deg);
    transition: var(--transition);
}

.app-image:hover img {
    transform: rotate(0deg) scale(1.05);
}

/* Bonus */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-item {
    text-align: center;
    padding: 2rem;
    border: 1px dashed #ddd;
    border-radius: var(--radius);
}

.bonus-item i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Target */
.target-box {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-item i {
    color: var(--primary);
}

/* Testimonials */
/* Testimonials */
.testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* Subtle custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}

.testimonial-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 20px;
}

.testimonial-grid::-webkit-scrollbar-track {
    background-color: #eee;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    /* More breathing room */
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);

    /* Harmonic Size */
    min-width: 85vw;
    /* Mobile: Classic carousel feel */
    scroll-snap-align: center;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: 320px;
        /* Clean desktop width */
        max-width: 320px;
        scroll-snap-align: start;
    }
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonial-card .author {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.author strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
}

.author span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Pricing */
.price-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.price-card>* {
    position: relative;
    z-index: 1;
}

.price-value {
    color: var(--light);
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
    margin-right: 8px;
    opacity: 0.8;
}

.amount {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -2px;
}

.cents {
    font-size: 2rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 10px;
}

.installments {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.price-features {
    text-align: left;
    margin: 2.5rem 0 3rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.price-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.price-features li i {
    color: var(--primary);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-group {
        align-items: center;
    }

    .card-1 {
        display: none;
    }

    .pain-grid,
    .app-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pain-image {
        order: -1;
    }

    .pain-list li {
        justify-content: center;
    }

    .solution-text {
        border-left: none;
        border-bottom: 4px solid var(--primary);
        padding-bottom: 1rem;
        padding-left: 0;
    }

    .features-grid,
    .protocols-grid,
    .testimonial-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .protocol-card.featured {
        transform: none;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Testimonials Fit */
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        padding: 2rem 0;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
        margin: 0;
    }
}