* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    background: #0b1120;
    color: #111827;
    overflow-x: hidden;
}

/* ====== GLOBAL LAYOUT WRAPPER ====== */
.page-shell {
    min-height: 100vh;
    background: radial-gradient(
            circle at top left,
            rgba(148, 183, 239, 0.782),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(215, 245, 242, 0.793),
            transparent 55%
        ),
        #020617;
    padding: 40px 16px 80px;
}

.card-shell {
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.7) inset;
    overflow: hidden;
}

.divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(148, 163, 184, 0) 0%,
        rgba(148, 163, 184, 0.6) 50%,
        rgba(148, 163, 184, 0) 100%
    );
    margin: 0 32px;
}

/* ====== HERO NEW LAYOUT ====== */
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 40px;
    padding: 40px 32px 48px;
    align-items: center;
    background: radial-gradient(
        circle at top left,
        rgba(59, 130, 246, 0.24),
        transparent 55%
    );
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, #60a5fa 0, #1d4ed8 45%, #020617 100%);
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.9);
}

.hero-title {
    margin-top: 18px;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #e5e7eb;
}

.hero-title span {
    background: linear-gradient(120deg, #38bdf8, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    margin-top: 18px;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.8;
    max-width: 540px;
}

.hero-metrics {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.metric-pill {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 10px 14px;
    border-radius: 18px;
    background: radial-gradient(
        circle at top left,
        rgba(37, 99, 235, 0.3),
        rgba(15, 23, 42, 0.9)
    );
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
}

.metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ca3af;
}

.metric-value {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
}

.hero-cta-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-main {
    padding: 11px 26px;
    border-radius: 999px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    color: #eff6ff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-main::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 0 0,
        rgba(255, 255, 255, 0.28),
        transparent 60%
    );
    opacity: 0;
    transform: translate3d(-30%, 0, 0);
    transition: opacity 0.4s ease, transform 0.55s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.6);
}

.btn-main:hover::after {
    opacity: 1;
    transform: translate3d(40%, 0, 0);
}

.btn-ghost {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease,
        transform 0.18s ease;
}

.btn-ghost span {
    font-size: 16px;
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 1);
    border-color: #60a5fa;
    transform: translateY(-1px);
}

/* HERO SIDE PANEL */
.hero-panel {
    position: relative;
    padding: 20px;
}

.panel-card {
    border-radius: 24px;
    background: radial-gradient(circle at top, #1d4ed8, #020617 55%);
    border: 1px solid rgba(191, 219, 254, 0.35);
    padding: 22px 22px 18px;
    color: #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9) inset;
}

.panel-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #bfdbfe;
    opacity: 0.9;
}

.panel-main {
    margin-top: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}

.panel-logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: conic-gradient(
        from 200deg,
        rgba(56, 189, 248, 0.8),
        rgba(129, 140, 248, 0.9),
        rgba(59, 130, 246, 1),
        rgba(56, 189, 248, 0.8)
    );
    padding: 2px;
}

.panel-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 20%, #1f2937, #020617 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: #e5e7eb;
}

.panel-title {
    font-size: 18px;
    font-weight: 700;
}

.panel-sub {
    margin-top: 4px;
    font-size: 12px;
    color: #cbd5f5;
}

.panel-stats {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.panel-stat {
    flex: 1 1 120px;
    min-width: 120px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.panel-stat-label {
    font-size: 11px;
    color: #9ca3af;
}

.panel-stat-value {
    margin-top: 3px;
    font-size: 17px;
    font-weight: 600;
    color: #e5e7eb;
}

.panel-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.panel-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.7);
    color: #e5e7eb;
    font-size: 11px;
}

.panel-orbit {
    position: absolute;
    inset: -16px;
    border-radius: 28px;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    pointer-events: none;
    opacity: 0.55;
}

/* ====== SERVICES STRIP NEW ====== */
.services-band {
    padding: 28px 32px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 32px;
    background: linear-gradient(
        180deg,
        #e7eaf6 0,
        #8592dfbe 40%,
        #4f5cabc2 70%,
        #0b207d 100%
    );
}

