:root {
    --accent-teal: #0F766E;
    --accent-teal-light: #14B8A6;
    --slate-800: #1E293B;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --surface-dark: #0B1120;
    --surface-card: #FFFFFF;
    --border-subtle: #E8ECF2;
    --shadow-card: 0 2px 8px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-card-hover: 0 8px 24px rgba(15, 23, 42, 0.08), 0 16px 48px rgba(15, 23, 42, 0.10);
    --radius-card: 12px;
    --radius-pill: 100px;
}

/* ===== V3.0 HERO — Engineering Hero ===== */
.hero-v3 {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0B1120 0%, #131F33 40%, #1A2D45 100%);
    color: #fff;
}

.hero-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(0, 91, 150, 0.15) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-v3::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 0;
    width: 55%;
    height: 100%;
    background: url('../images/hero1.jpg') center/cover no-repeat;
    opacity: 0.18;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
}

.hero-v3 .hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
    min-height: 380px;
}

.hero-v3 .hero-content {
    padding-top: 20px;
}

.hero-v3 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 109, 171, 0.25);
    border: 1px solid rgba(0, 109, 171, 0.4);
    border-radius: var(--radius-pill);
    color: #7DD3FC;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    width: fit-content;
}

.hero-v3 .hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-v3 h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-v3 h1 .text-gradient {
    background: linear-gradient(135deg, #60A5FA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v3 .hero-body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-v3 .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-v3 .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.hero-v3 .btn-primary:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
    border-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-v3 .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-v3 .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero-v3 .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-v3 .metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-v3 .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-v3 .metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-v3 .hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.hero-v3 .hero-card-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.hero-v3 .hero-card-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-v3 .hero-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 91, 150, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    flex-shrink: 0;
}

.hero-v3 .hero-card-text strong {
    display: block;
    font-size: 0.875rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-v3 .hero-card-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== TRUST INDICATORS ===== */
.trust-section {
    padding: 0 0 80px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 32px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.trust-item:hover {
    background: var(--slate-50);
    border-color: var(--border-subtle);
    transform: translateY(-2px);
}

.trust-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 91, 150, 0.1), rgba(15, 118, 110, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 4px;
}

.trust-item:hover .trust-item-icon {
    background: var(--primary);
    color: #fff;
}

.trust-item-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-item-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== SECTION HEADERS (Enhanced) ===== */
.section-header-v3 {
    text-align: left;
    margin-bottom: 48px;
    max-width: 720px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header-v3 h2 {
    font-size: 2.75rem;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-header-v3 p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== COMPANY OVERVIEW ===== */
.company-overview {
    padding: 96px 0;
}

.company-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.company-overview-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-overview-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.company-overview-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.company-logos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.company-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 48px;
    gap: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.company-logo-card:hover {
    background: linear-gradient(180deg, rgba(0, 91, 150, 0.03) 0%, rgba(0, 91, 150, 0.06) 100%);
}

.logo-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 91, 150, 0.25);
}

.logo-badge svg,
.logo-badge i {
    width: 24px;
    height: 24px;
}

.logo-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 100%;
}

.company-logo-img {
    max-height: 140px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.logo-card-desc {
    text-align: center;
}

.logo-card-desc span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.company-logo-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
    margin: 0 48px;
}

@media (max-width: 768px) {
    .company-overview-image-wrap {
        gap: 16px;
    }

    .company-logo-card {
        padding: 32px 28px;
    }

    .logo-card-image {
        height: 100px;
    }

    .company-logo-img {
        max-height: 100px;
        max-width: 220px;
    }

    .logo-badge {
        width: 40px;
        height: 40px;
    }

    .logo-badge svg,
    .logo-badge i {
        width: 20px;
        height: 20px;
    }

    .company-logo-card-divider {
        margin: 0 28px;
    }
}

.company-overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.company-overview-content p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.mv-card {
    background: var(--slate-50);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: all 0.25s ease;
}

.mv-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.mv-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 91, 150, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.mv-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.mv-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== KEY STATS (Enhanced) ===== */
.stats-v3 {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 91, 150, 0.15) 0%, transparent 50%);
}

