html {
    scroll-behavior: smooth;
}

body {
    color: var(--brand-white);
    background: linear-gradient(90deg, var(--brand-black) 0%, var(--brand-dark) 50%, var(--brand-black) 100%);
}

.full-screen {
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.navbar {
    backdrop-filter: blur(8px);
    background: var(--brand-smoke);
}

.nav-link {
    color: var(--brand-white);
}

.nav-link:hover,
.nav-link:focus,
.text-primary {
    color: var(--brand-accent) !important;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
}

.brand-logo-nav {
    height: 2.5rem;
}

.brand-logo-footer {
    height: 2rem;
}

.text-white-50 {
    color: var(--brand-pale) !important;
}

.btn-primary {
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-accent);
    --bs-btn-hover-border-color: var(--brand-accent);
    --bs-btn-active-bg: var(--brand-accent);
    --bs-btn-active-border-color: var(--brand-accent);
    --bs-btn-disabled-bg: var(--brand-primary);
    --bs-btn-disabled-border-color: var(--brand-primary);
    --bs-btn-color: var(--brand-white);
    --bs-btn-hover-color: var(--brand-white);
    --bs-btn-active-color: var(--brand-white);
}

.btn-light {
    --bs-btn-color: var(--brand-black);
    --bs-btn-bg: var(--brand-white);
    --bs-btn-border-color: var(--brand-white);
    --bs-btn-hover-color: var(--brand-white);
    --bs-btn-hover-bg: var(--brand-accent);
    --bs-btn-hover-border-color: var(--brand-accent);
    --bs-btn-active-color: var(--brand-white);
    --bs-btn-active-bg: var(--brand-accent);
    --bs-btn-active-border-color: var(--brand-accent);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--brand-white);
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--brand-pale);
    max-width: 780px;
}

.main-card {
    border: 0;
    border-radius: 1.25rem;
    background-color: var(--brand-shadow);
    box-shadow: 0 0.5rem 2rem var(--brand-neon);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.main-card h3 {
    color: var(--brand-white);
}

.main-card p,
.main-card .text-secondary {
    color: var(--brand-pale) !important;
}

.main-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem var(--brand-shine);
}

#aboutValuesCarousel .carousel-inner {
    padding: 2rem 1.5rem;
}

.icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-sky);
    color: var(--brand-accent);
    font-size: 1.5rem;
}

.product-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-sky);
    color: var(--brand-accent);
    font-size: 1.75rem;
}

.timeline-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-accent);
    color: var(--brand-white);
    font-weight: 700;
    box-shadow: 0 0.5rem 1.25rem var(--brand-shadow);
}

.accent-text {
    color: var(--brand-accent);
}

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

footer a:hover {
    text-decoration: underline;
}
