.steel-body,
.steel-body * {
    box-sizing: border-box;
}

.steel-body {
    --steel-ink: #141b24;
    --steel-ink-2: #1f2d3d;
    --steel-muted: #4f5c6b;
    --steel-muted-2: #657384;
    --steel-border: rgba(25, 35, 48, 0.18);
    --steel-radius: 10px;
    --steel-radius-sm: 8px;
    --steel-shadow: 0 10px 24px rgba(16, 23, 32, 0.12);
    --steel-focus: 0 0 0 3px rgba(242, 179, 42, 0.28);
}

.steel-body img,
.steel-body video,
.steel-body svg,
.steel-body canvas,
.steel-body iframe {
    max-width: 100%;
}

.steel-body {
    margin: 0;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--steel-ink);
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(52, 71, 94, 0.08), transparent 60%),
        radial-gradient(900px 500px at 100% 10%, rgba(20, 33, 48, 0.06), transparent 55%),
        linear-gradient(180deg, #f1f4f8 0%, #ebeff4 100%);
    overflow-x: hidden;
}

.steel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.steel-header {
    position: relative;
    overflow: hidden;
    background: #12253a;
    color: #f8fbff;
    padding: 22px 0 88px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steel-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transform: scale(1.02);
    pointer-events: none;
}

.steel-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(12, 30, 53, 0.46), rgba(19, 60, 104, 0.24) 35%, rgba(8, 24, 45, 0.58) 100%),
        radial-gradient(circle at 18% 22%, rgba(83, 114, 150, 0.2), rgba(18, 39, 61, 0.72) 75%);
    z-index: 1;
    pointer-events: none;
}

.steel-header::after {
    content: "";
    position: absolute;
    right: -140px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 193, 73, 0.14), transparent 68%);
    pointer-events: none;
    z-index: 2;
}

.steel-industrial-lines {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 36px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.04));
    mix-blend-mode: screen;
    opacity: 0.14;
    animation: steel-shift 16s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.steel-header .steel-container {
    position: relative;
    z-index: 4;
}

@keyframes steel-shift {
    0% { transform: translateX(0); }
    50% { transform: translateX(-18px); }
    100% { transform: translateX(0); }
}

.steel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(10, 16, 24, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.steel-logo {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
}

.steel-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.steel-brand img {
    height: 30px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.steel-brand span {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
}

.steel-tagline {
    margin-top: 3px;
    color: #bfd2ea;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.steel-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.steel-menu a {
    color: #d8e6f8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.steel-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(7, 19, 36, 0.6);
    border-radius: 10px;
    padding: 9px 8px;
    cursor: pointer;
}

.steel-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #e9f2ff;
    border-radius: 99px;
}

.steel-menu-toggle span + span {
    margin-top: 6px;
}

.steel-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 24, 0.54);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 118;
}

.steel-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 340px);
    background: linear-gradient(180deg, #0c1d37 0%, #10284a 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: -16px 0 32px rgba(0, 0, 0, 0.34);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    z-index: 119;
    pointer-events: none;
    visibility: hidden;
}

.steel-menu-anchor {
    display: none;
}

.steel-mobile-menu-open {
    overflow: hidden;
}

.steel-menu a:hover {
    color: #ffffff;
    border-bottom-color: #f8b229;
}

