/* ========================
   CSS Variables
   ======================== */
:root {
    --primary: #003366;
    --primary-light: #004080;
    --accent: #0066CC;
    --yellow: #FFB90F;
    --yellow-light: #FFC933;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #f8f9fc;
    --bg-lighter: #f0f2f8;
    --border: #e8eaf0;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --transition: all 0.25s ease;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ========================
   Base Reset
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

section {
    padding: 72px 0;
}

@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }
}

/* ========================
   Header Navigation
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a:hover {
    color: var(--accent);
    background: var(--bg-light);
}

.nav-list a[aria-current="page"] {
    color: var(--accent);
    background: var(--bg-light);
}

.nav-list .has-submenu > a i {
    font-size: 20px;
    margin-left: 2px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 160px;
    padding: 6px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.submenu a {
    padding: 10px 14px;
    font-size: 18px;
    border-radius: var(--radius);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 12px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0;
    }

    .nav-list a {
        padding: 12px 16px;
    }

    .submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        margin-top: 4px;
        background: var(--bg-light);
    }

    .submenu.sub-open {
        display: block;
    }

    .submenu a {
        padding: 10px 16px;
    }

    .has-submenu:hover .submenu {
        transform: none;
    }
}

/* ========================
   Page Hero
   ======================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 64px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,51,102,0.88) 0%, rgba(0,82,163,0.75) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    text-align: center;
    padding: 60px 24px;
    width: 100%;
}

.page-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff3bf;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
    }

    .page-hero-content h1 {
        font-size: 26px;
    }

    .page-hero-content p {
        font-size: 16px;
    }
}

/* ========================
   Footer
   ======================== */
.footer {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 50%, #c0d8f9 100%);
    color: var(--text-dark);
    padding: 56px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: var(--radius);
    background: rgba(0, 51, 102, 0.08);
}

.footer-col > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(0,51,102,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 16px;
    color: var(--text-dark);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(0,51,102,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ========================
   Back to Top Button
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .back-to-top {
        display: none;
    }
}

/* ========================
   About Page Specific Styles
   ======================== */
.company-intro {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 50%, #c0d8f9 100%);
    padding: 72px 0;
}

.company-intro .intro-image {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

.company-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.company-intro .intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-white);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.company-intro .intro-tag i {
    color: var(--accent);
}

.company-intro .intro-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.company-intro .intro-lead {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.company-intro .intro-content > p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.company-intro .intro-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.company-intro .highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.company-intro .highlight-item i {
    color: var(--accent);
    font-size: 14px;
}

.about-authority {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    padding: 72px 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.authority-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.authority-card-primary {
    background: linear-gradient(135deg, rgba(0,51,102,0.98) 0%, rgba(0,102,204,0.92) 100%);
}

.authority-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(0,102,204,0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.authority-card-primary .authority-label {
    background: rgba(255,255,255,0.12);
    color: #fff3bf;
}

.authority-card h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--primary);
    margin-bottom: 14px;
}

.authority-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.authority-card-primary h3,
.authority-card-primary p {
    color: var(--bg-white);
}

.product-systems {
    background: var(--bg-white);
    padding: 72px 0;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.system-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow);
}

.system-card i {
    font-size: 32px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.system-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.system-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.system-card a {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
}

.global-reach {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    padding: 72px 0;
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.global-copy,
.global-points {
    background: var(--bg-white);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.global-copy {
    padding: 30px;
}

.global-copy h2 {
    font-size: 30px;
    line-height: 1.35;
    color: var(--primary);
    margin-bottom: 14px;
}

.global-copy p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.global-points {
    overflow: hidden;
}

.global-point {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.global-point:last-child {
    border-bottom: none;
}

.global-point strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.global-point span {
    display: block;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
}

.faq-about {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 72px 0;
}

.faq-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-about-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow);
}

.faq-about-card h3 {
    font-size: 22px;
    line-height: 1.45;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .company-intro {
        padding: 56px 0;
    }

    .company-intro .intro-content h2 {
        font-size: 22px;
    }

    .company-intro .intro-lead {
        font-size: 16px;
    }

    .company-intro .intro-highlights {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ========================
   Timeline Section
   ======================== */
.timeline-section {
    background: var(--bg-white);
    padding: 72px 0;
}

.career-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-entry {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 24px;
    bottom: -32px;
    width: 2px;
    background: var(--border);
}

.timeline-entry:last-child::before {
    display: none;
}

.timeline-year {
    width: 60px;
    height: 48px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .timeline-entry {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-entry::before {
        display: none;
    }
}

/* ========================
   Philosophy Section
   ======================== */
.philosophy {
    background: var(--bg-light);
    padding: 72px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.philosophy-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.philosophy-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.philosophy-card i {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.philosophy-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.philosophy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .authority-grid,
    .systems-grid,
    .global-grid,
    .faq-about-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   About Intro - Leader Profile
   ======================== */
.about-intro {
    background: var(--bg-white);
    padding: 72px 0;
}

.leader-profile {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.leader-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.leader-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.leader-title {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.leader-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.leader-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.credential-item i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.credential-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.credential-item p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .leader-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-kicker {
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .authority-card,
    .system-card,
    .global-copy,
    .global-point,
    .faq-about-card {
        padding: 22px;
    }

    .authority-card h3,
    .system-card h3,
    .faq-about-card h3,
    .global-copy h2,
    .leader-info h2 {
        font-size: 22px;
    }

    .inline-links .btn {
        width: 100%;
    }
}

/* ========================
   History Section
   ======================== */
.history {
    padding: 72px 0;
}

.history-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
}

.history-badge {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    color: var(--bg-white);
    min-width: 140px;
}

.history-badge .year {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.history-badge .label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.history-content {
    padding-top: 8px;
}

.history-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.history-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.history-text .highlight-cn {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.history-text .highlight-en {
    color: var(--text-dark);
    font-weight: 500;
}

.history-text .story-en {
    margin-top: 16px;
}

.history-timeline {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.timeline-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 14px;
}

.timeline-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .history-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .history-badge {
        max-width: 160px;
        margin: 0 auto;
    }

    .history-badge .year {
        font-size: 36px;
    }

    .history-timeline {
        justify-content: center;
    }
}

/* ========================
   Section Header
   ======================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.section-header-wide {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================
   Buttons
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--yellow);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,185,15,0.35);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

.btn-email {
    background: var(--accent);
    color: var(--bg-white);
}

.btn-email:hover {
    background: var(--primary-light);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(0,51,102,0.2);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
}

.inline-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ========================
   Strength Section
   ======================== */
.strength {
    background: var(--bg-white);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strength-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .stats-grid,
    .strength-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid,
    .strength-features {
        grid-template-columns: 1fr;
    }
}

/* ========================
   Certifications Section
   ======================== */
.certifications {
    background: var(--bg-light);
    padding: 72px 0;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cert-badge {
    text-align: center;
    padding: 24px 32px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    min-width: 160px;
    transition: var(--transition);
}

.cert-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.cert-badge i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
}

.cert-badge h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.cert-badge p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .cert-grid {
        gap: 16px;
    }

    .cert-badge {
        min-width: 140px;
        padding: 20px;
    }
}

/* ========================
   Vision Section
   ======================== */
.vision {
    background: var(--bg-white);
    padding: 72px 0;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.vision-text {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.value-item i {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .vision-values {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================
   CTA Section
   ======================== */
.cta {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 50%, #c0d8f9 100%);
    padding: 72px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================
   Timeline Line (for history section)
   ======================== */
.timeline-line {
    width: 40px;
    height: 2px;
    background: var(--border);
    align-self: center;
}

@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
}
