/* style.css */

:root {
    --color-primary: #0A0F1D; /* Richer dark slate */
    --color-secondary: #1E293B;
    --color-accent: #F59E0B;
    --color-accent-glow: rgba(245, 158, 11, 0.4);
    --color-bg: #0F172A; /* Switched background to dark for premium cinematic feel */
    --color-text: #E2E8F0; /* Lighter text for dark mode */
    --color-white: #FFFFFF;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-heading-alt: 'Outfit', sans-serif;
    --font-data: 'JetBrains Mono', monospace;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.3s ease;
    
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--color-bg); }

.safari-body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9999; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ------------------------------------
   A. NAVBAR ("Floating Island")
------------------------------------ */
.island-nav {
    position: fixed; top: 0; left: 0; transform: none;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0; z-index: 1000;
    padding: 1.25rem 5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}
.island-nav__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.island-nav__brand-name {
    color: var(--color-white); font-family: var(--font-heading-alt);
    font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em;
}
.island-nav__menu { display: flex; align-items: center; gap: 2rem; }
.island-nav__link--fox {
    color: var(--color-white); text-decoration: none; font-size: 0.95rem; font-weight: 600;
    opacity: 0.8; transition: var(--transition-smooth);
}
.island-nav__link--fox:hover { opacity: 1; color: var(--color-accent); }
.island-nav__hotline--owl {
    color: var(--color-accent); text-decoration: none; font-family: var(--font-data);
    font-size: 0.9rem; font-weight: 700; border-bottom: 1px dashed rgba(245,158,11,0.3);
}

/* Premium Buttons */
.fox-button {
    display: inline-block; padding: 0.75rem 1.75rem; border-radius: 30px;
    text-decoration: none; font-family: var(--font-heading-alt); font-weight: 700;
    text-align: center; cursor: pointer; border: none; transition: var(--transition-spring);
    position: relative; overflow: hidden; z-index: 1;
}
.fox-button::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #F59E0B, #F97316);
    z-index: -1; transition: opacity 0.3s ease;
}
.fox-button--primary { color: #020617; box-shadow: 0 0 15px var(--color-accent-glow); }
.fox-button--primary:hover {
    transform: translateY(-2px); box-shadow: 0 0 25px var(--color-accent-glow);
}
.fox-button--large { color: #020617; font-size: 1.15rem; padding: 1.25rem 3rem; border-radius: 50px; box-shadow: 0 0 20px var(--color-accent-glow); }
.fox-button--large:hover { transform: translateY(-3px); box-shadow: 0 0 35px var(--color-accent-glow); }
.fox-button--submit { width: 100%; margin-top: 1.5rem; padding: 1.25rem; font-size: 1.1rem; border-radius: 12px; color: #020617; }

/* Sticky Trigger */
.sticky-trigger--orchid {
    position: fixed; bottom: 2rem; right: 2rem;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: var(--color-white); border: 1px solid var(--color-accent);
    padding: 1.25rem 2.5rem; border-radius: 50px;
    font-family: var(--font-heading-alt); font-weight: 800; font-size: 1.1rem;
    cursor: pointer; z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.2);
    transition: var(--transition-spring);
}
.sticky-trigger--orchid:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: #020617;
}

/* ------------------------------------
   B. HERO
------------------------------------ */
.safety-hero {
    position: relative;
    z-index: 1;
    height: 100vh;
    padding: 0 5%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .safety-hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 5% 4rem 5%;
    }
    .safety-hero__overlay {
        background: linear-gradient(180deg, #020617 0%, #020617 55%, rgba(2, 6, 23, 0.75) 80%, rgba(2, 6, 23, 0.4) 100%) !important;
    }
}
.safety-hero__background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://new.jtsheconsultants.co.za/assets/safety_hero_bg.png');
    background-size: cover; background-position: center 20%; z-index: -2;
}
.safety-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #020617 0%, #020617 45%, rgba(2, 6, 23, 0.7) 75%, rgba(2, 6, 23, 0.3) 100%);
    z-index: -1;
}
.safety-hero__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}
@media (max-width: 991px) {
    .safety-hero__container {
        height: auto;
    }
}
.safety-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
    align-items: center;
}
@media (min-width: 992px) {
    .safety-hero__grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 5%;
    }
}

/* Left Column Styling */
.safety-hero__left {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.safety-hero__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.55rem 1.15rem;
    border-radius: 30px;
    width: fit-content;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.safety-hero__status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: breathe-dot 2s infinite alternate;
}
.safety-hero__status-text {
    color: var(--color-accent);
    font-family: var(--font-data);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}
.safety-hero__title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.1;
}
.safety-hero__title-line--bold {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-white);
    text-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
    .safety-hero__title-line--bold {
        font-size: 3.5rem;
    }
}
.safety-hero__title-line--highlight {
    display: inline-block;
    font-family: var(--font-heading-alt);
    font-size: 2.8rem;
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}
@media (min-width: 768px) {
    .safety-hero__title-line--highlight {
        font-size: 3.8rem;
    }
}
.safety-hero__title-line--sub {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: -0.01em;
    margin-top: 0.25rem;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .safety-hero__title-line--sub {
        font-size: 1.65rem;
    }
}
.safety-hero__subtitle {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 600px;
}
.safety-hero__actions-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}
@media(min-width: 480px) {
    .safety-hero__actions-row {
        flex-direction: row;
        align-items: center;
    }
}
.fox-button--hero-primary {
    width: 100%;
}
@media(min-width: 480px) {
    .fox-button--hero-primary {
        width: auto;
    }
}
.fox-button--hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-family: var(--font-heading-alt);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
    background: transparent;
    border: none;
    width: auto;
}

