:root {
    --blue-dark: #0d1b2a;
    --blue-light: #1b3b5f;
    --violet: #7e57c2;
    --gradient: linear-gradient(90deg, #7e57c2, #8c52ff);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: var(--blue-dark);
    scroll-behavior: smooth;
}

/* Hero */
.hero-small {
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.85)),
        url("../images/xenaflow_background.webp") center/cover no-repeat;
    color: white;
    padding: 5rem 2rem 4rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url(../images/xenaflow_background.webp) center / cover no-repeat;
    color: white;
    padding: 4rem 2rem;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-logo img {
    height: 80px;
    width: auto;
    display: block;
}


.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    margin: 1rem auto 0;
    max-width: 900px;
    color: #e6e6e6;
}

.hero .btn-group .btn {
    margin: 0 .5rem;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
}

.lang-switch {
    z-index: 1000;
}

.lang-switch .btn {
    border-radius: 999px;
    padding: .35rem .75rem;
}

/* Optional: subtle highlight for active menu item */
.dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(255, 255, 255, 0.15);
    color: black;
}

.btn-primary {
    background: var(--gradient);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline-light:hover {
    background: white;
    color: var(--blue-dark);
}

/* END HERO */

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section h2 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.section h3 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card,
.policy-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.policy-icon {
    font-size: 1.6rem;
    color: var(--violet);
    margin-right: .5rem;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--violet);
    margin-bottom: 1rem;
}

/* END Sections */

/* Footer */
footer {
    background: var(--blue-dark);
    color: #aaa;
    padding: 3rem 2rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

:focus-visible {
    outline: 3px solid #8c52ff;
    outline-offset: 2px;
}

/* END Footer */