.stats-v3 .container {
    position: relative;
    z-index: 1;
}

.stats-v3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
}

.stat-v3-item {
    text-align: left;
}

.stat-v3-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-v3-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.stat-v3-sub {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ===== SOLUTIONS V3 ===== */
.solutions-v3 {
    padding: 96px 0;
    background: var(--slate-50);
}

.solutions-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-v3-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-v3-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-v3-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

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

.solution-v3-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 91, 150, 0.12), rgba(15, 118, 110, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution-v3-card:hover .solution-v3-icon {
    background: var(--primary);
    color: #fff;
}

.solution-v3-card h3 {
    font-size: 1.1875rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.solution-v3-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== INDUSTRIES V3 ===== */
.industries-v3 {
    padding: 96px 0;
}

.industries-grid-v3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.industry-v3-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-v3-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-v3-card:hover img {
    transform: scale(1.06);
}

.industry-v3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 17, 32, 0.92) 0%, rgba(11, 17, 32, 0.4) 40%, rgba(11, 17, 32, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all 0.3s ease;
}

.industry-v3-card:hover .industry-v3-overlay {
    background: linear-gradient(to top, rgba(0, 91, 150, 0.92) 0%, rgba(0, 91, 150, 0.5) 50%, rgba(0, 91, 150, 0.05) 100%);
}

.industry-v3-overlay h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.industry-v3-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.industry-v3-card:hover .industry-v3-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FEATURED PROJECTS ===== */
.projects-v3 {
    padding: 96px 0;
    background: var(--slate-50);
}

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

.project-v3-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-v3-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.project-v3-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.project-v3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-v3-card:hover .project-v3-image img {
    transform: scale(1.05);
}

.project-v3-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
}

.project-v3-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-v3-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.project-v3-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.project-v3-meta-item i {
    width: 14px;
    height: 14px;
}

.project-v3-body h3 {
    font-size: 1.3125rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.project-v3-body p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.project-v3-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.project-v3-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-v3-spec-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.project-v3-spec-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
}

/* ===== ENGINEERING PROCESS ===== */
.process-v3 {
    padding: 96px 0;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal));
    z-index: 1;
}

.process-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .process-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ===== TECHNOLOGY ===== */
.technology-v3 {
    padding: 96px 0;
    background: var(--slate-50);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tech-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.tech-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
}

.tech-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== SUPPLY CHAIN ===== */
.supplychain-v3 {
    padding: 96px 0;
}

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

