:root {
    --bg-main: #0f1115;
    --bg-panel: #171a1f;
    --bg-panel-2: #1d2128;
    --bg-soft: #232831;
    --line: #2e3540;
    --text: #f3f4f6;
    --text-soft: #b8bec8;
    --text-muted: #8d96a3;
    --accent: #c57b2a;
    --accent-hover: #d48a36;
    --danger: #a94442;
    --success: #3f7d4f;
    --shadow: 0 10px 30px rgba(0,0,0,0.35);
    --radius: 18px;
}

html, body {
    background: linear-gradient(180deg, #0b0d10 0%, #11151a 100%);
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    min-height: 100vh;
}

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

.home-industrial {
    background:
        radial-gradient(circle at top right, rgba(197,123,42,0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 25%),
        linear-gradient(180deg, #0b0d10 0%, #11151a 100%);
}

.home-industrial .container {
    position: relative;
    z-index: 2;
}

.home-navbar {
    background: rgba(15,17,21,0.82);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.home-navbar .navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.home-navbar .nav-link {
    color: var(--text-soft);
    font-weight: 500;
}

.home-navbar .nav-link:hover {
    color: #fff;
}

.hero-industrial {
    padding: 90px 0 60px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(197,123,42,0.45);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(197,123,42,0.08);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 620px;
    margin-bottom: 30px;
}

.btn-industrial {
    display: inline-block;
    background: var(--accent);
    color: #111;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px 24px;
    border: 1px solid var(--accent);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.btn-industrial:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #111;
    transform: translateY(-1px);
}

.btn-industrial-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 24px;
    border: 1px solid var(--line);
    transition: all 0.2s ease;
    margin-left: 10px;
}

.btn-industrial-outline:hover {
    background: rgba(255,255,255,0.04);
    color: #fff;
    border-color: #4a5463;
}

.hero-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-panel:before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(197,123,42,0.18), transparent 70%);
}

.status-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.status-chip {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    color: var(--text-soft);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.flow-track {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.flow-step {
    flex: 1;
    min-width: 130px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 16px;
}

.flow-step strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
}

.flow-step span {
    color: var(--text-muted);
    font-size: 13px;
}

.flow-arrow {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}

.section-industrial {
    padding: 70px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-soft);
    font-size: 17px;
    margin-bottom: 34px;
    max-width: 720px;
}

.card-industrial {
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.card-industrial-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(197,123,42,0.12);
    border: 1px solid rgba(197,123,42,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 18px;
}

.card-industrial h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.card-industrial p {
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.before-box,
.after-box {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
}

.before-box h4,
.after-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.before-box h4 {
    color: #d9dde3;
}

.after-box h4 {
    color: var(--accent);
}

.before-box ul,
.after-box ul {
    margin: 0;
    padding-left: 18px;
}

.before-box li,
.after-box li {
    margin-bottom: 12px;
    color: var(--text-soft);
    line-height: 1.6;
}

.coming-box {
    text-align: center;
    padding: 50px 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(197,123,42,0.10), rgba(255,255,255,0.02));
    border: 1px solid rgba(197,123,42,0.24);
    box-shadow: var(--shadow);
}

.coming-box .coming-mini {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.coming-box h2 {
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.coming-box p {
    color: var(--text-soft);
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto 26px;
}

.footer-industrial {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

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

@media (max-width: 767px) {
    .hero-industrial {
        padding: 70px 0 40px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-industrial-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .coming-box h2 {
        font-size: 38px;
    }
}