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

:root {
    --navy: #0b1f3a;
    --navy-dark: #0a1730;
    --brand: #0b1f3a;
    --teal: #18c1a3;
    --gold: #f7c948;
    --orange: #f7931e;
    --orange-gradient: linear-gradient(135deg, #f7931e 0%, #f7c948 100%);
    --slate: #5c667a;
    --muted: #98a0b6;
    --card-line: #e4e8f0;
    --surface: #f6f8fc;
    --surface-card: #ffffff;
    --text: #101828;
    --text-muted: #5c667a;
    --success: #2fbf71;
    --error: #e54848;
    --warning: #f2a33c;
    --font-display: 'Poppins', 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    --brand-gradient: linear-gradient(135deg, #0b1f3a 0%, #0e3c73 50%, #18c1a3 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 1rem;
    background: #fff;
    color: var(--brand);
    padding: 0.5rem 1rem;
    z-index: 2000;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.25);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
}

.nav-utility {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-utility .container {
    gap: 0.75rem;
}

.nav-utility a,
.nav-utility span {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-utility a:hover {
    color: var(--brand);
}

.nav-utility i {
    color: var(--teal);
    margin-right: 0.4rem;
}

.lang-toggle {
    display: none;
}

.lang-it-text {
    display: none !important;
}

@media (max-width: 767.98px) {
    .nav-utility .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-utility .d-flex.gap-4 {
        gap: 1rem !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-utility .d-flex.align-items-center.flex-wrap.gap-3 {
        width: 100%;
        justify-content: center;
        text-align: center;
        row-gap: 0.35rem;
        column-gap: 0.75rem;
    }

    .nav-utility {
        text-align: center;
        font-size: 0.82rem;
        padding: 0.45rem 0;
    }

    .nav-utility a,
    .nav-utility span {
        justify-content: center;
    }

    /* Hide on mobile for cleaner look, or stack if preferred */
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    padding: 0.85rem 0;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    border-bottom: 1px solid rgba(12, 31, 58, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 52px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #1f2937;
    margin-left: 1rem;
    position: relative;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--teal));
    transition: width 0.2s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand);
    background-color: rgba(11, 31, 58, 0.06);
    transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 24px);
}

.btn-brand {
    border-radius: 14px;
    background: var(--brand-gradient);
    color: #fff;
    font-weight: 700;
    padding: 0.65rem 1.7rem;
    box-shadow: 0 16px 30px rgba(11, 31, 58, 0.3);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-brand:hover {
    color: #fff;
    box-shadow: 0 18px 36px rgba(11, 31, 58, 0.35);
    transform: translateY(-2px) scale(1.01);
}

.navbar .navbar-toggler {
    border: none;
    outline: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(11, 31, 58, 0.12), rgba(14, 60, 115, 0.18));
    color: var(--brand);
    border: 1px solid rgba(11, 31, 58, 0.16);
    box-shadow: 0 14px 28px rgba(11, 31, 58, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(24, 193, 163, 0.35);
    background: rgba(11, 31, 58, 0.16);
}

.navbar .navbar-toggler:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 18px 36px rgba(11, 31, 58, 0.25);
}

.navbar .navbar-toggler-icon {
    width: 1.65em;
    height: 1.65em;
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' x2='100%25' y1='0%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%2300d4aa'/%3E%3Cstop offset='100%25' stop-color='%2300a7ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='url(%23g)' stroke-width='2.8' stroke-linecap='round'%3E%3Cline x1='8' y1='11' x2='28' y2='11'/%3E%3Cline x1='8' y1='18' x2='28' y2='18'/%3E%3Cline x1='8' y1='25' x2='28' y2='25'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    transition: transform 0.25s ease;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        font-size: 1rem;
    }

    .navbar-nav .nav-link::after {
        left: auto;
        right: 0;
    }

    .navbar-nav.ms-auto {
        align-items: flex-start !important;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        box-shadow: 0 18px 45px rgba(11, 31, 58, 0.18);
        padding: 0.75rem 1rem;
    }

    .navbar-nav .nav-link {
        width: 100%;
        margin-left: 0;
        border-radius: 12px;
        padding: 0.65rem 0.85rem;
    }

    .navbar-nav .nav-item.ms-lg-3 {
        width: 100%;
    }

    .navbar-nav .btn-brand {
        width: 100%;
        text-align: center;
    }
}