.supplychain-card {
    background: linear-gradient(135deg, var(--dark) 0%, #1A2D45 100%);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.supplychain-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 91, 150, 0.3) 0%, transparent 70%);
}

.supplychain-card:hover {
    transform: translateY(-4px);
}

.supplychain-card h3 {
    font-size: 1.375rem;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.supplychain-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.supplychain-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 109, 171, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7DD3FC;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* ===== ESG ===== */
.esg-v3 {
    padding: 96px 0;
    background: linear-gradient(180deg, #0F172A 0%, #0B1120 100%);
    color: #fff;
}

.esg-v3 .section-header-v3 h2 {
    color: #fff;
}

.esg-v3 .section-header-v3 p {
    color: rgba(255, 255, 255, 0.6);
}

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

.esg-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.esg-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.esg-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.2);
    color: #2DD4BF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.esg-card h3 {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 10px;
}

.esg-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ===== PARTNERS V3 ===== */
.partners-v3 {
    padding: 96px 0;
    background: var(--slate-50);
}

.partners-grid-v3 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.partner-v3-logo {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s ease;
    min-height: 72px;
}

.partner-v3-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.partner-v3-logo svg,
.partner-v3-logo span {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    color: var(--slate-500);
    transition: color 0.3s ease;
}

.partner-v3-logo:hover svg,
.partner-v3-logo:hover span {
    color: var(--primary);
}

/* ===== CERTIFICATIONS ===== */
.certifications-v3 {
    padding: 96px 0;
}

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

.cert-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.cert-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.cert-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 91, 150, 0.1), rgba(15, 118, 110, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.cert-content h3 {
    font-size: 1.0625rem;
    margin-bottom: 6px;
}

.cert-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== INSIGHTS ===== */
.insights-v3 {
    padding: 96px 0;
    background: var(--slate-50);
}

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

.insight-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.insight-image {
    height: 200px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.insight-body h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-body p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.2s ease;
}

.insight-link:hover {
    gap: 10px;
}

/* ===== DOWNLOADS ===== */
.downloads-v3 {
    padding: 96px 0;
}

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

.download-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.download-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.download-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.download-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== CAREERS ===== */
.careers-v3 {
    padding: 96px 0;
    background: linear-gradient(135deg, #0B1120 0%, #131F33 100%);
    color: #fff;
}

.careers-v3 .section-header-v3 h2 {
    color: #fff;
}

.careers-v3 .section-header-v3 p {
    color: rgba(255, 255, 255, 0.6);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.career-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.career-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.career-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 91, 150, 0.25);
    color: #60A5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.career-card h3 {
    font-size: 1.0625rem;
    color: #fff;
    margin-bottom: 10px;
}

.career-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.careers-cta {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT V3 ===== */
.contact-v3 {
    padding: 96px 0;
    background: var(--slate-50);
}

.contact-v3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-v3-info h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.contact-v3-info > p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-v3-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-v3-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-v3-item:last-child {
    border-bottom: none;
}

.contact-v3-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 91, 150, 0.1), rgba(15, 118, 110, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-v3-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-v3-item p,
.contact-v3-item a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-v3-item a:hover {
    color: var(--primary);
}

.contact-v3-form {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 48px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.contact-v3-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-v3-form > p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.v3-form-group {
    margin-bottom: 16px;
}

.v3-form-group:last-of-type {
    margin-bottom: 20px;
}

.v3-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    color: var(--text-primary);
}

.v3-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1);
}

.v3-form-control::placeholder {
    color: var(--text-muted);
}

textarea.v3-form-control {
    resize: vertical;
    min-height: 120px;
}

select.v3-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.v3-form-submit {
    width: 100%;
}

.v3-form-submit .btn {
    width: 100%;
    justify-content: center;
}

/* ===== MEGA FOOTER ===== */
.mega-footer {
    background: #0B1120;
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 0;
}