.fox-button--hero-secondary:hover {
    color: var(--color-white);
    background: transparent;
    border-color: transparent;
}

.fox-button--hero-secondary .arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.fox-button--hero-secondary:hover .arrow {
    transform: translateX(6px);
}
.safety-hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-data);
    font-size: 0.75rem;
    color: #475569;
}
.safety-hero__trust-label {
    font-weight: 700;
    color: #64748B;
}
.safety-hero__trust-val {
    color: #475569;
}

/* Right Column Styling: Safety HUD */
.safety-hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.safety-hud {
    width: 100%;
    max-width: 460px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}
.safety-hud__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}
.safety-hud__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.safety-hud__status-light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
}
.safety-hud__status-lbl {
    font-family: var(--font-data);
    font-size: 0.7rem;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 0.05em;
}
.safety-hud__id {
    font-family: var(--font-data);
    font-size: 0.7rem;
    color: #475569;
}
.safety-hud__main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
}
.safety-radar {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.safety-radar__grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 35%, rgba(245, 158, 11, 0.03) 36%, rgba(245, 158, 11, 0.03) 39%, transparent 40%, transparent 69%, rgba(245, 158, 11, 0.03) 70%, rgba(245, 158, 11, 0.03) 73%, transparent 74%);
}
.safety-radar__grid::before {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 1px;
    background: rgba(245, 158, 11, 0.08);
    transform: translateY(-50%);
}
.safety-radar__grid::after {
    content: '';
    position: absolute;
    left: 50%; top: 0;
    width: 1px; height: 100%;
    background: rgba(245, 158, 11, 0.08);
    transform: translateX(-50%);
}
.safety-radar__pulse-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
.radar-circle-1 {
    stroke: rgba(245, 158, 11, 0.35);
    fill: rgba(245, 158, 11, 0.02);
    stroke-width: 1px;
    stroke-dasharray: 4 4;
    transform-origin: center;
    animation: pulse-radar 4s infinite linear;
}
.radar-circle-2 {
    stroke: rgba(245, 158, 11, 0.2);
    fill: none;
    stroke-width: 1px;
    transform-origin: center;
    animation: pulse-radar 4s infinite linear 1.3s;
}
.radar-circle-3 {
    stroke: rgba(245, 158, 11, 0.12);
    fill: none;
    stroke-width: 1px;
    transform-origin: center;
    animation: pulse-radar 4s infinite linear 2.6s;
}
.radar-sweeper {
    stroke: var(--color-accent);
    stroke-width: 1.5px;
    opacity: 0.7;
    transform-origin: 100px 100px;
    animation: sweep 6s infinite linear;
}
.safety-radar__center-dot {
    position: relative;
    z-index: 2;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
}
.safety-radar__label {
    position: absolute;
    bottom: 0.75rem;
    font-family: var(--font-data);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    opacity: 0.7;
    z-index: 2;
}
.safety-ticker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background: rgba(2, 6, 23, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.25rem;
}
.safety-ticker__label {
    font-family: var(--font-data);
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.safety-ticker__value {
    font-family: var(--font-data);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.safety-ticker__footer {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}
.safety-hud__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
    width: 100%;
}
.safety-hud__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}
.safety-hud__metric-num {
    font-family: var(--font-heading-alt);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
}
.safety-hud__metric-lbl {
    font-size: 0.7rem;
    color: #64748B;
    margin-top: 0.15rem;
}
.safety-hud__metric-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.06);
}

/* Animations */
@keyframes breathe-dot {
    0% { opacity: 0.4; box-shadow: 0 0 4px #10B981; }
    100% { opacity: 1; box-shadow: 0 0 12px #10B981; }
}
@keyframes pulse-radar {
    0% { transform: scale(0.1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}
@keyframes sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ------------------------------------
   C. FEATURES / ADVANTAGE
------------------------------------ */
.features-grid { padding: 8rem 5%; background: var(--color-primary); }
.features-grid__container { max-width: 1440px; margin: 0 auto; }
.features-grid__header { text-align: center; margin-bottom: 6rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.features-grid__title {
    font-family: var(--font-heading-alt); font-size: 3rem; color: var(--color-white);
    margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
}
.features-grid__description { font-size: 1.2rem; color: #94A3B8; line-height: 1.8; }

.features-grid__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }

/* Shared Card Glass Styles */
.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 20px;
    padding: 2.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition-spring);
}
.glass-card:hover { transform: translateY(-10px); border-color: rgba(245,158,11,0.3); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(245,158,11,0.1); }

/* Premium Interactive Safety Cards */
.safety-card {
    min-height: 530px;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-spring);
}

.safety-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.1);
}

.safety-card__header {
    margin-bottom: 1.5rem;
}

