/* ===================== LOTTO CHAMP — STYLE.CSS ===================== */
:root {
    --blue-dark:   #0a2e6e;
    --blue-main:   #1145a8;
    --blue-mid:    #1a5fd4;
    --blue-light:  #2d7df7;
    --gold:        #f5c518;
    --gold-dark:   #d4a80a;
    --white:       #ffffff;
    --off-white:   #f4f7ff;
    --gray-light:  #eef2fb;
    --gray-text:   #4a5568;
    --dark-text:   #0d1b3e;
    --green:       #16a34a;
    --red-strike:  #cc2b2b;
    --shadow-soft: 0 4px 24px rgba(10,46,110,.12);
    --shadow-med:  0 8px 40px rgba(10,46,110,.18);
    --radius:      12px;
    --radius-lg:   20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto; }
a { color: var(--blue-main); text-decoration: none; }
a:hover { color: var(--blue-light); text-decoration: underline; }

/* ===== NAVBAR ===== */
.navbar { padding: 12px 0; border-bottom: 2px solid var(--gray-light); }
.brand-text { font-size: 1.35rem; font-weight: 900; color: var(--blue-dark); letter-spacing: -.5px; }
.brand-text sup { font-size: .6rem; color: var(--blue-mid); }
.nav-link { font-weight: 500; color: var(--dark-text) !important; font-size: .93rem; transition: color .2s; padding: 6px 10px !important; }
.nav-link:hover { color: var(--blue-main) !important; }
.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--blue-dark) !important;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: .9rem;
    letter-spacing: .3px;
    box-shadow: 0 4px 15px rgba(245,197,24,.4);
    transition: all .25s;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,197,24,.55);
    text-decoration: none !important;
}

/* ===== TITLE BAND ===== */
.title-band {
    background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-main) 60%, var(--blue-mid) 100%);
    padding: 22px 0;
    text-align: center;
}
.title-band-text {
    color: var(--white);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.3px;
    margin: 0;
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(160deg, #0a2e6e 0%, #1145a8 55%, #2d7df7 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(245,197,24,.07);
}
.hero-title {
    color: var(--white);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
}
.hero-text {
    color: rgba(255,255,255,.88);
    font-size: 1.02rem;
    margin-bottom: 14px;
}
.hero-text a { color: #a8c8ff; }
.hero-cover {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    position: relative; z-index: 1;
}
.hero-bullets { margin: 20px 0; }
.hero-bullets div {
    color: rgba(255,255,255,.92);
    font-size: .96rem;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.hero-bullets i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-outline-light-hero {
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: .9rem;
    transition: all .25s;
}
.btn-outline-light-hero:hover {
    background: rgba(255,255,255,.12);
    text-decoration: none !important;
}
.rating-line { color: rgba(255,255,255,.85); font-size: .92rem; }
.stars { color: var(--gold); font-size: 1.1rem; margin-right: 4px; }

/* ===== TRUST SECTION ===== */
.trust-section { padding: 55px 0; background: var(--off-white); }
.trust-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.trust-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--white);
}
.trust-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--blue-dark); }
.trust-card p { font-size: .9rem; color: var(--gray-text); margin: 0; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 60px 0; }
.content-section:nth-child(even) { background: var(--gray-light); }
.lead-text { font-size: 1.1rem; color: var(--gray-text); margin-bottom: 28px; border-left: 4px solid var(--blue-main); padding-left: 16px; }

/* ===== FEATURE / BENEFIT / STEP BLOCKS ===== */
.feature-block, .benefit-block, .step-block {
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-light);
}
.feature-block:last-child, .benefit-block:last-child, .step-block:last-child { border-bottom: none; }
.feature-block h3, .benefit-block h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
}
.feature-block h3 i { color: var(--blue-main); }
.feature-block p, .benefit-block p { color: var(--gray-text); margin: 0; font-size: .97rem; }

.step-block { display: flex; align-items: flex-start; gap: 20px; padding: 20px 0; }
.step-num {
    min-width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.1rem;
    flex-shrink: 0; box-shadow: 0 4px 12px rgba(17,69,168,.3);
}
.step-block h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.step-block p { color: var(--gray-text); margin: 0; font-size: .95rem; }

/* ===== CREATOR ===== */
.creator-img {
    width: 200px; height: 200px;
    object-fit: cover;
    border: 5px solid var(--blue-main);
    box-shadow: var(--shadow-med);
    margin-bottom: 16px;
}
.creator-name { font-size: 1.2rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 4px; }
.creator-title { color: var(--blue-mid); font-size: .9rem; font-weight: 600; margin: 0; }

