/* Main Container Layout */

.sus-page-layout {
    background-color: white;
    /* Deep canvas dark theme */
    color: black;
    /* Modern crisp off-white text */
    font-family: system-ui, -apple-system, sans-serif;
    padding: 60px 24px 100px 24px;
    overflow: hidden;
}


/* Hero Showcase Header */

.sus-hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 60px 0;
}

.sus-meta-tag {
    font-size: 15px;
    font-weight: 700;
    color: #FFB300;
    /* Corporate Gold Accent */
    letter-spacing: 0.25em;
    display: block;
    padding-top: 48px;
    /* Increased to push the text further down */
    margin-bottom: 16px;
}

.sus-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: black;
}

.sus-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    /* Elegant muted slate grey */
    max-width: 680px;
}


/* Subtle Technical Divider Line */

.sus-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    max-width: 1200px;
    margin: 0 auto 60px auto;
}


/* Performance Metrics Grid */

.sus-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
}

.metric-card {
    background-color: #11141b;
    /* Subtle dark container lift */
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 128, 0.15);
}

.metric-value {
    font-size: 42px;
    font-weight: 800;
    color: #c5a880;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff9f9;
    margin-bottom: 12px;
}

.metric-subtext {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}


/* Core ESG Framework Pillars Section */

.sus-pillars-layout {
    max-width: 1200px;
    margin: 0 auto 120px auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.pillar-row {
    display: flex;
    align-items: center;
    gap: 64px;
}


/* Flawless alternating row handler code for structure matching */

.pillar-row.reverse {
    flex-direction: row-reverse;
}

.pillar-info {
    flex: 1;
}

.pillar-num {
    font-size: 17px;
    font-weight: 700;
    color: #c5a880;
    background: rgba(197, 168, 128, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: #000000;
}

.pillar-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}


/* Premium Visual Content Boxes Image Logic */

.pillar-visual-box {
    flex: 1;
    height: 380px;
    background-color: #11141b;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.visual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}


/* Linear-gradient ambient veil overlaying photo fields */

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.95) 10%, rgba(10, 12, 16, 0.2) 100%);
    z-index: 2;
}

.visual-label {
    position: relative;
    z-index: 3;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #c5a880;
    text-transform: uppercase;
    border-left: 2px solid #c5a880;
    padding-left: 12px;
}


/* Hover Micro-interaction Lift & Smooth Parallax effect */

.picture-card:hover .visual-img {
    transform: scale(1.05);
}


/* Audited Compliance Action Card Banner Layout */

.sus-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #11141b 0%, #0d1015 100%);
    border: 1px solid rgba(197, 168, 128, 0.05);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.cta-inner-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f3f4f6;
}

.cta-inner-content p {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 32px;
}

.sus-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1B5E20;
    color: #0a0c10;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sus-action-btn:hover {
    background-color: #d4bc9c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 168, 128, 0.15);
}


/* Responsive Structural Breakpoints for Tablets & Mobile Screens */

@media (max-width: 992px) {
    .sus-page-layout {
        padding: 40px 16px 60px 16px;
    }
    .pillar-row,
    .pillar-row.reverse {
        flex-direction: column;
        gap: 32px;
    }
    .pillar-visual-box {
        width: 100%;
        height: 300px;
    }
    .sus-main-title {
        font-size: 36px;
    }
    .sus-cta-card {
        padding: 40px 20px;
    }
}