.safety-card__title {
    font-family: var(--font-heading-alt);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.safety-card__subtitle {
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 0.25rem;
}

.safety-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.safety-card__cta {
    margin-top: auto !important;
}

/* Card 1: Site Shutdown Risk Calculator */
.safety-risk {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.safety-risk__inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.safety-risk__label {
    font-family: var(--font-data);
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.safety-risk__select {
    width: 100%;
    box-sizing: border-box;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.safety-risk__select:focus, .safety-risk__select:hover {
    border-color: rgba(245, 158, 11, 0.4);
    outline: none;
}
.safety-risk__output {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.safety-risk__result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.safety-risk__result-label {
    font-size: 0.85rem;
    color: #CBD5E1;
}
.safety-risk__result-value {
    font-family: var(--font-data);
    font-size: 1.1rem;
    font-weight: 700;
    color: #10B981;
}
.safety-risk__result-value--danger {
    color: #EF4444;
}

/* Card 2: Instant Audit-Readiness Grader */
.safety-audit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.safety-audit__toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.safety-audit__toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.safety-audit__toggle-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.safety-audit__toggle-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #E2E8F0;
}
.safety-audit__toggle {
    position: relative;
    width: 36px;
    height: 20px;
}
.safety-audit__toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}
.safety-audit__toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #334155;
    transition: .4s;
    border-radius: 20px;
}
.safety-audit__toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.safety-audit__toggle-input:checked + .safety-audit__toggle-slider {
    background-color: #10B981;
}
.safety-audit__toggle-input:checked + .safety-audit__toggle-slider:before {
    transform: translateX(16px);
}

.safety-audit__gauge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.safety-audit__gauge-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}
.safety-audit__gauge-fill {
    height: 100%;
    background: #EF4444; /* Default Red, updated in JS */
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.6s ease;
}
.safety-audit__score-readout {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.safety-audit__score-percent {
    font-family: var(--font-heading-alt);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}
.safety-audit__score-text {
    font-family: var(--font-data);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Card 3: Safety File Deployment Estimator */
.safety-deploy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.safety-deploy__inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.safety-deploy__label {
    font-family: var(--font-data);
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.safety-deploy__select {
    width: 100%;
    box-sizing: border-box;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.safety-deploy__select:focus, .safety-deploy__select:hover {
    border-color: rgba(245, 158, 11, 0.4);
    outline: none;
}
.safety-deploy__timeline {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.safety-deploy__timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.safety-deploy__timeline-text {
    display: flex;
    flex-direction: column;
}
.safety-deploy__eta-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}
.safety-deploy__eta-val {
    font-family: var(--font-heading-alt);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent);
}
.safety-deploy__guarantee {
    font-size: 0.75rem;
    color: #CBD5E1;
    font-style: italic;
    text-align: center;
}

/* Responsive details */
@media(max-width: 991px) {
    .safety-card {
        height: auto;
        min-height: 430px;
        padding: 2rem 1.5rem;
    }
}

/* ------------------------------------
   C2. LOGOS SECTION
------------------------------------ */
.logos-section { padding: 6rem 5%; background: var(--color-bg); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logos-section__container { max-width: 1440px; margin: 0 auto; text-align: center; }
.logos-section__title { font-family: var(--font-heading-alt); font-size: 2.5rem; color: var(--color-white); margin-bottom: 1rem; font-weight: 800; }
.logos-section__desc { font-size: 1.15rem; color: #94A3B8; margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.logos-section__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 2.5rem;
    max-width: 1440px;
    margin: 4rem auto 0 auto;
}
.logos-section__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: default;
    height: 70px;
    flex: 0 1 calc(50% - 1.25rem); /* Default 2 columns on mobile */
    max-width: 220px;
}
@media (min-width: 576px) {
    .logos-section__item {
        flex: 0 1 calc(33.333% - 1.7rem); /* 3 columns on tablet */
    }
}
@media (min-width: 992px) {
    .logos-section__item {
        flex: 0 1 calc(20% - 2rem); /* 5 columns on desktop */
    }
}
.logos-section__image { 
    height: auto;
    max-height: 48px;
    width: auto; 
    max-width: 100%; 
    object-fit: contain; 
    opacity: 0.7; 
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth); 
}
.logos-section__item:hover .logos-section__image { 
    opacity: 1.0; 
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
    transform: scale(1.05); 
}
.logos-section__svg {
    height: auto;
    max-height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.7;
    color: var(--color-white);
    transition: var(--transition-smooth);
}
.logos-section__item:hover .logos-section__svg {
    opacity: 1.0;
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.25));
    transform: scale(1.05);
}

/* ------------------------------------
   C3. CORE SERVICES
------------------------------------ */
/* ------------------------------------
   C3. CORE SERVICES (Split Sticky Section)
------------------------------------ */
.services-split { 
    padding: 8rem 5%; 
    background: var(--color-primary); 
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-split__container { 
    max-width: 1440px; 
    margin: 0 auto; 
}

@media (min-width: 992px) {
    .services-split__container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 6%;
    }
    .services-split__left {
        flex: 0 0 44%;
        position: sticky;
        top: 8rem;
        height: calc(100vh - 12rem);
        display: flex;
        align-items: center;
        z-index: 10;
    }
    .services-split__right {
        flex: 0 0 50%;
    }
}

.services-split__left-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services-split__header-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.45rem 1.15rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.services-split__badge-text {
    color: var(--color-accent);
    font-family: var(--font-data);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.services-split__main-title {
    font-family: var(--font-heading-alt);
    font-size: 2.15rem;
    color: var(--color-white);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.services-split__text-deck {
    position: relative;
    min-height: 250px;
    width: 100%;
}

.services-split__text-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.services-split__text-block.is-active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.services-split__service-title {
    font-family: var(--font-heading-alt);
    font-size: 1.65rem;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.services-split__service-desc {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.7;
    font-weight: 400;
}

.services-split__cta {
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    border-radius: 30px;
}

.services-split__image-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
}

@media (min-width: 992px) {
    .services-split__image-stack {
        gap: 6rem;
    }
    .services-split__image-item {
        height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}

.services-split__image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    background: rgba(30, 41, 59, 0.2);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.6s;
}

.services-split__image-wrapper:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.1);
}

.services-split__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-split__image-wrapper:hover .services-split__image {
    transform: scale(1.04);
}

.services-split__mobile-text {
    display: none;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .services-split {
        padding: 5rem 5%;
    }
    .services-split__container {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    .services-split__left {
        width: 100%;
        position: relative;
        top: auto;
        height: auto;
        display: block;
    }
    .services-split__left-content {
        align-items: center;
        text-align: center;
    }
    .services-split__header-badge {
        align-self: center;
        margin-bottom: 1.25rem;
    }
    .services-split__main-title {
        font-size: 1.95rem;
        margin-bottom: 2rem;
        max-width: 650px;
    }
    .services-split__text-deck {
        display: none;
    }
    .services-split__right {
        width: 100%;
    }
    .services-split__image-stack {
        gap: 4.5rem;
    }
    .services-split__image-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        height: auto;
    }
    .services-split__image-wrapper {
        height: 340px;
        max-height: none;
    }
    .services-split__mobile-text {
        display: block;
        width: 100%;
        background: rgba(30, 41, 59, 0.35);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        padding: 2.25rem 2rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
        text-align: left;
    }
    .services-split__service-title {
        font-size: 1.45rem;
        margin-bottom: 0.75rem;
    }
    .services-split__service-desc {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    .services-split__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1.5rem;
        font-size: 1rem;
        padding: 1rem;
    }
}

/* ------------------------------------
   C4. REVIEWS
------------------------------------ */
.reviews-section { padding: 8rem 5%; background: var(--color-bg); position: relative; overflow: hidden; }
.reviews-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 2px, transparent 2px);
    background-size: 30px 30px; z-index: 0; opacity: 0.5;
}
.reviews-section__container { max-width: 1440px; margin: 0 auto; position: relative; z-index: 1; }

