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

:root {
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --bg-white: #ffffff;
    --bg-subtle: #f8fafc;
    --accent: #A01D26;
    --accent-dark: #8b1920;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* New Hero Section - Tools Style */
.hero-section-new {
    background: linear-gradient(135deg, #8B0E1F 0%, #A81327 50%, #C91F37 100%);
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1449157291145-7efd050a4d0e?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
}

.hero-stats-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-compact {
    text-align: center;
}

.hero-stat-value-compact {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.hero-stat-label-compact {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.section:last-of-type {
    border-bottom: none;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.content-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: var(--text-primary);
}

/* Facts Card */
.facts-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.facts-card-header {
    background: var(--text-primary);
    color: white;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.facts-list {
    padding: 0;
}

.facts-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

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

.facts-item dt {
    color: var(--text-primary);
    font-weight: 500;
}

.facts-item dd {
    color: var(--text-secondary);
}

/* Brand Section */
.brand-section {
    padding: 64px 0;
    background: var(--accent);
    color: white;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.brand-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.brand-text p {
    font-size: 15px;
    line-height: 1.7;
    color: white;
    margin-bottom: 8px;
}

.brand-text p:last-child {
    margin-bottom: 0;
}

.brand-text strong {
    color: white;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.timeline-wrapper {
    position: relative;
    margin-top: 40px;
}

.timeline-scroll {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 20px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--border);
}

.timeline-scroll::-webkit-scrollbar {
    height: 8px;
}

.timeline-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 4px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.timeline-track {
    display: flex;
    gap: 20px;
    padding: 4px 0;
    min-width: max-content;
}

.timeline-card {
    flex: 0 0 280px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 24px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--bg-subtle);
}

.timeline-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: white;
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.timeline-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-card ul {
    margin: 0;
    padding-left: 18px;
}

.timeline-card li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.timeline-hint {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Large Services Grid */
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Portal Capabilities Section */
.portal-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-subtle) 100%);
    border-bottom: 1px solid var(--border);
}

.portal-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portal-module {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
}

.portal-module:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(160, 29, 38, 0.1);
    transform: translateY(-2px);
}

.module-icon {
    width: 44px;
    height: 44px;
    background: rgba(160, 29, 38, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}

.portal-module h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.portal-module p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.portal-cta {
    text-align: center;
    margin-top: 40px;
}

.service-card-large {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.service-card-large h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card-large > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(160, 29, 38, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.service-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '—';
    color: var(--accent);
}

/* Compact Pillars Section - Right After Hero */
.pillars-section-compact {
    padding: 48px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

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

.pillar-card-compact {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card-compact:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(160, 29, 38, 0.1);
    transform: translateY(-2px);
}

.pillar-icon-compact {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 0 auto 16px;
}

.pillar-card-compact h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pillar-card-compact p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Leadership Section */
.leader-card-full {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

.leader-photo {
    width: 200px;
    height: 200px;
    background: var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.leader-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.leader-initials {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-muted);
}

.leader-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.leader-title {
    font-size: 15px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
}

.leader-bio p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.leader-bio p:last-child {
    margin-bottom: 0;
}

.leader-philosophy {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.leader-philosophy h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.leader-philosophy ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leader-philosophy li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.leader-philosophy li i {
    color: var(--accent);
    font-size: 12px;
}

.leader-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.leader-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Portfolio Preview Section */
.portfolio-preview-section {
    padding: 80px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.portfolio-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.portfolio-preview-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.portfolio-preview-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.portfolio-preview-text .btn-primary {
    margin-top: 24px;
}

.portfolio-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(160, 29, 38, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--accent);
}

.value-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.mission-card,
.vision-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

.mission-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.mission-card p:last-child,
.vision-card p:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: var(--text-primary);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--bg-subtle);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    background: var(--bg-subtle);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .portal-modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content-wrapper {
        gap: 60px;
    }
}

@media (max-width: 1000px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .pillars-grid-compact {
        grid-template-columns: 1fr;
    }

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

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-subtitle-new {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-stats-compact {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid-large {
        grid-template-columns: 1fr;
    }

    .leader-card-full {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-photo {
        margin: 0 auto;
    }

    .portfolio-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-icon-grid {
        justify-content: center;
    }

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

    .brand-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .hero-section-new {
        padding: 100px 24px 60px;
    }

    .hero-title-new {
        font-size: 2.2rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
    }

    .hero-stats-compact {
        padding: 24px;
        gap: 16px;
    }

    .hero-stat-value-compact {
        font-size: 2rem;
    }

    .hero-stat-label-compact {
        font-size: 11px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .container {
        padding: 0 16px;
    }

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

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

    .portal-modules-grid {
        grid-template-columns: 1fr;
    }

    .portal-section {
        padding: 60px 0;
    }

    .portal-module {
        padding: 20px;
    }

    .timeline-card {
        flex: 0 0 260px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .pillars-section-compact {
        padding: 40px 0;
    }

    .pillar-card-compact {
        padding: 20px;
    }

    .leader-card-full {
        padding: 24px;
    }

    .leader-photo {
        width: 150px;
        height: 150px;
    }

    .portfolio-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .portfolio-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .services-grid-large {
        gap: 16px;
    }

    .service-card-large {
        padding: 24px;
    }
}

/* TNAADO Spinning Emblem */
.tnaado-emblem-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tnaado-emblem-spin {
    animation: emblemSpin 8s linear infinite;
}

@keyframes emblemSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Facts Disclaimer */
.facts-disclaimer {
    padding: 16px 20px;
    background: rgba(160, 29, 38, 0.05);
    border-top: 1px solid var(--border);
}

.facts-disclaimer p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.facts-disclaimer p:last-child {
    margin-bottom: 0;
}

.facts-disclaimer strong {
    color: var(--text-secondary);
}
