* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #080b10;
    color: #f5f7fa;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #0d1118;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 22px;
    box-shadow: 18px 0 50px rgba(0, 0, 0, 0.35);
    z-index: 20;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #f5c542;
    letter-spacing: 4px;
}

.logo h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    line-height: 1;
}

.logo p {
    margin-top: 8px;
    color: #8b95a5;
    font-size: 13px;
}

.sidebar nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar nav a {
    color: #aab4c3;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: 0.2s ease;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background: rgba(245, 197, 66, 0.12);
    color: #f5c542;
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
    padding: 32px;
    background:

    radial-gradient(circle at top right,
    rgba(84,214,255,.12),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(245,197,66,.10),
    transparent 40%),

    linear-gradient(
        rgba(255,255,255,.02) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.02) 1px,
        transparent 1px
    ),

    #080b10;

background-size:
    auto,
    auto,
    45px 45px,
    45px 45px,
    auto;
}

.disclaimer {
    display: flex;
    gap: 16px;
    background: linear-gradient(
        135deg,
        rgba(245, 197, 66, 0.12),
        rgba(84, 214, 255, 0.06)
    );
    border: 1px solid rgba(245, 197, 66, 0.28);
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 28px;
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.disclaimer i {
    color: #f5c542;
    font-size: 22px;
    margin-top: 3px;
}

.disclaimer h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.disclaimer p {
    color: #c8d0dc;
    font-size: 14px;
    line-height: 1.6;
}

.hero {
    min-height: 360px;
    border-radius: 28px;
    padding: 56px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(18, 24, 34, 0.96), rgba(10, 14, 22, 0.96)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 42px,
            rgba(255, 255, 255, 0.025) 43px
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-text span {
    color: #f5c542;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 700;
}

.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 88px;
    line-height: 0.95;
    margin-top: 12px;
}

.hero-text h2 {
    color: #54d6ff;
    font-size: 24px;
    margin-top: 18px;
}

.hero-text p {
    max-width: 820px;
    color: #c8d0dc;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 24px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(2, 470px);
    justify-content:center;
    gap:28px;
    margin:40px auto 0;
}

.card {
    min-height: 210px;
    background: linear-gradient(
        145deg,
        rgba(22, 29, 41, 0.96),
        rgba(13, 17, 24, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 28px;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
     cursor: pointer;
}

.card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -55px;

    top: -55px;

    background:

        radial-gradient(
            circle,
            rgba(84,214,255,.18),
            rgba(84,214,255,.08),
            transparent 70%
        );

    border-radius: 50%;

    transition: .35s ease;

}

.card:hover::before {

    transform: scale(1.15);

    background:

        radial-gradient(
            circle,
            rgba(245,197,66,.20),
            rgba(245,197,66,.08),
            transparent 72%
        );

}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 66, 0.58);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.48),
        0 0 36px rgba(245, 197, 66, 0.13),
        0 0 80px rgba(84, 214, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.card p {
    color: #aab4c3;
    line-height: 1.7;
    font-size: 15px;
}

/* Mobile / Tablet */
@media (max-width: 950px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .sidebar nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content {
        margin-left: 0;
        padding: 20px;
    }

    .hero {
        padding: 36px 28px;
    }

    .hero-text h1 {
        font-size: 58px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Enter Screen
========================== */

.enter-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background:
        radial-gradient(circle at top right, rgba(84, 214, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom left, rgba(245, 197, 66, 0.16), transparent 35%),
        #080b10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.enter-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.enter-panel {
    width: min(720px, 100%);
    text-align: center;
    background: rgba(13, 17, 24, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 56px 44px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.sbx-mark {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(245, 197, 66, 0.12);
    border: 1px solid rgba(245, 197, 66, 0.35);
    color: #f5c542;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
}

.system-label {
    color: #54d6ff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 700;
}

.enter-panel h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(56px, 9vw, 96px);
    line-height: 1;
    margin: 18px 0;
}

.enter-description {
    max-width: 620px;
    margin: 0 auto 34px;
    color: #c8d0dc;
    font-size: 17px;
    line-height: 1.8;
}

#enterBtn {
    border: none;
    cursor: pointer;
    padding: 16px 24px;
    border-radius: 16px;
    background: #f5c542;
    color: #080b10;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.25s ease;
}

#enterBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(245, 197, 66, 0.25);
}

.fiction-note {
    margin-top: 24px;
    color: #8b95a5;
    font-size: 13px;
}

/* =========================
   Startup Sequence
========================== */

.startup-sequence {
    display: none;
    margin: 28px auto 0;
    max-width: 420px;
}

.startup-sequence.active {
    display: block;
}

.startup-sequence p {
    color: #54d6ff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.loading-bar {
    height: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loading-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: #f5c542;
    border-radius: 999px;
    transition: width 0.5s ease;
}

#enterBtn.loading {
    opacity: 0.5;
    pointer-events: none;
}

.main-content::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    background:

        radial-gradient(circle,
        rgba(84,214,255,.08) 2px,
        transparent 3px),

        radial-gradient(circle,
        rgba(245,197,66,.06) 2px,
        transparent 3px);

    background-size:
        220px 220px,
        340px 340px;

    opacity: .35;

}

