/* =====================================================
   TWD WORKSPACE — COMPLETE CSS (FINAL, CLEANED)
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1D4ED8;
    --accent-color: #38BDF8;
    --heading-color: #0B1730;
    --text-color: #64748B;
    --white-color: #FFFFFF;
    --border-color: #E2E9F4;
    --light-bg: #F8FAFC;
    --radius: 16px;
    --shadow: 0 15px 40px rgba(11, 23, 48, 0.08);
    --transition: all 0.3s ease;
}


/* =====================================================
   1. HERO SECTION — MODERN, LEFT TEXT / RIGHT IMAGE
   ===================================================== */
.hero-section {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, #132247 0%, #0B1730 55%, #060A16 100%);
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px circle at 15% 20%, rgba(56, 189, 248, 0.18), transparent 60%),
        radial-gradient(500px circle at 85% 80%, rgba(29, 78, 216, 0.25), transparent 60%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    animation: heroFloat 9s ease-in-out infinite;
}
.hero-glow-1 { width: 420px; height: 420px; background: rgba(56, 189, 248, 0.28); top: -80px; left: -100px; }
.hero-glow-2 { width: 380px; height: 380px; background: rgba(29, 78, 216, 0.30); bottom: -100px; right: -80px; animation-delay: -4s; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.04); }
}

.hero-section > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 40px;
}

/* ---- Two column layout: text left / image right ---- */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-text-col {
    flex: 1 1 560px;
    min-width: 300px;
    max-width: 620px;
    text-align: left;
    order: 1;
}

/* Badge — dash style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #fff;
    font-size: clamp(10px, 1.2vw, 13px);
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 22px;
    background: transparent;
    border: none;
    padding: 0;
}
.badge-dot {
    width: 24px;
    height: 2px;
    border-radius: 0;
    background: var(--accent-color, #38BDF8);
    display: inline-block;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.9rem, 2.9vw, 3rem);
    font-weight: 800;
    line-height: 1.22;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    overflow-wrap: normal;
    word-break: normal;
    max-width: 100%;
}
.hero-title span {
    background: linear-gradient(135deg, #38BDF8, #93C5FD);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(14px, 1.2vw, 16.5px);
    color: #A9B7D0;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.hero-primary-btn {
    padding: 13px 24px;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #1D4ED8, #38BDF8);
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    border: none;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(29, 78, 216, 0.4);
    text-decoration: none;
    width: auto;
    flex-shrink: 0;
}
.hero-primary-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 16px 32px rgba(29, 78, 216, 0.55);
}

.hero-secondary-btn {
    padding: 13px 22px;
    border-radius: 10px !important;
    background: #fff;
    text-transform: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    width: auto;
    flex-shrink: 0;
}
.hero-secondary-btn:hover {
    background: #F8FAFC;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(11, 23, 48, 0.15);
}

/* ---- Image column — STATIC, NO ANIMATION ---- */
.hero-image-col {
    flex: 1 1 400px;
    min-width: 240px;
    display: flex;
    justify-content: center;
    order: 2;
}
.hero-image-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
}
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 8%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28), transparent 70%);
    filter: blur(50px);
    z-index: 0;
}
.hero-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
}