.mega-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(6, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-footer-brand .footer-logo {
    display: block;
    height: auto;
    width: 180px;
    max-width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.mega-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.mega-footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mega-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.mega-footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mega-footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.mega-footer-legal {
    display: flex;
    gap: 28px;
}

.mega-footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.mega-footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE V3 ===== */
@media (max-width: 1024px) {
    .hero-v3 .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-v3 h1 {
        font-size: 2.75rem;
    }

    .hero-v3 .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solutions-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid-v3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-v3-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(5, 1fr);
    }

    .process-step:nth-child(5)::after {
        display: none;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .supplychain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid-v3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-v3-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mega-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .stats-v3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-v3 {
        padding: 140px 0 80px;
    }

    .hero-v3 h1 {
        font-size: 2rem;
    }

    .hero-v3 .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .hero-v3 .metric-value {
        font-size: 1.75rem;
    }

    .trust-section {
        margin-top: -20px;
        padding: 0 0 60px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .section-header-v3 {
        margin-bottom: 48px;
    }

    .section-header-v3 h2 {
        font-size: 2rem;
    }

    .company-overview {
        padding: 80px 0;
    }

    .company-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-v3,
    .industries-v3,
    .projects-v3,
    .process-v3,
    .technology-v3,
    .supplychain-v3,
    .esg-v3,
    .partners-v3,
    .certifications-v3,
    .insights-v3,
    .downloads-v3,
    .careers-v3,
    .contact-v3 {
        padding: 80px 0;
    }

    .solutions-grid-v3 {
        grid-template-columns: 1fr;
    }

    .industries-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-v3-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .supplychain-grid,
    .esg-grid,
    .cert-grid,
    .insights-grid,
    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .careers-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-v3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-v3-number {
        font-size: 2.75rem;
    }

    .contact-v3-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-v3 h1 {
        font-size: 1.875rem;
    }

    .hero-v3 .hero-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industries-grid-v3 {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-v3-number {
        font-size: 2.25rem;
    }

    .section-header-v3 h2 {
        font-size: 1.75rem;
    }
}

/* ===== ANIMATIONS ===== */
.reveal,
.trust-item,
.solution-v3-card,
.industry-v3-card,
.project-v3-card,
.tech-card,
.supplychain-card,
.esg-card,
.cert-card,
.insight-card,
.download-card,
.career-card,
.hero-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible,
.trust-item.visible,
.solution-v3-card.visible,
.industry-v3-card.visible,
.project-v3-card.visible,
.tech-card.visible,
.supplychain-card.visible,
.esg-card.visible,
.cert-card.visible,
.insight-card.visible,
.download-card.visible,
.career-card.visible,
.hero-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:nth-child(2).visible,
.solution-v3-card:nth-child(2).visible,
.project-v3-card:nth-child(2).visible,
.tech-card:nth-child(2).visible,
.cert-card:nth-child(2).visible,
.insight-card:nth-child(2).visible,
.download-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.trust-item:nth-child(3).visible,
.solution-v3-card:nth-child(3).visible,
.project-v3-card:nth-child(3).visible,
.tech-card:nth-child(3).visible,
.cert-card:nth-child(3).visible,
.insight-card:nth-child(3).visible,
.download-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

/* ===== UTILITY ===== */
.text-gradient {
    background: linear-gradient(135deg, #60A5FA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* ===== ABOUT PAGE: SUB-HERO ===== */
.sub-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0B1120 0%, #131F33 40%, #1A2D45 100%);
    color: #fff;
}

.sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(0, 91, 150, 0.15) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.sub-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.sub-hero .section-eyebrow {
    color: #60A5FA;
}

.sub-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
}

.sub-hero p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
}

/* ===== ABOUT PAGE: MISSION & VISION LARGE ===== */
.mv-section {
    padding: 80px 0;
    background: var(--slate-50);
}

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

.mv-large-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 48px 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-large-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal-light));
}

.mv-large-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.mv-large-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 91, 150, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.mv-large-icon svg,
.mv-large-icon i {
    width: 28px;
    height: 28px;
}

.mv-large-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.mv-large-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== ABOUT PAGE: VALUES ===== */
.values-v3 {
    padding: 96px 0;
}

.values-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-v3-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    transition: all 0.3s ease;
    text-align: left;
}

.value-v3-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: rgba(0, 91, 150, 0.2);
}

.value-v3-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 91, 150, 0.1), rgba(20, 184, 166, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-v3-icon svg,
.value-v3-icon i {
    width: 26px;
    height: 26px;
}

.value-v3-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-v3-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ABOUT PAGE: TIMELINE ===== */
.timeline-v3 {
    padding: 96px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--primary) 0%,
        var(--primary) 50%,
        #2dd4bf 100%
    );
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 91, 150, 0.3);
}

.timeline-list {
    position: relative;
    padding: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    min-height: 120px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -12px;
    left: auto;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent #fff;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -12px;
    right: auto;
    border-width: 12px 12px 12px 0;
    border-color: transparent #fff transparent transparent;
}

.timeline-content {
    flex: 1;
    max-width: calc(50% - 50px);
    background: #fff;
    border: 1px solid rgba(0, 91, 150, 0.1);
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 32px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 91, 150, 0.15);
    border-color: rgba(0, 91, 150, 0.3);
}

.timeline-year {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 28px;
    z-index: 10;
}

