/* =========================================
   Design Tokens
========================================= */
:root {
    --primary: #0b3655;
    --accent: #ec7834;
    --dark-blue: #1c66a0;
    --text: #666;
    --white: #fff;
    --light-bg: #f4f4f4;
    --shadow: 0 5px 25px rgba(0, 0, 0, .1);
    --transition: all .3s ease;
}

/* Hero */
.hero {
    position: relative;
    height: 620px;
    background: url('/img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.hero .logo-brush-stroke {
    z-index: 999;
}

.hero .logo-brush-stroke img {
    width: 100%;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero__kicker {
    color: var(--accent);
    font-family: 'Anton', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 30px;
    margin-bottom: 10px;
}

.hero__title {
    font-family: 'Anton', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__sub {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .9;
}

/* Section title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Services Carousel (unchanged core) */
.services-carousel {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-carousel-wrapper {
    overflow: hidden;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
}

.service-cards {
    display: flex;
    transition: transform .5s ease;
    will-change: transform;
}

.service-card {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    margin: 0;
    opacity: .7;
    transform: scale(.9);
    transition: all .5s ease;
}

.service-card.active {
    opacity: 1;
    transform: scale(1);
}

.service-card__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9b60 100%);
    border-radius: 20px;
    padding: 20px;
}

.service-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: .95rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.services-carousel .owl-stage {
    display: flex;
}

/* Split Section */
.split-section {
    padding: 70px 0;
}

.split-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section__content h2 {
    color: var(--primary);
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.split-section__content h3 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
}

.split-section__content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-section__image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Blue Band (base) */
.blue-band {
    background: var(--dark-blue);
    padding: 70px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blue-band h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

/* ===============================
   FEATURED CASE STUDIES — Animated cards
   =============================== */
.blue-band--cases .cs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.cs-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 22px 20px 22px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .04);
    transform: translateY(10px) scale(.98);
    opacity: 0;
    transition: transform .45s ease, opacity .45s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
    isolation: isolate;
}

.cs-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cs-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .26);
}

/* Shine sweep */
.cs-card::after {
    content: '';
    position: absolute;
    inset: -20% -60% auto -60%;
    height: 120%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    transform: translateX(-100%) rotate(8deg);
    transition: transform .8s ease;
    pointer-events: none;
    z-index: 0;
}

.cs-card:hover::after {
    transform: translateX(120%) rotate(8deg);
}

/* Icon */
.cs-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2a7dc2, #1c66a0);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .12), 0 8px 20px rgba(0, 0, 0, .2);
    transform: translateZ(0);
}

.cs-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
    fill: currentColor;
}

/* Text */
.cs-card h3 {
    margin: 4px 0 8px;
    font-size: 20px;
    color: #fff;
}

.cs-card p {
    margin: 0;
    color: #e4eefb;
    opacity: .95;
    line-height: 1.6;
    font-size: 14.5px;
}

/* Process Section (as before) */
.process-section {
    padding: 70px 0;
    background: var(--light-bg);
}

.process-section h2 {
    color: var(--header-text);
    text-align: center;
    margin-bottom: 45px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 80px;
    align-items: start;
}

.process-step {
    display: grid;
    grid-template-columns: 72px auto;
    gap: 18px;
    align-items: start;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

.process-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.process-step__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    /* background: #1c66a0; */
    background: var(--accent);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .25), inset 0 0 0 2px rgba(255, 255, 255, .08);
    animation: stepPulse 3s ease-in-out infinite;
}

.process-step__icon img {
    width: 32px;
    height: 32px;
    display: block;
    filter: invert(1) brightness(2);
}

.process-step:hover .process-step__icon,
.process-step:focus-within .process-step__icon {
    animation-duration: 2.2s;
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35), inset 0 0 0 2px rgba(255, 255, 255, .18);
}

.process-step__content h4 {
    color: var(--primary);
    font-size: 20px;
    margin: 6px 0 8px;
}

.process-step__content p {
    color: var(--primary);
    line-height: 1.65;
    margin: 0;
}

