:root {
    --orange: #fd7e14;
    --orange-h: #fb923c;
    --orange-lt: #fff4ec;
    --orange-md: rgba(253, 126, 20, .15);
    --blue: #1a4494;
    --blue-deep: #0d2f6b;
    --blue-lt: #eef3fb;
    --blue-md: #d6e4f7;
    --white: #ffffff;
    --g50: #f8fafd;
    --g100: #eef1f7;
    --g200: #dde4ef;
    --g400: #94a3b8;
    --g600: #4b5e7a;
    --g800: #1e2f4a;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--g600);
    line-height: 1.75;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--g800);
    line-height: 1.2
}

img {
    max-width: 100%;
    display: block
}

a {
    transition: color .25s var(--ease)
}

section {
    padding: 88px 0
}

.sr {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.sr.sl {
    transform: translateX(-40px)
}

.sr.sr2 {
    transform: translateX(40px)
}

.sr.in {
    opacity: 1 !important;
    transform: none !important
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    border-radius: 8px;
    padding: 11px 26px;
    transition: all .25s var(--ease)
}

.btn-primary {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(249, 115, 22, .28)
}

.btn-primary:hover {
    background: var(--blue-deep) !important;
    border-color: var(--blue-deep) !important;
    transform: translateY(-2px)
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    background: transparent
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transform: translateY(-2px)
}

/* Hero */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(130deg, var(--blue-deep) 0%, var(--blue) 60%, #2259b8 100%)
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
    pointer-events: none
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .08);
    pointer-events: none
}

.hero-blob {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%)
}

.hero-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-deep), var(--orange) 45%, var(--blue))
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 20px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .08em;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    animation: fsd .6s var(--ease) .1s both
}

.hero-badge i {
    color: var(--orange)
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    animation: fsd .65s var(--ease) .2s both
}

.hero-title .hl {
    color: var(--orange)
}

.hero-sub {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    margin-bottom: 28px;
    animation: fsd .7s var(--ease) .35s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;
    padding: 7px 22px;
    font-size: 13px;
    animation: fsd .7s var(--ease) .45s both;
    backdrop-filter: blur(6px)
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s
}

.hero-breadcrumb a:hover {
    color: var(--orange)
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .3);
    margin: 0 10px;
    font-size: 11px
}

.hero-breadcrumb .cur {
    color: #fff;
    font-weight: 600
}

@keyframes fsd {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Sec labels */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px
}

.sec-label::before,
.sec-label::after {
    content: '';
    height: 2px;
    width: 22px;
    background: var(--orange);
    border-radius: 2px
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--g800);
    margin-bottom: 16px
}

/* Image du service */
.service-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 47, 107, .14);
    position: relative
}

.service-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease)
}

.service-img-wrap:hover img {
    transform: scale(1.04)
}

.service-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(13, 47, 107, .15)
}

.sib-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--orange-lt);
    border: 1.5px solid rgba(249, 115, 22, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 16px
}

.sib-tag {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-deep)
}

/* Feature cards */
.feat-card {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s var(--ease)
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease)
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, .1);
    border-color: rgba(249, 115, 22, .2)
}

.feat-card:hover::before {
    transform: scaleX(1)
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--orange-lt);
    border: 1.5px solid rgba(249, 115, 22, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange);
    margin-bottom: 16px;
    transition: all .3s var(--ease)
}

.feat-card:hover .feat-icon {
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    transform: rotate(-8deg) scale(1.08)
}

.feat-card h5 {
    font-size: 16px;
    margin-bottom: 6px
}

.feat-card p {
    font-size: 13.5px;
    color: var(--g400);
    margin: 0;
    line-height: 1.6
}

/* Process steps */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 16px;
    transition: all .3s var(--ease);
    position: relative
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s var(--ease)
}

.process-step:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, .08);
    border-color: rgba(249, 115, 22, .2)
}

.process-step:hover::before {
    transform: scaleY(1)
}

.step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--orange-lt);
    border: 1.5px solid rgba(249, 115, 22, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--orange);
    transition: all .3s
}

.process-step:hover .step-num {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange)
}

.process-step h5 {
    font-size: 15px;
    margin-bottom: 4px
}

.process-step p {
    font-size: 13.5px;
    color: var(--g400);
    margin: 0;
    line-height: 1.6
}

/* Sidebar */
.info-sidebar {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13, 47, 107, .07);
    position: sticky;
    top: 100px
}

.sidebar-head {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue));
    padding: 24px;
    position: relative;
    overflow: hidden
}

.sidebar-head::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .12)
}

.sidebar-head h4 {
    font-size: 17px;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1
}

.sidebar-head p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    position: relative;
    z-index: 1
}

.sidebar-body {
    padding: 24px
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--g100)
}

.info-item:last-child {
    border-bottom: none
}

.info-dot {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 7px;
    background: var(--orange-lt);
    border: 1.5px solid rgba(249, 115, 22, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 11px
}

.info-item span {
    font-size: 13.5px;
    color: var(--g800);
    font-weight: 500
}

.sidebar-ctas {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s var(--ease);
    cursor: pointer;
    border: none
}

.sidebar-btn.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 16px rgba(249, 115, 22, .28)
}

.sidebar-btn.primary:hover {
    background: var(--blue-deep);
    color: #fff;
    transform: translateY(-2px)
}

.sidebar-btn.secondary {
    background: var(--blue-lt);
    color: var(--blue-deep);
    border: 1.5px solid var(--blue-md)
}

.sidebar-btn.secondary:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

/* Services nav */
.other-services {
    background: var(--g50);
    border-radius: 20px;
    padding: 20px
}

.other-services h5 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.other-services h5 i {
    color: var(--orange)
}

.svc-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--g600);
    font-size: 13.5px;
    font-weight: 500;
    transition: all .22s;
    border: 1px solid transparent
}

.svc-nav-link:hover {
    background: var(--white);
    border-color: rgba(249, 115, 22, .2);
    color: var(--orange);
    padding-left: 18px
}

.svc-nav-link.current {
    background: var(--orange-lt);
    border-color: rgba(249, 115, 22, .25);
    color: var(--orange);
    font-weight: 600
}

.svc-nav-link i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0
}

/* CTA band */
.cta-band {
    background: linear-gradient(120deg, var(--blue-deep), var(--blue) 60%, #2259b8 100%);
    border-radius: 24px;
    padding: 52px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .12)
}

.cta-band h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.cta-band p {
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 1
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

@media(max-width:768px) {
    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap
    }
}