.hero-landing,
.hero-page {
    background: radial-gradient(circle at 20% 25%, rgba(24, 193, 163, 0.16), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(247, 201, 72, 0.12), transparent 50%),
        linear-gradient(135deg, #0b1f3a 0%, #0e3c73 60%, #0b1f3a 100%);
    color: #fff;
    padding: 7rem 0 4.25rem;
    position: relative;
    overflow: hidden;
}

.hero-landing::before,
.hero-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, 0) 0%, rgba(11, 31, 58, 0.85) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-landing.home-hero {
    padding: 7rem 0 4rem;
}

.ewaa-page .hero-landing.home-hero {
    padding: 5.5rem 0 3.75rem;
}

.hero-landing.home-hero .hero-figure img {
    height: auto;
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}

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

.hero-accent {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .6;
    pointer-events: none;
}

.hero-accent.brand {
    background: radial-gradient(circle, rgba(11, 31, 58, .72), transparent 65%);
}

.hero-accent.teal {
    background: radial-gradient(circle, rgba(24, 193, 163, .72), transparent 60%);
}

.hero-accent-1 {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    animation: floaty 12s ease-in-out infinite alternate;
}

.hero-accent-2 {
    bottom: -60px;
    left: -100px;
    width: 260px;
    height: 260px;
    animation: floaty 14s ease-in-out infinite alternate-reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.35rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 1rem;
}

.hero-meta .meta {
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-meta .meta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.12), rgba(24, 193, 163, 0.12));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-meta .meta.visible::after {
    opacity: 1;
}
.hero-figure {
    position: relative;
    max-width: 420px;
    margin-left: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    padding: 1rem;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.hero-figure img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
    transform-origin: center;
}

.hero-figure img:hover {
    transform: scale(1.015);
}
.hero-figure::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(23, 96, 245, 0.35), transparent 60%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    z-index: 0;
}

.hero-figure::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(22, 194, 163, 0.3), transparent 60%);
    border-radius: 50%;
    bottom: -40px;
    left: -40px;
    z-index: 0;
}

