:root {
    --forge-dark: #131c26;
    --forge-mid: #1e2d3d;
    --coil-steel: #2d4a6e;
    --steel-silver: #c4d0de;
    --mill-white: #f5f7fa;
    --crisp-white: #f5f6f8;
    --accent-orange: #e8722a;
    --accent-orange-dark: #d0621e;
    --hot-amber: #c97c2a;
    --text-dark: #12141a;
    --text-mid: #3c404a;
    --text-light: #626872;
    --border-steel: rgba(80, 90, 110, 0.18);
    --success: #059669;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --radius-card: 8px;
    --shadow-card: 0 14px 40px rgba(14, 23, 32, 0.10);
    --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.30);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--crisp-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

main {
    min-width: 0;
}

.section-container,
.narrow {
    width: min(100% - 48px, 1240px);
    min-width: 0;
    margin-inline: auto;
}

.section-container > *,
.narrow > * {
    min-width: 0;
}

.narrow {
    max-width: 900px;
}

.content-section {
    padding: 96px 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1;
}

h1:focus {
    outline: none;
}

h2 {
    margin-bottom: 18px;
    color: var(--forge-dark);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    letter-spacing: 0.03em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 4px 10px;
    border-left: 3px solid var(--accent-orange);
    background: rgba(232, 114, 42, 0.08);
    color: var(--accent-orange-dark);
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
    background: var(--accent-orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand-mark {
    color: #fff;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0;
    line-height: 1;
}

.brand-mark:hover {
    color: var(--steel-silver);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a.active:not(.nav-cta)::after {
    width: 100%;
}

.site-nav a.active,
.site-nav a:hover {
    color: #fff;
}

.site-nav .nav-cta {
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--accent-orange);
    color: #fff;
}

.navbar-toggler,
.nav-toggle-label {
    display: none;
}

.site-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    padding: 108px 0 96px;
    background:
        linear-gradient(90deg, rgba(19, 28, 38, 0.98) 0%, rgba(19, 28, 38, 0.94) 42%, rgba(30, 45, 61, 0.78) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.025) 3px, rgba(255, 255, 255, 0.025) 4px),
        var(--forge-dark);
}

.site-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: linear-gradient(90deg, var(--accent-orange), transparent 34%, rgba(196, 208, 222, 0.28));
    opacity: 0.88;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: 56px;
}

.hero-copy h1,
.hero-copy p {
    color: #fff;
}

.hero-copy .section-label {
    background: rgba(232, 114, 42, 0.08);
    border-left-color: var(--accent-orange);
    color: var(--accent-orange);
}

.hero-description {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-visual {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(196, 208, 222, 0.26);
    border-radius: var(--radius-card);
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent 58%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 18px),
        radial-gradient(ellipse at 78% 20%, rgba(232, 114, 42, 0.24), transparent 30%),
        linear-gradient(100deg, rgba(196, 208, 222, 0.18), rgba(45, 74, 110, 0.26) 42%, rgba(250, 250, 250, 0.10)),
        var(--forge-mid);
    box-shadow: var(--shadow-dark);
}

.hero-visual::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 20%;
    height: 42%;
    border-radius: 999px;
    border: 28px solid rgba(196, 208, 222, 0.18);
    box-shadow:
        inset 0 0 42px rgba(255, 255, 255, 0.16),
        0 18px 50px rgba(0, 0, 0, 0.26);
    transform: perspective(720px) rotateX(62deg) rotateZ(-4deg);
}

.hero-visual::after {
    content: '';
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: 20%;
    height: 118px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(196, 208, 222, 0.34), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 16px);
    transform: skewY(-5deg);
}

.coil-visual-lines {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 13px, rgba(255, 255, 255, 0.09) 14px, transparent 15px),
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
    transform: skewY(-4deg) scale(1.1);
    animation: steel-shimmer 5.5s ease-in-out infinite;
}

@keyframes steel-shimmer {
    0%, 100% { opacity: 0.72; transform: translateX(-12px) skewY(-4deg) scale(1.1); }
    50% { opacity: 1; transform: translateX(12px) skewY(-4deg) scale(1.1); }
}

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin-top: 22px;
    padding: 6px;
    border: 1px solid var(--border-steel);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 28px rgba(14, 23, 32, 0.05);
}

.product-tabs span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--text-mid);
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-tabs span.active {
    background: var(--coil-steel);
    color: #fff;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--coil-steel);
    font-family: var(--font-condensed);
    font-weight: 700;
    text-transform: uppercase;
}

