.coding-about-page {
    background: #f8fbff;
    color: #111827;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}

.about-hero-new {
    padding: 110px 0;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 35%),
        linear-gradient(135deg, #f8fbff, #ffffff);
}

.about-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-hero-new h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 0 22px;
}

.about-hero-new p {
    max-width: 760px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

.about-objectives-new {
    padding: 90px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-heading h2,
.why-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    margin: 0 0 16px;
}

.section-heading p,
.why-box p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.objective-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.objective-card {
    position: relative;
    padding: 34px;
    border-radius: 24px;
    background: #f8fbff;
    border: 1px solid #e5edf8;
    transition: 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.objective-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 22px;
}

.objective-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.objective-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.wide-card {
    grid-column: span 2;
    background: #eff6ff;
}

.why-impact-new {
    padding: 90px 0;
    background: #eef4fb;
}

.why-impact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: stretch;
}

.why-box,
.impact-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.why-box ul {
    padding-left: 20px;
    margin-top: 24px;
}

.why-box li {
    margin-bottom: 14px;
    color: #334155;
    line-height: 1.6;
}

.impact-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.impact-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5edf8;
}

.impact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.impact-item h3 {
    font-size: 48px;
    color: #2563eb;
    margin: 0 0 6px;
}

.impact-item p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 900px) {
    .objective-grid,
    .why-impact-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-column: span 1;
    }

    .about-hero-new,
    .about-objectives-new,
    .why-impact-new {
        padding: 65px 0;
    }

    .why-box,
    .impact-box {
        padding: 28px;
    }
}

.objective-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(8, 102, 255, 0.10);
    color: #0866ff;
    margin-bottom: 22px;
}

.objective-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.impact-progress-box {
    gap: 18px;
}

.impact-progress-item {
    padding-bottom: 0;
    border-bottom: 0;
    transition: all 0.3s ease;
    border-radius: 14px;
    padding: 14px;
}

.impact-progress-item:hover {
    background: rgba(8, 102, 255, 0.07);
    transform: translateX(6px);
}

.impact-progress-item:hover h3 {
    color: #0866ff;
}

.impact-progress-item:hover p {
    color: #334155;
}

.impact-progress-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.impact-progress-text h3 {
    font-size: 28px;
    line-height: 1;
    color: #0866ff;
    margin: 0;
    font-weight: 800;
}

.impact-progress-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.impact-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #edf2f7;
    overflow: hidden;
}

.impact-bar span {
    display: block;
    width: var(--progress-width);
    height: 100%;
    border-radius: 999px;
    background: #0866ff;
    animation: impactFill 1.4s ease forwards;
    transform-origin: left;
}

.impact-bar-orange span {
    background: #ff7a18;
}

@keyframes impactFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.why-box,
.impact-progress-box {
    transition: all 0.35s ease;
}

.why-box:hover,
.impact-progress-box:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 102, 255, 0.28);
    box-shadow: 0 24px 60px rgba(8, 102, 255, 0.14);
}

/* Why it matters list hover */
.why-box ul li {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 6px 8px;
}

/* Progress bar hover */
.impact-bar {
    transition: all 0.3s ease;
}

.impact-progress-item:hover .impact-bar {
    background: rgba(8, 102, 255, 0.16);
}

.impact-progress-item:hover .impact-bar span {
    box-shadow: 0 6px 18px rgba(8, 102, 255, 0.25);
}