.node-dot {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 91, 150, 0.15),
                0 0 20px rgba(0, 91, 150, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .node-dot {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 91, 150, 0.15),
                0 0 30px rgba(0, 91, 150, 0.5);
    transform: scale(1.1);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Override style.css conflicts */
.timeline-v3 .timeline-item .timeline-content {
    width: auto;
    max-width: calc(50% - 50px);
    background: #fff;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 91, 150, 0.1);
    border-radius: 16px;
}

.timeline-v3 .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-v3 .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-v3 .timeline-item .timeline-year {
    margin-bottom: 12px;
}

.timeline-v3 .timeline-item .timeline-dot {
    display: none;
}

/* ===== ABOUT PAGE: LEADERSHIP ===== */
.leadership-v3 {
    padding: 96px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.leadership-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.leadership-content p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.leadership-Philosophy {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--slate-50);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.25s ease;
}

.philosophy-item:hover {
    background: #fff;
    box-shadow: var(--shadow-card);
}

.philosophy-item i,
.philosophy-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.philosophy-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.philosophy-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.leadership-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.leadership-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ===== ABOUT PAGE: CTA ===== */
.cta-v3 {
    padding: 80px 0;
    background: var(--slate-50);
}

.cta-v3-card {
    background: linear-gradient(135deg, #0B1120 0%, #131F33 50%, #1A2D45 100%);
    border-radius: 20px;
    padding: 72px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    position: relative;
    overflow: hidden;
}

.cta-v3-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(0, 91, 150, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
}

.cta-v3-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-v3-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-v3-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.cta-v3-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== ABOUT PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .values-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sub-hero {
        padding: 120px 0 60px;
    }

    .sub-hero h1 {
        font-size: 2rem;
    }

    .sub-hero p {
        font-size: 1rem;
    }

    .mv-section,
    .values-v3,
    .timeline-v3,
    .leadership-v3 {
        padding: 80px 0;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid-v3 {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .leadership-image img {
        height: 320px;
    }

    .cta-v3-card {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
    }

    .cta-v3-content {
        text-align: center;
    }

    .cta-v3-content h2 {
        font-size: 1.75rem;
    }

    .cta-v3-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-v3-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .timeline-wrapper {
        padding-left: 40px;
        padding-right: 0;
    }

    .timeline-center-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        margin-bottom: 40px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 50px;
        max-width: calc(100% - 50px);
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -12px;
        right: auto;
        border-width: 12px 12px 12px 0;
        border-color: transparent #fff transparent transparent;
    }

    .timeline-node {
        left: 20px;
        transform: translateX(-50%);
        top: 24px;
    }

    .node-dot {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }

    .timeline-year {
        font-size: 1.375rem;
    }

    .timeline-content {
        padding: 20px 24px;
    }

    .timeline-content h3 {
        font-size: 1.0625rem;
    }
}

/* ===== INNER PAGE: PAGE HERO ===== */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0B1120 0%, #131F33 40%, #1A2D45 100%);
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(0, 91, 150, 0.15) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 109, 171, 0.25);
    border: 1px solid rgba(0, 109, 171, 0.4);
    border-radius: 100px;
    color: #7DD3FC;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin-bottom: 32px;
}

.page-hero .breadcrumb,
.sub-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

.page-hero .breadcrumb a,
.sub-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero .breadcrumb a:hover,
.sub-hero .breadcrumb a:hover {
    color: #fff;
}

.page-hero .breadcrumb-sep,
.sub-hero .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== INNER PAGE: SECTION CLASSES ===== */
.solutions-detail,
.industries-detail,
.value-prop-section {
    padding: 96px 0;
}

.cta-section {
    padding: 96px 0;
    background: var(--slate-50);
}