.reviews-header { display: flex; flex-direction: column; gap: 3rem; margin-bottom: 5rem; align-items: center; }
@media(min-width: 992px) { .reviews-header { flex-direction: row; justify-content: space-between; } }
.reviews-header__left { display: flex; align-items: center; gap: 1.5rem; }
.reviews-header__avatar { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--color-accent); object-fit: cover; }
.reviews-header__title { font-family: var(--font-heading-alt); font-size: 2.2rem; color: var(--color-white); line-height: 1.2; font-weight: 700; }
.text-accent { color: var(--color-accent); }

.reviews-header__right { display: flex; gap: 3rem; }
.reviews-stat { display: flex; flex-direction: column; }
.reviews-stat__number { font-family: var(--font-heading-alt); font-size: 3.5rem; font-weight: 800; color: var(--color-white); line-height: 1; margin-bottom: 0.5rem; }
.reviews-stat__label { font-size: 0.95rem; color: #94A3B8; line-height: 1.4; }
.reviews-stat__stars { color: #F59E0B; letter-spacing: 2px; font-size: 1.2rem; margin-bottom: 0.25rem; }

.reviews-carousel {
    position: relative;
    padding: 0;
    margin-bottom: 5rem;
}

.reviews-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-carousel__track {
    display: flex;
    gap: 2rem;
    align-items: stretch; /* Enforces equal height alignment for all cards */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-card {
    background: rgba(30, 41, 59, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2.5rem;
    display: flex; flex-direction: column; transition: var(--transition-smooth);
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}

@media(min-width: 768px) {
    .review-card {
        flex: 0 0 calc((100% - 2rem) / 2);
        width: calc((100% - 2rem) / 2);
        cursor: none; /* Hide system cursor only when over the review card */
    }
}

@media(min-width: 1024px) {
    .review-card {
        flex: 0 0 calc((100% - 4rem) / 3);
        width: calc((100% - 4rem) / 3);
    }
}

.review-card:hover { transform: translateY(-5px); border-color: rgba(245,158,11,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* Custom Follower Cursor Arrow - Orange/Gold themed with white arrow */
.reviews-carousel__custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--color-accent); /* Solid orange/gold background */
    border: 2.5px solid var(--color-accent);
    color: var(--color-white); /* White arrow chevron */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    z-index: 1000;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, color 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.45);
}

.reviews-carousel__custom-cursor--visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.reviews-carousel__custom-cursor--visible.reviews-carousel__custom-cursor--disabled {
    opacity: 0.4;
}

.reviews-carousel__custom-cursor--left .reviews-carousel__cursor-icon {
    transform: rotate(180deg);
}

.reviews-carousel__cursor-icon {
    width: 24px;
    height: 24px;
    stroke-width: 3.5; /* Much thicker vector stroke for visibility */
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Nav control wrapper at bottom flanking indicators with arrows */
.reviews-carousel__nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.reviews-carousel__arrow {
    position: relative;
    top: auto; left: auto; right: auto; transform: none;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-spring);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.reviews-carousel__arrow:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent-glow);
    transform: scale(1.1);
}

.reviews-carousel__arrow:active {
    transform: scale(0.95);
}

.reviews-carousel__arrow:disabled {
    opacity: 0.15;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.03);
}

/* Indicators */
.reviews-carousel__indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.reviews-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.reviews-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.reviews-carousel__dot--active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 12px var(--color-accent-glow);
}