/* ===== PRICING ===== */
.pricing-section { background: var(--off-white); }
.pricing-img { max-width: 680px; border-radius: var(--radius-lg); box-shadow: var(--shadow-med); display: block; margin: 0 auto; }
.pricing-sub { font-size: 1.1rem; color: var(--gray-text); margin-bottom: 24px; }
.warning-text { font-size: .88rem; color: #c0392b; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--gray-light); }
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .25s;
}
.review-card:hover { transform: translateY(-3px); }
.review-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-main);
    margin-bottom: 12px;
}
.review-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.review-location { font-size: .82rem; color: var(--gray-text); margin-bottom: 8px; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.verified { font-size: .75rem; background: #e6f4ea; color: var(--green); font-weight: 600; border-radius: 30px; padding: 2px 8px; margin-left: 6px; }
.review-text { font-size: .93rem; color: var(--gray-text); font-style: italic; margin: 0; }

/* ===== BONUSES ===== */
.bonuses-section { background: var(--off-white); }
.bonus-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    height: 100%;
    transition: transform .25s;
}
.bonus-card:hover { transform: translateY(-3px); }
.bonus-card img { width: 100%; max-width: 260px; border-radius: 10px; margin: 0 auto 16px; }
.bonus-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.bonus-card p { font-size: .9rem; color: var(--gray-text); margin: 0; }

/* ===== GUARANTEE ===== */
.guarantee-section {
    background: linear-gradient(135deg, #0a2e6e 0%, #1145a8 100%);
    padding: 60px 0;
    color: var(--white);
}
.guarantee-badge { max-width: 200px; }
.guarantee-title { font-size: 1.5rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.guarantee-section p { color: rgba(255,255,255,.88); font-size: .97rem; margin-bottom: 12px; }
.guarantee-section a { color: #a8c8ff; }

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.accordion-item { border: 1px solid #dde6f7; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button {
    font-weight: 600;
    font-size: .97rem;
    color: var(--blue-dark) !important;
    background: var(--white) !important;
}
.accordion-button:not(.collapsed) {
    background: var(--blue-main) !important;
    color: var(--white) !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed)::after { filter: brightness(10); }
.accordion-body { font-size: .94rem; color: var(--gray-text); }

/* ===== CALLOUT ===== */
.callout-soft {
    background: #eef4ff;
    border-left: 4px solid var(--blue-main);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .9rem;
    color: var(--gray-text);
    margin-top: 24px;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    background: linear-gradient(160deg, #0a2e6e 0%, #1145a8 100%);
    padding: 70px 0;
    color: var(--white);
}
.final-cover { max-width: 380px; margin: 0 auto 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-med); }
.final-price { font-size: 1.2rem; color: rgba(255,255,255,.7); font-weight: 500; }
.final-price .strike { text-decoration: line-through; color: var(--red-strike); }
.final-price-now { font-size: 1.6rem; color: var(--gold); font-weight: 900; }
.cta-foot { color: rgba(255,255,255,.65); font-size: .85rem; }

/* ===== BLOG SECTION ===== */
.blog-section { padding: 60px 0; background: var(--gray-light); }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.blog-card-body { padding: 20px; }
.blog-category {
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue-main);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: .88rem; color: var(--gray-text); margin-bottom: 12px; }
.blog-read-more { font-size: .85rem; font-weight: 700; color: var(--blue-main); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,.75);
    padding: 48px 0 28px;
    text-align: center !important;
}
.site-footer .container { text-align: center !important; }
.footer-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 6px 18px;
    margin: 0 auto 14px !important;
    padding: 0;
    text-align: center;
}
.footer-nav a { color: rgba(255,255,255,.8); font-size: .88rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-nav.legal { margin-bottom: 20px; }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-top: 10px; line-height: 1.6; text-align: center !important; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 12px; text-align: center !important; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 100%);
    padding: 56px 0 44px;
    color: var(--white);
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 640px; margin: 0 auto; }

/* ===== INNER PAGE CONTENT ===== */
.page-content { padding: 56px 0; }
.page-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); margin: 28px 0 10px; }
.page-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue-main); margin: 22px 0 8px; }
.page-content p, .page-content li { color: var(--gray-text); font-size: .97rem; margin-bottom: 12px; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 16px; }
.page-content a { color: var(--blue-main); }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-med);
    max-width: 640px;
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--blue-dark); }
.form-control, .form-select {
    border: 1.5px solid #ccd9f0;
    border-radius: 8px;
    font-size: .95rem;
    padding: 10px 14px;
    transition: border-color .2s;
}
.form-control:focus, .form-select:focus { border-color: var(--blue-main); box-shadow: 0 0 0 3px rgba(17,69,168,.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section { padding: 48px 0 56px; }
    .hero-cover { max-width: 300px; margin: 0 auto 28px; }
    .title-band-text { font-size: 1.2rem; }
    .content-section { padding: 44px 0; }
    .guarantee-section { text-align: center; }
    .guarantee-badge { max-width: 150px; margin: 0 auto 20px; }
    .step-block { flex-direction: column; }
    .contact-form-wrap { padding: 28px 20px; }
}
