/* ============================================
   ABOUT PAGE STYLES
   Design direction matching index.html
   ============================================ */

/* Navbar Contrast Fix for Dark Hero */
.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
    color: #ffffff;
}

.navbar:not(.scrolled) .nav-links a::after {
    background-color: #ffffff;
}

.navbar:not(.scrolled) .mobile-menu-btn {
    color: #ffffff;
}

.navbar:not(.scrolled) .logo img {
    content: url("image/logo/logo-white.png");
}

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('image/about/about-header.jpg');
    background-size: cover;
    background-position: center top;
    animation: about-hero-zoom 30s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes about-hero-zoom {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.08) translateY(-2%);
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(10 25 60 / 45%) 0%, rgb(15 23 42 / 30%) 60%, rgb(15 23 42 / 49%) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 3;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Particles */
.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translateY(-40px) scale(1);
    }
}

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

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.mission-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.mission-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Mission Pillars — Digitise / Automate / Scale */
.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-pillar {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.mission-pillar-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    background: transparent;
}

.mission-pillar:hover .mission-pillar-icon {
    background: #EFF6FF;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 102, 177, 0.15);
}

.mission-pillar-text {
    padding-top: 8px;
}

.mission-pillar-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.mission-pillar-text p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Core Pillars Section */
.about-pillars {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pillars-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

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

.pillar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #BFDBFE;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: #EFF6FF;
    transform: scale(1.05);
}

.pillar-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Connected Infrastructure Section */
.about-infrastructure {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

.about-infra-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('image/home/klcc2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-infra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 25, 60, 0.95) 0%,
            rgba(15, 23, 42, 0.97) 100%);
    z-index: 1;
}

.capability-pills {
    text-align: center;
    margin-bottom: 50px;
}

.infra-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

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

.infra-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 28px 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infra-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.infra-card-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    color: #60A5FA;
    border: 2px solid #60A5FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.infra-card:hover .infra-card-icon {
    background: rgba(96, 165, 250, 0.15);
    transform: scale(1.05);
}

.infra-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.infra-card p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.infra-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60A5FA;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.infra-link:hover {
    color: #93C5FD;
    gap: 12px;
}

