/* ==========================================================================
   Fibre Bolt Technologies — Professional Website Stylesheet
   Blue-steel palette:
   - Layered deep steel-blue backgrounds
   - Icy blue highlights
   - Crisp white & silver typography
   ========================================================================== */

:root {
    --color-navy-900: #002b3a;
    --color-navy-800: #00475c;
    --color-navy-700: #00657d;
    --color-navy-600: #258da9;
    --color-orange: #d71920;
    --color-orange-bright: #ee3b40;
    --color-orange-dark: #a80f16;
    --color-red: #d71920;
    --color-silver: #61747b;
    --color-silver-light: #385b67;
    --color-white: #ffffff;
    --color-bg-light: #f1f2f1;
    --color-text-dark: #002b3a;
    --color-text-muted: #526b74;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 8px;

    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-dark);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    
    display: block;
    z-index: 1;
}

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

a:hover {
    color: var(--color-orange-bright);
}

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

/* ==========================================================================
   Top Navigation Bar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(100deg, #578fa9, #83b8cd);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(168, 227, 251, 0.22);
    transition: background var(--transition-base), padding var(--transition-base);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    text-decoration: none;
}

.brand-mark {

    height: 55px;
 display: grid;
    place-items: center;

}



.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--color-silver);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.94rem;
    transition: all var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-white);
    background: rgba(69, 167, 216, 0.14);
}

.nav-cta {
    background: var(--color-orange);
    color: #ecf0f1 !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(69, 167, 216, 0.35);
}

.nav-cta:hover {
    background: var(--color-orange-bright) !important;
    color: var(--color-navy-900) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-white);
}

.nav-toggle svg {
    width: 28px;
    height: 28px;
}

.mobile-page-menu {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(118deg, #477f98 0%, #69a5bc 47%, #9bc8d7 72%, #edf5f8 100%);
    color: var(--color-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.hero::before {
    content: '';
    position: absolute;
    right: -2%;
    bottom: 51%;
    width: 600px;
    height: 260px;
    background: rgba(39, 103, 135, 0.86);
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    right: 15%;
    bottom: 39%;
    width: 380px;
    height: 155px;
    background: var(--color-red);
    transform: rotate(-12deg);
    pointer-events: none;
    opacity: 0.82;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(236, 240, 241, 0.98) 0%, rgba(236, 240, 241, 0.92) 48%, rgba(236, 240, 241, 0.25) 100%);
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 3;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 670px) 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(69, 167, 216, 0.14);
    border: 1px solid rgba(168, 227, 251, 0.42);
    color: var(--color-orange-bright);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(69, 167, 216, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero .subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: #000000;
    max-width: 670px;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-size: 0.96rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: #ecf0f1;
    box-shadow: 0 8px 24px rgba(69, 167, 216, 0.35);
}

.btn-primary:hover {
    color: var(--color-navy-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(69, 167, 216, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Hero visual / product showcase */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    isolation: isolate;
    transform: rotate(-8deg);
}

.hero-visual .subtitle {
    max-width: 520px;
    margin: 20px 0 0;
    text-align: center;
    transform: rotate(8deg);
}



.hero-geometry {
    position: absolute;
    pointer-events: none;
}

.geo-plate {
    width: 74%;
    height: 190px;
    left: -8%;
    top: 26%;
    background: linear-gradient(135deg, #4d849c, #75adbf);
    clip-path: polygon(6% 0, 96% 18%, 88% 100%, 0 80%);
    opacity: 0.82;
    z-index: 0;
}

.geo-stripe {
    width: 118%;
    height: 70px;
    left: -16%;
    top: 56%;
    background: var(--color-red);
    clip-path: polygon(0 12%, 78% 0, 100% 74%, 20% 100%);
    z-index: 0;
}

.geo-slate {
    width: 82%;
    height: 96px;
    right: -14%;
    bottom: 19%;
    background: linear-gradient(135deg, #dcebf1, #8eb6c8);
    clip-path: polygon(4% 30%, 100% 0, 100% 100%, 0 80%);
    z-index: 0;
}

.product-bolt {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.45));
}

