:root {
    --primary: #003366;
    --primary-light: #0055A4;
    --primary-dark: #001A33;
    --secondary: #C5A059;
    --secondary-light: #D4B475;
    --secondary-hover: #E3BE77;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --text-light: #94A3B8;
    --border-soft: rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 30px 60px -12px rgba(0, 31, 64, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.hero-title,
.stat-val {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white);
}

.section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--secondary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Navbar */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.premium-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid transparent;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.3s ease;
}

.premium-nav.scrolled .nav-content {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon img {
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a.hover-underline {
    position: relative;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a.hover-underline:hover {
    color: var(--primary);
}

.nav-links a.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a.hover-underline:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.15);
}

.btn-nav:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.25);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.8;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation: rotateShape 20s infinite linear;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 85, 164, 0.08) 0%, transparent 70%);
    bottom: -100px;
    right: 5%;
    animation: rotateShape 25s infinite linear reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    top: 20%;
    right: 35%;
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success, #10B981);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite ease-out;
    opacity: 0.5;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-glow {
    background: var(--primary);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 51, 102, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    background: var(--primary-light);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-soft);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: var(--white);
    border-color: var(--secondary-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Premium Glass Mockup */
.hero-visual {
    position: relative;
}

.main-hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-hover);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.main-hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.mockup-skeleton {
    background: rgba(0, 51, 102, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
}

.mockup-skeleton.banner {
    height: 140px;
    border-radius: 16px;
}

.mockup-skeleton.subtitle {
    height: 24px;
    width: 60%;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.mockup-box {
    height: 80px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
}

.floating-badge {
    position: absolute;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    animation: float 5s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: -30px;
    left: -20px;
    animation-delay: 2.5s;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-2 .icon-circle {
    color: var(--secondary);
    background: rgba(197, 160, 89, 0.1);
}

.badge-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* STATS BAR */
.stats-bar {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-block {
    text-align: center;
}

.stat-val {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* ABOUT FEATURES */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 51, 102, 0.1);
}

.f-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 51, 102, 0.05);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.feature-card:hover .f-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* DOMAINS */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.modern-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.card-bg-gradient.cognitive {
    background: radial-gradient(circle at top right, rgba(0, 51, 102, 0.04), transparent);
}

.card-bg-gradient.mobility {
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent);
}

.modern-card:hover .card-bg-gradient {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.2);
}

.d-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.modern-card:hover .d-icon {
    background: var(--secondary);
    animation: bounceIcon 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.modern-card h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.modern-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* CTA */
.section-cta {
    padding: 40px 0 100px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 51, 102, 0.25);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-card p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 auto 40px;
    max-width: 600px;
}

.btn-cta-gold {
    background: var(--secondary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-gold:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-circle.c1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
}

.cta-circle.c2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -150px;
}


/* FOOTER */
.premium-footer {
    background: var(--text-dark);
    color: #CBD5E1;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.f-brand-col .logo-link {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.f-brand-col .logo-icon.white-bg {
    background: #fff;
    padding: 4px;
    border-radius: 8px;
}

.fallback-logo {
    color: var(--primary);
    font-weight: 800;
    padding: 0 8px;
}

.f-desc {
    font-size: 1.05rem;
    max-width: 400px;
    line-height: 1.8;
}

.f-links-col h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.f-links-col h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.f-links-col ul {
    list-style: none;
}

.f-links-col li {
    margin-bottom: 16px;
}

.f-links-col a {
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.f-links-col a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.f-copyright {
    font-size: 0.95rem;
}

.f-socials {
    display: flex;
    gap: 16px;
}

.f-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.f-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }

    .stats-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .divider {
        width: 100px;
        height: 1px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-card h2 {
        font-size: 2.4rem;
    }

    .cta-card {
        padding: 60px 20px;
    }

    .f-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}