/* =========================
   Hero Stats
========================== */

.hero-stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 16px;
    max-width: 760px;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    color: #f5c542;
    line-height: 1;
}

.hero-stats small {
    display: block;
    margin-top: 8px;
    color: #aab4c3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bug-note {
    margin-top: 10px !important;
    color: #8b95a5 !important;
    font-size: 12px !important;
}

@media (max-width: 700px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   Sidebar Status Panel
========================== */

.status-panel {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(245, 197, 66, 0.22);
    border-radius: 18px;
    padding: 18px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.status-panel h4 {
    color: #f5c542;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c8d0dc;
    font-size: 13px;
    margin-bottom: 16px;
}

.status-online span {
    width: 9px;
    height: 9px;
    background: #51e68a;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(81, 230, 138, 0.75);
}

.status-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.status-row p {
    color: #8b95a5;
    font-size: 12px;
}

.status-row strong {
    color: #f5f7fa;
    font-size: 12px;
    font-weight: 600;
}

/* Prevent status panel from crowding the mobile sidebar */
@media (max-width: 950px) {
    .status-panel {
        position: static;
        margin-top: 24px;
    }
}

/* =========================
   Top Bar
========================== */

.top-bar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 24px;

}

.build-version {

    color: #8b95a5;

    letter-spacing: 2px;

    font-size: 12px;

    text-transform: uppercase;

}

.live-clock {

    text-align: right;

}

#currentDay {

    color: #8b95a5;

    font-size: 13px;

}

#currentTime {

    font-size: 26px;

    font-family: 'Oswald', sans-serif;

    color: #54d6ff;

    letter-spacing: 1px;

}

/* =========================
   Module Card Icons
========================== */

.module-number {
    display: inline-block;
    color: #f5c542;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.card-icon {
    position: absolute;
    right: 24px;
    bottom: 18px;
    font-size: 78px;
    color: rgba(84, 214, 255, 0.09);
    transition: 0.25s ease;
}

.card:hover .card-icon {

    color: rgba(245,197,66,.22);

    transform:
        scale(1.12)
        rotate(-5deg);

    filter: drop-shadow(0 0 12px rgba(245,197,66,.25));

}

/* =========================
   Launch Module
========================== */

.launch-module {

    position: absolute;

    left: 28px;

    bottom: 26px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #54d6ff;

    font-size: 14px;

    font-weight: 600;

    transition: .25s ease;

}

.launch-module i {

    transition: .25s ease;

}

.card:hover .launch-module i {

    transform: translateX(8px);

}

.card:hover .launch-module {

    letter-spacing: .5px;

}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(245, 197, 66, 0.10),
        transparent 35%,
        rgba(84, 214, 255, 0.06)
    );
    opacity: 0;
    transition: 0.25s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

.card:active {

    transform: translateY(-2px) scale(.985);

    transition: .08s ease;

}

.card-link {

    text-decoration: none;

    color: inherit;

    display: block;

}

/* =========================
   Executive Workstation Layout
========================== */