.hero-figure .hero-badge {
    position: absolute;
    bottom: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    background: rgba(6, 12, 31, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.65rem 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    z-index: 1;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero-badge .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00d27a;
    box-shadow: 0 0 0 6px rgba(0, 210, 122, 0.2);
}

.hero-badge small {
    color: rgba(255, 255, 255, 0.7);
}

.hero-figure::before,
.hero-figure::after {
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-landing {
        padding: 5rem 0 3.5rem;
    }

    .hero-page {
        padding-top: 5rem;
        padding-bottom: 2.8rem;
    }

    .hero-content {
        padding: 0.9rem 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    .hero-figure {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-figure img {
        height: 300px;
    }

    .hero-figure .hero-badge {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-primary,
    .btn-hero-ghost,
    .btn-gradient,
    .btn-outline-glow {
        min-height: 44px;
    }
}

@media (max-width: 575.98px) {
    .hero-landing {
        padding: 4.5rem 0 3rem;
    }

    .hero-page {
        padding-top: 4.5rem;
        padding-bottom: 2.6rem;
    }

    .hero-content {
        padding: 0.8rem 0.9rem;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .chip {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .stat-pill {
        padding: 0.75rem 1rem;
    }

    .hero-figure img {
        height: 240px;
    }

    .hero-badge {
        gap: 0.5rem;
    }
}

.stat-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    margin-bottom: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-padding {
    padding: 5rem 0;
}

.ewaa-page .section-padding {
    padding: 4.25rem 0;
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .hero-landing {
        padding: 5rem 0 3.5rem;
    }

    .hero-page {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
}

.ewaa-page #pricing {
    padding-top: 3.5rem;
    padding-bottom: 4.25rem;
}

.ewaa-page #pricing .section-heading {
    margin-bottom: 0.75rem;
}

.ewaa-page #pricing .row.mt-4 {
    margin-top: 1.5rem !important;
}

.ewaa-page .contact-stack small,
.ewaa-page .contact-stack a {
    color: #fff !important;
}

.ewaa-page .contact-stack a {
    text-decoration: none;
}

.ewaa-page .contact-stack a:hover {
    color: #cde7ff !important;
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.25;
    font-weight: 700;
}

.section-heading .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brand);
    font-size: 0.85rem;
    display: block;
}

.text-gradient {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-logos {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(6, 11, 33, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(9, 20, 38, 0.1);
    background: #f7f8fc;
    font-weight: 600;
    transition: transform 0.2s ease-in-out;
}

.logo-badge:hover {
    transform: translateY(-3px);
}

.insight-card,
.solution-card,
.capability-card,
.case-card,
.testimonial-card {
    border-radius: 24px;
    background: var(--surface-card);
    border: 1px solid var(--card-line);
    padding: 2rem;
    box-shadow: 0 24px 64px rgba(11, 31, 58, 0.08);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    --card-accent: radial-gradient(circle at 20% 20%, rgba(24, 193, 163, 0.2), transparent 60%);
}

.insight-card:hover,
.solution-card:hover,
.capability-card:hover,
.case-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 80px rgba(11, 31, 58, 0.16);
    border-color: rgba(11, 31, 58, 0.18);
}

.insight-card::before,
.solution-card::before,
.capability-card::before,
.case-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-accent);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.insight-card:hover::before,
.solution-card:hover::before,
.capability-card:hover::before,
.case-card:hover::before,
.testimonial-card:hover::before {
    opacity: 0.55;
}

.row .insight-card:nth-of-type(4n+1),
.row .solution-card:nth-of-type(4n+1),
.row .capability-card:nth-of-type(4n+1),
.row .case-card:nth-of-type(4n+1),
.row .testimonial-card:nth-of-type(4n+1) {
    --card-accent: radial-gradient(circle at 20% 20%, rgba(24, 193, 163, 0.25), transparent 60%);
}

.row .insight-card:nth-of-type(4n+2),
.row .solution-card:nth-of-type(4n+2),
.row .capability-card:nth-of-type(4n+2),
.row .case-card:nth-of-type(4n+2),
.row .testimonial-card:nth-of-type(4n+2) {
    --card-accent: radial-gradient(circle at 80% 20%, rgba(247, 201, 72, 0.22), transparent 60%);
}

.row .insight-card:nth-of-type(4n+3),
.row .solution-card:nth-of-type(4n+3),
.row .capability-card:nth-of-type(4n+3),
.row .case-card:nth-of-type(4n+3),
.row .testimonial-card:nth-of-type(4n+3) {
    --card-accent: radial-gradient(circle at 50% 80%, rgba(23, 96, 245, 0.17), transparent 65%);
}

.row .insight-card:nth-of-type(4n),
.row .solution-card:nth-of-type(4n),
.row .capability-card:nth-of-type(4n),
.row .case-card:nth-of-type(4n),
.row .testimonial-card:nth-of-type(4n) {
    --card-accent: radial-gradient(circle at 30% 80%, rgba(231, 76, 60, 0.16), transparent 65%);
}

.solution-card::before {
    background: radial-gradient(circle at 20% 20%, rgba(24, 193, 163, 0.14), transparent 50%),
        radial-gradient(circle at 80% 15%, rgba(247, 201, 72, 0.14), transparent 45%);
}

.solution-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border: 1px solid rgba(11, 31, 58, 0.08);
}

.solution-card h3,
.solution-card h4,
.solution-card h5 {
    margin-bottom: 0.35rem;
}

.solution-card p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.solution-card .badge {
    align-self: flex-start;
}

.insight-card .pill-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: var(--brand);
    font-size: 1.2rem;
}

.solution-card .icon,
.capability-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 193, 163, 0.12);
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.journey-wrap {
    background: radial-gradient(circle at 30% 20%, rgba(24, 193, 163, 0.15), transparent 55%), #0b1f3a;
    color: #fff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(5, 14, 36, 0.55);
}

.journey-step {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.journey-step::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid #050e24;
    position: absolute;
    left: -9px;
    top: 0.35rem;
}

.cta-panel {
    background: linear-gradient(145deg, #0b1f3a, #0e3c73);
    color: #fff;
    border-radius: 36px;
    padding: 3.5rem;
    box-shadow: 0 40px 100px rgba(4, 5, 30, 0.55);
}

.testimonial-card .quote-icon {
    font-size: 1.5rem;
    color: var(--brand);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.lang-en-text {
    display: block;
}

.lang-it-text {
    display: none;
    font-family: 'Source Sans 3', 'Poppins', sans-serif;
}

html.lang-it body {
    direction: ltr;
    font-family: 'Source Sans 3', 'Poppins', sans-serif;
}

html.lang-it .lang-en-text {
    display: none;
}

html.lang-it .lang-it-text {
    display: block;
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface-card);
    border: 1px solid var(--card-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(11, 31, 58, 0.08);
}

.table-modern thead {
    background: rgba(11, 31, 58, 0.04);
}

.table-modern th,
.table-modern td {
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-line);
}

.table-modern tbody tr:hover {
    background: rgba(11, 31, 58, 0.04);
}

.table-modern.compact th,
.table-modern.compact td {
    padding: 0.65rem 0.85rem;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--card-line);
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(24, 193, 163, 0.6);
    box-shadow: 0 0 0 3px rgba(24, 193, 163, 0.15);
}

