* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #050b18;
    color: #ffffff;
    line-height: 1.6;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    background: rgba(5,11,24,0.92);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand img {
    height: 110px;
}

nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

nav a {
    opacity: 0.9;
    transition: 0.2s;
}

nav a:hover {
    opacity: 1;
    color: #71a7ff;
}

.btn-small {
    background: #2d6cff;
    padding: 10px 18px;
    border-radius: 10px;
}

.hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;

    align-items: center;

    padding: 80px 60px;

    background:
        radial-gradient(circle at top right,
        rgba(60,120,255,0.35),
        transparent 35%);
}

.eyebrow {
    color: #71a7ff;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 800px;
}

.lead {
    font-size: 22px;
    opacity: 0.85;
    max-width: 700px;
}

.buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: bold;
}

.btn-primary {
    background: #2d6cff;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-card {
    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 40px;

    backdrop-filter: blur(12px);

    box-shadow:
      0 0 40px rgba(0,0,0,0.3);
}

.hero-card h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.modules {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.modules span {
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 12px;
}

.section {
    padding: 100px 60px;
}

.section h2 {
    font-size: 44px;
    margin-bottom: 50px;
}

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

.card {
    background: rgba(255,255,255,0.04);

    border-radius: 22px;

    padding: 36px;

    border: 1px solid rgba(255,255,255,0.06);
}

.card h3 {
    margin-bottom: 18px;
    font-size: 28px;
}

.light {
    background: #0d1527;
}

footer {
    padding: 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
    opacity: 0.7;
}

@media(max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 46px;
    }

    .topbar {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.spartacus-logo {
    display: block;
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    margin: 0 auto 25px auto;
}
.solutions-section {
    background:
        radial-gradient(circle at top left, rgba(45,108,255,0.18), transparent 35%),
        #070f20;
}

.solutions-section > h2 {
    max-width: 900px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.solution-card {
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;

    padding: 36px;
    min-height: 430px;

    box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.solution-card.featured {
    background:
        linear-gradient(145deg, rgba(45,108,255,0.24), rgba(255,255,255,0.055));
}

.solution-icon {
    font-size: 42px;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
}

.solution-card p {
    opacity: 0.82;
    margin-bottom: 24px;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.solution-card li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.solution-card li::before {
    content: "✓";
    color: #71a7ff;
    margin-right: 10px;
}

.solution-link {
    display: inline-block;
    margin-top: auto;

    color: #ffffff;
    background: rgba(45,108,255,0.9);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: bold;
}

.solution-link:hover {
    background: #71a7ff;
    color: #050b18;
}

@media(max-width: 1000px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}
.hero > * {
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.55;
    z-index: 0;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    background: #2d6cff;
    top: 80px;
    right: 120px;
}

.hero-glow-two {
    width: 320px;
    height: 320px;
    background: #71a7ff;
    bottom: 80px;
    left: 40%;
    opacity: 0.22;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 60% 35%, black, transparent 62%);
}

.spartacus-hero {
    background:
        radial-gradient(circle at top right,
        rgba(0,180,255,0.35),
        transparent 30%),
        radial-gradient(circle at bottom left,
        rgba(45,108,255,0.28),
        transparent 30%),
        #040816;
}

.top-spartacus-logo {
    height: 72px;
    width: auto;
}

.spartacus-hero .hero-card {
    background:
        linear-gradient(
            145deg,
            rgba(0,180,255,0.18),
            rgba(255,255,255,0.05)
        );

    border: 1px solid rgba(0,180,255,0.24);

    box-shadow:
        0 0 50px rgba(0,180,255,0.12);
}

.spartacus-modules-section {
    background: #020617;
}

.spartacus-modules-section .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
}

.spartacus-modules-section .solution-card {
    background: linear-gradient(180deg, rgba(0,180,255,0.14), rgba(255,255,255,0.04));
    border: 1px solid rgba(0,180,255,0.22);
}

.spartacus-modules-section .solution-icon {
    font-size: 54px;
}

.spartacus-modules-section {
    background: #001b2e !important;
    border-top: 1px solid rgba(0,180,255,0.35);
}

.spartacus-modules-section h2 {
    color: #dff7ff;
}

.spartacus-modules-section .solution-card {
    background: #06243a !important;
    border: 1px solid #00b4ff !important;
}

body {
    border-top: 12px solid red !important;
}

