:root {
    --dark: #080b18;
    --dark2: #11162a;
    --gold: #f5c451;
    --gold2: #d89b28;
    --white: #ffffff;
    --text: #1a1a1a;
    --muted: #666;
    --light: #f6f3ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    padding-bottom: 74px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--dark);
    color: var(--white);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 800;
    font-size: 15px;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.menu-toggle {
    background: var(--gold);
    color: var(--dark);
    border: 0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 800;
}

.main-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 10px 18px 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.main-menu.active {
    display: block;
}

.main-menu a {
    display: block;
    color: var(--white);
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
}

.hero {
    background: radial-gradient(circle at top, #20294a, var(--dark));
    color: var(--white);
    padding: 34px 18px 48px;
    text-align: center;
}

.hero-logo {
    width: 250px;
    margin: 0 auto 14px;
}

.top-badge {
    display: inline-block;
    background: rgba(245,196,81,0.12);
    color: var(--gold);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 16px;
    max-width: 820px;
    margin: 0 auto 24px;
}

.hero-btns {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--dark);
    padding: 15px 22px;
    border-radius: 50px;
    font-weight: 900;
    min-height: 52px;
    text-align: center;
}

.outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.7);
}

.hero-image {
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--gold);
}

.trust-row div {
    text-align: center;
    padding: 17px 8px;
    border: 1px solid rgba(0,0,0,0.08);
}

.trust-row strong {
    display: block;
    font-size: 22px;
    color: var(--dark);
}

.trust-row span {
    font-size: 12px;
    font-weight: 700;
}

.section {
    padding: 52px 18px;
    text-align: center;
}

.light-section {
    background: var(--light);
}

.dark-section {
    background: var(--dark);
    color: var(--white);
}

.section-label {
    color: var(--gold2);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section h2,
.split-section h2,
.final-cta h2 {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 16px;
}

.center-text {
    max-width: 850px;
    margin: 0 auto 16px;
}

.cards,
.match-grid,
.benefits,
.steps {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.card,
.steps div,
.faq-item {
    background: var(--white);
    color: var(--text);
    padding: 22px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.card h3,
.steps h3,
.faq-item h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.split-section {
    padding: 52px 18px;
    display: grid;
    gap: 26px;
    text-align: center;
}

.split-section img {
    border-radius: 22px;
}

.split-section p {
    margin-bottom: 14px;
}

.match-grid div,
.benefits div {
    background: var(--light);
    color: var(--dark);
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
}

.dark-section .benefits div {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}

.steps span {
    color: var(--gold2);
    font-size: 30px;
    font-weight: 900;
}

.center-btn {
    margin: 14px auto 0;
}

.faq-section {
    background: var(--light);
}

.faq-item {
    margin-top: 14px;
}

.final-cta {
    background: radial-gradient(circle at top, #20294a, var(--dark));
    color: var(--white);
    padding: 52px 18px;
    text-align: center;
}

.final-cta p {
    margin-bottom: 22px;
}

.footer {
    background: #050713;
    color: var(--white);
    padding: 42px 18px 22px;
    text-align: center;
}

.footer-grid {
    display: grid;
    gap: 26px;
}

.footer h3,
.footer h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.footer a {
    display: block;
    color: #ddd;
    padding: 6px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 26px;
    padding-top: 16px;
    font-size: 13px;
    color: #ccc;
}

.floating-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 9999;
    background: #25d366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .main-header {
        padding: 14px 7%;
    }

    .menu-toggle {
        display: none;
    }

    .main-menu {
        display: flex;
        position: static;
        background: transparent;
        padding: 0;
        gap: 22px;
        border: 0;
    }

    .main-menu a {
        border: 0;
        padding: 0;
        font-size: 14px;
    }

    .hero {
        padding: 70px 7%;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-btns {
        display: flex;
        justify-content: center;
    }

    .hero-image {
        max-width: 920px;
        margin: auto;
    }

    .trust-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 76px 7%;
    }

    .cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .match-grid,
    .benefits {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .split-section {
        padding: 76px 7%;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        text-align: left;
    }

    .footer-grid {
        max-width: 1180px;
        margin: auto;
        grid-template-columns: 1.5fr 1fr 1fr;
        text-align: left;
    }

    .floating-whatsapp {
        left: auto;
        right: 24px;
        width: auto;
        padding: 14px 26px;
    }
}


/**/

.inner-hero {
    background: radial-gradient(circle at top, #20294a, var(--dark));
    color: var(--white);
    padding: 36px 18px 50px;
    text-align: center;
    display: grid;
    gap: 26px;
}

.inner-hero h1 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.inner-hero p {
    margin-bottom: 20px;
}

.inner-hero img {
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
    .inner-hero {
        padding: 76px 7%;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        text-align: left;
    }

    .inner-hero h1 {
        font-size: 54px;
    }
}

.text-link {
    color: var(--gold2);
    font-weight: 900;
    display: inline-block;
    margin-top: 12px;
}


.blog-grid {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    text-align: left;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content span {
    color: var(--gold2);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-content h3 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.2;
}

.blog-content p {
    color: var(--muted);
}

.text-link {
    color: var(--gold2);
    font-weight: 900;
    display: inline-block;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/**/