/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background-color: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 210, 0, 0.15);
    padding: 10px 0;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #ffd200, #ff8c00);
    color: #0a0e1a;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 210, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 210, 0, 0.55);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding-top: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-banner img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #0a0e1a);
    z-index: 2;
    pointer-events: none;
}

/* ===== CTA BLOCK ===== */
.cta-block {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 32px 20px 24px;
    width: 100%;
    max-width: 680px;
    margin: -50px auto 0;
}

.cta-block h1 {
    font-size: clamp(1.35rem, 4.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.cta-block h1 span {
    color: #ffd200;
}

.cta-block .subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 24px;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, #ffd200, #ff8c00);
    color: #0a0e1a;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 30px rgba(255, 210, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: pulse 2.5s infinite;
    width: 100%;
    max-width: 340px;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 210, 0, 0.6);
    animation: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(255, 210, 0, 0.4); }
    50%       { box-shadow: 0 6px 40px rgba(255, 210, 0, 0.7); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.28);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    width: 100%;
    max-width: 340px;
}

.btn-secondary:hover {
    border-color: #ffd200;
    background: rgba(255, 210, 0, 0.08);
    color: #ffd200;
}

.btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 16px 20px;
    margin-top: 32px;
    width: 100%;
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    white-space: nowrap;
}

.trust-item i {
    color: #ffd200;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 20px 72px;
}

/* ===== FEATURES GRID ===== */
.features-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.2rem, 3.5vw, 1.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    color: #ffffff;
}

.section-title span {
    color: #ffd200;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 210, 0, 0.3);
}

.feature-card .icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
    display: block;
    color: #ffd200;
    line-height: 1;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd200;
}

.feature-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.55;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 36px 32px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,210,0,0.07), transparent 70%);
    pointer-events: none;
}

.about-section h2 {
    font-size: clamp(1.1rem, 2.8vw, 1.55rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.about-section h2 span {
    color: #ffd200;
}

.about-section p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.76);
    line-height: 1.85;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd200, #ff8c00);
    color: #0a0e1a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.step-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.5;
}

/* ===== ACCESS SECTION ===== */

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


.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.access-card {
    border-radius: 16px;
    padding: 26px 22px;
    border: 1px solid rgba(255,255,255,0.08);
}

.access-card--ok {
    background: rgba(39, 174, 96, 0.07);
    border-color: rgba(39, 174, 96, 0.2);
}

.access-card--no {
    background: rgba(231, 76, 60, 0.07);
    border-color: rgba(231, 76, 60, 0.2);
}

.access-card--tip {
    background: rgba(255, 210, 0, 0.06);
    border-color: rgba(255, 210, 0, 0.2);
}

.access-card__icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.access-card--ok .access-card__icon { color: #27ae60; }
.access-card--no .access-card__icon { color: #e74c3c; }
.access-card--tip .access-card__icon { color: #ffd200; }

.access-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.access-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access-card ul li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.access-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    text-align: center;
    padding: 52px 20px;
    background: linear-gradient(135deg, rgba(255,210,0,0.07), rgba(255,140,0,0.04));
    border-radius: 20px;
    border: 1px solid rgba(255,210,0,0.14);
}

.bottom-cta h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.bottom-cta h2 span {
    color: #ffd200;
}

.bottom-cta p {
    color: rgba(255,255,255,0.62);
    margin-bottom: 26px;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 28px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 14px;
    opacity: 0.75;
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.32);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 14px;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    margin-top: 8px;
}

/* ===== TABLET — max 900px ===== */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== MOBILE — max 768px ===== */
@media (max-width: 768px) {
    .site-logo img {
        height: 34px;
    }

    .header-cta {
        font-size: 0.8rem;
        padding: 9px 16px;
        gap: 5px;
    }

    .hero-section {
        padding-top: 58px;
    }

    .hero-banner img {
        max-height: none;
        height: auto;
    }

    .hero-overlay {
        height: 100px;
    }

    .cta-block {
        margin-top: -24px;
        padding: 24px 16px 20px;
    }

    .cta-block h1 {
        font-size: clamp(1.15rem, 5.5vw, 1.8rem);
    }

    .cta-block .subtitle {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .btn-main {
        font-size: 0.95rem;
        padding: 14px 28px;
        max-width: 100%;
        width: 100%;
    }

    .btn-secondary {
        font-size: 0.85rem;
        padding: 12px 24px;
        max-width: 100%;
        width: 100%;
    }

    .trust-bar {
        margin-top: 24px;
        padding: 14px 16px;
    }

    .trust-bar-inner {
        gap: 12px 20px;
        justify-content: flex-start;
    }

    .trust-item {
        font-size: 0.78rem;
    }

    .main-content {
        padding: 40px 16px 56px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 20px 14px;
    }

    .feature-card .icon {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 0.88rem;
    }

    .feature-card p {
        font-size: 0.78rem;
    }

    .about-section {
        padding: 26px 20px;
        margin-bottom: 44px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .access-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .access-card {
        padding: 20px 18px;
    }

    .step-card {
        padding: 22px 18px;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-card-body {
        flex: 1;
    }

    .step-card h3 {
        font-size: 0.9rem;
        text-align: left;
    }

    .step-card p {
        font-size: 0.8rem;
        text-align: left;
    }

    .bottom-cta {
        padding: 36px 16px;
        border-radius: 16px;
    }



    .features-section,
    .steps-section {
        margin-bottom: 44px;
    }
}

/* ===== SMALL MOBILE — max 420px ===== */
@media (max-width: 420px) {
    .header-inner {
        padding: 0 14px;
    }

    .site-logo img {
        height: 30px;
    }

    .header-cta {
        font-size: 0.75rem;
        padding: 8px 13px;
    }

    .hero-banner img {
        max-height: none;
        height: auto;
    }

    .cta-block {
        padding: 20px 12px 16px;
    }

    .trust-bar-inner {
        gap: 10px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .about-section p {
        font-size: 0.88rem;
    }
}