.btn-ghost {
    border: 1px solid rgba(11, 31, 58, 0.16);
    color: var(--brand);
    background: #fff;
    border-radius: 12px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-ghost:hover {
    transform: translateY(-1px);
    background: rgba(11, 31, 58, 0.04);
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.12);
}

.badge-soft {
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-weight: 600;
    font-size: 0.8rem;
    background: rgba(247, 147, 30, 0.18);
    color: #fff;
}

.badge-status-success {
    background: rgba(47, 191, 113, 0.14);
    color: #177e4c;
}

.badge-status-danger {
    background: rgba(229, 72, 72, 0.14);
    color: #b03131;
}

.badge-status-warning {
    background: rgba(242, 163, 60, 0.2);
    color: #a56c1f;
}

.badge-status-info {
    background: rgba(94, 106, 210, 0.16);
    color: #4c54b4;
}

.glass-modal {
    backdrop-filter: blur(10px);
    background: rgba(11, 31, 58, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shadow-soft {
    box-shadow: 0 24px 64px rgba(11, 31, 58, 0.1);
}

.text-orange-accent {
    color: var(--orange) !important;
}

.trust-panel {
    border-radius: 20px;
    padding: 1.4rem;
    background: linear-gradient(145deg, rgba(11, 31, 58, 0.9), rgba(14, 60, 115, 0.9));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(11, 31, 58, 0.32);
}

.trust-panel .stat {
    display: grid;
    gap: 0.2rem;
}

.full-feature-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1rem;
}

.full-feature-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: #000000;
    color: #fff;
    z-index: 9999;
    pointer-events: all;
    opacity: 1;
    transition: opacity 0.6s ease;
    font-family: 'Poppins', 'Manrope', system-ui, sans-serif;
}

#preloader.preloader-finished {
    opacity: 0;
    pointer-events: none;
}

#preloader.preloader-ready .preloader-inner {
    opacity: 1;
    transform: translateY(0);
}

.preloader-inner {
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    width: min(480px, 92vw);
    max-width: 520px;
    padding: 2.6rem 2.4rem 2.4rem;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 20%, rgba(20, 40, 90, 0.35), transparent 46%), rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.preloader-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'Poppins', 'Manrope', system-ui, sans-serif;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.preloader-underline {
    width: 150px;
    padding-top: 0.65rem;
    border-top: 2px solid #ff8a00;
    margin: 0.5rem auto 1rem;
    border-radius: 999px;
}

.preloader-credit {
    margin: 0 0 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.preloader-bar-wrap {
    width: calc(100% - 2.5rem);
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    margin: 0 auto 0.25rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.preloader-bar {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00c28b, #00a7ff);
    transition: width 0.25s linear;
    box-shadow: 0 0 18px rgba(0, 167, 255, 0.3);
}

.preloader-meta {
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.preloader-status {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.14);
    border: 1px solid rgba(255, 138, 0, 0.45);
    color: #ffae4a;
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.25);
}

.preloader-timer {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 700;
    color: #e5f5ff;
    border-radius: 12px;
    padding: 0.2rem 0.55rem;
}

.preloader-timer-value {
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(90deg, #00c28b, #00a7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    #preloader,
    #preloader * {
        transition: none !important;
        animation: none !important;
    }
}
.full-version-card {
    background: linear-gradient(150deg, #0b1f3a 0%, #0e3c73 45%, #071225 100%);
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff;
    box-shadow: 0 35px 80px rgba(5, 14, 36, 0.6);
    position: relative;
    overflow: hidden;
}

.full-version-card::before,
.full-version-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
}

.full-version-card::before {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -140px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.32), transparent 65%);
}

.full-version-card::after {
    width: 260px;
    height: 260px;
    bottom: -150px;
    left: -110px;
    background: radial-gradient(circle, rgba(24, 193, 163, 0.35), transparent 60%);
}

.full-version-card .badge {
    background: rgba(47, 191, 113, 0.25) !important;
    border: 1px solid rgba(47, 191, 113, 0.35);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.full-version-card h4,
.full-version-card h6 {
    color: #fff;
}

.full-version-card p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.full-version-card .icon {
    min-width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7931e, #f7c948);
    color: #0b1f3a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 14px 32px rgba(247, 147, 30, 0.35);
}

.full-feature-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1rem;
}