/* Adjust reviews-carousel for smaller devices */
@media(max-width: 767px) {
    .reviews-carousel {
        padding: 0;
    }
    .reviews-carousel__arrow {
        display: none; /* Rely on swipe gesture on mobile */
    }
    .reviews-carousel__nav-wrapper {
        margin-top: 2rem;
    }
}
.review-card__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.review-card__avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-family: var(--font-heading-alt); font-size: 1.1rem; color: var(--color-white); font-weight: 700; }
.review-card__role { font-size: 0.85rem; color: #94A3B8; }
.review-card__text { font-size: 1.05rem; color: #E2E8F0; line-height: 1.7; flex: 1; margin-bottom: 2rem; }
.review-card__footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }
.review-card__rating { font-family: var(--font-data); font-weight: 700; color: var(--color-white); display: flex; align-items: center; gap: 0.5rem; }
.review-card__rating .stars { color: #F59E0B; }
.review-card__date { background: #0F172A; color: #94A3B8; font-family: var(--font-data); font-size: 0.75rem; padding: 0.4rem 1rem; border-radius: 20px; font-weight: 700; border: 1px solid rgba(255,255,255,0.05); }

.reviews-footer { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; font-size: 1.1rem; color: #E2E8F0; }
@media(min-width: 768px) { .reviews-footer { flex-direction: row; } }
.reviews-footer__badge { display: flex; align-items: center; gap: 0.5rem; background: #10B981; color: #022C22; padding: 0.5rem 1.25rem; border-radius: 30px; font-weight: 800; font-family: var(--font-data); font-size: 0.9rem; }
.reviews-footer__badge .stars { color: #022C22; letter-spacing: 1px; }

/* ------------------------------------
   D. PHILOSOPHY ("EHS Manifesto")
------------------------------------ */
.manifesto-section { padding: 8rem 5%; background: var(--color-primary); color: var(--color-white); position: relative; }
.manifesto-section__container { max-width: 1440px; margin: 0 auto; }
.manifesto-section__compare { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .manifesto-section__compare { flex-direction: row; justify-content: space-between; align-items: stretch; } }
.manifesto-section__side { flex: 1; padding: 4rem 3rem; border-radius: 24px; transition: var(--transition-spring); }
.manifesto-section__side--reactive { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255,255,255,0.05); }
.manifesto-section__side--reactive:hover { border-color: rgba(239, 68, 68, 0.3); }
.manifesto-section__side--predictive {
    background: linear-gradient(135deg, #F59E0B, #F97316); color: #020617;
    box-shadow: 0 20px 40px rgba(245,158,11,0.2);
}
.manifesto-section__side--predictive:hover { transform: scale(1.02); box-shadow: 0 30px 60px rgba(245,158,11,0.3); }
.manifesto-section__label { font-family: var(--font-data); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; display: block; margin-bottom: 1.5rem; font-weight: 700; }
.manifesto-section__heading { font-family: var(--font-heading-alt); font-size: 2.8rem; margin-bottom: 2.5rem; line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; }
.manifesto-section__list { list-style: none; }
.manifesto-section__list-item { font-size: 1.2rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; font-weight: 500; }
.manifesto-section__list-item::before { content: ''; display: block; width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
.manifesto-section__divider { font-family: var(--font-heading-alt); font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,0.1); display: flex; align-items: center; }

/* ------------------------------------
   E. PROTOCOL ("Process Horizon Grid")
------------------------------------ */
.protocol-section {
    padding: 8rem 5%;
    background: #0B0F19; /* Slightly darker slate contrast */
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.protocol-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Header styling */
.protocol-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.protocol-header__tagline {
    font-family: var(--font-data);
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.protocol-header__title {
    font-family: var(--font-heading-alt);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.protocol-header__desc {
    font-size: 1.25rem;
    color: #94A3B8;
    line-height: 1.6;
}

/* Grid Layout */
.protocol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .protocol-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Glassmorphism Card Design */
.protocol-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.protocol-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08);
}

/* Faint Amber Background Index Number */
.protocol-card__bg-index {
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: var(--font-heading-alt);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.04);
    pointer-events: none;
    line-height: 1;
}

/* Icon Wrap */
.protocol-card__icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.protocol-card__svg {
    width: 36px;
    height: 36px;
}

.protocol-card__title {
    font-family: var(--font-heading-alt);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.protocol-card__desc {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Checked List styling */
.protocol-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.protocol-card__item {
    font-size: 0.95rem;
    color: #E2E8F0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.protocol-card__item:last-child {
    margin-bottom: 0;
}

.protocol-card__item::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

/* Subtle SVG Animation classes */
.anim-spin {
    transform-origin: center;
    animation: spin-clockwise 25s linear infinite;
}

.anim-radar {
    transform-origin: center;
    animation: spin-clockwise 6s linear infinite;
}

@keyframes spin-clockwise {
    100% { transform: rotate(360deg); }
}

/* Hover EKG pulse/checkmark trigger effects */
.protocol-card:hover .anim-pulse {
    stroke: #10B981;
    animation: ekg-pulse-anim 1.5s ease-in-out infinite;
}

@keyframes ekg-pulse-anim {
    0%, 100% { stroke-dasharray: 1000; stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 100; }
}

/* ------------------------------------
   F. MEMBERSHIP / CALL TO ACTION
------------------------------------ */
.lead-collection { padding: 8rem 5%; background: var(--color-primary); color: var(--color-white); position: relative; overflow: hidden; }
.lead-collection::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(245,158,11,0.05) 0%, transparent 50%); z-index: 0; pointer-events: none; }
.lead-collection__container { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 5rem; position: relative; z-index: 1; }
@media (min-width: 992px) { .lead-collection__container { grid-template-columns: 1fr 1fr; align-items: center; } }
.lead-collection__title { font-family: var(--font-heading-alt); font-size: 3.5rem; margin-bottom: 1.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.lead-collection__desc { font-size: 1.2rem; color: #94A3B8; margin-bottom: 3rem; line-height: 1.7; }
.lead-collection__contact-details { font-family: var(--font-data); font-size: 1.05rem; }
.lead-collection__contact-line { margin-bottom: 1rem; color: #E2E8F0; }
.lead-collection__contact-line strong { color: var(--color-white); font-family: var(--font-heading); }
.lead-collection__contact-link { color: var(--color-accent); text-decoration: none; transition: var(--transition-smooth); }
.lead-collection__contact-link:hover { color: var(--color-white); text-shadow: 0 0 10px rgba(245,158,11,0.5); }
.lead-collection__map iframe { filter: grayscale(1) invert(0.9) contrast(1.2); transition: var(--transition-smooth); border-radius: 16px !important; }
.lead-collection__map iframe:hover { filter: grayscale(0.5) invert(0.9) contrast(1.2); }

.lead-collection__form {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); padding: 3.5rem; border-radius: 24px; color: var(--color-white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lead-collection__form-title { font-family: var(--font-heading-alt); font-size: 1.8rem; margin-bottom: 2.5rem; color: var(--color-white); font-weight: 800; text-align: center; }
.lead-collection__form-group { margin-bottom: 1.5rem; flex: 1; }
.lead-collection__form-row { display: flex; gap: 1.5rem; flex-direction: column; }
@media (min-width: 576px) { .lead-collection__form-row { flex-direction: row; } }
.lead-collection__label { display: block; font-family: var(--font-data); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.75rem; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.05em; }
.lead-collection__input--fern {
    width: 100%; padding: 1.25rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    font-family: var(--font-body); font-size: 1.05rem; transition: var(--transition-smooth);
    background: rgba(0,0,0,0.2); color: var(--color-white);
}
.lead-collection__input--fern::placeholder { color: #475569; }
.lead-collection__input--fern:focus { outline: none; border-color: var(--color-accent); background: rgba(0,0,0,0.4); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15); }
.lead-collection__trust-badges { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.lead-collection__trust-badge { font-family: var(--font-data); font-size: 0.75rem; color: #64748B; background: rgba(255,255,255,0.05); padding: 0.4rem 1rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }

/* ------------------------------------
   G. FOOTER
------------------------------------ */
.site-footer {
    background: #020617;
    color: var(--color-white);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 5%;
}
.site-footer__ticker {
    background: #10B981;
    color: #022C22;
    padding: 0.75rem 0;
    font-family: var(--font-data);
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    display: flex;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.site-footer__ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
}
.site-footer__ticker-text {
    padding-right: 3rem;
    flex-shrink: 0;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 4)); }
}
.site-footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 0 2rem 0;
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media(min-width: 992px) {
    .site-footer__top {
        grid-template-columns: 320px 1fr;
        gap: 4rem;
    }
}
.site-footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.site-footer__logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}
.site-footer__brand-tagline {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.65;
}
.site-footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}
.site-footer__social-link {
    color: #94A3B8;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}
.site-footer__social-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}
.site-footer__credentials {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-family: var(--font-data);
    font-size: 0.8rem;
    color: #64748B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}
.site-footer__credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}
.site-footer__credential-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94A3B8;
}
.site-footer__credential-value {
    color: var(--color-white);
    font-weight: 600;
}
.site-footer__accreditations {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}
.site-footer__accreditation-logo {
    height: auto;
    object-fit: contain;
}
.site-footer__accreditation-logo--sacpcmp {
    max-height: 42px;
}
.site-footer__accreditation-logo--saiosh {
    max-height: 38px;
    filter: brightness(1.1);
}
.site-footer__cols-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
@media(min-width: 768px) {
    .site-footer__cols-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
.site-footer__col {
    display: flex;
    flex-direction: column;
}
.site-footer__col-title {
    font-family: var(--font-heading-alt);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.site-footer__link {
    text-decoration: none;
    font-size: 0.85rem;
    color: #94A3B8;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.site-footer__link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}
.site-footer__contact-info {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.5;
}
.site-footer__middle {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0;
    margin: 3rem 0 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.site-footer__giant-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}
.site-footer__giant-svg-text {
    font-family: var(--font-heading-alt);
    font-size: 110px;
    font-weight: 900;
    fill: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    user-select: none;
}
.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    font-family: var(--font-data);
    font-size: 0.75rem;
    color: #475569;
    padding-top: 1rem;
}
@media(min-width: 768px) {
    .site-footer__bottom {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
    }
}
.site-footer__bottom-left {
    text-align: center;
}
.site-footer__bottom-right {
    text-align: center;
}
@media(min-width: 768px) {
    .site-footer__bottom-left {
        text-align: left;
    }
    .site-footer__bottom-right {
        text-align: right;
    }
}
.site-footer__bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.site-footer__bottom-link {
    text-decoration: none;
    color: #475569;
    transition: color 0.3s ease;
}
.site-footer__bottom-link:hover {
    color: var(--color-white);
}
.site-footer__bottom-sep {
    color: #1E293B;
}
.site-footer__bottom-creator {
    color: #475569;
}
.site-footer__up-btn {
    text-decoration: none;
    color: #475569;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: inline-block;
}
.site-footer__up-btn:hover {
    color: var(--color-white);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .island-nav__menu { display: none; }
    .safety-hero__title-line--bold { font-size: 2.2rem; }
    .safety-hero__title-line--italic { font-size: 2.5rem; }
    .safety-hero__subtitle { font-size: 1.05rem; }
    .manifesto-section__divider { padding: 2rem 0; }
    .logos-section__grid { flex-direction: column; gap: 2rem; }
    .lead-collection__form { padding: 2rem; }
}

/* ------------------------------------
   H. SUBPAGE GLOBAL STYLING
------------------------------------ */
.subpage-hero {
    position: relative;
    padding: 10rem 5% 6rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #020617;
    overflow: hidden;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.subpage-hero__background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    filter: blur(4px);
    opacity: 0.25;
}
.subpage-hero__background--about {
    background-image: url("https://new.jtsheconsultants.co.za/assets/safety_placeholder.jpg");
}
.subpage-hero__background--safety-files {
    background-image: url("https://new.jtsheconsultants.co.za/assets/service_safety_files.png");
}
.subpage-hero__background--hse-support {
    background-image: url("https://new.jtsheconsultants.co.za/assets/service_hse_support.png");
}
.subpage-hero__background--confined-space {
    background-image: url("https://new.jtsheconsultants.co.za/assets/service_confined_space.png");
}
.subpage-hero__background--site-audits {
    background-image: url("https://new.jtsheconsultants.co.za/assets/service_site_audits.png");
}
.subpage-hero__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: -1;
}
.subpage-hero__container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subpage-hero__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    line-height: 1;
}
.subpage-hero__status-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: breathe-dot 2s infinite ease-in-out;
}
.subpage-hero__status-text {
    font-family: var(--font-data);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.subpage-hero__title {
    font-family: var(--font-heading-alt);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
@media(max-width: 768px) {
    .subpage-hero__title { font-size: 2.25rem; }
}
.subpage-hero__subtitle {
    font-size: 1.2rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 750px;
}
.subpage-hero__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Subpage Main Sections */
.subpage-section {
    padding: 8rem 5%;
    background-color: var(--color-primary);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.subpage-section--dark {
    background-color: var(--color-bg);
}
.subpage-section__container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}
.subpage-section__header {
    max-width: 800px;
    margin: 0 auto 5rem auto;
}
.subpage-section__title {
    font-family: var(--font-heading-alt);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.subpage-section__desc {
    font-size: 1.15rem;
    color: #94A3B8;
    line-height: 1.6;
}
.subpage-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media(min-width: 992px) {
    .subpage-section__grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}
.subpage-section__left {
    display: flex;
    flex-direction: column;
}
.subpage-section__rich-text p {
    font-size: 1.15rem;
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.subpage-section__rich-text p:last-child {
    margin-bottom: 0;
}

/* Credentials Card & Checklists */
.credentials-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.credentials-card__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.25rem;
    margin-bottom: 1.75rem;
}
.credentials-card__title {
    font-family: var(--font-heading-alt);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}
.credentials-card__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.credentials-card__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.credentials-card__label {
    font-family: var(--font-data);
    font-size: 0.7rem;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.credentials-card__value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 600;
}
.credentials-card__logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.credentials-card__logo {
    height: auto;
    max-height: 48px;
    width: auto;
    opacity: 0.85;
}

/* Checklist Visual Layout */
.checklist-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.checklist-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    color: var(--color-accent);
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.checklist-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Interactive FAQ Accordion Split Redesign */
.faq-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.faq-split {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 5rem;
    max-width: 1440px;
    margin: 0 auto;
    align-items: start;
    padding: 0 2rem;
}
.faq-left-col {
    position: sticky;
    top: 6.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq-section-title {
    font-family: var(--font-heading-alt);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: -0.02em;
}
.faq-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: #94A3B8;
}
.faq-visual-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(30, 41, 59, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.8s ease;
}
.faq-visual-card:hover .faq-visual-image {
    transform: scale(1.05);
}
.faq-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
.faq-cta-box {
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #94A3B8;
}
.faq-cta-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed rgba(245, 158, 11, 0.4);
    transition: var(--transition-smooth);
}
.faq-cta-link:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

/* Accordion Right Column Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-accordion__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    transition: var(--transition-smooth);
    overflow: hidden;
}
.faq-accordion__item:hover {
    background: rgba(255, 255, 255, 0.01);
}
.faq-accordion__trigger {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--color-white);
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading-alt);
    font-size: 1.25rem;
    font-weight: 700;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}
.faq-accordion__trigger:focus {
    outline: none;
}
.faq-accordion__trigger-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.faq-accordion__item-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.faq-accordion__item:hover .faq-accordion__item-icon-wrapper {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}
.faq-accordion__item.is-active .faq-accordion__item-icon-wrapper {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}
.faq-accordion__title-text {
    font-family: var(--font-heading-alt);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.01em;
}
.faq-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    flex-shrink: 0;
}
.faq-accordion__item:hover .faq-accordion__icon {
    color: var(--color-white);
}
.faq-accordion__item.is-active .faq-accordion__icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}
.faq-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-accordion__text {
    padding: 0 3rem 2rem 3.75rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.7;
}

/* Responsiveness */
@media (max-width: 991px) {
    .faq-split {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .faq-left-col {
        position: static;
    }
    .faq-section-title {
        font-size: 2.25rem;
    }
    .faq-visual-card {
        max-width: 550px;
    }
}
@media (max-width: 576px) {
    .faq-accordion__trigger {
        padding: 1.5rem 0;
    }
    .faq-accordion__title-text {
        font-size: 1.1rem;
    }
    .faq-accordion__text {
        padding-left: 0;
    }
}

/* Methodology Grid Section */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.methodology-card {
    background: rgba(30, 41, 59, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}
.methodology-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 158, 11, 0.1);
}
.methodology-card__num {
    font-family: var(--font-data);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(245, 158, 11, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    transition: var(--transition-smooth);
}
.methodology-card:hover .methodology-card__num {
    color: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
}
.methodology-card__title {
    font-family: var(--font-heading-alt);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.methodology-card__text {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   STICKY STACKED CARDS LAYOUT (Section 2)
   ========================================================================== */
.sticky-features-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--midnight-base);
}
.sticky-features-split {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.sticky-features-left {
    position: sticky;
    top: calc(50vh - 150px);
    padding-bottom: 2rem;
}
.sticky-features__pre-title {
    display: inline-block;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
}
.sticky-features__pre-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--color-accent);
    transform: translateY(-50%);
}
.sticky-features__title {
    font-family: var(--font-heading-alt);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.sticky-features__title span {
    color: var(--color-accent);
}
.sticky-features__desc {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Stacking Cards */
.sticky-features-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 4rem;
}
.sticky-card {
    position: sticky;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Stacking offsets to create the overlapped deck of cards effect */
.sticky-card:nth-child(1) { top: calc(50vh - 150px); z-index: 1; }
.sticky-card:nth-child(2) { top: calc(50vh - 130px); z-index: 2; }
.sticky-card:nth-child(3) { top: calc(50vh - 110px); z-index: 3; }
.sticky-card:nth-child(4) { top: calc(50vh - 90px); z-index: 4; }
.sticky-card:nth-child(5) { top: calc(50vh - 70px); z-index: 5; }
.sticky-card:nth-child(6) { top: calc(50vh - 50px); z-index: 6; }
.sticky-card:nth-child(7) { top: calc(50vh - 30px); z-index: 7; }

.sticky-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px);
}
.sticky-card__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}
.sticky-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}
.sticky-card__content h3 {
    font-family: var(--font-heading-alt);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}
.sticky-card__content p {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sticky-features-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }
    .sticky-features-left {
        position: static;
    }
    .sticky-card {
        position: static;
        flex-direction: column;
        padding: 2rem;
    }
}

/* ==================================================
   SERVICES CONVERSION SYSTEM
   ================================================== */
.safety-hero__deliverables-list {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-left: 0;
    list-style: none;
}
.safety-hero__deliverable-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94A3B8;
    font-size: 1rem;
    text-align: left;
}
.safety-hero__deliverable-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}
.safety-hero__trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.safety-hero__trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.45rem 0.95rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition-smooth);
}
.safety-hero__trust-badge-pill:hover {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.08);
}
.safety-hero__trust-badge-pill svg {
    color: var(--color-accent);
}

