.container {
    width: min(1120px, 80vw);
    margin: 0 auto;
}

section.hero {
    position: relative;
    isolation: isolate;
    padding: clamp(128px, 10vw, 220px) 0;
    background: var(--surface);
    overflow: hidden;
}

@media (max-width: 768px) {
    section.hero p {
        width: auto;
        max-width: 80vw;
    }

    section.hero h2 {
        width: min-content;
    }
}

:root {
    --bg: #0b1020;
    --surface: #121936;
    --surface-2: #0f142b;
    --text: #e7ebff;
    --muted: #b7c0e0;
    --brand: #5fe1d6;
    --brand-2: #ff8a7a;
    --brand-3: #d35429;
    --accent: #a099ff;
    --ring: rgba(95, 225, 214, 0.4);
    --radius: 18px;
    --base100: #f2f2f2;
    --base200: #d6d6d6;
    --base300: #a6a6a6;
    --base400: #959595;
    --base500: #7a7a7a;
    --base600: #575757;
    --base700: #434343;
    --base800: #333333;
    --base900: #161616;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 2px 10px rgba(0, 0, 0, 0.25);
}

body {
    margin: 0;
    padding: 0;
    font-family: Ubuntu, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

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

.highlight {
    color: var(--brand);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    border-radius: calc(var(--radius) - 6px);
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #06101a;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
}

.fa-gradient {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NAVIGATION */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 25, 54, 0.33);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1120px, 80vw);
    margin: 0 auto;
}

.nav-brand img {
    height: 64px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: calc(var(--radius) - 8px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }
}

/* FOOTER STYLES */
.footer {
    background: var(--surface);
    padding: clamp(10px, 1vw, 20px) 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 10px;
    place-items: center;
}

.description-pack {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
}

.description-pack>p {
    flex: 1 1 auto;
}

.description-pack div {
    flex: 1 0 auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
}

.footer-logo-container {
    height: fit-content;
    width: min(300px, 100%);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    border-radius: calc(var(--radius) - 6px);
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand-3) -25%, var(--accent));
    color: #06101a;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease;
}

.footer-description {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
    max-width: 500px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--brand);
}

.footer-section li i {
    margin-right: 8px;
    color: var(--brand);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--muted);
    font-size: 18px;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--brand);
}

@media (max-width: 768px) {
    .footer-content {
        gap: 8px;
    }
}