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

:root {
    --primary: #0b3954;
    --secondary: #087e8b;
    --accent: #bfd7ea;
    --highlight: #ff5a5f;
    --error: #db3d6c;
    --background-color: #fff;
    --border-radius: 5px;
    --mup-transition-fast: 0.3s ease;
    --mup-transition-med: 0.5s ease;
    --nav-height: 70px;
    --nav-background: rgba(11, 57, 84, 0.98);
    --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --dropdown-background: white;
    --dropdown-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body.mobile-nav-active {
    overflow: hidden;
    overscroll-behavior: none;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    animation: slideIn 0.3s ease-in-out;
}

.toast-notification.hide {
    animation: slideOut 0.3s ease-in-out forwards;
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 12px 15px;
}

.toast-icon {
    margin-right: 10px;
    color: #3498db;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #3498db;
    animation: progress 5s linear;
}

.toast-notification.success .toast-icon { color: #2ecc71; }
.toast-notification.success .toast-progress { background: #2ecc71; }
.toast-notification.error .toast-icon { color: #e74c3c; }
.toast-notification.error .toast-progress { background: #e74c3c; }
.toast-notification.warning .toast-icon { color: #f1c40f; }
.toast-notification.warning .toast-progress { background: #f1c40f; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0; }
}

.close-btn {
    background: none;
    border: none;
    color: var(--highlight);
    font-size: 16px;
    cursor: pointer;
}

.mup-header {
    background-color: var(--nav-background);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: var(--nav-height);
    box-shadow: var(--nav-shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color var(--mup-transition-fast);
}

.mup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.mup-logo {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity var(--mup-transition-fast);
    flex-shrink: 0;
}

.mup-logo:hover {
    opacity: 0.85;
}

/* ---- Desktop nav links container ---- */
.mup-nav-links-container {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
    position: relative;
}

/* ---- Overlay (single definition) ---- */
.mup-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
    pointer-events: none;
}

body.mobile-nav-active .mup-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ---- Nav lists ---- */
.mup-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.mup-nav-list--actions {
    flex: 0 0 auto;
    justify-content: flex-end;
}

/* ---- Nav links ---- */
.mup-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: color 150ms ease, background 150ms ease, transform 150ms ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    min-height: 44px;
}

.mup-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.mup-nav-link:active {
    transform: scale(0.96);
}

.nav-icon {
    width: 16px;
    height: 16px;
    transition: transform 150ms ease;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .nav-icon--chevron {
    transform: rotate(180deg);
}

/* ---- Desktop dropdowns ---- */
.mup-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--dropdown-background);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: var(--dropdown-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
    padding: 0.5rem;
    z-index: 100;
    list-style: none;
    pointer-events: none;
}

.has-dropdown:hover .mup-dropdown,
.has-dropdown:focus-within .mup-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mup-dropdown li {
    list-style-type: none;
}

.mup-dropdown li a {
    color: var(--primary);
    padding: 0.8rem 1rem;
    display: block;
    border-radius: 8px;
    transition: background 150ms ease, color 150ms ease;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mup-dropdown li a:hover {
    background: rgba(11, 57, 84, 0.05);
    color: var(--secondary);
}

.mup-dropdown-divider {
    height: 1px;
    background: rgba(11, 57, 84, 0.1);
    margin: 0.4rem 0.75rem;
    pointer-events: none;
}

.nav-icon--avatar {
    width: 22px;
    height: 22px;
}

.mup-nav-link--avatar {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 150ms ease;
}

.mup-nav-link--avatar:hover {
    background: rgba(255, 255, 255, 0.16);
}

.mup-nav-cta .mup-nav-link {
    background: var(--highlight);
    color: white;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.25);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.mup-nav-cta .mup-nav-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.mup-nav-cta .mup-nav-link:active {
    transform: scale(0.96);
}

.mup-nav-cta--logout a.mup-nav-link {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.mup-nav-cta--logout a.mup-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* ---- Hamburger button ---- */
.mup-hamburger {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    border-radius: 8px;
    transition: background 150ms ease;
}

.mup-hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mup-hamburger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Hamburger bars use a centered flex layout */
.mup-hamburger-inner {
    width: 22px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mup-hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
                opacity 150ms ease;
    transform-origin: center;
}

body.mobile-nav-active .mup-hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.mobile-nav-active .mup-hamburger-bar:nth-child(2) {
    opacity: 0;
}

body.mobile-nav-active .mup-hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.search-bar {
    width: 80%;
}

#index-search-bar {
    width: 99%;
    margin-left: 1%;
    margin-bottom: 1%;
    height: 2rem;
    padding: 1rem;
    border-radius: 15px;
}

#search-results {
    position: absolute;
    top: 50px;
    width: 300px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

#search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#search-results li {
    padding: 10px;
    font-size: 16px;
    color: var(--secondary);
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#search-results li a {
    text-decoration: none;
    color: var(--secondary);
}

#search-results li a:visited {
    color: var(--secondary);
}

#landing-content {
    padding: 2rem;
    background-color: white;
}

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 60vh;
    position: relative;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    background: linear-gradient(270deg, #0b3954 18%, #4d0b54 57%, #5a1b31 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.callout{
    text-align: center;
    padding: 2rem 0;
    position: relative;
    background-color: white;
}
.callout h1{
    font-size: 4rem;
}
.callout i{
    font-size: 30px;
    font-weight: bold;
}
.callout p{
    font-size: medium;
}

.showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.showcase.animate {
    opacity: 1;
    transform: translateY(0);
}
.showcase-content {
    max-width: 1200px;
    width: 100%;
}
.showcase-text {
    text-align: center;
    margin-bottom: 30px;
}
.showcase-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.cta-button {
    background-color: #0c1755;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.outlined {
    border: 2px solid var(--primary);
    background: #ffffff;
    color: var(--primary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.features-container {
    color: white;
    display: grid;
    grid-template-columns: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(5.8px);
    -webkit-backdrop-filter: blur(5.8px);
    border: 1px solid rgba(255, 255, 255, 0.23);
}
.features-header {
    margin-bottom: 30px;
}
.features-header h2 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.features-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
}
.features-header p {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}
.start-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 100;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.feature-card {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 24px;
    color: #f2f2f2;
    margin-bottom: 15px;
}
.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.feature-description {
    font-size: 14px;
}

.testimonials {
    padding: 2rem;
    color: white;
    text-align: center;
}

.testimonials-grid {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1em
}

.testimonial {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 2em;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.8px);
    -webkit-backdrop-filter: blur(5.8px);
    border: 1px solid rgba(255, 255, 255, 0.23);
}

.testimonial p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--highlight);
    text-align: left;
}

.section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.header-section {
    background-color: var(--secondary);
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-section {
    background-color: white;
    padding: 4em;
    text-align: center;
}

.cta-section h1 {
    font-family: 'Open Sans';
    font-size: 50px;
}

.footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin-bottom: 2rem;
    min-width: 250px;
    padding: 0 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--highlight);
    margin-right: 1rem;
    text-decoration: none;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--accent);
}