/* Glassmorphic Conversion Card */
.conversion-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 158, 11, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition-spring);
    text-align: left;
    margin-left: auto;
}
.conversion-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(245, 158, 11, 0.06);
}

/* Steps Tracker */
.conversion-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.conversion-card__back-btn {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    transition: var(--transition-smooth);
}
.conversion-card__back-btn:hover {
    color: var(--color-accent);
}
.conversion-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.conversion-step-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition-smooth);
}
.conversion-step-dot.is-active {
    background: var(--color-accent);
    box-shadow: 0 0 8px var(--color-accent);
}

.conversion-step__title {
    font-family: var(--font-heading-alt);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.conversion-step__desc {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

/* Step Animations */
.conversion-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.conversion-step.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Urgency Selector Cards */
.urgency-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.urgency-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.urgency-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}
.urgency-card.is-selected {
    background: rgba(245, 158, 11, 0.04);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}
.urgency-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.urgency-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
}
.urgency-card__tag {
    font-family: var(--font-data);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.urgency-card__tag--rush {
    color: #F87171;
}

/* Fields & Inputs */
.conversion-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}
.conversion-form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.conversion-form-input {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}
.conversion-form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
    outline: none;
}
select.conversion-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}
.conversion-form-input::placeholder {
    color: #475569;
}