@keyframes stepPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* Info Circle (unchanged) */
.info-circle {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.circle-container {
    width: 320px;
    height: 320px;
    position: relative;
    margin: 0 auto;
}

.circle-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dotted #cfcfcf;
    pointer-events: none;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 350px;
    min-width: 270px;
    padding: 2px;
}

.circle-content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    min-width: fit-content;
    margin: 0 0 8px;
}

.circle-content p {
    font-size: .8rem;
    color: var(--text);
    min-width: fit-content;
    margin: 0;
}

.circle-content--fade {
    animation: circleContentFade .28s ease;
}

@keyframes circleContentFade {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.circle-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d9d9d9;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    cursor: pointer;
    transition: box-shadow .2s ease, border-color .2s ease;
    transform: translate(-50%, -50%);
    animation: orbitPulse 3s ease-in-out infinite;
}

.circle-item img,
.circle-item .icon {
    max-width: 28px;
    max-height: 28px;
    display: block;
}

.circle-item[data-active="true"] {
    border-color: var(--accent);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.circle-item:nth-child(1) {
    animation-delay: 0s;
}

.circle-item:nth-child(2) {
    animation-delay: .15s;
}

.circle-item:nth-child(3) {
    animation-delay: .3s;
}

.circle-item:nth-child(4) {
    animation-delay: .45s;
}

.circle-item:nth-child(5) {
    animation-delay: .6s;
}

.circle-item:nth-child(6) {
    animation-delay: .75s;
}

@keyframes orbitPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
    }
}

/* RESOURCES — Simple link list (unchanged) */
.blue-band--resources-simple {
    padding-top: 56px;
    padding-bottom: 70px;
}

.resource-plain-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0 auto;
    max-width: 980px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.rpl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.rpl-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
}

.rpl-link:hover .rpl-content strong {
    text-decoration: underline;
}

.rpl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2a7dc2, #1c66a0);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .12);
    transition: transform .15s ease;
}

.rpl-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.rpl-link:hover .rpl-icon {
    transform: translateX(2px);
}

.rpl-content {
    display: grid;
    gap: 2px;
}

.rpl-content strong {
    line-height: 1.2;
}

.rpl-content small {
    color: #e4eefb;
    opacity: .9;
}

.rpl-item .learn-more {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    border-radius: 8px;
    padding: 8px 20px 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.rpl-item .learn-more::after{
    position: absolute;
    content: url('/icon/arrow-up-right.svg');
    top: 5px;
    right: 0px;
    width: 15px;
    height: 15px;
    color: #fff;
    opacity: .9;
    transform: translate(-50%, -50%);
}

.rpl-item .learn-more:hover {
    background: rgba(255, 255, 255, .18);
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

    .service-cards,
    .service-card,
    .carousel-prev,
    .carousel-next,
    .carousel-dot,
    .process-step,
    .process-step__icon,
    .circle-item,
    .circle-content,
    .cs-card,
    .cs-card::after {
        transition: none !important;
        animation: none !important;
    }

    .service-card,
    .service-card.active {
        transform: none !important;
    }
}

/* Responsive */
@media (max-width:1024px) {
    .hero__title {
        font-size: 48px;
    }

    .split-section__content h2 {
        font-size: 48px;
    }

    .split-section__content h3 {
        font-size: 36px;
    }

    .carousel-container {
        padding: 0 50px;
    }
}

@media (max-width:900px) {
    .blue-band--cases .cs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .hero {
        height: 500px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__kicker {
        font-size: 30px;
    }

    .split-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section__content h2 {
        font-size: 36px;
    }

    .split-section__content h3 {
        font-size: 28px;
    }

    .services-carousel {
        padding: 60px 0;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card__icon {
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .service-card__icon img {
        width: 50px;
        height: 50px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width:480px) {
    .hero {
        height: 400px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero .logo-brush-stroke {
        width: 150px;
    }

    .hero__kicker {
        font-size: 24px;
    }

    .services-carousel {
        padding: 40px 0;
    }

    .carousel-container {
        padding: 0 30px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: .9rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
    }

    .carousel-prev svg,
    .carousel-next svg {
        width: 18px;
        height: 18px;
    }
}