.full-feature-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@keyframes floaty {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(18px) scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-accent-1,
    .hero-accent-2,
    .hero-figure img,
    .demo-card,
    .journey-wrap,
    .action-card,
    .solution-card,
    .capability-card {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .fade-in-section {
        opacity: 1 !important;
        transform: none !important;
    }
}
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.demo-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 1.6rem;
    background: linear-gradient(150deg, rgba(11, 31, 58, 0.95), rgba(14, 60, 115, 0.9));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(11, 31, 58, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.demo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(24, 193, 163, 0.18), transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(247, 201, 72, 0.18), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
}

.demo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(11, 31, 58, 0.45);
}

.demo-card h4 {
    margin-bottom: 0.4rem;
}

.demo-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.9rem;
}

.full-version-card .d-flex.align-items-center.justify-content-between.mb-3 {
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.full-version-card .play-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(255, 138, 0, 0.2), rgba(255, 138, 0, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 42px rgba(255, 138, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    color: #ffba55;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.play-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(247, 147, 30, 0.16);
    border: 1px solid rgba(247, 147, 30, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
}

.roi-card {
    border-radius: 20px;
    background: linear-gradient(145deg, #0b1f3a, #0e3c73);
    color: #fff;
    padding: 1.6rem;
    box-shadow: 0 26px 70px rgba(11, 31, 58, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-card h4 {
    margin-bottom: 0.75rem;
}

.roi-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.roi-card .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.roi-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.roi-result {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-cta-bar {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1024px, 94%);
    background: rgba(11, 31, 58, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(11, 31, 58, 0.35);
    padding: 0.7rem 1rem;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    backdrop-filter: blur(12px);
}

.sticky-cta-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.sticky-cta-bar .btn {
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .sticky-cta-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* Footer */
.site-footer-main {
    background: linear-gradient(145deg, #0b1f3a, #0e3c73);
    color: #e8edf5;
    padding: 4.5rem 0 2.5rem 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.site-footer-main h5 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(232, 237, 245, 0.82);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.15s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    margin-top: 2rem;
    color: rgba(232, 237, 245, 0.7);
}

.site-footer-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(24, 193, 163, 0.18), transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(247, 201, 72, 0.16), transparent 45%);
    pointer-events: none;
    opacity: 0.8;
}

.site-footer-main img.footer-logo,
.site-footer-main img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.site-footer-main .d-flex.gap-3 a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.15s ease, background 0.15s ease;
}

.site-footer-main .d-flex.gap-3 a:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(247, 201, 72, 0.16);
    color: var(--gold);
}

/* Page-specific hero adjustments */
.hero-page .stat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-page .stat-card {
    flex: 1 1 220px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
}

.btn-gradient {
    background: linear-gradient(135deg, #ffffff, #dbeafe);
    color: #0f172a;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    padding: .9rem 2.2rem;
    box-shadow: 0 20px 45px rgba(15, 76, 167, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(15, 76, 167, 0.35);
}

.btn-outline-glow {
    border-radius: 999px;
    padding: .9rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-glow:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-hero-primary {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 0.85rem 1.6rem;
    font-weight: 700;
    box-shadow: 0 22px 50px rgba(11, 31, 58, 0.35);
}

.btn-hero-primary:hover {
    box-shadow: 0 26px 55px rgba(11, 31, 58, 0.45);
    transform: translateY(-1px);
    color: #fff;
}

.btn-hero-ghost {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 0.82rem 1.5rem;
    font-weight: 600;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: .9rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-collapse {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Buttons & hover interactions */
.btn,
.navbar .btn-brand {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.btn-brand {
    position: relative;
    overflow: hidden;
}

.btn-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(23, 96, 245, 0.25);
    opacity: 0;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.btn-brand:hover::after {
    box-shadow: 0 0 0 18px rgba(23, 96, 245, 0.12);
    opacity: 1;
}

.navbar-collapse.collapse.show {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(9, 16, 40, 0.08);
    border-radius: 18px;
    padding: 1rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse.collapse.show {
        margin-top: 0.75rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.quick-actions {
    margin-top: -1rem;
}

.action-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    background: #fff;
    box-shadow: 0 12px 32px rgba(9, 16, 40, 0.08);
    display: flex;
    gap: 0.9rem;
    align-items: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    animation: action-fade 0.6s ease both;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(9, 16, 40, 0.12);
}

.action-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eef3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.2rem;
}

.action-card p {
    margin: 0;
    color: #4b5563;
}

.quick-actions .col-md-4:nth-child(2) .action-card {
    animation-delay: 0.08s;
}

.quick-actions .col-md-4:nth-child(3) .action-card {
    animation-delay: 0.16s;
}

@keyframes action-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