.steel-lang button {
    border: 1px solid rgba(210, 228, 249, 0.65);
    background: rgba(255, 255, 255, 0.03);
    color: #dbeafe;
    border-radius: 999px;
    padding: 6px 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.steel-lang button:hover {
    border-color: #f8b229;
    color: #fff7e5;
}

.steel-lang button.active {
    background: linear-gradient(120deg, #ffd175, #f8b229);
    color: #1b2432;
    border-color: #f8b229;
    box-shadow: 0 6px 18px rgba(248, 178, 41, 0.32);
}

.steel-hero {
    margin-top: 58px;
}

.steel-subhero {
    margin-top: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 20px 22px;
    background:
        linear-gradient(135deg, rgba(22, 34, 49, 0.78), rgba(52, 73, 97, 0.56)),
        radial-gradient(circle at 85% 20%, rgba(223, 157, 33, 0.2), transparent 45%);
    box-shadow: 0 14px 30px rgba(8, 22, 40, 0.28);
}

.steel-page-top {
    margin-top: 18px;
}

.steel-page-top::after {
    content: "";
    display: block;
    height: 18px;
    margin: 0 auto;
    max-width: 1200px;
    border-bottom: 1px solid rgba(15, 39, 77, 0.08);
}

.steel-subhero h1 {
    margin: 0 0 8px;
    font-size: 32px;
    color: #f6fbff;
}

.steel-subhero p {
    margin: 0;
    color: #d4e6fb;
    line-height: 1.75;
}

.steel-cert-strip {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.steel-cert-strip span {
    color: #d5e5f8;
    font-size: 12px;
    background: rgba(10, 30, 56, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 5px 10px;
}

.steel-hero h1 {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.16;
    letter-spacing: 0.2px;
    max-width: 920px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.steel-hero p {
    margin: 0;
    max-width: 780px;
    color: #d6e5f7;
    font-size: 18px;
    line-height: 1.88;
}

.steel-btn-primary {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(120deg, #f5c15a, #df9d21);
    color: #1b2430;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 13px 28px;
    letter-spacing: 0.3px;
    box-shadow: 0 12px 26px rgba(248, 178, 41, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.steel-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(248, 178, 41, 0.38);
}

.steel-section {
    padding: 64px 0;
}

.steel-title {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: 0.2px;
    color: #0d223f;
}

.steel-subtitle {
    margin: 0 0 28px;
    color: var(--steel-muted);
    font-size: 16px;
}

.steel-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.steel-cards > *,
.steel-grid-2 > *,
.steel-kpi-grid > *,
.steel-showcase-grid > *,
.steel-testimonial-grid > *,
.steel-market-grid > *,
.steel-contact-layout > * {
    min-width: 0;
}

.steel-card {
    background: linear-gradient(180deg, #ffffff, #f5f7fa);
    border: 1px solid rgba(29, 42, 57, 0.14);
    border-radius: var(--steel-radius);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(18, 28, 39, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.steel-card:hover {
    transform: translateY(-3px);
    border-color: rgba(223, 157, 33, 0.45);
    box-shadow: 0 14px 30px rgba(18, 28, 39, 0.16);
}

.steel-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    color: #112e52;
}

.steel-card p {
    margin: 0;
    line-height: 1.78;
    color: #334155;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.steel-metrics {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.steel-metric {
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border-radius: 13px;
    border: 1px solid rgba(14, 47, 89, 0.10);
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.steel-metric strong {
    display: block;
    font-size: 31px;
    color: #0f274d;
}

.steel-metric span {
    color: #62748a;
    font-size: 14px;
}

.steel-panel {
    background: linear-gradient(180deg, #ffffff, #f3f6fa);
    border-radius: calc(var(--steel-radius) + 2px);
    border: 1px solid rgba(15, 39, 77, 0.10);
    box-shadow: 0 12px 28px rgba(18, 28, 39, 0.1);
    padding: 28px;
    overflow: hidden;
}

.steel-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 520ms ease, transform 520ms ease;
    will-change: opacity, transform;
}

.steel-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .steel-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.steel-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

/* Keep tables readable on narrow screens */
@media (max-width: 768px) {
    .steel-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

.steel-table th,
.steel-table td {
    text-align: left;
    padding: 13px 14px;
    border-bottom: 1px solid #dfe8f3;
}

.steel-table th {
    background: linear-gradient(120deg, #173764, #10294b);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.steel-table tr:nth-child(even) td {
    background: rgba(227, 238, 250, 0.35);
}

.steel-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.steel-form-grid textarea {
    grid-column: 1 / -1;
    min-height: 124px;
    resize: vertical;
}

.steel-form-grid input,
.steel-form-grid textarea,
.steel-form-grid button {
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #c8d7e7;
    padding: 11px 13px;
    transition: all 0.2s ease;
}

.steel-form-grid input:focus,
.steel-form-grid textarea:focus {
    outline: none;
    border-color: #2d5a97;
    box-shadow: 0 0 0 3px rgba(45, 90, 151, 0.14);
}

.steel-menu a:focus-visible,
.steel-link:focus-visible,
.steel-btn-primary:focus-visible,
.steel-float-cta:focus-visible,
.steel-lang button:focus-visible,
.steel-form-grid input:focus-visible,
.steel-form-grid textarea:focus-visible,
.steel-form-grid button:focus-visible {
    outline: none;
    box-shadow: var(--steel-focus);
    border-radius: 10px;
}

.steel-form-grid button {
    grid-column: 1 / -1;
    border: none;
    background: linear-gradient(120deg, #173764, #10294b);
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(16, 41, 75, 0.28);
}

.steel-form-grid button:hover {
    background: linear-gradient(120deg, #1d426f, #16345d);
}

.steel-footer {
    background: linear-gradient(180deg, #0f172a, #0b1422);
    color: #d6e3f2;
    text-align: center;
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.steel-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.steel-list {
    margin: 0;
    padding-left: 18px;
    color: #30445e;
    line-height: 1.84;
}

.steel-list li {
    margin-bottom: 8px;
}

.steel-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.steel-badge {
    background: linear-gradient(120deg, #eef4fb, #dde9f8);
    color: #0f274d;
    border-radius: 999px;
    border: 1px solid rgba(15, 39, 77, 0.15);
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 600;
}

.steel-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.steel-kpi {
    border: 1px solid rgba(22, 59, 107, 0.18);
    border-radius: 13px;
    padding: 15px;
    background: linear-gradient(180deg, #fcfeff, #f1f7ff);
}

.steel-kpi strong {
    display: block;
    font-size: 22px;
    color: #0f274d;
    margin: 6px 0 7px;
}

.steel-kpi span {
    display: block;
    color: #2f4662;
    font-size: 14px;
}

.steel-kpi em {
    display: block;
    margin-top: 6px;
    color: #687c93;
    font-size: 12px;
    font-style: normal;
}

.steel-note {
    margin-top: 12px;
    color: #61758d;
    font-size: 13px;
    line-height: 1.66;
    overflow-wrap: anywhere;
}

.steel-link {
    color: #1e4f92;
    text-decoration: none;
    font-weight: 700;
}

.steel-link:hover {
    text-decoration: underline;
}

.steel-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.steel-mini-stat {
    border: 1px solid rgba(16, 54, 106, 0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f2f7ff);
    padding: 13px 14px;
}

.steel-mini-stat strong {
    display: block;
    color: #0f274d;
    font-size: 22px;
}

.steel-mini-stat span {
    color: #60758f;
    font-size: 13px;
}

.steel-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.steel-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.steel-pill-list span {
    border: 1px solid rgba(29, 42, 57, 0.2);
    color: #22374d;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(180deg, #fff, #f4f8ff);
}

.steel-stack {
    display: grid;
    gap: 12px;
}

.steel-media-frame {
    border: 1px solid rgba(16, 54, 106, 0.14);
    border-radius: 14px;
    overflow: hidden;
    background: #0f274d;
    box-shadow: 0 14px 30px rgba(15, 39, 77, 0.18);
}

.steel-media-frame video {
    width: 100%;
    height: auto;
    display: block;
}

.steel-download {
    border: 1px solid rgba(29, 42, 57, 0.16);
    border-radius: 10px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
}

.steel-download h3 {
    margin: 0 0 8px;
    color: #12315a;
}

.steel-logo-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.steel-logo-pill {
    background: linear-gradient(140deg, #243446, #2f455f);
    color: #eaf3ff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(16, 41, 75, 0.26);
}

.steel-map-panel {
    overflow: hidden;
}

.steel-market-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.steel-market-map {
    grid-column: 1;
    width: 100%;
    min-height: 300px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 58% 38%, rgba(45, 90, 151, 0.22), transparent 36%),
        radial-gradient(circle at 36% 60%, rgba(248, 178, 41, 0.14), transparent 42%),
        linear-gradient(135deg, #f3f8ff, #e6eef9);
    border: 1px solid rgba(15, 39, 77, 0.16);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    isolation: isolate;
    padding: 12px;
}

.steel-market-list {
    grid-column: 2;
    width: 100%;
}

.steel-market-map-inner {
    position: absolute;
    inset: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.steel-market-map img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
    transform: translateZ(0);
}

@media (max-width: 900px) {
    .steel-market-map-inner {
        inset: 10px;
    }
}

.steel-map-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(120deg, #173764, #1d4f93);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(23, 55, 100, 0.26);
    animation: steel-pulse 2.2s ease-in-out infinite;
}

.steel-route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(248, 178, 41, 0.1), rgba(248, 178, 41, 0.95), rgba(248, 178, 41, 0.1));
    transform-origin: left center;
    animation: steel-route 2.8s ease-in-out infinite;
}

.steel-map-tooltip {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(15, 39, 77, 0.86);
    color: #eaf3ff;
    font-size: 12px;
    line-height: 1.45;
    border: 1px solid rgba(255, 255, 255, 0.14);
    min-width: 140px;
    pointer-events: none;
}

.route-me { width: 28%; left: 30%; top: 64%; transform: rotate(-18deg); }
.route-sea { width: 48%; left: 30%; top: 67%; transform: rotate(-4deg); }
.route-af { width: 26%; left: 30%; top: 73%; transform: rotate(8deg); }
.route-sa { width: 20%; left: 30%; top: 79%; transform: rotate(20deg); }

.dot-me { top: 20%; left: 56%; }
.dot-sea { top: 40%; left: 67%; }
.dot-af { top: 54%; left: 50%; }
.dot-sa { top: 68%; left: 26%; }

@keyframes steel-pulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(23, 55, 100, 0.35); }
    50% { transform: scale(1.08); box-shadow: 0 10px 24px rgba(23, 55, 100, 0.46); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(23, 55, 100, 0.35); }
}

@keyframes steel-route {
    0% { opacity: 0.25; filter: saturate(0.8); }
    50% { opacity: 1; filter: saturate(1.2); }
    100% { opacity: 0.25; filter: saturate(0.8); }
}

.steel-market-list {
    display: grid;
    gap: 12px;
}

.steel-market-item {
    background: linear-gradient(180deg, #ffffff, #f6faff);
    border: 1px solid rgba(15, 39, 77, 0.14);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 10px 22px rgba(14, 31, 55, 0.08);
}

.steel-market-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.steel-market-head strong {
    color: #0f274d;
}

.steel-market-head span {
    color: #1e4f92;
    font-weight: 700;
}

.steel-market-bar {
    height: 8px;
    border-radius: 999px;
    background: #e2ebf7;
    overflow: hidden;
    margin-bottom: 7px;
}

.steel-market-bar i {
    display: block;
    height: 100%;
    background: linear-gradient(120deg, #2e4f73, #df9d21);
    border-radius: 999px;
}

.steel-market-item p {
    margin: 0;
    color: #54677f;
    font-size: 13px;
}

.steel-market-item p + p {
    margin-top: 4px;
}

.steel-contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
    margin-top: 14px;
}

.steel-contact-side {
    display: grid;
    gap: 10px;
}

.steel-contact-item {
    border: 1px solid rgba(16, 54, 106, 0.13);
    background: linear-gradient(180deg, #ffffff, #f4f8fe);
    border-radius: 10px;
    padding: 12px 14px;
}

.steel-contact-item strong {
    display: block;
    font-size: 12px;
    color: #5e7290;
    margin-bottom: 4px;
}

.steel-contact-item span {
    color: #0f274d;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.steel-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.steel-showcase-card {
    position: relative;
    min-height: 190px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 28px rgba(14, 37, 71, 0.28);
}

.steel-showcase-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(18, 33, 48, 0.9), rgba(42, 62, 82, 0.78)),
        radial-gradient(circle at 20% 15%, rgba(223, 157, 33, 0.2), transparent 45%);
}

.steel-showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.steel-showcase-content {
    position: relative;
    z-index: 1;
    color: #e8f2ff;
    padding: 20px;
}

.steel-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.steel-icon-title img {
    width: 22px;
    height: 22px;
}

.steel-showcase-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.steel-showcase-content p {
    margin: 0;
    font-size: 14px;
    color: #c9ddf6;
    line-height: 1.7;
}

.steel-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.steel-testimonial {
    margin: 0;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(16, 54, 106, 0.14);
    background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.steel-testimonial p {
    margin: 0 0 10px;
    color: #2f4662;
    line-height: 1.8;
}

.steel-testimonial footer {
    color: #5c7190;
    font-size: 13px;
    font-weight: 600;
}

.steel-float-cta {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 50;
    background: linear-gradient(120deg, #ffd175, #f8b229);
    color: #172235;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(248, 178, 41, 0.34);
}

.steel-float-cta:hover {
    transform: translateY(-1px);
}

.steel-timeline {
    display: grid;
    gap: 12px;
}

.steel-timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(16, 54, 106, 0.12);
    background: linear-gradient(180deg, #ffffff, #f6faff);
    border-radius: 10px;
    padding: 12px 14px;
}

.steel-timeline-item strong {
    color: #0f274d;
}

.steel-timeline-item span {
    color: #1e4f92;
    font-weight: 700;
}

.steel-ticker-list {
    display: grid;
    gap: 10px;
}

.steel-ticker-item {
    border: 1px solid rgba(16, 54, 106, 0.12);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-radius: 10px;
    padding: 12px 14px;
}

.steel-ticker-item strong {
    display: block;
    color: #0f274d;
    margin-bottom: 6px;
}

.steel-ticker-item span {
    color: #2f4662;
    font-weight: 600;
}

.steel-ticker-item em {
    margin-left: 8px;
    color: #1e4f92;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .steel-hero h1 {
        font-size: 40px;
    }

    .steel-menu {
        gap: 14px;
    }

    .steel-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .steel-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .steel-container {
        padding: 0 14px;
    }

    .steel-header {
        padding-bottom: 54px;
    }

    .steel-nav {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 12px;
    }

    .steel-logo {
        font-size: 22px;
    }

    .steel-tagline {
        font-size: 11px;
    }

    .steel-nav > .steel-menu {
        display: none !important;
    }

    .steel-menu-drawer .steel-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 72px 14px 20px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .steel-menu-drawer .steel-menu a {
        font-size: 15px;
        line-height: 1.4;
        padding: 11px 12px;
        border-radius: 10px;
        border-bottom: none;
        flex: 0 0 auto;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .steel-menu-drawer .steel-menu a:hover {
        background: rgba(248, 178, 41, 0.14);
        border-color: rgba(248, 178, 41, 0.32);
    }

    .steel-menu-drawer .steel-lang {
        margin-top: 10px;
        display: flex;
        gap: 8px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .steel-menu-toggle {
        display: inline-block;
        position: relative;
        z-index: 120;
    }

    .steel-mobile-menu-open .steel-menu-drawer {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .steel-mobile-menu-open .steel-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .steel-hero h1 {
        font-size: 30px;
        line-height: 1.22;
    }

    .steel-subhero {
        padding: 14px 14px;
    }

    .steel-subhero h1 {
        font-size: 24px;
    }

    .steel-hero p {
        font-size: 16px;
        line-height: 1.68;
    }

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

    .steel-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .steel-section {
        padding: 44px 0;
    }

    .steel-card,
    .steel-panel {
        padding: 18px;
    }

    .steel-metrics,
    .steel-form-grid,
    .steel-grid-2,
    .steel-kpi-grid,
    .steel-mini-grid {
        grid-template-columns: 1fr;
    }

    .steel-logo-wall {
        grid-template-columns: 1fr;
    }

    .steel-market-map {
        min-height: 250px;
    }

    .dot-me { top: 54px; left: 56%; }
    .dot-sea { top: 112px; left: 66%; }
    .dot-af { top: 146px; left: 50%; }
    .dot-sa { top: 176px; left: 26%; }

    .route-me,
    .route-sea,
    .route-af,
    .route-sa {
        left: 22%;
        width: 34%;
        transform: rotate(0deg);
    }
    .route-me { top: 160px; }
    .route-sea { top: 180px; }
    .route-af { top: 200px; }
    .route-sa { top: 220px; }

    .steel-float-cta {
        right: 14px;
        bottom: 14px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .steel-form-grid input,
    .steel-form-grid textarea,
    .steel-form-grid button {
        font-size: 16px;
        padding: 12px 13px;
    }

    .steel-market-map {
        width: 100%;
    }

    .steel-map-dot {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }
}

@media (max-width: 520px) {
    .steel-header {
        padding-top: 16px;
    }

    .steel-hero {
        margin-top: 36px;
    }

    .steel-hero h1 {
        font-size: 26px;
    }

    .steel-hero p {
        font-size: 15px;
    }

    .steel-btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 12px 16px;
    }

    .steel-title {
        font-size: 24px;
    }

    .steel-card h3 {
        font-size: 18px;
    }

    .steel-metric strong {
        font-size: 26px;
    }

    .steel-panel,
    .steel-card,
    .steel-contact-item,
    .steel-ticker-item,
    .steel-timeline-item {
        border-radius: 10px;
    }
}
