/* ==========================================================================
   DATA SCIENCE INTERNSHIP - PAGE SPECIFIC STYLES
   ========================================================================== */

/* -----------------------------------------
   VARIABLES & COMMON UTILITIES
----------------------------------------- */
:root {
    --ds-primary-green: var(--primary-green, #10b981);
    --ds-hover-green: var(--primary-hover, #059669);
    --ds-light-green: rgba(16, 185, 129, 0.1);
    --ds-text-dark: #0f172a;
    --ds-text-muted: #64748b;
    --ds-border-color: #e2e8f0;
    --ds-bg-light: #f8fafc;
}

body {
    background-color: #ffffff;
    color: var(--ds-text-dark);
}

.ds-container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 2rem);
}

.ds-section {
    padding: 6rem 0;
}

.bg-light-gray {
    background-color: var(--ds-bg-light);
}

.highlight-green {
    color: var(--ds-primary-green);
}

/* Base Buttons */
.ds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 8px; /* Matching modern edtech feel */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ds-btn-primary {
    background-color: var(--ds-primary-green);
    color: #ffffff;
    border: 2px solid var(--ds-primary-green);
}

.ds-btn-primary:hover {
    background-color: var(--ds-hover-green);
    border-color: var(--ds-hover-green);
    transform: translateY(-2px);
    color: #ffffff;
}

.ds-btn-secondary {
    background-color: transparent;
    color: var(--ds-text-dark);
    border: 2px solid var(--ds-border-color);
}

.ds-btn-secondary:hover {
    border-color: var(--ds-text-dark);
    background-color: var(--ds-text-dark);
    color: #ffffff;
}

.ds-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Section Headers */
.ds-section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.ds-section-header.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ds-section-label {
    display: inline-block;
    color: var(--ds-primary-green);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.ds-section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ds-section-subtitle {
    font-size: 1.125rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
}

/* -----------------------------------------
   HERO SECTION
----------------------------------------- */
.ds-hero {
    padding: 8rem 0 6rem;
    background-color: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ds-hero-grid {
    display: grid;
    grid-template-columns: 58% 38%; /* Slightly looser gap */
    gap: 4%;
    align-items: center;
}

.ds-eyebrow {
    display: inline-block;
    background-color: var(--ds-light-green);
    color: var(--ds-primary-green);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ds-hero-title {
    font-size: clamp(3rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--ds-text-dark);
}

.ds-hero-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ds-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.ds-metadata-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ds-border-color);
}

.ds-metadata-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ds-meta-label {
    font-size: 0.875rem;
    color: var(--ds-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.ds-meta-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ds-text-dark);
}

.ds-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ds-support-link {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--ds-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ds-support-link:hover {
    color: var(--ds-primary-green);
}

/* Hero Visual */
.ds-hero-visual {
    position: relative;
    width: 100%;
}

.ds-visual-wrapper {
    position: relative;
    border-radius: 20px;
    background-color: var(--ds-bg-light);
}

.ds-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.ds-floating-badge {
    position: absolute;
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ds-text-dark);
    border: 1px solid var(--ds-border-color);
    letter-spacing: 0.02em;
}

.ds-floating-badge svg {
    color: var(--ds-primary-green);
}

.badge-top {
    top: 40px;
    left: -30px;
}

.badge-bottom {
    bottom: 60px;
    right: -20px;
}

.ds-micro-statement {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
    text-align: center;
    font-weight: 500;
}

/* -----------------------------------------
   PROGRAM BENEFITS & CERTIFICATE
----------------------------------------- */
.ds-benefits-section {
    padding: 6rem 0;
    border-top: 1px solid var(--ds-border-color);
}

.ds-benefits-layout {
    display: grid;
    grid-template-columns: 58% 38%;
    gap: 4%;
    align-items: center;
}

.ds-benefits-content {
    display: flex;
    flex-direction: column;
}

.ds-benefits-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--ds-text-dark);
    letter-spacing: -0.02em;
}

