.innerHero {
    position: relative;
    padding: 180px 0 60px;
    text-align: center;
}
.innerHero h1 {
    font-size: 65px;
    font-weight: 900;
    color: var(--hero-heading);
    margin-bottom: 20px;
}
.innerHero p {
    font-size: 20px;
    color: var(--hero-desc);
    opacity: 0.85;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}
.pillBadge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: var(--about-bg);
    border: 1px solid var(--about-border);
    color: var(--highlight-yellow);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-story-section {
    padding-bottom: 60px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--section-heading);
    margin-bottom: 25px;
    line-height: 1.2;
}
.story-content p {
    font-size: 16px;
    color: var(--section-text);
    line-height: 1.8;
    margin-bottom: 20px;
}
.story-content .lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--section-heading);
}
.mission-vision-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}
.mv-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--about-bg);
    backdrop-filter: var(--about-blur);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--about-border);
    transition: 0.3s;
}
.mv-box:hover {
    transform: translateX(10px);
    border-color: var(--about-border-hover);
    box-shadow: var(--about-shadow-soft);
}
.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 124, 240, 0.1);
    color: var(--highlight-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.mv-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--section-heading);
    margin-bottom: 8px;
}
.mv-box p {
    font-size: 14px;
    margin: 0;
}
.story-image {
    position: relative;
}
.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--about-shadow-strong);
    filter: var(--about-img-brightness);
    transition: 0.4s ease;
}
.story-image:hover img {
    transform: scale(1.02);
    filter: var(--about-img-brightness-hover);
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--highlight-yellow);
    color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 124, 240, 0.3);
    border: 5px solid var(--bg-color1);
}
[theme="dark"] .experience-badge {
    color: #0f172a;
    border-color: #0f172a;
}
.experience-badge h3 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}
.experience-badge p {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 700;
}
.about-stats-section {
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 25px;
}
.stat-box {
    background: var(--about-bg);
    backdrop-filter: var(--about-blur);
    border: 1px solid var(--about-border);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--about-shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--about-border-hover);
}
.main-stat {
    background: linear-gradient(135deg, rgba(0, 124, 240, 0.1), transparent);
    border-color: var(--highlight-yellow);
}
.main-stat h3 {
    font-size: 48px !important;
    color: var(--highlight-yellow) !important;
}
.stat-box i {
    font-size: 35px;
    color: var(--highlight-yellow);
    margin-bottom: 20px;
}
.stat-box h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--section-heading);
    margin: 0 0 10px;
}
.stat-box p {
    font-size: 15px;
    font-weight: 600;
    color: var(--section-text);
    margin: 0;
}
.core-values-section {
    padding: 80px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    background: var(--about-bg);
    backdrop-filter: var(--about-blur);
    border: 1px solid var(--about-border);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}
.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--highlight-yellow);
    box-shadow: var(--about-shadow-soft);
}
.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-color2);
    border: 1px solid var(--about-border);
    color: var(--highlight-yellow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    box-shadow: var(--about-shadow-soft);
}
.value-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--section-heading);
    margin-bottom: 15px;
}
.value-card p {
    font-size: 15px;
    color: var(--section-text);
    line-height: 1.6;
}
.ceo-message-section {
    padding: 80px 0;
}
.ceo-card {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 0 auto;
}
.ceo-image-container {
    width: 30%;
    display: flex;
    justify-content: center;
}
.photo-frame {
    position: relative;
    padding: 10px;
    background: var(--bg-color2);
    border: 2px solid var(--highlight-yellow);
    border-radius: 16px;
    box-shadow: var(--about-shadow-strong);
    width: 100%;
}
.photo-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.pin-dot {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
    background: var(--highlight-yellow);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 12px var(--highlight-yellow);
    border: 4px solid var(--bg-color2);
}
.ceo-content {
    width: 70%;
    position: relative;
    padding: 40px;
    background: var(--about-bg);
    backdrop-filter: var(--about-blur);
    border-radius: 24px;
    border: 1px solid var(--about-border);
}
.quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: var(--highlight-yellow);
    opacity: 0.5;
}
.ceo-content h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--section-heading);
    margin-bottom: 20px;
}
.message-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--section-text);
    margin-bottom: 25px;
    font-style: italic;
}
.ceo-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--section-heading);
    margin: 0 0 5px;
}
.ceo-info p {
    font-size: 13px;
    color: var(--highlight-yellow);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}
.client-overview-section {
    padding: 60px 0;
}
.overview-header {
    text-align: center;
    margin-bottom: 50px;
}
.overview-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--section-heading);
    margin-bottom: 15px;
}
.overview-header p {
    font-size: 18px;
    color: var(--section-text);
    max-width: 600px;
    margin: 0 auto;
}
.client-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.client-feature {
    background: var(--about-bg);
    backdrop-filter: var(--about-blur);
    border: 1px solid var(--about-border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}
.client-feature:hover {
    border-color: var(--highlight-yellow);
    transform: translateY(-8px);
    box-shadow: var(--about-shadow-soft);
}
.client-feature i {
    font-size: 40px;
    color: var(--highlight-yellow);
    margin-bottom: 20px;
}
.client-feature h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--section-heading);
    margin-bottom: 15px;
}
.client-feature p {
    font-size: 15px;
    color: var(--section-text);
    line-height: 1.6;
    margin: 0;
}
.about-cta-section {
    padding: 60px 0 100px;
}
.cta-box {
    background: var(--about-bg);
    backdrop-filter: var(--about-blur);
    border: 1px solid var(--about-border);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--about-shadow-strong);
}
.cta-box h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--section-heading);
    margin-bottom: 15px;
}
.cta-box p {
    font-size: 18px;
    color: var(--section-text);
    max-width: 600px;
    margin: 0 auto 35px;
}
.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cta-primary-btn {
    background: var(--highlight-yellow);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 124, 240, 0.3);
}
[theme="dark"] .cta-primary-btn {
    color: #0f172a;
}
.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 124, 240, 0.4);
}
.cta-secondary-btn {
    background: transparent;
    border: 2px solid var(--highlight-yellow);
    color: var(--highlight-yellow);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}
.cta-secondary-btn:hover {
    background: var(--highlight-yellow);
    color: #ffffff;
}
[theme="dark"] .cta-secondary-btn:hover {
    color: #0f172a;
}

@media (max-width: 1200px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .experience-badge { bottom: 20px; left: 20px; padding: 20px; }
    .values-grid, .client-features-grid { grid-template-columns: 1fr; }
    .ceo-card { flex-direction: column; gap: 40px; }
    .ceo-image-container { width: 100%; max-width: 350px; }
    .ceo-content { width: 100%; padding: 30px; }
}
@media (max-width: 768px) {
    .innerHero h1 { font-size: 42px; }
    .story-content h2, .overview-header h2, .cta-box h2 { font-size: 32px; }
    .stats-grid { grid-template-columns: 1fr; }
    .ceo-content h2 { font-size: 26px; }
    .message-text { font-size: 15px; }
    .cta-btn-group { flex-direction: column; }
    .cta-box { padding: 40px 20px; }
}