/* One Platform Banner */
.one-platform-banner {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.platform-banner {
    background: linear-gradient(135deg, #0A1B3D 0%, #0D2E6B 40%, #1A4F8B 100%);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 27, 61, 0.35);
}

.platform-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}

.platform-banner-shield {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-banner-shield > i {
    font-size: 64px;
    color: #fff;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
    animation: shield-pulse 3s ease-in-out infinite;
}

.shield-glow::before,
.shield-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.shield-glow::before {
    width: 110px;
    height: 110px;
}

.shield-glow::after {
    width: 150px;
    height: 150px;
    border-color: rgba(96, 165, 250, 0.1);
}

@keyframes shield-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.platform-banner-content {
    flex: 1;
}

.platform-banner-content h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
}

.platform-banner-features {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.platform-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.platform-feature-item i {
    font-size: 28px;
    color: #60A5FA;
    flex-shrink: 0;
}

.platform-feature-item span {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
}

/* Platform Comparison Section */
.about-platform {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.platform-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.platform-card {
    background: #EFF6FF;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.platform-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 102, 177, 0.15);
}

.platform-card-header i {
    font-size: 28px;
    color: var(--primary-blue);
}

.platform-card-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

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

.platform-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.platform-features li i {
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
}

/* VS Section */
.vs-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.vs-traditional {
    padding: 40px;
    background: #FFF5F5;
}

.vs-traditional h3 {
    font-size: 1.1rem;
    color: #991B1B;
    margin-bottom: 24px;
}

.vs-traditional ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-traditional li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #7F1D1D;
    font-weight: 500;
}

.vs-traditional li i {
    color: #EF4444;
    font-size: 18px;
    flex-shrink: 0;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 0 24px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.vs-divider span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-gray);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-connectme {
    padding: 40px;
    background: #F0FDF4;
}

.vs-connectme h3 {
    font-size: 1.1rem;
    color: #166534;
    margin-bottom: 24px;
}

.vs-connectme ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-connectme li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #14532D;
    font-weight: 500;
}

.vs-connectme li i {
    color: #16A34A;
    font-size: 18px;
    flex-shrink: 0;
}

/* One Ecosystem Section */
.about-ecosystem {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.ecosystem-solutions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #60A5FA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #BFDBFE;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: #EFF6FF;
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Workforce Lifecycle Section */
.about-lifecycle {
    background: #fff;
    color: var(--text-dark);
    padding: 100px 0 60px;
    position: relative;
}

.lifecycle-badge {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.lifecycle-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lifecycle-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline */
.lifecycle-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 60px 0 50px;
    flex-wrap: wrap;
}

.lifecycle-step {
    text-align: center;
    padding: 10px 12px;
    flex: 0 0 auto;
    width: 120px;
}

.lifecycle-step-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 102, 177, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.lifecycle-step:hover .lifecycle-step-icon {
    background: rgba(37, 102, 177, 0.18);
    transform: translateY(-4px);
}

.lifecycle-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.lifecycle-step h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.lifecycle-step p {
    font-size: 0.72rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.lifecycle-connector {
    width: 40px;
    height: 2px;
    border-top: 2px dashed #CBD5E1;
    margin-top: 42px;
    flex-shrink: 0;
}

/* Platform Bar */
.lifecycle-platform-bar {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    text-align: left;
}

.platform-bar-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.platform-bar-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.platform-bar-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Explore Solutions */
.lifecycle-solutions {
    margin-bottom: 20px;
}

.solutions-heading {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.solutions-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.solution-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1E3A5F;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-pill i {
    font-size: 16px;
    color: var(--primary-blue);
}

.solution-pill:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.solution-pill:hover i {
    color: #fff;
}

.solutions-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Green CTA */
.final-cta-green {
    padding: 0 0 60px;
    background: #fff;
}

.cta-green-bar {
    background: linear-gradient(135deg, #0A1B3D 0%, #1A4F8B 50%, #2566B1 100%);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
}

.cta-green-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-green-logo img {
    height: 44px;
    width: auto;
    filter: brightness(10);
}

.cta-green-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.cta-green-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-green-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-green-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: #1A4F8B;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-green-fill:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
}

.btn-cta-green-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-green-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .lifecycle-timeline {
        gap: 0;
    }

    .lifecycle-step {
        width: 100px;
    }

    .lifecycle-connector {
        width: 24px;
    }
}

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .mission-title {
        font-size: 2.2rem;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pillars-title {
        font-size: 2.2rem;
    }

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

    .infra-title {
        font-size: 2.2rem;
    }

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

    .platform-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .platform-banner-features {
        justify-content: center;
    }

    .platform-comparison {
        grid-template-columns: 1fr;
    }

    .vs-section {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        padding: 16px;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

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

    .lifecycle-title {
        font-size: 2.2rem;
    }

    .lifecycle-timeline {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .lifecycle-connector {
        display: none;
    }

    .lifecycle-step {
        width: calc(25% - 20px);
    }

    .cta-green-bar {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .cta-green-left {
        flex-direction: column;
    }

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

    .btn-cta-green-fill,
    .btn-cta-green-outline {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 80px;
        min-height: 380px;
    }

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

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

    .about-mission,
    .about-pillars,
    .about-infrastructure,
    .about-platform,
    .about-ecosystem,
    .about-lifecycle {
        padding: 70px 0;
    }

    .mission-title {
        font-size: 1.8rem;
    }

    .mission-pillar-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 28px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .infra-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .platform-banner-features {
        gap: 20px 16px;
        justify-content: center;
    }

    .vs-traditional,
    .vs-connectme {
        padding: 30px 20px;
    }

    .lifecycle-title {
        font-size: 1.8rem;
    }

    .lifecycle-step {
        width: calc(50% - 20px);
    }

    .lifecycle-platform-bar {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .platform-banner {
        padding: 30px 16px;
    }

    .cta-green-bar {
        padding: 24px 16px;
    }

    .lifecycle-step {
        width: calc(50% - 10px);
    }
}