/* Buttons */
.conversion-card .fox-button--submit {
    margin-top: 0.5rem;
    border-radius: 10px;
}
.conversion-card .fox-button--submit:hover {
    transform: translateY(-2px);
}

/* Success View */
.conversion-success {
    text-align: center;
    padding: 2.5rem 0 1rem 0;
}
.conversion-success__icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    color: #10B981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}
.conversion-success__icon-wrapper svg {
    width: 32px;
    height: 32px;
}
.conversion-success__title {
    font-family: var(--font-heading-alt);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.conversion-success__desc {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.conversion-success__quote-estimate {
    background: rgba(245, 158, 11, 0.05);
    border: 1px dashed rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.conversion-success__quote-label {
    font-size: 0.7rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.conversion-success__quote-value {
    font-family: var(--font-data);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-accent);
}
.conversion-success__eta {
    font-size: 0.8rem;
    color: #E2E8F0;
    margin-top: 0.5rem;
    font-weight: 600;
}
.conversion-success__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.conversion-success__actions .fox-button {
    width: 100%;
}

/* Mobile overrides for service hero split */
@media (max-width: 991px) {
    .safety-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
    }
    .safety-hero__left {
        align-items: center !important;
    }
    .safety-hero__deliverables-list {
        align-items: center !important;
    }
    .safety-hero__trust-badges {
        justify-content: center !important;
    }
    .conversion-card {
        margin: 0 auto;
    }
}

/* ==================================================
   NAVIGATION DROPDOWN MENU
   ================================================== */
.island-nav__dropdown {
    position: relative;
    display: inline-block;
}
.island-nav__dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.dropdown-chevron {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}
.island-nav__dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}
.island-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    margin-top: 0.5rem;
}
.island-nav__dropdown:hover .island-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.island-nav__dropdown-link {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition-smooth);
    opacity: 0.8;
}
.island-nav__dropdown-link:hover {
    background: rgba(245, 158, 11, 0.08);
    color: var(--color-accent);
    opacity: 1;
    padding-left: 1.25rem;
}

/* ------------------------------------
   G. LEAD REDIRECT & CONTACT HERO
------------------------------------ */
.lead-redirect-section {
    padding: 6rem 5%;
    background: #0B0F19;
    color: var(--color-white);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lead-redirect-container {
    max-width: 800px;
    margin: 0 auto;
}

.lead-redirect-title {
    font-family: var(--font-heading-alt);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lead-redirect-desc {
    font-size: 1.15rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-hero {
    padding: 12rem 5% 4rem 5%;
    background-color: var(--color-bg);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-hero__container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero__title {
    font-family: var(--font-heading-alt);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-white);
}

.contact-hero__desc {
    font-size: 1.3rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.lead-collection--dedicated {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