.product-tag {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid rgba(201, 124, 42, 0.22);
    border-radius: 4px;
    background: rgba(201, 124, 42, 0.12);
    color: var(--hot-amber);
    font-size: 0.78rem;
}

.specs-table-wrap {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    margin-top: 26px;
    border: 1px solid rgba(196, 208, 222, 0.18);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.06);
}

.specs-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(196, 208, 222, 0.16);
    text-align: left;
    vertical-align: top;
}

.specs-table th {
    width: 28%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--steel-silver);
    font-family: var(--font-condensed);
    font-size: 1.08rem;
    text-transform: uppercase;
}

.specs-table td {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer {
    padding: 64px 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 4px),
        var(--forge-dark);
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.6fr));
    gap: 34px;
}

.site-footer h2 {
    color: #fff;
    font-family: var(--font-condensed);
    font-size: 1.15rem;
}

.site-footer a:not(.brand-mark) {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#blazor-error-ui {
    color-scheme: light only;
    display: none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    max-width: 420px;
    padding: 14px 42px 14px 16px;
    border-radius: 8px;
    background: #fff4d8;
    box-shadow: var(--shadow-card);
    color: var(--text-dark);
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 10px;
}

@media (max-width: 900px) {
    .site-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 24px 24px;
        background: var(--forge-dark);
    }

    .navbar-toggler:checked ~ .site-nav {
        display: flex;
    }

    .navbar-toggler {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .nav-toggle-label {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border-steel);
        border-radius: 6px;
        background:
            linear-gradient(var(--forge-dark), var(--forge-dark)) center 13px / 20px 2px no-repeat,
            linear-gradient(var(--forge-dark), var(--forge-dark)) center 20px / 20px 2px no-repeat,
            linear-gradient(var(--forge-dark), var(--forge-dark)) center 27px / 20px 2px no-repeat;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .section-container,
    .narrow {
        width: min(100% - 32px, 1240px);
    }

    .content-section {
        padding: 64px 0;
    }

    .btn {
        width: 100%;
    }
}

/* Homepage demo v3 alignment */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 24px;
    background: var(--forge-dark);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar a {
    color: rgba(255, 255, 255, 0.78);
}

.cert-badge,
.cert-badge-lg {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header {
    top: 0;
    border-bottom: 1px solid var(--border-steel);
    background: rgba(245, 246, 248, 0.93);
    background-image: none;
}

.nav-inner {
    min-height: 64px;
}

.brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    color: var(--forge-dark);
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.brand-mark span {
    color: var(--accent-orange);
}

.site-header .brand-mark:hover,
.site-header .brand-mark:focus-visible {
    color: var(--forge-dark);
    transform: translateY(-1px);
}

.site-header .brand-mark:hover span,
.site-header .brand-mark:focus-visible span {
    color: var(--accent-orange);
}

.site-header .brand-mark:hover small,
.site-header .brand-mark:focus-visible small {
    color: var(--text-light);
}

.brand-mark small {
    margin-left: 4px;
    color: var(--text-light);
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav {
    gap: 4px;
}

.site-nav a {
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text-mid);
    font-size: 0.96rem;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
    display: none;
}

.site-nav a.active,
.site-nav a:hover {
    background: var(--mill-white);
    color: var(--forge-dark);
}

.site-nav .nav-cta {
    padding: 9px 18px;
    color: #fff;
}

.site-nav .nav-cta:hover {
    background: var(--accent-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.language-switcher {
    position: relative;
    display: inline-flex;
    height: 40px;
    flex: 0 0 auto;
    user-select: none;
}

.language-switcher-track {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(80, 90, 110, 0.16);
    border-radius: 999px;
    background: #f7f9fc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 10px rgba(14, 23, 32, 0.06);
}

.language-switcher-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 0;
    /* One column wide (track content minus 8px padding, split across 3 options)
       so translateX(index * 100%) lands exactly on each option at any width. */
    width: calc((100% - 8px) / 3);
    height: 32px;
    border-radius: 999px;
    background: var(--accent-orange);
    box-shadow: 0 6px 14px rgba(232, 114, 42, 0.28);
    transition: transform 180ms ease;
}

.language-switcher-option {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 0;
    border: none;
    background: none;
    color: var(--coil-steel);
    cursor: pointer;
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: color 180ms ease;
}

.language-switcher-option.is-active {
    color: #fff;
}

.language-switcher:focus-within .language-switcher-track {
    outline: 2px solid rgba(232, 114, 42, 0.34);
    outline-offset: 2px;
}

.site-hero {
    min-height: 600px;
    padding: 96px 0;
    background:
        linear-gradient(105deg, rgba(28, 31, 36, 0.98), rgba(28, 31, 36, 0.94) 42%, rgba(10, 12, 16, 0.84) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.016) 3px, rgba(255, 255, 255, 0.016) 4px),
        var(--forge-dark);
}

.site-hero::after {
    top: 0;
    bottom: auto;
    left: auto;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(80, 90, 110, 0.15) 30%, rgba(80, 90, 110, 0.28) 60%, rgba(10, 12, 16, 0.8) 100%);
}

.hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.hero-breadcrumb {
    margin-bottom: 18px;
}

.hero-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: var(--font-condensed);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
}

.hero-breadcrumb li:not(:last-child)::after {
    content: '\203A';
    margin: 0 8px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.3);
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 180ms ease;
}

.hero-breadcrumb a:hover {
    color: var(--accent-orange);
}

.hero-breadcrumb span[aria-current="page"] {
    color: var(--steel-silver);
}

.hero-copy .section-label {
    padding: 0;
    border-left: 0;
    background: transparent;
    color: var(--accent-orange);
    letter-spacing: 0.2em;
}

.hero-copy .section-label::before,
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    margin-right: 10px;
    background: currentColor;
    vertical-align: middle;
}

.hero-copy h1 {
    font-size: clamp(44px, 5.5vw, 72px);
    letter-spacing: 0.02em;
}

.hero-description {
    max-width: 500px;
    font-size: 17px;
}

.hero-visual {
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-color: rgba(100, 115, 135, 0.3);
    background: linear-gradient(135deg, #1c1f24 0%, #283040 50%, #12151a 100%);
}

.hero-visual::before {
    left: 16%;
    right: 16%;
    top: 34%;
    height: 26%;
    border-width: 14px;
    border-color: rgba(196, 148, 60, 0.5);
}

.hero-visual::after {
    left: 28%;
    right: 28%;
    bottom: 43%;
    height: 36px;
    border-radius: 999px;
    background: transparent;
    border: 10px solid rgba(130, 140, 160, 0.48);
    transform: perspective(500px) rotateX(62deg);
}

.hero-tags {
    grid-column: 2;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: -48px;
}

.hero-tag {
    padding: 5px 12px;
    border: 1px solid rgba(200, 205, 215, 0.2);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(200, 205, 215, 0.85);
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-tag.hot {
    border-color: rgba(196, 138, 40, 0.55);
    background: rgba(196, 138, 40, 0.1);
    color: #e8b06a;
}

.products-section {
    background: var(--mill-white);
}

.products-section .section-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
}

.products-section .product-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
}