.floating-stat {
    position: absolute;
    background: rgba(42, 105, 132, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 227, 251, 0.35);
    border-radius: 6px;
    padding: 14px 18px;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    transform: rotate(8deg);
}

.floating-stat .stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-orange-bright);
    line-height: 1;
}

.floating-stat .stat-label {
    font-size: 0.72rem;
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.floating-stat.stat-1 {
    top: 18%;
    left: -8%;
    animation-delay: 0s;
}

.floating-stat.stat-2 {
    bottom: 22%;
    right: -6%;
    animation-delay: 2s;
}

.floating-stat.stat-3 {
    top: 71%;
    left: -2%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats bar below hero */
.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: rgba(37, 91, 115, 0.92);
    border: 1px solid rgba(168, 227, 251, 0.28);
    border-radius: 8px;
    padding: 28px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.hero-stats .hero-stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats .hero-stat:last-child {
    border-right: none;
}

.hero-stats .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-orange-bright);
    line-height: 1;
}

.hero-stats .label {
    font-size: 0.78rem;
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-top: 6px;
}

/* ==========================================================================
   Section common styles
   ========================================================================== */

.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-dark);
    letter-spacing: -0.8px;
    margin-bottom: 18px;
}

.section-title.light {
    color: var(--color-white);
}

.section-sub {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-sub.light {
    color: var(--color-silver);
}

/* ==========================================================================
   Value Propositions (3 cards)
   ========================================================================== */

.section-value {
    background:
        linear-gradient(170deg, #5c98b0 0 20%, transparent 20.2%),
        linear-gradient(166deg, transparent 0 72%, rgba(217, 86, 97, 0.14) 72.2% 81%, transparent 81.2%),
        var(--color-bg-light);
    overflow: hidden;
}

.section-value .section-eyebrow,
.section-engineering .section-eyebrow,
.section-impact .section-eyebrow,
.section-specs .section-eyebrow {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    text-shadow: 0 2px 4px rgba(0, 16, 24, 0.18);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: linear-gradient(145deg, #5791a9 0%, #7fb8cc 52%, #4f8ca6 100%);
    border-radius: 8px;
    padding: 66px 32px 34px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--color-white);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    height: 7px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
 display: grid;
    place-items: center;
    margin: -18px auto 26px;

    padding: 7px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.icon-disc {
    fill: #e5f0f5;
    stroke: #bfcbd2;
    stroke-width: 2;
}

.icon-ring {
    fill: none;
    stroke: #45a7d8;
    stroke-width: 4;
}

.icon-stroke {
    fill: none;
    stroke: #2d6b88;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-fill {
    fill: #2d6b88;
}

.icon-accent-stroke {
    stroke: var(--color-orange-dark);
    stroke-width: 4;
}

.icon-text {
    fill: #2d6b88;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0;
}

.value-card .metric {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-white);
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.35);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.value-card .metric-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-white);
}

