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

body.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 0;
}

body.landing .nav-toggle,
body.landing .nav-overlay {
    display: none;
}

.page.landing-page {
    width: 100%;
    box-shadow: none;
    background: transparent;
}

.landing-hero--modern {
    width: 100%;
    padding: 0;
    border-radius: 0;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.landing-hero {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.landing-hero__menu {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 1.75rem;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

.landing-hero__menu-link {
    color: #f8fafc;
    font-weight: 600;
    transition: color 0.25s ease;
}

.landing-hero__menu-link:hover,
.landing-hero__menu-link:focus-visible {
    color: #a5f3fc;
}

.landing-hero__menu-link--icon {
    margin-left: auto;
    padding: 0.5rem;
}

.landing-hero__menu-icon {
    font-size: 1.6rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.landing-hero__content {
    max-width: 640px;
    text-align: left;
    padding-top: 5rem;
    animation: heroFloat 1s ease-out both;
}

.landing-hero__title {
    font-family: 'Pacifico', 'Brush Script MT', cursive;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.1;
    color: #f8fafc;
    margin: 0.2rem 0 1rem;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.landing-tag {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.landing-hero__lead {
    margin-bottom: 0.8rem;
    color: rgba(248, 250, 252, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 620px;
}

.landing-cta {
    display: flex;
    gap: 0.8rem;
}

.landing-cta .btn {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0.95rem 2.8rem;
    font-size: 1.1rem;
    border-radius: 999px;
}

.landing-cta .btn:hover,
.landing-cta .btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
}

.landing-cta .btn.ghost {
    background: rgba(15, 23, 42, 0.4);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.8);
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.25) inset;
}

@keyframes heroFloat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .landing-hero--modern {
        padding: 2.5rem 1.5rem;
    }

    .landing-hero__menu {
        position: static;
        flex-wrap: wrap;
        padding-bottom: 1rem;
        top: auto;
        left: auto;
        right: auto;
        gap: 1rem;
        letter-spacing: 0.2em;
        justify-content: center;
        margin-bottom: 1rem;
        width: 100%;
        z-index: 3;
    }

    .landing-hero__content {
        padding-top: 1rem;
    }
}

.landing-grid--features {
    margin: 0.0rem auto 0rem;
    width: min(1100px, 100%);
    padding: 0 0.0rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.cms-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    font-family: 'Inter', system-ui, sans-serif;
    color: #0f172a;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cms-card__icon {
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e0f2fe;
    margin-bottom: 0.8rem;
}

.cms-card h3 {
    margin: 0 0 0.65rem;
    font-family: 'Inter', system-ui, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    color: #0f172a;
}

.cms-card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.85);
    line-height: 1.6;
}

.cms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
}