.workspace-header,
.client-card,
.brief-panel,
.skills-panel,
.dashboard-preview,
.kpi-card {
    background: linear-gradient(
        145deg,
        rgba(22, 29, 41, 0.96),
        rgba(13, 17, 24, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.workspace-header {
    padding: 32px;
    margin: 28px 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.breadcrumb {
    color: #8b95a5;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.workspace-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 58px;
    line-height: 1;
}

.workspace-quote {
    color: #54d6ff;
    margin-top: 12px;
    font-size: 18px;
}

.workspace-status {
    color: #51e68a;
    border: 1px solid rgba(81, 230, 138, 0.35);
    background: rgba(81, 230, 138, 0.08);
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

.client-card,
.brief-panel,
.skills-panel,
.dashboard-preview {
    padding: 28px;
    margin-bottom: 22px;
}

.client-card h3,
.brief-panel h3,
.skills-panel h3,
.dashboard-preview h3 {
    color: #f5c542;
    margin-bottom: 18px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-row span {
    color: #8b95a5;
}

.info-row strong {
    text-align: right;
}

.priority-high {
    color: #ff6b6b;
}

.brief-panel p {
    color: #c8d0dc;
    line-height: 1.8;
    margin-bottom: 24px;
}

.skill-badges{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:24px;
}

.skill-badges span{

    padding:12px 18px;

    border-radius:999px;

    background:rgba(245,197,66,.08);

    border:1px solid rgba(245,197,66,.28);

    color:#f5c542;

    font-size:14px;

    font-weight:600;

    transition:.25s;
}

.skill-badges span:hover{

    transform:translateY(-2px);

    background:rgba(245,197,66,.16);

    border-color:#f5c542;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.kpi-card {
    padding: 22px;
}

.kpi-card span {
    color: #8b95a5;
    font-size: 13px;
}

.kpi-card strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    margin: 10px 0;
    color: #f5c542;
}

.kpi-card p {
    color: #c8d0dc;
    font-size: 13px;
}

@media (max-width: 950px) {
    .client-grid,
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .workspace-header {
        flex-direction: column;
    }
}

/* =========================
   Executive Dashboard Details
========================== */

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.section-title h3 {
    margin-bottom: 0;
    font-size: 28px;
}

.kpi-card {
    position: relative;
    overflow: hidden;
}

.kpi-card i {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: rgba(84, 214, 255, 0.16);
}

.positive {
    color: #51e68a !important;
}

.warning {
    color: #f5c542 !important;
}

.dashboard-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
}

.chart-panel {
    background: linear-gradient(
        145deg,
        rgba(22, 29, 41, 0.96),
        rgba(13, 17, 24, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 24px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.large-panel {
    grid-row: span 2;
}

.chart-panel h4 {
    color: #f5f7fa;
    margin-bottom: 20px;
    font-size: 18px;
}

.bar-chart {
    height: 320px;
    display: flex;
    align-items: end;
    gap: 16px;
    padding-top: 20px;
}

.bar-chart div {
    flex: 1;
    min-height: 40px;
    background: linear-gradient(
        180deg,
        rgba(245, 197, 66, 0.95),
        rgba(245, 197, 66, 0.22)
    );
    border-radius: 12px 12px 4px 4px;
    position: relative;
    transition: 0.25s ease;
}

.bar-chart div:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 24px rgba(245, 197, 66, 0.22);
}

.bar-chart span {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: #8b95a5;
    font-size: 12px;
}

.insight-list,
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.insight-list p,
.activity-feed p {
    color: #c8d0dc;
    line-height: 1.6;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.insight-list strong,
.activity-feed strong {
    color: #f5c542;
}

@media (max-width: 950px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .large-panel {
        grid-row: auto;
    }
}

/* =========================
   Enterprise Section Labels
========================== */

.client-card h3,
.brief-panel h3,
.skills-panel h3,
.dashboard-preview h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #f5c542;
}

.workspace-header h1 {
    letter-spacing: 1px;
}

.info-row span {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
}

.kpi-card small {
    display: block;
    color: #8b95a5;
    font-size: 12px;
    margin-top: 8px;
}

.kpi-card:hover {
    border-color: rgba(245, 197, 66, 0.45);
    transform: translateY(-4px);
    transition: 0.25s ease;
}

/* =========================
   Revenue Line Chart
========================== */

.line-chart {
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.line-chart svg {
    width: 100%;
    height: 280px;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 100% 52px, 75px 100%;
    border-radius: 18px;
    padding: 10px;
}

.line-chart circle {
    fill: #080b10;
    stroke: #f5c542;
    stroke-width: 4;
    transition: 0.25s ease;
}

.line-chart circle:hover {
    r: 9;
    fill: #f5c542;
    filter: drop-shadow(0 0 10px rgba(245,197,66,.7));
}

.chart-months {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    color: #8b95a5;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}

/* =========================
   Executive Alerts
========================== */

.alerts-panel {

    margin-top: 28px;

}

.alerts-panel h4 {

    margin-bottom: 18px;

}

.alert {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    border-radius: 14px;

    margin-bottom: 12px;

    font-size: 14px;

    transition: .25s ease;

}

.alert:hover {

    transform: translateX(6px);

}

.alert.success {

    background: rgba(81,230,138,.10);

    color: #7df0aa;

}

.alert.warning {

    background: rgba(245,197,66,.10);

    color: #f5c542;

}

.alert.danger {

    background: rgba(255,95,95,.10);

    color: #ff8c8c;

}

.alert i {

    width: 18px;

    text-align: center;

}

/* =========================
   Behind the Solution
========================== */

.behind-solution {
    background: linear-gradient(
        145deg,
        rgba(22, 29, 41, 0.96),
        rgba(13, 17, 24, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 32px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.behind-solution h3 {
    color: #f5c542;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 22px;
}

.behind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.behind-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 22px;
}

.behind-card h4 {
    color: #54d6ff;
    margin-bottom: 14px;
}

.behind-card ul {
    list-style: none;
}

.behind-card li {
    color: #c8d0dc;
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.behind-card li::before {
    content: "✓";
    color: #f5c542;
    margin-right: 10px;
}

@media (max-width: 950px) {
    .behind-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Problem / Solution Comparison
========================== */

.comparison-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 22px;
}

.comparison-panel {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(22, 29, 41, 0.96),
        rgba(13, 17, 24, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.problem-panel {
    background:
        linear-gradient(
    90deg,
    rgba(8, 10, 14, 0.99) 0%,
    rgba(8, 10, 14, 0.97) 40%,
    rgba(8, 10, 14, 0.88) 68%,
    rgba(8, 10, 14, 0.70) 100%
),
        url("../assets/images/messy-spreadsheets.png");

    background-size: cover;
    background-position: center right;
    border-color: rgba(255, 95, 95, 0.35);
}

.solution-panel {
    background:
        linear-gradient(
    90deg,
    rgba(8, 10, 14, 0.99) 0%,
    rgba(8, 10, 14, 0.97) 40%,
    rgba(8, 10, 14, 0.88) 68%,
    rgba(8, 10, 14, 0.70) 100%
),
        url("../assets/images/dashboard-preview.png");

    background-size: cover;
    background-position: center right;
    border-color: rgba(81, 230, 138, 0.35);
}

.problem-panel::after,
.solution-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    opacity: 0.12;
}

.problem-panel::after {
    background: #ff5f5f;
}

.solution-panel::after {
    background: #51e68a;
}

.comparison-label,
.comparison-panel h3,
.comparison-panel p,
.comparison-panel ul {
    position: relative;
    z-index: 1;
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.problem-panel .comparison-label,
.problem-panel li i {
    color: #ff6b6b;
}

.solution-panel .comparison-label,
.solution-panel li i {
    color: #51e68a;
}

.comparison-panel h3 {
    color: #f5f7fa;
    font-size: 26px;
    margin-bottom: 12px;
}

.comparison-panel p {
    color: #c8d0dc;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 20px;
}

.comparison-panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.comparison-panel li {
    color: #d8deea;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.comparison-arrow {
    width: 58px;
    height: 58px;
    align-self: center;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #f5c542;
    background: #0d1118;
    border: 1px solid rgba(245, 197, 66, 0.45);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
    z-index: 2;
}

.comparison-arrow i {
    font-size: 24px;
}

@media (max-width: 1050px) {
    .comparison-section {
        grid-template-columns: 1fr;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
}

/*==============================

Business Request

===============================*/

.business-request{

    background:#121823;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:36px;

    margin-bottom:45px;

}

.business-request h2{

    font-size:34px;

    margin:14px 0;

}

.business-request p{

    color:#c3cad6;

    line-height:1.8;

    max-width:900px;

}

/*==============================

Raw Sales Export

===============================*/

.raw-export{

    background:#121823;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

    margin-bottom:45px;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.section-header span{

    color:#54d6ff;

    font-size:14px;

    letter-spacing:1px;

}

.sales-table{

    width:100%;

    border-collapse:collapse;

    font-size:14px;

}

.sales-table th{

    text-align:left;

    padding:14px;

    background:#1a2332;

    color:#f5c542;

}

.sales-table td{

    padding:14px;

    border-bottom:1px solid rgba(255,255,255,.05);

    color:#c8d0db;

}

.sales-table tr:hover{

    background:rgba(255,255,255,.03);

}

/*==============================
  Sales Investigation
===============================*/

.sales-investigation {
    border-color: rgba(84, 214, 255, 0.25);
    background:
        linear-gradient(
            145deg,
            rgba(22, 29, 41, 0.96),
            rgba(10, 14, 22, 0.96)
        );
    position: relative;
    overflow: hidden;
}

.sales-investigation::after {
    content: "INVESTIGATION";
    position: absolute;
    right: 5px;
    bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    letter-spacing: 4px;
    color: rgba(84, 214, 255, 0.045);
}

.sales-investigation h2 {
    color: #f5f7fa;
}

.sales-investigation strong {
    color: #f5c542;
}

/*====================================================

SALES ANALYTICS HEADER

====================================================*/

.analytics-header{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;

    margin:35px 0 45px;

}

.analytics-title{

    flex:1;

}

.analytics-title h1{

    font-size:64px;
    margin:8px 0;

}

.analytics-tagline{

    color:#54d6ff;
    font-size:22px;
    margin-bottom:25px;

}

.analytics-skills{

    display:flex;
    gap:12px;
    flex-wrap:wrap;

}

.analytics-skills span{

    padding:8px 18px;
    border-radius:30px;

    background:#171d29;

    border:1px solid rgba(255,255,255,.08);

    color:#d6dde8;

    font-size:13px;

}

.case-file{

    width:280px;

    background:#121823;

    border:1px solid rgba(84,214,255,.20);

    border-radius:18px;

    padding:24px;

}

.case-file h3{

    margin:12px 0 18px;

}

.case-row{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    padding:12px 0;

    border-top:1px solid rgba(255,255,255,.06);

    gap:18px;

}

.case-row strong{

    color:#54d6ff;

    text-align:right;

    max-width:150px;

    line-height:1.4;

}

.case-row span{

    color:#9aa6b6;

    font-size:11px;

    letter-spacing:1.5px;

    text-transform:uppercase;

}

.status-active{

    color:#52e689;

    font-weight:700;

    letter-spacing:1px;

}

.case-person{

    text-align:right;

}

.case-person strong{

    display:block;

    color:#ffffff;

}

.case-person small{

    display:block;

    margin-top:4px;

    color:#8f9bab;

    font-size:12px;

    letter-spacing:.3px;

}

/*====================================================

DATA CLEANING

====================================================*/

.data-cleaning{

    margin:45px 0;

}

.clean-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-top:30px;

}

.clean-card{

    background:#121823;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:26px;

    transition:.25s;

}

.clean-card:hover{

    transform:translateY(-4px);

    border-color:#54d6ff;

}

.check-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(82,230,137,.12);

    color:#52e689;

    margin-bottom:18px;

}

.clean-card h3{

    margin-bottom:10px;

}

.clean-card p{

    color:#b7c1cf;

    line-height:1.7;

}

.clean-summary{

    margin-top:35px;

    background:#121823;

    border:1px solid rgba(82,230,137,.20);

    border-radius:16px;

    padding:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    font-size:18px;

}

.clean-summary strong{

    color:#52e689;

}

/*====================================================
PIVOT ANALYSIS
====================================================*/

.pivot-analysis {
    margin: 45px 0;
}

.pivot-badge {
    color: #54d6ff;
    border: 1px solid rgba(84, 214, 255, 0.25);
    background: rgba(84, 214, 255, 0.08);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.pivot-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    margin-top: 26px;
}

.pivot-table-card,
.pivot-insight-card {
    background: #121823;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 26px;
}

.pivot-table-card h3,
.pivot-insight-card h3 {
    margin-bottom: 18px;
    color: #f5c542;
}

.pivot-table {
    width: 100%;
    border-collapse: collapse;
}

.pivot-table th {
    text-align: left;
    padding: 14px;
    background: #1a2332;
    color: #f5c542;
    font-size: 13px;
}

.pivot-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #d8deea;
}

.pivot-table tbody tr:hover {
    background: rgba(255,255,255,.03);
}

.danger-text {
    color: #ff6b6b;
    font-weight: 800;
}

.pivot-insight-card p {
    color: #c8d0db;
    line-height: 1.8;
}

.finding-callout {
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 95, 95, 0.09);
    border: 1px solid rgba(255, 95, 95, 0.28);
}

.finding-callout span {
    display: block;
    color: #8b95a5;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.finding-callout strong {
    color: #ff8c8c;
    font-size: 24px;
}

@media (max-width: 950px) {
    .pivot-layout {
        grid-template-columns: 1fr;
    }
}

.pivot-table td.positive{

    color:#52e689;
    font-weight:700;

}

.pivot-table td.negative{

    color:#ff6b6b;
    font-weight:700;

}

.pivot-table td.caution{

    color:#f5c542;
    font-weight:700;

}

/*====================================================
SALES PERFORMANCE DASHBOARD
====================================================*/

.sales-dashboard {
    margin: 45px 0;
}

.sales-chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 26px;
}

.sales-chart-card {
    background: #121823;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 26px;
}

.sales-chart-card h3 {
    color: #f5c542;
    margin-bottom: 22px;
}

.region-bars {
    display: grid;
    gap: 18px;
}

.region-row {
    display: grid;
    grid-template-columns: 70px 1fr 80px;
    gap: 14px;
    align-items: center;
    color: #d8deea;
}

.bar-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
}

.positive-bar {
    background: #52e689;
}

.negative-bar {
    background: #ff6b6b;
}

.caution-bar {
    background: #f5c542;
}

.mini-line-chart svg {
    width: 100%;
    height: 220px;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 100% 44px, 70px 100%;
    border-radius: 16px;
    padding: 10px;
}

.mini-line-chart circle {
    fill: #121823;
    stroke: #ff6b6b;
    stroke-width: 4;
}

.wide-card {
    grid-column: span 2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-grid div {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 20px;
}

.product-grid span {
    color: #8b95a5;
    font-size: 13px;
}

.product-grid strong {
    display: block;
    font-size: 30px;
    margin: 8px 0;
}

@media (max-width: 950px) {
    .sales-chart-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-column: auto;
    }
}

/*====================================================
CUSTOMER MANAGEMENT
====================================================*/

.customer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 35px 0 45px;
}

.customer-header h1 {
    font-size: 64px;
    margin: 8px 0;
}

.customer-tagline {
    color: #52e689;
    font-size: 22px;
    margin-bottom: 25px;
}

.customer-brief {
    background: #121823;
    border: 1px solid rgba(82, 230, 137, 0.2);
    border-radius: 18px;
    padding: 36px;
    margin-bottom: 45px;
    position: relative;
    overflow: hidden;
}

.customer-brief::after {
    content: "CRM";
    position: absolute;
    right: 40px;
    bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 90px;
    letter-spacing: 6px;
    color: rgba(82, 230, 137, 0.05);
}

.customer-brief h2 {
    font-size: 34px;
    margin: 14px 0;
}

.customer-brief p {
    color: #c3cad6;
    line-height: 1.8;
    max-width: 900px;
}

.customer-brief strong {
    color: #f5c542;
}

/*====================================================
CUSTOMER SEARCH WORKSPACE
====================================================*/

.customer-search-workspace {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 24px;
    margin: 45px 0;
}

.search-panel,
.customer-detail-panel {
    background: #121823;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 30px;
}

.search-panel{
    border-color: rgba(82,230,137,.2);

    max-width:700px;
    width:100%;

    margin:0 auto;
}

.search-panel h2,
.customer-detail-panel h2 {
    margin: 12px 0 22px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(82, 230, 137, 0.25);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.search-box{
    transition: all .25s ease;
}

.search-box:hover{
    border-color:#52e689;
    box-shadow:0 0 18px rgba(82,230,137,.18);
    transform:translateY(-2px);
}

.search-box:focus-within{
    border-color:#52e689;
    box-shadow:0 0 22px rgba(82,230,137,.28);
}

.search-box i {
    color: #52e689;
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #f5f7fa;
    font-size: 18px;
}

.search-meta {
    color: #8b95a5;
    font-size: 13px;
    margin-bottom: 22px;
}

.customer-results {
    display: grid;
    gap: 14px;
}

.customer-result {
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: 0.25s;
}

.customer-result:hover,
.customer-result.active {
    border-color: rgba(82,230,137,.45);
    transform: translateX(4px);
    background: rgba(82,230,137,.08);
}

.customer-result strong {
    display: block;
    margin-bottom: 6px;
}

.customer-result span {
    color: #9aa6b6;
    font-size: 13px;
}

.customer-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.customer-detail-grid div {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 18px;
}

.customer-detail-grid span {
    display: block;
    color: #8b95a5;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.customer-detail-grid strong {
    font-size: 18px;
}

.customer-note {
    margin-top: 24px;
    background: rgba(82,230,137,.07);
    border: 1px solid rgba(82,230,137,.18);
    border-radius: 16px;
    padding: 22px;
}

.customer-note h3 {
    color: #52e689;
    margin-bottom: 10px;
}

.customer-note p {
    color: #c8d0db;
    line-height: 1.7;
}

@media (max-width: 950px) {
    .customer-search-workspace {
        grid-template-columns: 1fr;
    }

    .customer-detail-grid {
        grid-template-columns: 1fr;
    }
}

.empty-search {
    color: #8b95a5;
    border: 1px dashed rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
}

.search-box button {
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    background: #52e689;
    color: #080b10;
    font-weight: 800;
    cursor: pointer;
}

.hidden-detail {
    display: none;
}

.crm-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 36px;
}

.crm-mini-card {
    background: #121823;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 24px;
}

.crm-mini-card span {
    color: #8b95a5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.crm-mini-card h3 {
    margin: 10px 0;
}

.crm-mini-card p {
    color: #c3cad6;
    line-height: 1.7;
}

.crm-mini-card.problem {
    border-color: rgba(255,95,95,.25);
}

.crm-mini-card.solution {
    border-color: rgba(82,230,137,.25);
}

.crm-comparison i {
    color: #f5c542;
    font-size: 22px;
}

/*====================================================
CUSTOMER MANAGEMENT SKILLS
====================================================*/

.technical-skills{
    margin:50px 0;
    padding:28px;
    background:#121823;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
}

.technical-skills h3{
    margin-bottom:24px;
    color:#f5f7fa;
    font-size:22px;
}

.skill-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.skill-tags span{
    padding:12px 18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(82,230,137,.25);
    border-radius:999px;
    color:#52e689;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.skill-tags span:hover{
    background:rgba(82,230,137,.12);
    transform:translateY(-2px);
}

/*====================================================
ABOUT PREVIEW
====================================================*/

.about-card-wrapper{
    display:flex;
    justify-content:center;
    margin-top:32px;
}

/*====================================================
SQL EXPLORER
====================================================*/

.sql-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 35px 0 45px;
}

.sql-header h1 {
    font-size: 64px;
    margin: 8px 0;
}

.sql-tagline {
    color: #b084ff;
    font-size: 22px;
    margin-bottom: 25px;
}

.sql-brief {
    background: #121823;
    border: 1px solid rgba(176, 132, 255, 0.22);
    border-radius: 18px;
    padding: 36px;
    margin-bottom: 45px;
    position: relative;
    overflow: hidden;
}

.sql-brief::after {
    content: "SQL";
    position: absolute;
    right: 40px;
    bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    letter-spacing: 8px;
    color: rgba(176, 132, 255, 0.06);
}

.sql-brief h2 {
    font-size: 34px;
    margin: 14px 0;
}

.sql-brief p {
    color: #c3cad6;
    line-height: 1.8;
    max-width: 900px;
}

.sql-brief strong {
    color: #f5c542;
}

.sql-workspace {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 24px;
    margin-bottom: 45px;
}

.query-panel,
.query-explanation,
.query-results {
    background: #121823;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 30px;
}

.query-panel {
    border-color: rgba(176,132,255,.22);
}

.query-status {
    color: #52e689;
    border: 1px solid rgba(82,230,137,.28);
    background: rgba(82,230,137,.08);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.sql-code {
    background: #070a0f;
    border: 1px solid rgba(176,132,255,.20);
    border-radius: 16px;
    padding: 24px;
    overflow-x: auto;
    color: #d8deea;
    line-height: 1.7;
    font-size: 15px;
}

.sql-code code {
    font-family: Consolas, Monaco, monospace;
}

.query-explanation h3 {
    color: #f5f7fa;
    font-size: 24px;
    margin: 14px 0;
}

.query-explanation p {
    color: #c3cad6;
    line-height: 1.8;
}

.sql-concepts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.sql-concepts span {
    color: #b084ff;
    border: 1px solid rgba(176,132,255,.28);
    background: rgba(176,132,255,.08);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
}

.sql-table {
    width: 100%;
    border-collapse: collapse;
}

.sql-table th {
    text-align: left;
    padding: 14px;
    background: #1a2332;
    color: #b084ff;
}

.sql-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #d8deea;
}

.sql-table tbody tr:hover {
    background: rgba(176,132,255,.06);
}

@media (max-width: 950px) {
    .sql-header,
    .sql-workspace {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

.query-results {
    margin-bottom: 35px;
}

.sql-table {
    margin-top: 20px;
}

.sql-breakdown {
    background: #121823;
    border: 1px solid rgba(176,132,255,.18);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 45px;
}

.sql-breakdown h2 {
    margin: 12px 0 24px;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.breakdown-grid div {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 20px;
}

.breakdown-grid strong {
    color: #b084ff;
    display: block;
    margin-bottom: 10px;
}

.breakdown-grid p {
    color: #c3cad6;
    line-height: 1.6;
}

@media (max-width: 950px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
}

.cards .card-link:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.cards .card-link:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.cards .card-link:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.cards .card-link:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

/*====================================================
ABOUT PAGE
====================================================*/

.about-hero {
    background: linear-gradient(
        145deg,
        rgba(22, 29, 41, 0.96),
        rgba(13, 17, 24, 0.96)
    );
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    padding: 42px;
    margin: 35px 0 32px;
}

.about-hero h1 {
    font-size: 56px;
    margin: 14px 0;
}

.about-hero p {
    color: #c8d0dc;
    line-height: 1.8;
    max-width: 900px;
    font-size: 17px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.about-panel {
    background: #121823;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 28px;
}

.about-panel h2 {
    color: #f5c542;
    margin-bottom: 14px;
}

.about-panel p {
    color: #c3cad6;
    line-height: 1.8;
}

@media (max-width: 950px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-profile {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 34px;
    align-items: center;
}

.profile-photo-wrap {
    width: 220px;
    height: 220px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(245,197,66,.35);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.profile-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 850px) {
    .about-profile {
        grid-template-columns: 1fr;
    }
}

.custom-built {
    margin-bottom: 35px;
    border-color: rgba(245,197,66,.22);
}

.custom-built h2 {
    color: #f5c542;
    margin: 12px 0 16px;
}

.custom-built p {
    color: #c3cad6;
    line-height: 1.8;
    margin-bottom: 16px;
}

/*====================================================
ABOUT CONTACT
====================================================*/

.contact-panel {
    background: #121823;
    border: 1px solid rgba(84,214,255,.22);
    border-radius: 24px;
    padding: 38px;
    margin: 35px 0 45px;
    text-align: center;
}

.contact-panel h2 {
    font-size: 38px;
    margin: 12px 0 16px;
}

.contact-panel p {
    color: #c3cad6;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 28px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #f5c542;
    color: #080b10;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: .25s;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(245,197,66,.25);
}

@media (max-width: 768px) {

    .hero-text h1,
    .dashboard-header h1,
    .analytics-header h1,
    .customer-header h1,
    .sql-header h1,
    .about-hero h1 {

        font-size: 38px;

    }

}

.main-content{

    padding:20px;

}

.hero,
.case-file,
.analytics-brief,
.customer-brief,
.sql-brief,
.about-hero,
.contact-panel{

    padding:24px;

}

@media (max-width:768px){

    .about-grid,
    .sql-workspace,
    .customer-workspace,
    .analytics-grid{

        grid-template-columns:1fr;

    }

}

/*====================================================
MOBILE SAFETY NET
====================================================*/

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }

    .sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .sidebar nav {
        grid-template-columns: 1fr;
    }

    .status-panel {
        display: none;
    }

    .hero,
    .workspace-header,
    .analytics-header,
    .customer-header,
    .sql-header,
    .about-hero,
    .business-request,
    .customer-brief,
    .sql-brief,
    .contact-panel,
    .skills-panel,
    .query-panel,
    .query-explanation,
    .query-results {
        padding: 22px;
    }

    .hero-text h1,
    .workspace-header h1,
    .analytics-title h1,
    .customer-header h1,
    .sql-header h1,
    .about-hero h1 {
        font-size: 42px;
        line-height: 1;
    }

    .cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .card {
        min-height: 220px;
    }

    .client-grid,
    .kpi-grid,
    .dashboard-grid,
    .comparison-section,
    .pivot-layout,
    .sales-chart-grid,
    .product-grid,
    .customer-search-workspace,
    .customer-detail-grid,
    .sql-workspace,
    .breakdown-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .analytics-header,
    .customer-header,
    .sql-header,
    .workspace-header,
    .about-profile {
        flex-direction: column;
        display: flex;
    }

    .case-file {
        width: 100%;
    }

    .sales-table,
    .pivot-table,
    .sql-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .profile-photo-wrap {
        width: 180px;
        height: 180px;
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/*=========================================
MOBILE DESKTOP RECOMMENDATION
=========================================*/

.mobile-modal{

    position:fixed;

    inset:0;

    background:rgba(4,8,14,.82);

    backdrop-filter:blur(10px);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    padding:20px;

}

.mobile-modal.show{

    display:flex;

}

.mobile-modal-box{

    width:100%;

    max-width:460px;

    background:#121823;

    border:1px solid rgba(84,214,255,.25);

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:
        0 30px 90px rgba(0,0,0,.45);

}

.mobile-icon{

    font-size:54px;

    color:#54d6ff;

    margin-bottom:18px;

}

.mobile-modal-box h2{

    margin-bottom:20px;

    font-size:30px;

}

.mobile-modal-box p{

    color:#c7d0dc;

    line-height:1.8;

}

.mobile-button{

    margin-top:30px;

    padding:15px 28px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    background:#f5c542;

    color:#111;

    transition:.25s;

}

.mobile-button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 40px rgba(245,197,66,.35);

}