.value-card p {
    color: var(--color-silver-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Engineering / Safety Section
   ========================================================================== */

.section-engineering {
    background:
        linear-gradient(180deg, rgba(96, 157, 182, 0.96) 0 86px, transparent 86px),
        linear-gradient(165deg, transparent 0 72%, rgba(217, 86, 97, 0.56) 72.2% 78%, transparent 78.2%),
        linear-gradient(135deg, #5b97af, #8bc0d1);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.section-engineering::before {
    content: '';
    position: absolute;
    top: 118px;
    right: -9%;
    width: 42%;
    height: 58%;
    background: rgba(255, 255, 255, 0.06);
    clip-path: polygon(24% 0, 100% 18%, 82% 100%, 0 76%);
    pointer-events: none;
}

.eng-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eng-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.eng-spec {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 22px 18px 24px;
    text-align: center;
    transition: all var(--transition-base);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.eng-spec:hover {
    background: rgba(69, 167, 216, 0.12);
    border-color: rgba(168, 227, 251, 0.36);
    transform: translateY(-4px);
}

.eng-spec-icon {

    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    padding: 6px;

}

.eng-spec-icon svg {
    width: 100%;
    height: 100%;
}

.eng-spec .num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
}

.eng-spec .num .unit {
    font-size: 0.9rem;
    color: var(--color-orange-bright);
    margin-left: 3px;
}

.eng-spec .name {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    color: var(--color-silver);
    margin-top: 6px;
}

.eng-spec .note {
    font-size: 0.78rem;
    color: var(--color-silver-light);
    margin-top: 8px;
}

/* Partners / trials */
.partners-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 38px;
    box-shadow: var(--shadow-lg);
    color: var(--color-text-dark);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.partners-card h3 {
    font-size: 1.1rem;
    color: var(--color-navy-900);
    margin-bottom: 6px;
}

.partners-card .sub {
    color: var(--color-text-muted);
    font-size: 0.86rem;
    margin-bottom: 24px;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-orange);
    transition: all var(--transition-base);
}

.partner-item:hover {
    background: #e5f0f5;
    transform: translateX(4px);
}

.partner-logo {
    width: 125px;
    height: 55px;
    border-radius: 8px;
    background: var(--color-white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    color: var(--color-navy-700);
    font-size: 1.2rem;
    border: 1px solid #dce5e8;
}

.partner-meta .pname {
    font-weight: 700;
    color: var(--color-navy-900);
    font-size: 0.96rem;
}

.partner-meta .ptag {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   Operational Impact Section
   ========================================================================== */

.section-impact {
    background: var(--color-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    background: var(--color-bg-light);
    border-radius: 8px;
    padding: 36px 30px;
    position: relative;
    border: 1px solid #dce5e8;
    transition: all var(--transition-base);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
}

.impact-card .arrow {
    color: var(--color-orange);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
}

.impact-card h3 {
    font-size: 1.1rem;
    color: var(--color-navy-900);
    margin-bottom: 4px;
    letter-spacing: 0.4px;
}

.impact-card .impact-num {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--color-orange), var(--color-orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin: 10px 0 8px;
}

.impact-card p {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ==========================================================================
   Specifications Section
   ========================================================================== */

.section-specs {
    background: var(--color-bg-light);
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.spec-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #dce5e8;
    transition: all var(--transition-base);
}

.spec-card:hover {
    box-shadow: var(--shadow-md);
}

.spec-card h3 {
    font-size: 1.15rem;
    color: var(--color-navy-900);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-card h3::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--color-orange);
    border-radius: 2px;
}

.spec-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-pill {
    background: linear-gradient(135deg, var(--color-bg-light), #dcebf1);
    color: var(--color-navy-900);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.94rem;
    border: 1px solid #dce5e8;
}

.spec-card p {
    color: var(--color-text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.spec-card .custom-note {
    background: linear-gradient(135deg, rgba(69, 167, 216, 0.12), rgba(69, 167, 216, 0.05));
    border: 1px solid rgba(69, 167, 216, 0.28);
    padding: 20px;
    border-radius: var(--radius-md);
    color: var(--color-text-dark);
    font-size: 0.96rem;
    line-height: 1.7;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.spec-card .custom-note svg {
    width: 22px;
    height: 22px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-card .custom-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-navy-900);
}

/* ==========================================================================
   Search / FAQ
   ========================================================================== */

.section-faq {
    background: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.faq-item {
    padding: 26px;
    border-radius: var(--radius-md);
    background: var(--color-bg-light);
    border: 1px solid rgba(0, 16, 24, 0.08);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--color-navy-900);
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Contact / CTA Section
   ========================================================================== */

.section-contact {
    background: linear-gradient(135deg, #6fbbd6 0%, #b9dce8 100%);
    color: var(--color-navy-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.10) 0, transparent 35%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.10) 0, transparent 35%);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.section-contact h2 {
    font-size: clamp(2.0rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-contact p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.88;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-light {
    background: var(--color-white);
    color: var(--color-navy-900);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-light:hover {
    color: var(--color-navy-900);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy-900);
    border: 2px solid rgba(18, 50, 70, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.32);
    color: var(--color-navy-900);
    border-color: var(--color-navy-900);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(18, 50, 70, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.42);
    transform: translateY(-3px);
}

.contact-card svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-card .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.contact-card .value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy-900);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: linear-gradient(120deg, #4c849d, #78afc3);
    color: var(--color-silver);
    padding: 60px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .brand {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer h4 {
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: var(--color-silver);
    font-size: 0.92rem;
    transition: color var(--transition-base);
}

.footer ul a:hover {
    color: var(--color-orange-bright);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.86rem;
}

/* ==========================================================================
   Scroll animations
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 360px; order: 2; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .hero-stat:nth-child(2) { border-right: none; }
    .value-grid, .impact-grid, .faq-grid { grid-template-columns: 1fr; }
    .eng-grid { grid-template-columns: 1fr; gap: 50px; }
    .specs-wrapper { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #ecf0f1;
        flex-direction: column;
        align-items: stretch;
        width: 240px;
        padding: 12px;
        gap: 4px;
        border-radius: 0 0 0 var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a { display: block; }
    .nav-toggle { display: block; }

    .mobile-page-menu {
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        width: min(290px, 88vw);
        padding: 8px 12px 14px;
        background: #ecf0f1;
        border: 1px solid rgba(0, 71, 92, 0.18);
        border-top: none;
        border-radius: 0 0 0 var(--radius-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .mobile-page-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-page-menu details {
        border-bottom: 1px solid rgba(0, 71, 92, 0.14);
    }

    .mobile-page-menu details:last-child { border-bottom: none; }

    .mobile-page-menu summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 4px;
        color: var(--color-navy-900);
        cursor: pointer;
        font-weight: 700;
        list-style: none;
    }

    .mobile-page-menu summary::-webkit-details-marker { display: none; }
    .mobile-page-menu summary::after { content: '+'; color: var(--color-orange); font-size: 1.3rem; font-weight: 400; }
    .mobile-page-menu details[open] summary::after { content: '−'; }

    .mobile-page-menu a {
        display: block;
        padding: 8px 12px 8px 18px;
        color: var(--color-text-muted);
        font-size: .93rem;
        border-left: 2px solid rgba(215, 25, 32, .35);
        margin: 0 4px 8px;
    }

    .mobile-page-menu a:hover { color: var(--color-navy-900); }

    .hero { padding: 110px 0 70px; }
    .section { padding: 70px 0; }
    .section-value .section-title { color: var(--color-white); }
    .section-value .section-sub { color: var(--color-silver-light); }
    .eng-specs { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 18px; }
}

@media (max-width: 480px) {
    .eng-specs { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stats .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 14px;
    }
    .hero-stats .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .floating-stat { display: none; }
    .brand-text .brand-sub { font-size: 0.62rem; letter-spacing: 1.6px; }
    .brand-text .brand-name { font-size: 0.95rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Dark text treatment for the lighter steel-blue theme. */
.navbar .brand,
.nav-links a,
.nav-toggle,
.hero,
.hero .subtitle,
.btn-ghost,
.section-title.light,
.section-sub.light,
.value-card,
.value-card .metric,
.value-card .metric-label,
.value-card h3,
.value-card p,
.section-engineering,
.eng-spec .num,
.eng-spec .name,
.eng-spec .note,
.hero-stats .num,
.hero-stats .label,
.floating-stat .stat-num,
.floating-stat .stat-label,
.footer,
.footer h4,
.footer ul a,
.section-value .section-title,
.section-value .section-sub {
    color: var(--color-navy-900);
}

.btn-ghost {
    border-color: rgba(18, 50, 70, 0.32);
    background: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
    color: var(--color-navy-900);
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(18, 50, 70, 0.55);
}

.nav-links a:hover {
    color: var(--color-navy-900);
}

/* FibreBolt logo palette: warm-grey ground, navy/teal structure, signal-red accents. */
body,
.navbar,
.hero,
.section-value,
.section-engineering,
.section-impact,
.section-specs,
.section-faq,
.section-contact,
.footer {
    background: #ecf0f1;
    color: var(--color-text-dark);
}

.navbar {
    border-bottom-color: rgba(0, 71, 92, 0.18);
}

.hero::before {
    background: rgba(0, 101, 125, 0.78);
}

.geo-plate {
    background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
}

.geo-slate {
    background: linear-gradient(135deg, #ffffff, #cbdadd);
}

.floating-stat,
.hero-stats,
.value-card,
.partners-card,
.eng-spec {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 71, 92, 0.2);
    color: var(--color-text-dark);
}

.section-engineering::before {
    background: rgba(0, 101, 125, 0.08);
}

.value-card {
    box-shadow: 0 8px 22px rgba(0, 43, 58, 0.12);
}

.footer {
    border-top: 1px solid rgba(0, 71, 92, 0.16);
}

/* Alternate the industrial cuts so adjacent elements do not share one silhouette. */
.geo-plate {
    clip-path: polygon(0 14%, 88% 0, 100% 72%, 14% 100%);
}

.geo-stripe {
    clip-path: polygon(0 38%, 82% 0, 100% 60%, 14% 100%);
}

.geo-slate {
    clip-path: polygon(0 0, 94% 26%, 100% 100%, 10% 78%);
}

.value-card:nth-child(2),
.impact-card:nth-child(2),
.eng-spec:nth-child(2) {
    clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.value-card:nth-child(3),
.impact-card:nth-child(3),
.eng-spec:nth-child(3) {
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.partners-card {
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 18px);
}

/* ========================================================================
   FibreRebar product page
   ===================================================================== */
.rebar-hero {
    min-height: 620px;
    padding: 155px 0 90px;
    background: linear-gradient(135deg, #002b3a 0%, #00475c 58%, #0b7285 100%);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.rebar-hero::after {
    content: '';
    position: absolute;
    width: 58vw;
    height: 58vw;
    max-width: 820px;
    max-height: 820px;
    right: -20vw;
    top: -24vw;
    border: 2px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.rebar-hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.rebar-kicker { color: #a8e3fb; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rebar-hero h1 { margin: 14px 0 20px; color: var(--color-white); font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1.04; letter-spacing: -.055em; }
.rebar-hero h1 span { color: #a8e3fb; }
.rebar-hero p { max-width: 630px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.rebar-hero .btn-ghost { color: var(--color-white); border-color: rgba(255,255,255,.45); background: transparent; }
.rebar-hero .btn-ghost:hover { color: var(--color-white); background: rgba(255,255,255,.13); }
.rebar-visual { min-height: 330px; display: grid; place-items: center; }
.rebar-rib { width: min(100%, 360px); height: 360px; border: 26px solid #c7e4ed; border-radius: 50%; box-shadow: inset 0 0 0 13px #1b7084, 0 28px 60px rgba(0,0,0,.3); position: relative; transform: rotate(-17deg); }
.rebar-rib::before, .rebar-rib::after { content: ''; position: absolute; background: repeating-linear-gradient(135deg, transparent 0 16px, rgba(255,255,255,.76) 17px 25px, transparent 26px 42px); }
.rebar-rib::before { inset: 28px -74px auto; height: 64px; }
.rebar-rib::after { inset: auto -74px 28px; height: 64px; }

.rebar-intro { background: #ecf0f1; }
.rebar-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.rebar-intro h2 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.12; }
.rebar-intro p { color: var(--color-text-muted); margin-bottom: 20px; }
.rebar-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.rebar-feature { padding: 26px 20px; background: #fff; border: 1px solid rgba(0,71,92,.16); border-top: 4px solid var(--color-orange); }
.rebar-feature h3 { font-size: 1rem; margin-bottom: 8px; }
.rebar-feature p { margin: 0; font-size: .9rem; }

.rebar-applications { background: #fff; }
.rebar-application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rebar-application { min-height: 230px; padding: 30px; background: linear-gradient(145deg, #f2f6f7, #dce9ec); border-left: 5px solid var(--color-navy-700); }
.rebar-application .application-number { display: block; color: var(--color-orange); font-size: .78rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 36px; }
.rebar-application h3 { margin-bottom: 10px; font-size: 1.2rem; }
.rebar-application p { color: var(--color-text-muted); font-size: .94rem; }

.rebar-cta { padding: 78px 0; background: var(--color-orange); color: #fff; text-align: center; }
.rebar-cta h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 3rem); }
.rebar-cta p { max-width: 620px; margin: 14px auto 28px; }
.rebar-cta .btn-light { background: #fff; color: var(--color-navy-900); }

@media (max-width: 820px) {
    .rebar-hero-inner, .rebar-intro-grid { grid-template-columns: 1fr; gap: 42px; }
    .rebar-hero { padding-top: 130px; }
    .rebar-visual { min-height: 240px; }
    .rebar-rib { width: 255px; height: 255px; border-width: 19px; }
    .rebar-features, .rebar-application-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   FibreRebar document-led page
   ===================================================================== */
.rebar-document-hero { min-height: 680px; position: relative; display: grid; align-items: end; padding: 150px 0 90px; overflow: hidden; background: var(--color-navy-900); }
.rebar-document-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.rebar-document-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,43,58,.94) 0%, rgba(0,43,58,.74) 48%, rgba(0,43,58,.2) 100%); }
.rebar-document-content { position: relative; z-index: 1; color: #fff; }
.rebar-document-content h1 { max-width: 860px; margin: 13px 0 20px; color: #fff; font-size: clamp(2.5rem, 5.5vw, 5.1rem); line-height: 1.03; letter-spacing: -.06em; }
.rebar-document-content h1 span { color: #a8e3fb; }
.rebar-document-content p { max-width: 670px; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.rebar-document-content .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: transparent; }
.rebar-document-content .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.14); }
.rebar-overview { background: #ecf0f1; }
.rebar-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rebar-two-column h2, .rebar-lifecycle-grid h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.12; margin: 10px 0 18px; }
.rebar-compare-image { margin: 0; box-shadow: var(--shadow-lg); }
.rebar-compare-image img, .rebar-product-image { width: 100%; }
.rebar-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.rebar-benefit-grid article { background: #fff; padding: 25px; border-top: 4px solid var(--color-orange); box-shadow: var(--shadow-sm); }
.rebar-benefit-grid strong { font-size: 1.08rem; }
.rebar-benefit-grid p { margin: 9px 0 0; color: var(--color-text-muted); font-size: .92rem; }
.rebar-comparison { background: #fff; }
.rebar-table-wrap { overflow-x: auto; border: 1px solid rgba(0,71,92,.18); }
.rebar-table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; text-align: left; }
.rebar-table th { padding: 16px 20px; color: #fff; background: var(--color-navy-800); font-size: .88rem; letter-spacing: .02em; }
.rebar-table td { padding: 15px 20px; border-bottom: 1px solid rgba(0,71,92,.12); color: var(--color-text-muted); }
.rebar-table tr:last-child td { border-bottom: none; }
.rebar-table td:first-child { color: var(--color-navy-900); font-weight: 700; }
.rebar-note { margin: 17px 0 0; color: var(--color-text-muted); font-size: .88rem; }
.rebar-cost { background: #e1ecee; }
.rebar-lifecycle-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.rebar-lifecycle-grid > img { width: 100%; min-height: 420px; object-fit: cover; }
.rebar-lifecycle-grid p { color: var(--color-text-muted); margin-bottom: 16px; }
.rebar-stat-line { display: grid; grid-template-columns: auto 1fr; gap: 5px 16px; margin-top: 28px; align-items: baseline; }
.rebar-stat-line strong { color: var(--color-orange); font-size: 1.5rem; }
.rebar-stat-line span { color: var(--color-text-muted); }
.rebar-product-section { background: #fff; }
.rebar-size-table { min-width: 900px; margin-top: 48px; }
.rebar-applications-section { background: #ecf0f1; }
.rebar-considerations { margin-top: 42px; padding: 30px; background: #fff; border-left: 5px solid var(--color-orange); }
.rebar-considerations h3 { margin-bottom: 10px; }
.rebar-considerations p { color: var(--color-text-muted); margin-top: 10px; }
.rebar-gallery { background: #fff; }
.rebar-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rebar-gallery-grid img { width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow-sm); }
.rebar-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.72); }
.rebar-cta .btn-outline:hover { color: var(--color-navy-900); background: #fff; }
.rebar-cta .hero-cta { justify-content: center; }
@media (max-width: 820px) { .rebar-document-hero { min-height: 620px; padding: 135px 0 70px; } .rebar-document-overlay { background: linear-gradient(90deg, rgba(0,43,58,.94), rgba(0,43,58,.57)); } .rebar-two-column, .rebar-lifecycle-grid { grid-template-columns: 1fr; gap: 34px; } .rebar-benefit-grid { grid-template-columns: 1fr 1fr; } .rebar-lifecycle-grid > img { min-height: 280px; } }
@media (max-width: 520px) { .rebar-document-hero { min-height: 600px; } .rebar-document-content h1 { font-size: 2.65rem; } .rebar-benefit-grid, .rebar-gallery-grid { grid-template-columns: 1fr; } .rebar-gallery-grid img { height: 330px; } .rebar-stat-line { grid-template-columns: 1fr; gap: 0; margin-bottom: 12px; } }

/* FibreRebar uses the same light industrial system as the Fibre Bolt home page. */
.rebar-document-hero {
    background: #ecf0f1;
}

.rebar-document-hero::before,
.rebar-document-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 2;
    transform: rotate(-12deg);
}

.rebar-document-hero::before {
    right: -4%;
    top: 18%;
    width: 520px;
    height: 205px;
    background: rgba(0, 101, 125, 0.8);
}

.rebar-document-hero::after {
    right: 12%;
    top: 43%;
    width: 320px;
    height: 125px;
    background: rgba(215, 25, 32, 0.86);
}

.rebar-document-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(236, 240, 241, 0.98) 0%, rgba(236, 240, 241, 0.92) 48%, rgba(236, 240, 241, 0.25) 100%);
}

.rebar-document-content {
    z-index: 3;
    color: var(--color-navy-900);
}

.rebar-document-content h1 {
    color: var(--color-navy-900);
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.rebar-kicker {
    color: var(--color-red);
}

.rebar-document-content h1 span {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.rebar-document-content p {
    color: #000000;
}

.rebar-document-content .hero-cta {
    gap: 24px;
}

.rebar-document-content .btn-ghost {
    color: var(--color-navy-900);
    border-color: rgba(0, 71, 92, 0.32);
    background: rgba(255, 255, 255, 0.38);
}

.rebar-document-content .btn-ghost:hover {
    color: var(--color-navy-900);
    background: rgba(255, 255, 255, 0.7);
}

.rebar-overview,
.rebar-comparison,
.rebar-cost,
.rebar-product-section,
.rebar-applications-section,
.rebar-gallery {
    background: #ecf0f1;
}

.rebar-overview .section-eyebrow,
.rebar-comparison .section-eyebrow,
.rebar-cost .section-eyebrow,
.rebar-product-section .section-eyebrow,
.rebar-applications-section .section-eyebrow,
.rebar-gallery .section-eyebrow {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    text-shadow: 0 2px 4px rgba(0, 16, 24, 0.18);
}

.rebar-benefit-grid article,
.rebar-table,
.rebar-considerations,
.rebar-application {
    border: 1px solid rgba(0, 71, 92, 0.18);
    box-shadow: 0 8px 22px rgba(0, 43, 58, 0.12);
}

.rebar-benefit-grid article,
.rebar-application,
.rebar-considerations {
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.rebar-benefit-grid article {
    border-top: 4px solid var(--color-red);
}

.rebar-application {
    background: #fff;
    border-left: 5px solid var(--color-navy-700);
}

.rebar-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 38px 0 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 71, 92, 0.2);
    clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.rebar-counter-grid > div {
    padding: 24px 28px;
    border-right: 1px solid rgba(0, 71, 92, 0.18);
}

.rebar-counter-grid > div:last-child {
    border-right: 0;
}

.rebar-counter-grid strong,
.rebar-counter-grid span {
    display: block;
}

.rebar-counter-grid strong {
    color: var(--color-red);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.rebar-counter-grid > div > span {
    margin-top: 7px;
    color: var(--color-text-muted);
    font-size: .84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

@media (max-width: 820px) {
    .rebar-document-hero::before { right: -28%; width: 420px; }
    .rebar-document-hero::after { right: -5%; width: 250px; }
    .rebar-counter-grid { grid-template-columns: 1fr; }
    .rebar-counter-grid > div { border-right: 0; border-bottom: 1px solid rgba(0, 71, 92, 0.18); }
    .rebar-counter-grid > div:last-child { border-bottom: 0; }
}