.product-tabs {
    margin-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.product-tabs span {
    min-height: 34px;
    border: 1px solid var(--border-steel);
    background: #fff;
    cursor: default;
}

.product-tabs span.active,
.product-tabs span:hover {
    background: #46454b;
    border-color: #46454b;
    color: #fff;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--forge-dark);
    border: 0;
    color: rgba(255, 255, 255, 0.62);
}

.product-card::before {
    display: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.product-card-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e2024 0%, #2e3038 55%, #1a1c22 100%);
}

.product-card-visual.cold-rolled { background: linear-gradient(135deg, #1c1f24 0%, #282c34 55%, #161820 100%); }
.product-card-visual.stainless { background: linear-gradient(135deg, #1e2026 0%, #2a2c38 55%, #1c1f24 100%); }
.product-card-visual.aluminium { background: linear-gradient(135deg, #1a1d22 0%, #262932 55%, #16181e 100%); }
.product-card-visual.plate { background: linear-gradient(135deg, #202329 0%, #31343b 55%, #181b20 100%); }

.coil-mark {
    width: 118px;
    height: 42px;
    border-radius: 999px;
    border: 12px solid rgba(196, 138, 40, 0.42);
    box-shadow: inset 0 0 0 10px rgba(130, 140, 160, 0.22), inset 0 0 0 24px rgba(196, 138, 40, 0.18);
    transform: perspective(360px) rotateX(58deg);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 3px 9px;
    border: 1px solid rgba(201, 124, 42, 0.5);
    border-radius: 3px;
    background: rgba(201, 124, 42, 0.2);
    color: #e8a05a;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
}

.product-card-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 1;
}

.product-card-sub {
    margin: 6px 0 14px;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-card p {
    flex: 1;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.product-card .card-link {
    display: flex;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--accent-orange);
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specs-strip {
    position: relative;
    overflow: hidden;
    background: #46454b;
}

.specs-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.04) 4px);
}

.specs-strip-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding-top: 36px;
    padding-bottom: 36px;
}

.spec-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.spec-item + .spec-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.spec-value {
    color: #fff;
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 1;
}

.spec-name {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-turkey-section .value-grid {
    grid-template-columns: repeat(3, 1fr);
}

.grades-section {
    background: var(--mill-white);
}

.section-desc {
    max-width: 620px;
    color: var(--text-mid);
    font-size: 17px;
}

.grades-table-wrap {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid var(--border-steel);
    border-radius: 8px;
}

.grades-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: #fff;
}

.grades-table thead tr {
    background: var(--forge-dark);
}

.grades-table th {
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.grades-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border-steel);
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
}

.grades-table td:first-child {
    color: #46454b;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tag {
    display: inline-flex;
    margin-right: 4px;
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(156, 108, 30, 0.1);
    color: #7a5214;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag.orange { background: rgba(232, 114, 42, 0.1); color: var(--accent-orange); }
.tag.green { background: rgba(5, 150, 105, 0.1); color: #059669; }

.process-section {
    overflow: hidden;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 4px),
        var(--forge-dark);
}

.process-section h2,
.process-section h3,
.process-section p {
    color: #fff;
}

.process-section .section-label {
    color: var(--accent-orange);
    background: transparent;
    border: 0;
    padding: 0;
}

.process-grid {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 56px;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.process-step {
    padding: 0 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.process-step::before {
    display: none;
}

.process-step:hover {
    transform: none;
    box-shadow: none;
}

.process-step span {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--forge-dark);
    border-radius: 50%;
    outline: 1px solid #46454b;
    background: #46454b;
    color: #fff;
    font-size: 26px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
}

.industries-section {
    background: var(--mill-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border: 1px solid var(--border-steel);
    border-radius: 8px;
    background: #fff;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-card:hover {
    transform: translateY(-2px);
    border-color: #46454b;
    box-shadow: 0 4px 16px rgba(60, 70, 90, 0.12);
}

.industry-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 6px;
    background: rgba(80, 90, 110, 0.07);
    color: #46454b;
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
}

.industry-name {
    color: var(--forge-dark);
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.industry-sub {
    margin-top: 2px;
    color: var(--text-light);
    font-size: 12px;
}

.quote-section {
    background:
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.025) 3px, rgba(255, 255, 255, 0.025) 4px),
        var(--forge-mid);
}

.rfq-checklist {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.rfq-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.rfq-checklist li::before {
    content: '✓';
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 150, 105, 0.4);
    border-radius: 3px;
    background: rgba(5, 150, 105, 0.2);
    color: #34d399;
    font-size: 12px;
    font-weight: 700;
}

.quote-form h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    letter-spacing: 0.04em;
}

.quote-form > p:not(.section-label):not(.quote-form-hint) {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
}

@media (max-width: 720px) {
    .quote-form-row {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    padding-bottom: 0;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .brand-mark {
    color: #fff;
}

.site-footer .footer-brand .brand-mark span {
    color: var(--accent-orange);
}

.footer-brand p {
    max-width: 310px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.site-footer span:not(.cert-badge-lg) {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
}

.footer-review {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.site-footer .footer-bottom-links a,
.footer-link-button {
    display: inline-flex;
    margin-top: 0;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease;
}

.site-footer .footer-bottom-links a:hover,
.footer-link-button:hover {
    color: var(--accent-orange);
}

.site-footer .footer-review a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-review a:hover {
    color: var(--accent-orange);
}

@media (max-width: 1100px) {
    .products-section .product-grid,
    .process-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .topbar {
        display: none;
    }

    .site-header {
        background: rgba(245, 246, 248, 0.98);
    }

    .site-nav {
        top: 64px;
        background: var(--crisp-white);
        border-bottom: 1px solid var(--border-steel);
    }

    .hero-grid,
    .products-section .section-container {
        grid-template-columns: 1fr;
    }

    .hero-tags {
        grid-column: 1;
        justify-content: flex-start;
        margin-top: 0;
    }

}

@media (max-width: 640px) {
    .products-section .product-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Floating contact buttons */
.contact-fabs {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-fab:hover {
    transform: scale(1.1);
}

.contact-fab svg {
    display: block;
}

.whatsapp-fab {
    background: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.mail-fab {
    background: var(--coil-steel);
    box-shadow: 0 4px 14px rgba(45, 74, 110, 0.4);
}

.mail-fab:hover {
    box-shadow: 0 6px 20px rgba(45, 74, 110, 0.55);
}