.ds-benefits-intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ds-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.ds-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ds-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.ds-benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--ds-light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.ds-benefit-icon svg {
    width: 18px;
    height: 18px;
    color: var(--ds-primary-green);
}

.ds-benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 0.5rem;
}

.ds-benefit-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ds-text-muted);
}

.ds-benefits-visual {
    position: relative;
    width: 100%;
}

.ds-certificate-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ds-certificate-label {
    text-align: center;
    margin-bottom: 0.5rem;
}

.ds-cert-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ds-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.ds-cert-sub {
    font-size: 0.75rem;
    color: #94a3b8;
}

.ds-certificate-card {
    background: #ffffff;
    border: 1px solid var(--ds-border-color);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    position: relative;
    width: 100%;
}

.ds-certificate-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    border: 1px solid var(--ds-border-color);
}

.ds-floating-badge-cert {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 2px solid var(--ds-primary-green);
    color: var(--ds-primary-green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* -----------------------------------------
   THE INTERNSHIP EXPERIENCE
----------------------------------------- */
.ds-experience-section {
    padding: 6rem 0;
}

.ds-experience-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.ds-experience-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ds-experience-intro {
    font-size: 1.125rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
}

.ds-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ds-experience-card {
    background: #ffffff;
    border: 1px solid var(--ds-border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.ds-exp-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--ds-light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.2s ease;
}

.ds-experience-card:hover .ds-exp-icon-wrapper {
    background-color: rgba(16, 185, 129, 0.15); /* slightly stronger */
}

.ds-exp-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--ds-primary-green);
}

.ds-exp-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 1rem;
}

.ds-exp-desc {
    font-size: 1rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ds-exp-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ds-primary-green);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* -----------------------------------------
   CAREER OPPORTUNITIES SLIDER
----------------------------------------- */
.ds-careers-section {
    padding: 6rem 0;
}

.ds-careers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.ds-careers-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ds-careers-intro {
    font-size: 1.125rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
}

.ds-career-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
}

.ds-slider-viewport {
    overflow: hidden;
    width: 100%;
    flex: 1;
    /* To prevent shadow clipping */
    padding: 10px 4px;
    margin: -10px -4px;
}

.ds-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.ds-career-card {
    background: #ffffff;
    border: 1px solid var(--ds-border-color);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: auto;
    /* Slider config */
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    user-select: none;
    -webkit-user-drag: none;
}

.ds-career-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
}

.ds-career-card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.ds-career-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.ds-career-card:hover .ds-career-card-img {
    transform: scale(1.02);
}

.ds-career-card-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ds-career-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ds-primary-green);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.ds-career-role {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 0.75rem;
}

.ds-career-desc {
    font-size: 0.95rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
}

.ds-slider-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--ds-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ds-text-dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
    z-index: 10;
}

.ds-slider-btn:hover {
    border-color: var(--ds-primary-green);
    color: var(--ds-primary-green);
    transform: scale(1.05);
}

.ds-slider-btn:focus-visible {
    outline: 2px solid var(--ds-primary-green);
    outline-offset: 2px;
}

.ds-slider-btn svg {
    width: 24px;
    height: 24px;
}

/* -----------------------------------------
   TOOLS & TECHNOLOGIES
----------------------------------------- */
.ds-tools-section {
    padding: 6rem 0;
}

.ds-tools-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.ds-tools-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ds-tools-intro {
    font-size: 1.125rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
}

.ds-tools-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ds-tools-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ds-tool-card {
    background: #ffffff;
    border: 1px solid var(--ds-border-color);
    border-radius: 16px;
    width: 150px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1.5rem;
}

.ds-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -10px rgba(0,0,0,0.06);
}

.ds-tool-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.2s ease;
}

/* For wider logos like Pandas and Scikit-learn */
.ds-tool-card:has(.ds-tool-wide) {
    width: 180px;
}

.ds-tool-card:hover .ds-tool-logo {
    filter: grayscale(0%) opacity(1);
}

