@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #1a47e5;
    --blue-dark: #0f2a8a;
    --navy: #1a2340;
    --gray: #4a5568;
    --gray1: #1b1919;
    --gray-light: #6b7280;
    --bg: #ffffff;
    --card-bg: #f0f3fc;
    --border: #d9e0f5;
    --accent-bar: #1a47e5;
    --dark-bg: #07112b;
    --section-bg: #e8edf8;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sen', 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    min-height: 100vh;
}

/* ── SECTION ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #07112b;
}

/* ── WHITE GLOW BLOOM behind the card (right side) ── */
/* This is the key effect visible in the reference image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    /* soft white/silver bloom, very diffused */
    background: radial-gradient(ellipse at center,
            rgba(160, 185, 230, 0.18) 0%,
            rgba(100, 140, 210, 0.10) 30%,
            rgba(30, 60, 140, 0.05) 60%,
            transparent 75%);
    pointer-events: none;
    z-index: 1;
}

/* ── INNER GRID ── */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ── LEFT COLUMN ── */
.hero-left {
    display: flex;
    flex-direction: column;
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50px;
    padding: 7px 16px 7px 12px;
    width: fit-content;
    margin-bottom: 36px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}

.status-text {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.897);
}

/* Heading block */
.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.hero-heading .line-white {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 4.2vw, 38px);
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-heading .line-blue {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 5vw, 38px);
    color: var(--blue);
    letter-spacing: -0.02em;
    line-height: 1.12;
}

/* Body text */
.hero-body {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.72;
    color: rgb(255, 255, 255);
    max-width: 500px;
    margin-bottom: 44px;
}

/* CTA row */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: var(--blue);
    border: none;
    border-radius: 5px;
    padding: 13px 30px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
    background: #1a3fd4;
    transform: translateY(-1px);
}

.btn-secondary {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    padding: 13px 30px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

/* ── RIGHT — CARD WRAPPER ── */
.hero-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* Extra glow specifically centred on the card */
.hero-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 130%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(180, 200, 240, 0.13) 0%,
            rgba(120, 160, 230, 0.07) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.capabilities-card {
    position: relative;
    z-index: 1;
    background: #080e1d;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 38px 44px;
    width: 100%;
    max-width: 490px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        /* white/silver outer glow — the bloom on the card edge */
        0 0 60px 10px rgba(180, 200, 255, 0.09),
        0 0 120px 30px rgba(150, 180, 255, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.6);
}

.card-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 8px;
}

.capability-list {
    display: flex;
    flex-direction: column;
}

.capability-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.capability-item:last-child {
    border-bottom: none;
}

.capability-name {
    font-family: 'Sen', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

/* White dot — matches original (small white circles) */
.capability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-badge {
    animation: fadeUp 0.55s ease 0.05s both;
}

.hero-heading {
    animation: fadeUp 0.55s ease 0.15s both;
}

.hero-body {
    animation: fadeUp 0.55s ease 0.25s both;
}

.hero-ctas {
    animation: fadeUp 0.55s ease 0.35s both;
}

.capabilities-card {
    animation: fadeInRight 0.65s ease 0.2s both;
}

.capability-item:nth-child(1) {
    animation: fadeInRow 0.45s ease 0.50s both;
}

.capability-item:nth-child(2) {
    animation: fadeInRow 0.45s ease 0.60s both;
}

.capability-item:nth-child(3) {
    animation: fadeInRow 0.45s ease 0.70s both;
}

.capability-item:nth-child(4) {
    animation: fadeInRow 0.45s ease 0.80s both;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 48px;
    }

    .hero-left {
        margin-top: 40px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .capabilities-card {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .hero-inner {
        padding: 48px 24px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* 
       SECTION 2
    */
.section2 {
    display: flex;
    min-height: 520px;
    width: 100%;
}

/* ── LEFT BLUE PANEL ── */
.s2-left {
    flex: 0 0 52%;
    background: var(--blue);
    display: flex;
    align-items: center;
    padding: 80px 72px;
}

.s2-left-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 560px;
}

.s2-heading {
    font-family: 'Sen', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 3.6vw, 48px);
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 28px;
}

/* Short dark divider line */
.s2-divider {
    width: 52px;
    height: 4px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    margin-bottom: 36px;
}

.s2-body {
    font-family: 'Sen', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 16.5px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 500px;
}

/* ── RIGHT WHITE PANEL ── */
.s2-right {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 72px;
}

.s2-right-inner {
    display: flex;
    flex-direction: column;
    gap: 52px;
    max-width: 560px;
    width: 100%;
}

/* Each content block */
.s2-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Block heading row — blue left bar + bold title */
.s2-block-heading {
    display: flex;
    align-items: center;
    gap: 0;
}

.s2-block-bar {
    width: 4px;
    height: 100%;
    min-height: 28px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
    align-self: stretch;
    margin-right: 16px;
}

.s2-block-title {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(17px, 1.6vw, 22px);
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.s2-block-text {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.75;
    color: var(--gray1);
    padding-left: 20px;
    /* aligns under the title, past the bar */
}

/* 
       SCROLL-TRIGGERED ANIMATIONS
    */

/* Initial hidden states */
.s2-heading,
.s2-divider,
.s2-body {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.s2-block {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible states (added by JS) */
.s2-heading.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.s2-divider.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

.s2-body.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.30s;
}

.s2-block.visible {
    opacity: 1;
    transform: translateX(0);
}

.s2-block:nth-child(1).visible {
    transition-delay: 0.15s;
}

.s2-block:nth-child(2).visible {
    transition-delay: 0.32s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .section2 {
        flex-direction: column;
        min-height: unset;
    }

    .s2-left {
        flex: unset;
        width: 100%;
        padding: 64px 40px;
    }

    .s2-right {
        flex: unset;
        width: 100%;
        padding: 64px 40px;
    }
}

@media (max-width: 560px) {
    .s2-left {
        padding: 48px 24px;
    }

    .s2-right {
        padding: 48px 24px;
    }

    .s2-right-inner {
        gap: 40px;
    }
}

/* ═
       SECTION 3 – WORKFORCE SERVICES
    ═*/
.section3 {
    background: var(--section-bg);
    padding: 72px 64px 80px;
    width: 100%;
}

/* ── HEADER ROW ── */
.s3-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}

.s3-title {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 2.8vw, 38px);
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
    flex-shrink: 0;
}

.s3-subtitle {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.05vw, 15px);
    color: var(--gray);
    line-height: 1.65;
    text-align: right;
    max-width: 330px;
}

/* ── CARD LIST ── */
.s3-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── SINGLE CARD ── */
.s3-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 28px 28px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 2px 14px rgba(26, 35, 64, 0.07);
    cursor: pointer;
    /* hover */
    transition: box-shadow 0.25s ease, transform 0.22s ease;
    /* scroll-in animation — start hidden */
    opacity: 0;
    transform: translateY(28px);
}