.cta-section .cta-inner {
    background: linear-gradient(135deg, #0B1120 0%, #131F33 50%, #1A2D45 100%);
    border-radius: 20px;
    padding: 72px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    position: relative;
    overflow: hidden;
}

.cta-section .cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(0, 91, 150, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-section .cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section .cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.cta-section .cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== INNER PAGE: SOLUTION CARD ENHANCEMENTS ===== */
.solution-v3-card svg,
.solution-v3-card .solution-v3-icon i {
    width: 28px;
    height: 28px;
}

.solution-v3-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 91, 150, 0.1), rgba(20, 184, 166, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

/* ===== INNER PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .cta-section .cta-inner {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
    }

    .cta-section .cta-content {
        text-align: center;
    }

    .cta-section .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-section .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-section .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .solutions-detail,
    .industries-detail,
    .value-prop-section,
    .cta-section {
        padding: 80px 0;
    }
}

.section-visual {
    text-align: center;
    margin-bottom: 48px;
}

.section-svg-visual {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    display: inline-block;
}

.section-svg-visual.content-svg-visual {
    max-width: 320px;
    float: right;
    margin-left: 32px;
    margin-bottom: 16px;
}

.insight-card .solution-v3-icon img {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .section-svg-visual.content-svg-visual {
        float: none;
        margin: 0 auto 24px;
        max-width: 100%;
    }
}

/* ===== MOBILE NAV ENHANCEMENTS ===== */
@media (max-width: 1024px) {
    .main-nav .nav-list {
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }

    .main-nav .nav-list > li {
        width: 100%;
    }

    .main-nav .nav-list > li > a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-nav .nav-list > li:last-child > a {
        border-bottom: none;
    }

    .main-nav .nav-list > li > a::after {
        display: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
        min-width: 0;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 0.95rem;
    }
}

/* ===== INSIGHT DETAIL PAGE ===== */
.insight-detail-page {
    --article-max-width: 1200px;
    --article-serif: 'Source Serif Pro', Georgia, 'Times New Roman', serif;
    --article-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

.article-container {
    padding-top: 72px;
}

.article-hero {
    background: linear-gradient(180deg, #0B1120 0%, #131F33 100%);
    color: #fff;
    padding: 80px 0 56px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at top right, rgba(0, 91, 150, 0.3) 0%, transparent 60%),
                      radial-gradient(ellipse at bottom left, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.article-hero .breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.article-hero .breadcrumb a,
.article-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.article-hero .breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.article-meta .insight-category-tag {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(0, 91, 150, 0.2));
    color: #5EEAD4;
    border: 1px solid rgba(94, 234, 212, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-meta .article-date,
.article-meta .article-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-meta .article-date svg,
.article-meta .article-read-time svg {
    width: 16px;
    height: 16px;
}

.article-title {
    font-family: var(--article-sans);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-family: var(--article-serif);
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin: 0 0 32px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.author-avatar svg,
.author-avatar i {
    width: 22px;
    height: 22px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.author-info span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Article Body Layout */
.article-body {
    padding: 64px 0 96px;
    background: #fff;
}

.article-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    max-width: var(--article-max-width);
    margin: 0 auto;
}

.article-toc {
    position: sticky;
    top: 120px;
    align-self: start;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-subtle);
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.toc-header svg,
.toc-header i {
    width: 16px;
    height: 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 4px;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    font-size: 0.875rem;
    color: var(--slate-600);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    line-height: 1.4;
}

.toc-list a:hover {
    background: rgba(0, 91, 150, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
}

.article-content {
    min-width: 0;
}

.article-key-findings {
    background: linear-gradient(135deg, #F0F9FF 0%, #ECFDF5 100%);
    border: 1px solid rgba(0, 91, 150, 0.15);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 48px;
    position: relative;
}

.article-key-findings::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent-teal) 100%);
    border-radius: 4px;
}

.article-key-findings h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.article-key-findings h3 svg,
.article-key-findings h3 i {
    width: 20px;
    height: 20px;
}

.article-key-findings ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-key-findings li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-family: var(--article-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-800);
}

.article-key-findings li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-family: var(--article-sans);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--slate-800);
    margin: 0 0 24px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--slate-100);
}

.article-section p {
    font-family: var(--article-serif);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-700);
    margin: 0 0 20px;
}

.article-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.article-bullets li {
    display: flex;
    gap: 16px;
    padding: 14px 20px;
    background: var(--slate-50);
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary);
    transition: background 0.2s ease;
}