/* -----------------------------------------
   CURRICULUM SECTION
----------------------------------------- */
.ds-curriculum-section {
    padding: 6rem 0;
    position: relative;
    background: #ffffff;
}

.ds-curriculum-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.ds-curriculum-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ds-curriculum-intro {
    font-size: 1.125rem;
    color: var(--ds-text-muted);
    line-height: 1.6;
}

.ds-curriculum-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.ds-curr-path-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
}

.ds-curr-path-svg-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 42px; /* Aligns with mobile milestones */
    width: 20px;
    height: 100%;
    z-index: 1;
}

.ds-curriculum-track {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Vertical space between steps */
}

.ds-curr-item {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.ds-curr-left {
    justify-content: flex-start;
}

.ds-curr-right {
    justify-content: flex-end;
}

.ds-curr-milestone {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: var(--ds-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 3;
}

/* Adjust milestone positions to sit perfectly on the curve's edges */
.ds-curr-left .ds-curr-milestone { margin-left: -40px; }
.ds-curr-right .ds-curr-milestone { margin-left: 40px; }

.ds-curr-card {
    background: #ffffff;
    border: 1px solid var(--ds-border-color);
    border-radius: 18px;
    padding: 2.25rem 2.5rem;
    width: 44%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}

.ds-curr-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ds-text-dark);
    margin-bottom: 1.5rem;
}

.ds-curr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ds-curr-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ds-text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.ds-curr-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--ds-primary-green);
    margin-top: 2px;
}

/* Scroll reveal animations */
.js-scroll-reveal {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ds-curr-left.js-scroll-reveal {
    transform: translateX(-30px);
}

.ds-curr-right.js-scroll-reveal {
    transform: translateX(30px);
}

.ds-curr-milestone.js-scroll-reveal {
    transform: translate(-50%, -50%) scale(0.8);
}

.ds-curr-path-svg.js-scroll-reveal {
    opacity: 0;
    transition: opacity 1s ease 0.3s;
}

/* Active states */
.js-scroll-reveal.is-visible {
    opacity: 1;
}

.ds-curr-left.is-visible,
.ds-curr-right.is-visible {
    transform: translateX(0);
}

.ds-curr-milestone.is-visible {
    transform: translate(-50%, -50%) scale(1);
}

/* Mobile & Tablet Responsive */
@media (max-width: 991px) {
    .ds-curr-card {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .ds-curriculum-wrapper {
        padding-left: 10px;
    }
    .ds-curr-path-svg {
        display: none;
    }
    .ds-curr-path-svg-mobile {
        display: block;
        opacity: 1 !important; /* simple line on mobile */
    }
    .ds-curr-milestone {
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
        transform: translateY(-50%) !important;
        margin-left: 0 !important;
    }
    
    .ds-curr-item {
        justify-content: flex-end;
    }

    .ds-curr-card {
        width: calc(100% - 64px);
    }
    
    .ds-curr-left.js-scroll-reveal,
    .ds-curr-right.js-scroll-reveal {
        transform: translateY(20px);
    }
    .ds-curr-left.is-visible,
    .ds-curr-right.is-visible {
        transform: translateY(0);
    }
    
    .ds-curriculum-track {
        gap: 2.5rem;
    }
}

/* -----------------------------------------
   TOOLS SECTION
----------------------------------------- */
.ds-tools-section {
    padding: 4rem 0;
    border-top: 1px solid var(--ds-border-color);
    border-bottom: 1px solid var(--ds-border-color);
}

/* -----------------------------------------
   RESPONSIVE DESIGN
----------------------------------------- */
@media (max-width: 1024px) {
    .ds-hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .ds-eyebrow {
        margin: 0 auto 1.5rem;
    }

    .ds-hero-desc {
        margin: 0 auto 2rem;
    }

    .ds-metadata-row {
        justify-content: center;
    }

    .ds-hero-actions {
        justify-content: center;
    }
    
    .ds-hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .ds-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ds-benefits-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .ds-career-card {
        flex: 0 0 calc(50% - 12px); /* 2 cards */
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .ds-section {
        padding: 4rem 0;
    }
    
    .ds-hero {
        padding: 7rem 0 4rem;
    }

    .ds-hero-title,
    .ds-benefits-title {
        font-size: 2.5rem;
    }

    .ds-benefit-row {
        gap: 1rem;
    }

    .ds-experience-grid {
        grid-template-columns: 1fr;
    }

    .ds-metadata-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .ds-metadata-item {
        border-bottom: 1px solid var(--ds-border-color);
        padding-bottom: 1.5rem;
        width: 100%;
    }
    .ds-metadata-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .badge-top, .badge-bottom {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        margin: 1rem auto 0;
        width: max-content;
    }
    
    .ds-visual-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ds-hero-actions {
        flex-direction: column;
    }
    
    .ds-hero-actions .ds-btn {
        width: 100%;
    }

    .ds-career-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .ds-slider-btn {
        display: none;
    }

    .ds-career-slider-container {
        padding: 0 1rem;
    }
}

/* -----------------------------------------
   FINAL CTA SECTION
----------------------------------------- */
.ds-final-cta {
    background-color: #0b0f19; /* Dark premium background */
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.ds-final-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.ds-final-cta-left {
    flex: 1;
    max-width: 520px;
}

.ds-final-cta-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ds-primary-green);
    margin-bottom: 16px;
}

#ds-final-cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ds-final-cta-desc {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ds-final-cta-actions {
    margin-bottom: 16px;
}

.ds-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--ds-primary-green);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 32px;
    height: 52px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ds-final-cta-btn:hover,