.s3-card.s3-visible {
    opacity: 1;
    transform: translateY(0);
    /* transition for scroll-in */
    transition: opacity 0.55s ease, transform 0.55s ease,
        box-shadow 0.25s ease;
}

.s3-card:hover {
    box-shadow: 0 8px 32px rgba(26, 71, 229, 0.14);
    transform: translateY(-3px);
}

/* ── ICON BOX ── */
.s3-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/*
      Drop your icon images here.
      Each .s3-card has a data-icon attribute matching the img src.
      Size is fixed 26×26 px, white tint via CSS filter.
    */
.s3-icon-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    /* makes any dark icon appear white on the blue bg */
}

/* ── CARD TEXT BLOCK ── */
.s3-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
}

.s3-card-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: clamp(14.5px, 1.2vw, 17px);
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.s3-card-text {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1vw, 14.5px);
    color: var(--gray);
    line-height: 1.65;
}

/* ── ARROW BUTTON ── */


.arrowbut {
    height: 50px;
    width: 50px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .section3 {
        padding: 52px 36px 60px;
    }
}

@media (max-width: 640px) {
    .section3 {
        padding: 40px 20px 48px;
    }

    .s3-header {
        flex-direction: column;
        gap: 10px;
    }

    .s3-subtitle {
        text-align: left;
        max-width: 100%;
    }

    .s3-card {
        padding: 20px 18px;
        gap: 16px;
    }

    .s3-arrow-btn {
        margin-left: 8px;
    }
}

@media (max-width: 400px) {
    .s3-card-text {
        font-size: 12.5px;
    }
}

/* ═════════
       SECTION 4 – RECRUITMENT EXECUTION FRAMEWORK
    ═════════*/
.section4 {
    background: #ffffff;
    padding: 60px 72px 6px;
    width: 100%;
    display: flex;
    gap: 0;
    align-items: flex-start;
}

/* ── LEFT COLUMN ── */
.s4-left {
    flex: 0 0 340px;
    padding-right: 48px;
    padding-top: 8px;
}

.s4-heading {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 3.2vw, 30px);
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 20px;
}

/* Blue underline accent */
.s4-underline {
    width: 56px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 28px;
}

.s4-body {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--gray);
    line-height: 1.7;
}

/* ── RIGHT COLUMN — 2×3 PHASE GRID ── */
.s4-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    column-gap: 0;
    row-gap: 0;
}

/* ── PHASE ITEM ── */
.s4-phase {
    display: flex;
    flex-direction: column;
    padding: 0 32px 52px 0;
    position: relative;
    /* scroll animation */
    opacity: 0;
    transform: translateY(24px);
}