.article-bullets li:hover {
    background: var(--slate-100);
}

.article-bullets span {
    font-family: var(--article-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-700);
}

.article-callout {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 14px;
    margin: 28px 0;
    border: 1px solid;
}

.article-callout.success {
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
    border-color: rgba(20, 184, 166, 0.3);
}

.article-callout.info {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
    border-color: rgba(0, 91, 150, 0.2);
}

.article-callout.warning {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF9C3 100%);
    border-color: rgba(234, 179, 8, 0.3);
}

.callout-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-callout.success .callout-icon {
    background: rgba(20, 184, 166, 0.15);
    color: #0D9488;
}

.article-callout.info .callout-icon {
    background: rgba(0, 91, 150, 0.1);
    color: var(--primary);
}

.article-callout.warning .callout-icon {
    background: rgba(234, 179, 8, 0.15);
    color: #B45309;
}

.callout-icon svg,
.callout-icon i {
    width: 20px;
    height: 20px;
}

.callout-content {
    flex: 1;
}

.callout-content strong {
    display: block;
    font-family: var(--article-sans);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.callout-content p {
    font-family: var(--article-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: var(--slate-700);
}

.article-data-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1px;
    background: var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    margin: 28px 0;
    border: 1px solid var(--border-subtle);
}

.data-item {
    background: #fff;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.data-value {
    font-family: var(--article-sans);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.data-label {
    font-family: var(--article-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-author-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--slate-50);
    border-radius: 16px;
    margin: 48px 0 32px;
    border: 1px solid var(--border-subtle);
}

.author-card-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.author-card-avatar svg,
.author-card-avatar i {
    width: 28px;
    height: 28px;
}

.author-card-info h4 {
    font-family: var(--article-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin: 0 0 4px;
}

.author-card-info span {
    font-size: 0.8125rem;
    color: var(--slate-500);
    display: block;
    margin-bottom: 10px;
}

.author-card-info p {
    font-family: var(--article-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-600);
    margin: 0;
}

.article-actions {
    display: flex;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
}

.article-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Related Articles */
.related-articles-section {
    padding: 80px 0;
    background: var(--slate-50);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.related-article-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.related-article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.related-article-card:hover::after {
    transform: scaleX(1);
}

.related-article-card h3 {
    font-family: var(--article-sans);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--slate-800);
    margin: 12px 0 8px;
    line-height: 1.4;
}

.related-article-card p {
    font-family: var(--article-serif);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--slate-500);
    margin: 0 0 16px;
}

.related-article-card .read-more-link {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-toc {
        position: static;
        order: -1;
    }

    .article-hero {
        padding: 64px 0 48px;
    }
}

@media (max-width: 768px) {
    .article-container {
        padding-top: 56px;
    }

    .article-body {
        padding: 48px 0 64px;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-section h2 {
        font-size: 1.375rem;
    }

    .article-author-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .article-actions {
        flex-direction: column;
    }

    .article-actions .btn {
        justify-content: center;
    }

    .article-key-findings {
        padding: 24px 24px 24px 32px;
    }

    .article-data-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-callout {
        flex-direction: column;
        gap: 12px;
    }

    .related-articles-section {
        padding: 56px 0;
    }
}

/* =============================================
   Career Position Cards (careers.html)
   ============================================= */
.career-pos-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-pos-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 91, 150, 0.12);
}

.career-pos-card .read-more-link {
    margin-top: auto;
    padding-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.career-pos-card .read-more-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.career-pos-card:hover .read-more-link i {
    transform: translateX(4px);
}

.career-pos-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin-top: 12px;
    flex-wrap: wrap;
}

.career-pos-meta i {
    width: 14px;
    height: 14px;
}

.career-pos-meta .sep {
    margin: 0 4px;
    opacity: 0.5;
}

/* =============================================
   Career Detail Page
   ============================================= */
.career-apply-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}