/* ════════════════════════════════════════════════
   MAPS LEAD EXTRACTOR PRO — Refined Style
   ════════════════════════════════════════════════ */

:root {
    --bg: #0e1117;
    --bg2: #161b22;
    --surface: #1c2333;
    --border: #30363d;
    --accent: #38ef7d;
    /* Original Green */
    --accent-glow: rgba(56, 239, 125, 0.2);
    --accent-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --cyan: #4facfe;
    /* Original Cyan */
    --text: #c9d1d9;
    --text-bright: #f0f6fc;
    --muted: #8b949e;
    --red: #ff5f6d;
    --container-max: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── UTILS ── */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent);
}

.section-label {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 20px;
    background: rgba(56, 239, 125, 0.1);
    border: 1px solid rgba(56, 239, 125, 0.2);
    border-radius: 4px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 50px;
    line-height: 1.2;
}

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
header {
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(14, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 32px;
    height: 32px;
}

.logo span {
    font-size: 1.1rem;
    color: var(--text-bright);
}

.logo strong {
    color: var(--accent);
}

.btn-header-buy {
    padding: 8px 20px;
    background: var(--accent-gradient);
    border-radius: 6px;
    text-decoration: none;
    color: #0e1117;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 239, 125, 0.05) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-bright);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent-gradient);
    color: #0e1117;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: 0.3s;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.badge-safe {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 15px;
}

/* Visual card */
.hero-visual {
    perspective: 1000px;
}

.hero-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    transform: rotateY(-10deg);
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.card-header {
    padding: 12px;
    background: #21262d;
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f6d;
}

.dot.yellow {
    background: #ffc371;
}

.dot.green {
    background: #38ef7d;
}

.card-body {
    padding: 25px;
}

.skeleton-line {
    height: 10px;
    background: #30363d;
    border-radius: 5px;
    margin-bottom: 12px;
}

.skeleton-line.title {
    height: 16px;
    width: 60%;
    background: var(--border);
}

.skeleton-grid {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.skeleton-item {
    flex: 1;
    background: #21262d;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.sk-label {
    font-size: 0.6rem;
    color: var(--muted);
}

.sk-value {
    font-size: 0.7rem;
    color: var(--text-bright);
    font-weight: 600;
}

.card-leads-count {
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.leads-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* ════════════════════════════════════════════════
   HOW IT WORKS (Steps)
   ════════════════════════════════════════════════ */
.how-it-works {
    padding: 80px 0;
    text-align: center;
    background: var(--bg2);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.step-item {
    max-width: 280px;
}

.step-number-wrap {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    border: 2px solid var(--bg2);
}

.step-item h3 {
    color: var(--text-bright);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--muted);
}

.steps-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 32px;
}

/* ════════════════════════════════════════════════
   VIDEO
   ════════════════════════════════════════════════ */
.video-demo {
    padding: 80px 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════ */
.features {
    padding: 80px 0;
    background: var(--bg);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-item {
    background: var(--bg2);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: left;
    transition: 0.3s;
}

.feature-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.22rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: var(--text-bright);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ════════════════════════════════════════════════
   TESTIMONIALS (Carousel)
   ════════════════════════════════════════════════ */
.testimonials {
    padding: 80px 0;
    background: var(--bg);
    text-align: center;
    border-top: 1px solid var(--border);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: left;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.testi-info {
    display: flex;
    flex-direction: column;
}

.testi-info strong {
    color: var(--text-bright);
    font-size: 1rem;
}

.testi-info span {
    color: var(--muted);
    font-size: 0.8rem;
}

.testi-quote {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
}

.testi-stars {
    color: #f1c40f;
    letter-spacing: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-bright);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot-item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: 0.3s;
}

.dot-item.active {
    background: var(--accent);
    width: 25px;
    border-radius: 5px;
}

/* ════════════════════════════════════════════════
   COMPARISON
   ════════════════════════════════════════════════ */
.comparison {
    padding: 80px 0;
    text-align: center;
    background: var(--bg2);
}

.comparison-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comp-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-total {
    background: rgba(255, 95, 109, 0.05);
    border-color: rgba(255, 95, 109, 0.2);
}

.comp-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.comp-price-red {
    color: var(--red);
    font-weight: 700;
}

.comp-period {
    font-size: 0.7rem;
    color: var(--muted);
}

.comp-right-inner {
    background: var(--surface);
    border: 1px solid var(--accent);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    height: 100%;
}

.comp-our-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.comp-our-list {
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.comp-our-list li {
    margin-bottom: 8px;
}

.comp-our-price {
    background: rgba(56, 239, 125, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.comp-our-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.comp-our-desc {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════ */
.pricing {
    padding: 100px 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg2);
    border: 2px solid var(--accent);
    width: 100%;
    max-width: 420px;
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-current {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-bright);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-installments {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 5px;
}

.price-desc {
    color: var(--muted);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-bright);
}

.btn-buy {
    display: block;
    background: var(--accent-gradient);
    color: #0e1117;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-buy:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.guarantee-badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(56, 239, 125, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(56, 239, 125, 0.3);
    text-align: left;
}

.g-icon {
    font-size: 1.8rem;
}

.g-text strong {
    display: block;
    font-size: 0.9rem;
}

.g-text span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq {
    padding: 80px 0;
    background: var(--bg2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--bg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-bright);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
}

.faq-arrow {
    color: var(--muted);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    transition: 0.3s ease-out;
    color: var(--muted);
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    padding-bottom: 20px;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .steps-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 40px 25px;
    }
}