.quick-links li {
    margin-bottom: 0.5rem;
    list-style: none;
}

.quick-links a {
    color: white;
    text-decoration: none;
}

.quick-links a:hover {
    color: var(--accent);
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.newsletter-form button:hover {
    background-color: var(--highlight);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent);
}

/* Legacy demo button styles - commented out, now using floating-demo-button.css */
/*
.demo-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-button:hover {
    transform: translateY(-2px);
    background-color: var(--secondary);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.demo-button i {
    width: 20px;
    height: 20px;
}
*/

.referral-announcement {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 70px;
    left: 0;
    z-index: 999;
}
.referral-announcement a {
    color: white;
    text-decoration: underline;
}
.close-announcement {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--background-color);
    padding-top: 70px;
}

body.has-referral-announcement {
   padding-top: 120px;
}

@media (max-width: 1023px) {
    .features-container {
        display: grid;
        grid-template-columns: 100%;
    }
}

@media (min-width: 768px) {
    .showcase-content {
        display: flex;
        align-items: center;
    }
    .showcase-text, .showcase-image-container {
        flex: 1;
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .showcase-text {
        text-align: left;
        padding: 0 30px;
        transform: translateX(-20px);
    }
    .showcase-image-container {
        transform: translateX(20px);
    }
    .showcase:nth-child(even) .showcase-content {
        flex-direction: row-reverse;
    }
    .showcase:nth-child(even) .showcase-text {
        transform: translateX(20px);
    }
    .showcase:nth-child(even) .showcase-image-container {
        transform: translateX(-20px);
    }
    .showcase.animate .showcase-text,
    .showcase.animate .showcase-image-container {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .mup-nav {
        padding: 0 1rem;
    }

    .mup-hamburger {
        display: flex;
    }

    .mup-nav-links-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100dvh;
        background: var(--nav-background);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: calc(var(--nav-height) + 1.5rem) 1.25rem 2rem;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 250ms ease;
        visibility: hidden;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    }

    body.mobile-nav-active .mup-nav-links-container {
        transform: translateX(0);
        visibility: visible;
    }

    .mup-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        flex: auto;
    }

    .mup-nav-list--actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: flex-start;
    }

    .mup-nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }

    .has-dropdown > .mup-nav-link {
        justify-content: space-between;
    }

    .mup-dropdown {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        box-shadow: none;
        min-width: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        width: 100%;
        pointer-events: none;
        transition: max-height 250ms cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 200ms ease,
                    padding 200ms ease,
                    margin 200ms ease,
                    visibility 0ms 250ms;
    }

    .has-dropdown.active .mup-dropdown {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0.375rem;
        margin: 0.375rem 0;
        transform: none;
        transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 200ms ease 50ms,
                    padding 200ms ease 50ms,
                    margin 200ms ease 50ms,
                    visibility 0ms;
    }

    .has-dropdown .nav-icon--chevron {
        transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .has-dropdown.active .nav-icon--chevron {
        transform: rotate(180deg);
    }

    .has-dropdown:hover .mup-dropdown,
    .has-dropdown:focus-within .mup-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: none;
    }

    .has-dropdown.active:hover .mup-dropdown,
    .has-dropdown.active:focus-within .mup-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .has-dropdown:hover .nav-icon--chevron {
        transform: none;
    }

    .has-dropdown.active:hover .nav-icon--chevron {
        transform: rotate(180deg);
    }

    .mup-dropdown li a {
        color: rgba(255, 255, 255, 0.75);
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }

    .mup-dropdown li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }

    .mup-dropdown-divider {
        background: rgba(255, 255, 255, 0.08);
        margin: 0.25rem 0.5rem;
    }

    .mup-nav-cta {
        margin-top: 0.5rem;
    }

    .mup-nav-cta .mup-nav-link {
        text-align: center;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .mup-nav-link--avatar {
        justify-content: flex-start;
    }

    .mup-nav-links-container::-webkit-scrollbar {
        width: 4px;
    }

    .mup-nav-links-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .mup-nav-links-container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 2px;
    }

    .mup-nav-links-container::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    body.mobile-nav-active .mup-nav-list > li {
        animation: mobileNavFadeIn 200ms ease both;
    }

    body.mobile-nav-active .mup-nav-list > li:nth-child(1) { animation-delay: 60ms; }
    body.mobile-nav-active .mup-nav-list > li:nth-child(2) { animation-delay: 100ms; }
    body.mobile-nav-active .mup-nav-list > li:nth-child(3) { animation-delay: 140ms; }
    body.mobile-nav-active .mup-nav-list > li:nth-child(4) { animation-delay: 180ms; }
    body.mobile-nav-active .mup-nav-list--actions > li {
        animation: mobileNavFadeIn 200ms ease both;
        animation-delay: 220ms;
    }

    @keyframes mobileNavFadeIn {
        from {
            opacity: 0;
            transform: translateX(12px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 40px;
        padding:5px
    }

    .hero p {
        font-size: 1rem;
        padding:5px;
    }

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

    .testimonials {
        padding: 0;
    }

    .testimonial {
        padding: 1em;
    }

    #landing-content {
        padding: 1em;
    }

    .cta-section h1 {
        font-size: 30px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}