.s4-phase.s4-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Right column phases — add left padding */
.s4-phase:nth-child(even) {
    padding-left: 32px;
    padding-right: 0;
}

/* ── PHASE DOT + VERTICAL LINE ── */
.s4-phase-marker {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
    position: relative;
}

/* Outer ring circle */
.s4-dot {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 2.5px solid var(--blue);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Inner filled dot */
.s4-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
}

/* Vertical connector line below dot */
.s4-phase-line {
    position: absolute;
    left: 13px;
    /* center of 28px dot */
    top: 28px;
    /* just below dot */
    width: 1.5px;
    background: #c8d3e8;
    bottom: -52px;
    /* extend to bottom of padding */
    z-index: 1;
}

/* No line on last row (phases 5 & 6) */
.s4-phase:nth-child(5) .s4-phase-line,
.s4-phase:nth-child(6) .s4-phase-line {
    display: none;
}

/* ── PHASE LABEL ── */
.s4-phase-label {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-left: 14px;
    line-height: 1;
}

/* ── PHASE CONTENT (indented under dot) ── */
.s4-phase-content {
    padding-left: 42px;
    /* aligns text under the label, past dot */
}

.s4-phase-title {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.3vw, 19px);
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.s4-phase-text {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1vw, 14.5px);
    color: var(--gray);
    line-height: 1.72;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .section4 {
        padding: 64px 48px 80px;
    }

    .s4-left {
        flex: 0 0 280px;
        padding-right: 36px;
    }
}

@media (max-width: 860px) {
    .section4 {
        flex-direction: column;
        padding: 52px 36px 64px;
    }

    .s4-left {
        flex: unset;
        width: 100%;
        padding-right: 0;
        margin-bottom: 48px;
    }

    .s4-right {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .section4 {
        padding: 40px 20px 52px;
    }

    .s4-right {
        grid-template-columns: 1fr;
    }

    .s4-phase:nth-child(even) {
        padding-left: 0;
    }

    .s4-phase-line {
        display: none;
    }
}

/* ============================================================
   SECTION 5 — Value Impact
   ============================================================ */

.section5 {
    position: relative;
    background: linear-gradient(135deg, #07112b 0%, #0d1e4a 40%, #1338c4 75%, #1a47e5 100%);
    padding: 72px 64px 84px;
    width: 100%;
    overflow: hidden;
}

/* Subtle right-side radial glow matching the image */
.section5::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 90% 50%, rgba(60, 100, 240, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

/* ── HEADER ── */
.s5-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}

.s5-title {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 3.2vw, 52px);
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    flex-shrink: 0;
}

.s5-subtitle {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.1vw, 15.5px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    text-align: right;
    max-width: 420px;
    padding-top: 10px;
}

/* ── CARD ROWS ── */
.s5-row {
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.s5-row-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 16px;
}

.s5-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ── CARD ── */
.s5-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 32px 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* scroll animation initial state */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease,
        box-shadow 0.25s ease;
}

.s5-card.s5-visible {
    opacity: 1;
    transform: translateY(0);
}

.s5-card:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

/* Blue accent bar */
.s5-card-bar {
    width: 36px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.s5-card-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 1.25vw, 19px);
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.s5-card-text {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1vw, 14.5px);
    color: var(--gray);
    line-height: 1.68;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .section5 {
        padding: 60px 44px 72px;
    }
}

@media (max-width: 860px) {
    .s5-row-3 {
        grid-template-columns: 1fr 1fr;
    }

    .s5-row-2 {
        grid-template-columns: 1fr;
    }

    .section5 {
        padding: 52px 32px 64px;
    }
}

@media (max-width: 600px) {
    .section5 {
        padding: 40px 20px 52px;
    }

    .s5-header {
        flex-direction: column;
        gap: 10px;
    }

    .s5-subtitle {
        text-align: left;
        max-width: 100%;
    }

    .s5-row-3 {
        grid-template-columns: 1fr;
    }

    .s5-row-2 {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   SECTION 6 — CTA Banner
   ============================================================ */

.section6 {
    background: #ffffff;
    width: 100%;
    padding: 100px 64px 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s6-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    max-width: 780px;
    width: 100%;
    text-align: center;
    /* scroll animation initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.s6-inner.s6-visible {
    opacity: 1;
    transform: translateY(0);
}

.s6-heading {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4.2vw, 62px);
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.s6-btn {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 1.1vw, 15px);
    letter-spacing: 0.02em;
    color: #ffffff;
    background: var(--blue);
    border: none;
    border-radius: 6px;
    padding: 16px 48px;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.18s ease;
    white-space: nowrap;
}

.s6-btn:hover {
    background: #1a3fd4;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section6 {
        padding: 72px 36px 80px;
    }
}

@media (max-width: 480px) {
    .section6 {
        padding: 56px 20px 64px;
    }

    .s6-btn {
        width: 100%;
        text-align: center;
    }
}