.ds-final-cta-btn:focus-visible {
    background-color: var(--ds-hover-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
    outline: none;
}

.ds-final-cta-btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.4);
}

.ds-cta-arrow {
    transition: transform 0.25s ease;
}

.ds-final-cta-btn:hover .ds-cta-arrow,
.ds-final-cta-btn:focus-visible .ds-cta-arrow {
    transform: translateX(4px);
}

.ds-final-cta-support {
    display: inline-block;
    font-size: 0.95rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.ds-final-cta-support:hover {
    color: #ffffff;
}

/* Right Card */
.ds-final-cta-right {
    flex: 1;
    max-width: 580px;
    position: relative;
}

.ds-final-cta-card {
    position: relative;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    overflow: hidden;
}

.ds-fcc-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.ds-fcc-content {
    position: relative;
    z-index: 2;
}

.ds-fcc-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.ds-fcc-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Data Visual */
.ds-fcc-visual {
    position: relative;
    height: 120px;
    margin-bottom: 40px;
}

.ds-fcc-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.ds-fcc-grid-lines span {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.05);
}

.ds-fcc-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: visible;
}

.ds-fcc-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.ds-final-cta-right.is-visible .ds-fcc-path {
    animation: drawPath 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

/* Stats */
.ds-fcc-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ds-fcc-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.05em;
}

.ds-fcc-stat-wide {
    width: 100%;
    text-align: center;
}

/* Scroll Reveal */
.ds-final-cta-left.js-scroll-reveal {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ds-final-cta-right.js-scroll-reveal {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ds-final-cta-left.is-visible,
.ds-final-cta-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 991px) {
    .ds-final-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .ds-final-cta-left {
        max-width: 600px;
    }
    
    .ds-final-cta-btn {
        margin: 0 auto;
    }
    
    .ds-final-cta-right {
        width: 100%;
        max-width: 520px;
    }
    
    .ds-final-cta-left.js-scroll-reveal,
    .ds-final-cta-right.js-scroll-reveal {
        transform: translateY(30px);
    }
}

@media (max-width: 767px) {
    .ds-final-cta {
        padding: 60px 0;
    }
    
    #ds-final-cta-title {
        font-size: 2.25rem;
    }
    
    .ds-final-cta-card {
        padding: 30px 24px;
    }
    
    .ds-fcc-title {
        font-size: 1.75rem;
    }
    
    .ds-final-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
