@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap');

:root {
    --bg: #0b1221;
    --surface: #111a2d;
    --surface-2: #101827;
    --text: #e8edf5;
    --text-muted: #b8c2d3;
    --accent: #f1b955;
    --accent-2: #4bd0b4;
    --line: rgba(232, 237, 245, 0.08);
    --radius: 14px;
    --shadow: 0 30px 120px rgba(10, 18, 33, 0.55);
}

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

body {
    margin: 0;
    font-family: 'Manrope', 'Arial', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(75, 208, 180, 0.08), transparent 25%),
                radial-gradient(circle at 80% 10%, rgba(241, 185, 85, 0.12), transparent 28%),
                var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(11, 18, 33, 0.55);
    border-bottom: 1px solid var(--line);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 90px;
    width: auto;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand__name {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand__tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

.nav a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), #ffcf70);
    color: #0b0f1c;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn--ghost:hover {
    border-color: rgba(232, 237, 245, 0.28);
}

.btn--full {
    width: 100%;
}

.btn--contrast {
    background: linear-gradient(140deg, #4bd0b4, #7ee0c5);
}

main {
    overflow: hidden;
}

.hero {
    padding: 80px 0 60px;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: center;
}

.hero__text h1 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
    margin: 10px 0 12px;
}

.lead {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(232, 237, 245, 0.06);
    color: var(--accent);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pill-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px 0 10px;
}

.pill-list li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(232, 237, 245, 0.07);
    color: var(--text);
    font-weight: 600;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cta-note {
    color: var(--text-muted);
    font-size: 14px;
}

.hero__card {
    background: linear-gradient(180deg, rgba(17, 26, 45, 0.92), rgba(16, 24, 39, 0.8));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hero__card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(241, 185, 85, 0.25), transparent 55%);
    pointer-events: none;
}

.card-header p {
    margin: 0;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.card-header strong {
    display: block;
    font-size: 20px;
    margin-top: 4px;
}

.card-list {
    list-style: none;
    padding: 18px 0 16px;
    margin: 0;
    display: grid;
    gap: 12px;
    color: var(--text-muted);
}

.card-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    margin-right: 10px;
}

.card-foot {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 10px;
}

.section {
    padding: 70px 0;
}

.section__heading {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 34px;
}

.section__heading h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin: 10px 0 12px;
    line-height: 1.2;
}

.section__sub {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 20px;
    background: rgba(232, 237, 245, 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 185, 85, 0.4);
    background: rgba(232, 237, 245, 0.05);
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.section--accent {
    background: linear-gradient(160deg, rgba(16, 24, 39, 0.9), rgba(11, 18, 33, 0.92));
    border-block: 1px solid var(--line);
}

.section--muted {
    background: rgba(232, 237, 245, 0.02);
    border-block: 1px solid var(--line);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
    align-items: center;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 10px;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
    line-height: 1.5;
}

.checklist li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--accent-2);
    font-size: 18px;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 20px;
    background: rgba(232, 237, 245, 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stats-card strong {
    display: block;
    font-size: 28px;
}

.stats-card span {
    color: var(--text-muted);
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: grid;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(232, 237, 245, 0.03);
    grid-template-columns: auto 1fr;
}

.step__number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(241, 185, 85, 0.12);
    border: 1px solid rgba(241, 185, 85, 0.5);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.step h3 {
    margin: 0 0 6px;
}

.step p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.profile {
    justify-self: end;
    max-width: 320px;
    width: 100%;
}

.profile__photo {
    width: 100%;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.profile__caption {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.cta-box {
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(75, 208, 180, 0.25);
    background: linear-gradient(150deg, rgba(75, 208, 180, 0.12), rgba(17, 26, 45, 0.8));
    box-shadow: var(--shadow);
}

.cta-box h3 {
    margin: 0 0 8px;
}

.cta-box p {
    margin: 0 0 14px;
    color: var(--text-muted);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.gallery__item {
    background: rgba(232, 237, 245, 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
}

.gallery__item img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.gallery__item figcaption {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.faq {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 18px;
    background: rgba(232, 237, 245, 0.03);
}

summary {
    cursor: pointer;
    font-weight: 700;
}

details p {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.section--cta {
    background: linear-gradient(120deg, rgba(241, 185, 85, 0.16), rgba(75, 208, 180, 0.16));
}

.cta-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.floating-whats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #25d366;
    color: #0b1221;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 30;
}

.floating-whats:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3);
}

.footer {
    border-top: 1px solid var(--line);
    padding: 18px 0 24px;
    background: rgba(11, 18, 33, 0.9);
}

.footer__brand {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 0;
    margin-top: 12px;
}

.footer__logo-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.footer__logo-link:hover {
    opacity: 0.85;
}

.footer__logo {
    height: 40px;
    width: auto;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 800px) {
    .nav {
        display: none;
    }

    .header__content {
        padding: 14px 0;
    }

    .hero {
        padding-top: 60px;
    }

    .hero__card {
        order: -1;
    }

    .cta-final {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile {
        justify-self: center;
        text-align: center;
    }

    .profile__photo {
        margin: 0 auto;
    }

    .profile__caption {
        margin: 14px auto 0;
        padding: 10px 14px;
        display: inline-block;
        border-radius: 999px;
        background: rgba(232, 237, 245, 0.05);
        border: 1px solid var(--line);
    }
}