.band-heading {
    color: #e5e7eb;
}

.band-heading h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0c0d0d;
}

.band-heading p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #4e4549df;
    max-width: 360px;
    line-height: 1.7;
}

.services-chip-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-chip {
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: #cbd5f5;
    font-size: 11px;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}

.band-card {
    border-radius: 16px;
    background: radial-gradient(
        circle at top,
        rgba(30, 64, 175, 0.78),
        rgba(15, 23, 42, 0.98)
    );
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: 14px 14px 12px;
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.band-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0;
    background: radial-gradient(
        circle at 0 0,
        rgba(255, 255, 255, 0.24),
        transparent 55%
    );
    transition: opacity 0.4s ease, transform 0.55s ease;
    transform: translate3d(-40%, 0, 0);
}

.band-card:hover::after {
    opacity: 1;
    transform: translate3d(20%, 0, 0);
}

.band-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.band-title {
    font-size: 13px;
    font-weight: 600;
}

.band-text {
    margin-top: 4px;
    font-size: 11px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* ====== CONTENT SECTIONS (STACKED) ====== */
.content-stack {
    padding: 36px 32px 40px;
    background: linear-gradient(
        180deg,
        #17161617 0,
        #0e1850d0 40%,
        #3a4cc38a 70%,
        #0b207d 100%
    );
}

.content-item {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(31, 41, 55, 1);
}

.content-item:first-child {
    border-top: none;
}

.content-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
}

.content-title {
    font-size: 19px;
    font-weight: 700;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-title span.icon {
    font-size: 18px;
}

.content-text {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.9;
    text-align: justify;
}

.content-highlight {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px dashed rgba(148, 163, 184, 0.5);
    font-size: 12px;
    color: #e5e7eb;
}

/* ====== CLIENTS CAROUSEL NEW STRIP ====== */
.clients-shell {
    padding: 34px 32px 40px;
    background: radial-gradient(
        circle at top,
        rgba(15, 23, 42, 1),
        #020617 60%
    );
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.clients-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #e5e7eb;
}

.clients-header p {
    font-size: 12px;
    color: #9ca3af;
    max-width: 360px;
}

.clients-carousel {
    margin-top: 20px;
    border-radius: 18px;
    background: #020617;
    border: 1px solid rgba(31, 41, 55, 1);
    padding: 18px 16px 20px;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-slide {
    min-width: calc(100% / 3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at top,
        rgba(30, 64, 175, 0.7),
        rgba(15, 23, 42, 1)
    );
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.carousel-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease,
        border-color 0.18s ease;
}

.carousel-btn:hover {
    background: #0b1120;
    border-color: #60a5fa;
    transform: translateY(-1px);
}

.carousel-dots {
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #4b5563;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
    background: #60a5fa;
    transform: scale(1.35);
}

.carousel-meta {
    font-size: 11px;
    color: #9ca3af;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-panel {
        padding-top: 0;
    }
    .content-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .card-shell {
        border-radius: 18px;
    }
    .hero-grid,
    .services-band,
    .content-stack,
    .clients-shell {
        padding: 24px 18px 26px;
    }
    .divider {
        margin: 0 18px;
    }
    .services-band {
        grid-template-columns: 1fr;
    }
    .band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .content-stack {
        padding-top: 20px;
    }
    .clients-shell {
        padding-top: 24px;
    }
    .carousel-slide {
        min-width: 50%;
    }
}

@media (max-width: 480px) {
    .page-shell {
        padding: 20px 12px 32px;
    }
    .hero-title {
        font-size: 24px;
    }
    .hero-text {
        font-size: 13px;
    }
    .metric-pill {
        padding: 8px 10px;
    }
    .services-band {
        padding-top: 18px;
    }
    .band-grid {
        grid-template-columns: 1fr;
    }
    .content-text {
        font-size: 13px;
        text-align: left;
    }
    .clients-header h2 {
        font-size: 18px;
    }
    .carousel-slide img {
        height: 120px;
    }
    .carousel-slide {
        min-width: 100%;
    }
}
