/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent:  #e8232a;
    --green:   #22a94f;
    --blue:    #2A2AFF;
    --dark:    #0d0d0d;
    --text:    #1a1a1a;
    --muted:   #555;
    --light:   #f8f8f8;
    --border:  #e4e4e4;
    --white:   #ffffff;
}

body {
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* ══════════════════════════════════════════
   BREADCRUMB BANNER
══════════════════════════════════════════ */
.page-banner {
    background: var(--dark);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(232,35,42,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 5%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(34,169,79,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

.page-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}

.page-banner h1 em {
    font-style: normal;
    color: var(--accent);
}

/* ══════════════════════════════════════════
   QUICK STATS BAR
══════════════════════════════════════════ */
.stats-bar { background: var(--accent); padding: 0; }

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-pill {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.stat-pill:last-child { border-right: none; }
.stat-pill svg { width: 22px; height: 22px; flex-shrink: 0; color: #fff; }

.stat-pill-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat-pill-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   MAIN CONTENT LAYOUT
══════════════════════════════════════════ */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

/* ── Article / Left column ── */
.article-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--dark);
    margin: 40px 0 16px;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--dark);
    margin: 30px 0 12px;
    letter-spacing: 0.02em;
}

.article-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 22px 0 8px;
}

.article-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 16px;
}

.article-body a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.article-body a:hover { text-decoration: underline; }
.article-body strong { color: var(--text); font-weight: 700; }

/* Section divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 6px 0 20px;
}

.section-divider.green { background: var(--green); }

/* Highlighted intro box */
.intro-highlight {
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

/* Image block */
.img-block {
    margin: 28px 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.img-block a { display: block; }

.img-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.img-block:hover img { transform: scale(1.02); }

.img-block figcaption {
    background: var(--light);
    padding: 10px 16px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
}

/* Numbered curriculum list */
.curriculum-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 28px;
    counter-reset: curr;
}

.curriculum-list > li {
    counter-increment: curr;
    background: var(--light);
    border-radius: 10px;
    padding: 18px 20px 18px 60px;
    position: relative;
    border-left: 3px solid var(--accent);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.curriculum-list > li:nth-child(even) { border-left-color: var(--green); }

.curriculum-list > li::before {
    content: counter(curr);
    position: absolute;
    left: 16px;
    top: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
}

.curriculum-list > li:nth-child(even)::before { color: var(--green); }

.curriculum-list > li h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

/* Sub-bullets inside curriculum items */
.curriculum-list > li ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.curriculum-list > li ul li {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.curriculum-list > li ul li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 2px;
}

/* Benefits numbered list */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    counter-reset: ben;
}

.benefits-list > li {
    counter-increment: ben;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px 16px 58px;
    position: relative;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
    transition: border-color 0.2s, transform 0.2s;
}

.benefits-list > li:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.benefits-list > li:nth-child(even):hover { border-color: var(--green); }

.benefits-list > li::before {
    content: counter(ben);
    position: absolute;
    left: 14px;
    top: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
}

.benefits-list > li h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 6px;
}

/* Roles tag cloud */
.roles-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 4px;
}

.role-tag {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.role-tag:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* How to choose – factor cards */
.factor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0;
    counter-reset: fac;
}

.factor-card {
    counter-increment: fac;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 18px 18px 52px;
    position: relative;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    transition: border-color 0.2s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.factor-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}

.factor-card::before {
    content: counter(fac);
    position: absolute;
    left: 14px;
    top: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--green);
    line-height: 1;
}

.factor-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 6px;
}

/* DTI spotlight card */
.dti-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    border-radius: 18px;
    padding: 36px 32px;
    margin: 32px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.dti-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,35,42,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dti-card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(34,169,79,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.dti-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    position: relative;
}

.dti-card p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
}

.dti-card p:last-child { margin-bottom: 0; }

.dti-card a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.dti-card a:hover { text-decoration: underline; }

/* Conclusion card */
.conclusion-card {
    background: var(--light);
    border-left: 4px solid var(--green);
    border-radius: 0 14px 14px 0;
    padding: 28px 26px;
    margin: 32px 0;
}

.conclusion-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.conclusion-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.conclusion-card p:last-child { margin-bottom: 0; }

.conclusion-card a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.conclusion-card a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   RIGHT SIDEBAR
══════════════════════════════════════════ */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-enquiry {
    background: var(--dark);
    border-radius: 18px;
    padding: 28px 24px;
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.sidebar-enquiry h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.sidebar-enquiry p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    line-height: 1.5;
}

.enquiry-field {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--white);
    width: 100%;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
}

.enquiry-field::placeholder { color: rgba(255,255,255,0.35); }
.enquiry-field:focus { border-color: var(--accent); }

.enquiry-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.enquiry-btn:hover { background: var(--green); transform: scale(1.02); }

.form-msg {
    display: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.form-msg.success { background: rgba(34,169,79,0.15); color: #22a94f; border: 1px solid rgba(34,169,79,0.3); }
.form-msg.error   { background: rgba(232,35,42,0.12); color: #e8232a; border: 1px solid rgba(232,35,42,0.3); }

.enquiry-or {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin: 14px 0;
}

.enquiry-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
}

.enquiry-call:hover { border-color: var(--green); background: rgba(34,169,79,0.08); }

.sidebar-highlights {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
}

.sidebar-highlights h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--muted);
}

.highlight-item:last-child { border-bottom: none; }
.highlight-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.highlight-item svg.green { color: var(--green); }
.highlight-item strong { color: var(--dark); }

.sidebar-topics {
    background: var(--green);
    border-radius: 14px;
    padding: 22px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.sidebar-topics h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 14px;
}

.sidebar-topics ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-topics ul li {
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.92;
}

.sidebar-topics ul li::before { content: '→'; font-weight: 700; flex-shrink: 0; }

.sidebar-batch {
    background: var(--dark);
    border-radius: 14px;
    padding: 22px 20px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.sidebar-batch h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 14px;
}

.sidebar-batch-item {
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.sidebar-batch-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--accent);
}

.sidebar-contact {
    background: var(--light);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.sidebar-contact p { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.sidebar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-contact a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   BOTTOM CTA BANNER
══════════════════════════════════════════ */
.bottom-cta {
    background: var(--dark);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232,35,42,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.bottom-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.bottom-cta h2 span { color: var(--accent); }
.bottom-cta h2 span.green { color: var(--green); }

.bottom-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.bottom-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-primary:hover { background: var(--green); transform: scale(1.03); }

.cta-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.cta-btn-secondary:hover { border-color: var(--green); background: rgba(34,169,79,0.08); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .factor-grid { grid-template-columns: 1fr; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}