/* ---- Trust strip ---- */
.hero-trust-strip {
    position: relative;
    z-index: 10;
    width: 100%;
    background: var(--white-color, #fff);
    padding: 35px 0;
    box-shadow: 0 -10px 40px rgba(11, 23, 48, 0.1);
}
.hero-trust-strip .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}
.hero-trust-strip .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-item i {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #EEF2FF;
    color: var(--primary-color, #1D4ED8);
    font-size: 22px;
}
.trust-item h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--heading-color, #0B1730);
}
.trust-item p {
    font-size: 13px;
    margin: 0;
    color: var(--text-color, #64748B);
    line-height: 1.5;
}


/* =====================================================
   RESPONSIVE — HERO (SINGLE, CLEAN SET — NO DUPLICATES)
   ===================================================== */

@media (max-width: 1199px) {
    .hero-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
    .hero-text-col { flex: 1 1 500px; }
}

@media (max-width: 991px) {
    .hero-section { min-height: 100vh; }
    .hero-section > .container { padding-top: 110px; padding-bottom: 40px; }
    .hero-content-wrapper { justify-content: center; text-align: center; gap: 36px; }
    .hero-text-col { text-align: center; order: 1; flex: 1 1 100%; max-width: 560px; margin: 0 auto; }
    .hero-badge { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image-col { order: 2; flex: 1 1 100%; }
    .hero-image-wrapper { max-width: 340px; }
    .hero-trust-strip { margin-top: 20px; }
    .hero-title { font-size: clamp(1.7rem, 4.2vw, 2.3rem); }
}

@media (max-width: 767px) {
    .hero-section { min-height: 100vh; }
    .hero-section > .container { padding-top: 100px; padding-bottom: 30px; }
    .hero-image-wrapper { max-width: 300px; }
    .hero-text-col { max-width: 480px; }
    .hero-title { font-size: clamp(1.5rem, 5.6vw, 1.9rem); margin-bottom: 16px; line-height: 1.28; }
    .hero-description { font-size: 14px; margin-bottom: 24px; }
    .hero-trust-strip { margin-top: 16px; }
    .hero-trust-strip .row { gap: 14px; }
    .trust-item { gap: 10px; }
    .trust-item i { width: 42px; height: 42px; font-size: 17px; border-radius: 10px; }
    .trust-item h6 { font-size: 12px; margin-bottom: 2px; }
    .trust-item p { font-size: 10px; line-height: 1.3; }
}

@media (max-width: 575px) {
    .hero-section { min-height: 100vh; }
    .hero-section > .container { padding-top: 90px; padding-bottom: 20px; }
    .hero-content-wrapper { gap: 24px; }
    .hero-image-wrapper { max-width: 240px; }
    .hero-text-col { max-width: 400px; }
    .hero-badge { font-size: 9px; letter-spacing: 1px; margin-bottom: 14px; gap: 8px; }
    .badge-dot { width: 16px; }
    .hero-title { font-size: clamp(1.35rem, 6.4vw, 1.6rem); margin-bottom: 14px; line-height: 1.3; }
    .hero-description { font-size: 13px; margin-bottom: 20px; }

    .hero-buttons { gap: 10px; flex-wrap: nowrap; }
    .hero-primary-btn, .hero-secondary-btn {
        padding: 11px 12px;
        font-size: 12px;
        gap: 5px;
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
    }

    .hero-trust-strip { padding: 22px 0; margin-top: 12px; }
}

@media (max-width: 420px) {
    .hero-section > .container { padding-top: 85px; }
    .hero-image-wrapper { max-width: 200px; }
    .hero-title { font-size: clamp(1.2rem, 7vw, 1.45rem); }
    .hero-description { font-size: 12.5px; }
    .hero-primary-btn, .hero-secondary-btn { padding: 10px 8px; font-size: 11px; gap: 4px; }
    .trust-item i { width: 36px; height: 36px; font-size: 15px; }
    .trust-item h6 { font-size: 11px; }
    .trust-item p { display: none; }
}

@media (max-width: 359px) {
    .hero-section > .container { padding-top: 80px; }
    .hero-title { font-size: 1.15rem; }
    .hero-buttons { gap: 8px; }
    .hero-primary-btn, .hero-secondary-btn { padding: 9px 6px; font-size: 10.5px; }
}

@media (max-height: 700px) and (max-width: 767px) {
    .hero-section { min-height: 100vh; }
    .hero-section > .container { padding-top: 80px; padding-bottom: 20px; }
}


/* =====================================================
   2. LEADERSHIP / CEO SECTION
   ===================================================== */
.leadership-section {
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

.leadership-images {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.leader-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(11, 23, 48, 0.12);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leader-photo-main {
    width: 78%;
    height: 460px;
}

.leader-photo-secondary {
    position: absolute;
    right: -10px;
    bottom: -40px;
    width: 46%;
    height: 260px;
    border: 6px solid #fff;
    z-index: 2;
}

.leader-tag {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px;
    background: linear-gradient(to top, rgba(6, 12, 28, 0.88) 0%, transparent 100%);
    z-index: 3;
}

.leader-tag h6 { color: #fff; font-size: 15px; margin-bottom: 2px; }
.leader-tag span { color: #93C5FD; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.leader-photo-secondary .leader-tag { padding: 12px 14px; }
.leader-photo-secondary .leader-tag h6 { font-size: 13px; }
.leader-photo-secondary .leader-tag span { font-size: 10px; }

.experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(135deg, #1D4ED8, #38BDF8);
    color: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.35);
    z-index: 4;
}
.experience-badge span { display: block; font-size: 24px; font-weight: 800; }

.section-badge-inline {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #EEF2FF;
    color: var(--primary-color, #1D4ED8);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.leadership-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--heading-color, #0B1730);
}
.leadership-title span {
    background: linear-gradient(135deg, #1D4ED8, #38BDF8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.leadership-desc {
    font-size: 16px;
    color: var(--text-color, #64748B);
    line-height: 1.8;
    margin-bottom: 30px;
}

.leader-quote {
    position: relative;
    padding: 20px 24px 20px 55px;
    border-left: 3px solid #1D4ED8;
    background: #F8FAFF;
    border-radius: 0 14px 14px 0;
    margin-bottom: 18px;
}
.leader-quote i { position: absolute; left: 16px; top: 18px; font-size: 22px; color: #1D4ED8; opacity: 0.5; }
.leader-quote p { font-size: 15px; color: #334155; margin-bottom: 8px; line-height: 1.7; }
.leader-quote h6 { font-size: 14px; font-weight: 700; color: var(--heading-color, #0B1730); margin: 0; }
.leader-quote h6 span { font-weight: 500; color: #64748B; }


/* =====================================================
   3. FEATURES SECTION
   ===================================================== */
.features-section {
    background: #ffffff;
    overflow: hidden;
    padding: 110px 0;
}

.section-heading { max-width: 700px; margin: 0 auto; }
.section-heading h2, .section-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--heading-color, #0B1730);
}
.section-heading h2 span, .section-title span {
    background: linear-gradient(135deg, #1D4ED8, #38BDF8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.section-heading p, .section-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-color, #64748B);
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.feature-row { margin-top: 50px !important; }
.feature-card {
    height: 100%;
    padding: 28px 18px;
    border-radius: var(--radius, 16px);
    background: #fff;
    border: 1px solid var(--border-color, #E2E9F4);
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow, 0 15px 40px rgba(11, 23, 48, 0.08));
    border-color: transparent;
}
.feature-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #1D4ED8, #0B1730);
    color: white; font-size: 22px; margin: 0 auto 16px;
}
.feature-card h3 { font-size: clamp(13px, 1.3vw, 16px); margin-bottom: 8px; line-height: 1.3; color: var(--heading-color, #0B1730); }
.feature-card p { font-size: clamp(11px, 1.1vw, 13px); line-height: 1.6; color: var(--text-color, #64748B); margin: 0; }

@media (min-width: 992px) {
    .feature-row { flex-wrap: nowrap !important; }
    .feature-row > [class*="col-"] { flex: 1 0 0; max-width: none; }
}


/* =====================================================
   4. HOW IT WORKS — 5 STEPS
   ===================================================== */
.how-section {
    padding: 110px 0;
    background: #F8FAFC;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1D4ED8, #38BDF8);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    padding: 0 12px;
    min-width: 0;
}

.timeline-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #E5E7EB;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #1D4ED8;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
    flex-shrink: 0;
}
.timeline-item:hover .timeline-icon {
    background: linear-gradient(135deg, #1D4ED8, #38BDF8);
    border-color: transparent;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(29, 78, 216, 0.3);
}
.timeline-item h4 { font-size: 16px; margin-bottom: 10px; color: var(--heading-color, #0B1730); }
.timeline-item p { font-size: 13.5px; color: #64748B; line-height: 1.6; margin: 0; }


/* =====================================================
   5. STATS SECTION
   ===================================================== */
.stats-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}
.stat-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: var(--transition);
}
.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(29, 78, 216, 0.12);
    border-color: transparent;
}
.stat-box i { font-size: 34px; color: #1D4ED8; margin-bottom: 18px; display: inline-block; }
.stat-box h3 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700; margin-bottom: 8px;
    background: linear-gradient(135deg, #1D4ED8, #38BDF8);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}
.stat-box p { font-size: clamp(12px, 2vw, 14px); color: #64748B; margin: 0; font-weight: 500; }


/* =====================================================
   6. CTA SECTION
   ===================================================== */
.cta-section { padding: 110px 0; background: #F8FAFC; }
.cta-wrapper {
    position: relative; overflow: hidden;
    padding: 70px 60px; border-radius: 30px;
    background: linear-gradient(135deg, #1D4ED8, #0B1730, #38BDF8);
    color: #fff;
}
.cta-wrapper::before { content: ""; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.10); border-radius: 50%; top: -120px; right: -80px; }
.cta-wrapper::after { content: ""; position: absolute; width: 220px; height: 220px; background: rgba(255,255,255,0.08); border-radius: 50%; bottom: -100px; left: -70px; }
.cta-wrapper .row { position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.6rem, 4.5vw, 3rem); margin-bottom: 20px; color: #fff; line-height: 1.3; }
.cta-primary-btn {
    background: #fff; color: #1D4ED8; padding: 14px 30px; border-radius: 50px;
    font-weight: 600; margin-bottom: 15px; width: 220px; max-width: 100%;
    display: inline-block; text-align: center; text-decoration: none; transition: var(--transition);
}
.cta-primary-btn:hover { background: #F8FAFC; color: #1D4ED8; transform: translateY(-2px); }
.cta-secondary-btn {
    width: 220px; max-width: 100%; padding: 14px 30px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.40); color: #fff;
    display: inline-block; text-align: center; text-decoration: none; transition: var(--transition);
}
.cta-secondary-btn:hover { background: #fff; color: #1D4ED8; transform: translateY(-2px); }


/* =====================================================
   DARK MODE
   ===================================================== */
body.dark-mode .hero-trust-strip { background: #0F1626; box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3); }
body.dark-mode .trust-item h6 { color: #fff; }
body.dark-mode .trust-item p { color: #94A3B8; }
body.dark-mode .trust-item i { background: #1E293B; color: #38BDF8; }
body.dark-mode .leadership-section { background: #0B1120; }
body.dark-mode .leadership-desc { color: #94A3B8; }
body.dark-mode .leader-quote { background: #111827; border-left-color: #38BDF8; }
body.dark-mode .leader-quote p { color: #CBD5E1; }
body.dark-mode .leader-quote h6 { color: #fff; }
body.dark-mode .leader-quote h6 span { color: #94A3B8; }
body.dark-mode .section-badge-inline { background: #1E293B; }
body.dark-mode .leadership-title, body.dark-mode .section-heading h2, body.dark-mode .section-title { color: #fff; }
body.dark-mode .features-section { background: #0B1120; }
body.dark-mode .feature-card { background: #111827; border-color: #1E293B; }
body.dark-mode .feature-card h3 { color: #fff; }
body.dark-mode .feature-card p { color: #94A3B8; }
body.dark-mode .how-section { background: #0B1120; }
body.dark-mode .timeline-icon { background: #111827; border-color: #1E293B; color: #38BDF8; }
body.dark-mode .timeline-item:hover .timeline-icon { background: linear-gradient(135deg, #1D4ED8, #38BDF8); color: #fff; }
body.dark-mode .timeline-item h4 { color: #fff; }
body.dark-mode .timeline-item p { color: #94A3B8; }
body.dark-mode .stats-section { background: linear-gradient(180deg, #0B1120 0%, #0F1626 100%); }
body.dark-mode .stat-box { background: #111827; border-color: #1E293B; }
body.dark-mode .stat-box p { color: #94A3B8; }
body.dark-mode .cta-section { background: #0B1120; }


/* =====================================================
   RESPONSIVE — OTHER SECTIONS (leadership, features, how, stats, cta)
   ===================================================== */
@media (min-width: 1920px) {
    .leadership-images { max-width: 560px; }
    .leader-photo-main { height: 540px; }
    .leader-photo-secondary { height: 310px; }
    .cta-wrapper { padding: 90px 80px; }
}

@media (min-width: 1400px) {
    .leadership-images { max-width: 520px; }
    .leader-photo-main { height: 500px; }
    .leader-photo-secondary { height: 280px; }
    .cta-wrapper { padding: 80px 70px; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .leader-photo-main { height: 480px; }
    .leader-photo-secondary { height: 270px; }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .leader-photo-main { height: 440px; }
    .leader-photo-secondary { height: 240px; right: -5px; bottom: -30px; }
    .experience-badge { left: -10px; padding: 12px 16px; font-size: 12px; }
    .experience-badge span { font-size: 20px; }
    .cta-wrapper { padding: 60px 45px; }
    .timeline-item { padding: 0 8px; }
    .timeline-icon { width: 72px; height: 72px; font-size: 24px; }
    .timeline-line { left: 36px; right: 36px; top: 36px; }
    .timeline-item h4 { font-size: 15px; }
    .timeline-item p { font-size: 12.5px; }
}

@media (max-width: 991px) {
    .leadership-section { padding: 90px 0; }
    .leadership-images { margin: 0 auto 60px; max-width: 420px; }
    .leader-photo-main { height: 400px; width: 75%; }
    .leader-photo-secondary { height: 230px; right: -5px; bottom: -30px; }
    .experience-badge { left: -10px; top: 15px; padding: 12px 16px; font-size: 12px; }
    .experience-badge span { font-size: 20px; }
    .leadership-title { font-size: clamp(1.8rem, 5vw, 2.2rem); text-align: center; }
    .section-badge-inline { display: block; text-align: center; width: max-content; margin-left: auto; margin-right: auto; }
    .leadership-desc { text-align: center; }

    .features-section { padding: 90px 0; }
    .feature-card { padding: 28px 18px; }
    .feature-icon { width: 60px; height: 60px; font-size: 26px; }
    .feature-card h3 { font-size: 15px; }
    .feature-card p { font-size: 13px; }

    .how-section { padding: 90px 0; }
    .process-timeline { flex-direction: column; align-items: stretch; gap: 0; margin-top: 40px; }
    .timeline-line {
        top: 0; bottom: 0; left: 24px;
        width: 3px; height: 100%; right: auto;
        background: linear-gradient(180deg, #1D4ED8, #38BDF8, #1D4ED8);
        border-radius: 3px;
    }
    .timeline-item {
        display: flex; align-items: flex-start;
        gap: 20px; text-align: left; width: 100%;
        padding: 0 0 36px 0;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-icon {
        margin: 0; flex-shrink: 0;
        width: 52px; height: 52px; font-size: 22px;
        position: relative; z-index: 2; border-width: 3px;
    }
    .timeline-item h4 { font-size: 16px; margin-bottom: 6px; padding-top: 4px; }
    .timeline-item p { font-size: 14px; line-height: 1.6; }

    .stats-section { padding: 90px 0; }

    .cta-section { padding: 90px 0; }
    .cta-wrapper { text-align: center; padding: 50px 30px; }
    .cta-title { text-align: center; }
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%; max-width: 320px;
        display: block; margin: 0 auto 12px; text-align: center;
    }
}

@media (max-width: 767px) {
    .leadership-section { padding: 80px 0; }
    .leadership-images { max-width: 380px; }
    .leader-photo-main { height: 380px; }
    .leader-photo-secondary { height: 210px; right: 0; bottom: -25px; }
    .experience-badge { left: 5px; top: 12px; padding: 10px 14px; font-size: 11px; }
    .experience-badge span { font-size: 18px; }
    .leadership-title { font-size: 1.7rem; text-align: center; }
    .section-badge-inline { display: block; text-align: center; width: max-content; margin-left: auto; margin-right: auto; }
    .leadership-desc { text-align: center; font-size: 15px; }
    .leader-quote { padding: 18px 20px 18px 48px; }
    .leader-quote p { font-size: 14px; }

    .features-section { padding: 80px 0; }
    .feature-card { padding: 24px 16px; }
    .feature-icon { width: 55px; height: 55px; font-size: 24px; margin-bottom: 14px; }
    .feature-card h3 { font-size: 14px; }
    .feature-card p { font-size: 12.5px; }

    .how-section { padding: 80px 0; }
    .timeline-line { left: 22px; }
    .timeline-item { gap: 16px; padding-bottom: 32px; }
    .timeline-icon { width: 48px; height: 48px; font-size: 20px; }
    .timeline-item h4 { font-size: 15px; }
    .timeline-item p { font-size: 13px; }

    .stats-section { padding: 80px 0; }
    .stat-box { padding: 30px 16px; }
    .stat-box i { font-size: 28px; margin-bottom: 14px; }

    .cta-section { padding: 80px 0; }
    .cta-wrapper { padding: 45px 25px; }
    .cta-primary-btn, .cta-secondary-btn { max-width: 300px; }
}

@media (max-width: 575px) {
    .leadership-section { padding: 70px 0; }
    .leadership-images { max-width: 340px; }
    .leader-photo-main { height: 350px; }
    .leader-photo-secondary { height: 190px; right: 0; bottom: -20px; }
    .experience-badge { left: 8px; top: 10px; padding: 8px 12px; font-size: 10px; }
    .experience-badge span { font-size: 16px; }
    .leadership-title { font-size: 1.5rem; }
    .leadership-desc { font-size: 14px; }
    .leader-quote { padding: 16px 16px 16px 42px; margin-bottom: 14px; }
    .leader-quote i { left: 12px; font-size: 18px; }
    .leader-quote p { font-size: 13px; }
    .leader-quote h6 { font-size: 13px; }

    .features-section { padding: 70px 0; }
    .feature-card { padding: 20px 14px; }
    .feature-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 12px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 11.5px; }

    .how-section { padding: 70px 0; }
    .process-timeline { margin-top: 35px; }
    .timeline-line { left: 20px; width: 2px; }
    .timeline-item { gap: 14px; padding-bottom: 28px; }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-icon { width: 44px; height: 44px; font-size: 18px; border-width: 2px; }
    .timeline-item h4 { font-size: 14px; margin-bottom: 4px; padding-top: 2px; }
    .timeline-item p { font-size: 12.5px; line-height: 1.5; }

    .stats-section { padding: 70px 0; }
    .stat-box { padding: 24px 12px; }
    .stat-box i { font-size: 24px; margin-bottom: 12px; }
    .stat-box h3 { font-size: 1.8rem; }

    .cta-section { padding: 70px 0; }
    .cta-wrapper { padding: 40px 20px; border-radius: 22px; }
    .cta-title { font-size: 1.5rem; text-align: center; }
    .cta-primary-btn, .cta-secondary-btn { max-width: 260px; padding: 12px 24px; font-size: 14px; }
}

@media (max-width: 479px) {
    .leadership-section { padding: 60px 0; }
    .leadership-images { max-width: 300px; }
    .leader-photo-main { height: 310px; }
    .leader-photo-secondary { height: 170px; bottom: -15px; border-width: 4px; }
    .experience-badge { left: 5px; top: 8px; padding: 7px 10px; font-size: 9px; border-radius: 12px; }
    .experience-badge span { font-size: 15px; }
    .leadership-title { font-size: 1.3rem; }
    .leadership-desc { font-size: 13px; margin-bottom: 22px; }
    .leader-quote { padding: 14px 14px 14px 38px; margin-bottom: 12px; border-radius: 0 10px 10px 0; }
    .leader-quote i { left: 10px; font-size: 16px; }
    .leader-quote p { font-size: 12.5px; line-height: 1.6; }
    .leader-quote h6 { font-size: 12px; }

    .features-section { padding: 60px 0; }
    .feature-card { padding: 18px 12px; border-radius: 12px; }
    .feature-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 10px; border-radius: 10px; }
    .feature-card h3 { font-size: 12.5px; }
    .feature-card p { font-size: 11px; line-height: 1.5; }

    .how-section { padding: 60px 0; }
    .process-timeline { margin-top: 30px; }
    .timeline-line { left: 17px; width: 2px; }
    .timeline-item { gap: 12px; padding-bottom: 24px; }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-icon { width: 38px; height: 38px; font-size: 16px; border-width: 2px; }
    .timeline-item h4 { font-size: 13px; margin-bottom: 3px; padding-top: 1px; }
    .timeline-item p { font-size: 12px; line-height: 1.5; }

    .stats-section { padding: 60px 0; }
    .stat-box { padding: 20px 10px; border-radius: 16px; }
    .stat-box i { font-size: 22px; margin-bottom: 10px; }
    .stat-box h3 { font-size: 1.6rem; }
    .stat-box p { font-size: 11px; }

    .cta-section { padding: 60px 0; }
    .cta-wrapper { padding: 35px 18px; border-radius: 18px; }
    .cta-title { font-size: 1.3rem; }
    .cta-primary-btn, .cta-secondary-btn { max-width: 240px; padding: 11px 20px; font-size: 13px; }
}

@media (max-width: 399px) {
    .leadership-section { padding: 50px 0; }
    .leadership-images { max-width: 260px; }
    .leader-photo-main { height: 270px; }
    .leader-photo-secondary { height: 150px; bottom: -12px; border-width: 3px; }
    .experience-badge { left: 2px; top: 5px; padding: 6px 8px; font-size: 8px; }
    .experience-badge span { font-size: 14px; }
    .leadership-title { font-size: 1.15rem; }
    .leadership-desc { font-size: 12.5px; margin-bottom: 18px; }
    .leader-quote { padding: 12px 12px 12px 34px; margin-bottom: 10px; }
    .leader-quote i { left: 8px; font-size: 14px; }
    .leader-quote p { font-size: 12px; }
    .leader-quote h6 { font-size: 11px; }

    .features-section { padding: 50px 0; }
    .feature-card { padding: 16px 10px; border-radius: 10px; }
    .feature-icon { width: 40px; height: 40px; font-size: 16px; margin-bottom: 8px; border-radius: 8px; }
    .feature-card h3 { font-size: 11.5px; }
    .feature-card p { font-size: 10.5px; }

    .how-section { padding: 40px 0; }
    .process-timeline { margin-top: 20px; }
    .timeline-line { left: 15px; width: 2px; }
    .timeline-item { gap: 10px; padding-bottom: 20px; }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-icon { width: 34px; height: 34px; font-size: 14px; border-width: 2px; }
    .timeline-item h4 { font-size: 12px; margin-bottom: 2px; padding-top: 0; }
    .timeline-item p { font-size: 11px; line-height: 1.4; }

    .stats-section { padding: 40px 0; }
    .stat-box { padding: 14px 6px; border-radius: 10px; }
    .stat-box i { font-size: 18px; margin-bottom: 6px; }
    .stat-box h3 { font-size: 1.2rem; }
    .stat-box p { font-size: 9px; }

    .cta-section { padding: 40px 0; }
    .cta-wrapper { padding: 25px 12px; border-radius: 12px; }
    .cta-title { font-size: 1rem; }
    .cta-primary-btn, .cta-secondary-btn { max-width: 200px; padding: 9px 14px; font-size: 11px; }
}

@media (max-height: 500px) and (orientation: landscape) and (max-width: 991px) {
    .process-timeline { margin-top: 20px; }
    .timeline-item { padding-bottom: 16px; gap: 10px; }
    .timeline-icon { width: 36px; height: 36px; font-size: 15px; }
    .timeline-line { left: 17px; }
    .timeline-item h4 { font-size: 13px; }
    .timeline-item p { font-size: 11px; }
}