/* =========================================
   DDS MARKETING — RECRUITING LANDING PAGE
   ========================================= */

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

:root {
    --color-bg: #000000;
    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-bg-card-hover: rgba(255, 255, 255, 0.08);
    --color-bg-section: #0a0a0a;
    --color-accent: #267DF4;
    --color-accent-hover: #1a6de0;
    --color-accent-deep: #0048FF;
    --color-white: #ffffff;
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.8);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-text-dim: rgb(105, 114, 125);
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: 0.3s ease;
    --max-width: 1280px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 640px;
    font-weight: 300;
}

.text-accent {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    padding: 16px 26px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(38, 125, 244, 0.3);
}

.btn-secondary {
    padding: 16px 26px;
    background: transparent;
    color: var(--color-white);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
}

.nav-links a.active {
    color: var(--color-white);
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--color-white);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-eyebrow {
    font-size: clamp(11px, 1.15vw, 16px);
    font-weight: 400;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.5;
    white-space: nowrap;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--color-white);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-description {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats {
    padding: 80px 0;
}

.stats-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.stats-text {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-white);
}

.stats-text .accent {
    color: var(--color-accent);
    font-weight: 600;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
    background: var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stats-grid-centered {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66%;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: var(--color-bg);
    padding: 40px 20px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* =========================================
   SPLIT SECTION
   ========================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
    max-width: 100%;
    overflow: hidden;
}

.split-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-white);
}

.split-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.split-content h3 {
    font-family: var(--font-primary);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 500;
    color: var(--color-white);
    margin-top: 24px;
    margin-bottom: 16px;
}

/* Bullet list */
.feature-list {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.feature-list li .star {
    color: var(--color-accent);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-list li strong {
    color: var(--color-white);
    font-weight: 600;
}

/* =========================================
   SERVICE CARDS GRID
   ========================================= */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66%;
    margin: 20px auto 0;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.service-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-white);
    stroke-width: 1.2;
    fill: none;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* =========================================
   ROLES CAROUSEL
   ========================================= */
.roles-section {
    overflow: hidden;
}

.roles-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.roles-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.roles-carousel::-webkit-scrollbar {
    display: none;
}

.role-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.role-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.role-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.role-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.role-card:hover .role-card-image img {
    transform: scale(1.05);
}

.role-card-body {
    padding: 32px;
}

.role-card-body h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.role-card-body > p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.role-responsibilities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.role-responsibilities li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

.role-responsibilities li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}

.role-value {
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.role-value-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.role-value p {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 500;
    line-height: 1.5;
}

/* Carousel Navigation — arrows flanking carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.12);
}

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

#carouselPrev {
    left: 0;
}

#carouselNext {
    right: 0;
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-accent);
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-steps-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 50%;
    margin: 20px auto 0;
}

.process-step {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.process-step:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
    transition: all var(--transition);
}

.process-step:hover .step-number {
    background: var(--color-accent);
    color: var(--color-white);
}

.process-step h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
}

.process-step p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
    padding: 120px 0;
    text-align: center;
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta .section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 12px;
}

.final-cta .text-accent {
    display: block;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    margin-top: 4px;
}

.final-cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.final-cta-contact a,
.final-cta-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 400;
    transition: color var(--transition);
}

.final-cta-contact a:hover {
    color: var(--color-white);
}

.final-cta-contact svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

.final-cta-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-section);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-badge {
    height: 64px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-badge img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 14px;
    color: var(--color-text-dim);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-dim);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

/* Placeholder images */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 500;
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* Fade up on scroll */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.35s; }
.fade-up-d5 { transition-delay: 0.4s; }

/* Slide in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.scale-up {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Blur in */
.blur-in {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.8s ease, filter 0.8s ease;
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
}

/* Counter — plain white, no shimmer */

/* Floating animation for hero */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-float {
    animation: float 5s ease-in-out infinite;
}

/* Glow pulse on CTA */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(38, 125, 244, 0.2); }
    50% { box-shadow: 0 0 40px rgba(38, 125, 244, 0.4); }
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* Parallax line decoration */
@keyframes draw-line {
    0% { width: 0; }
    100% { width: 60px; }
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    margin-right: 12px;
    vertical-align: middle;
    transition: width 0.6s ease;
}

.section-label.visible::before {
    width: 32px;
}

/* Smooth image reveal */
.img-reveal {
    overflow: hidden;
    position: relative;
}

.img-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-bg);
    z-index: 1;
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.img-reveal.visible::before {
    transform: scaleX(0);
    transform-origin: right;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }

    .split {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 350px;
    }

    .split-content {
        padding: 60px 40px;
    }

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

    .role-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 300px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .nav .btn-primary {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-2col {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .process-steps-2col {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .stats-grid-centered {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .role-card {
        flex: 0 0 calc(85vw - 40px);
        min-width: 280px;
    }

    .roles-carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-eyebrow {
        white-space: normal;
        font-size: 12px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .split-content {
        padding: 48px 20px;
    }

    .final-cta-contact {
        flex-direction: column;
        gap: 16px;
    }

    .final-cta-divider {
        display: none;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 340px;
    }
}

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

    .stat-number {
        font-size: 32px;
    }

    .stats-card {
        padding: 40px 24px;
    }

    .role-card {
        flex: 0 0 calc(90vw - 40px);
        min-width: 260px;
    }
}
