:root {
    --bg: #f7fbff;
    --white: #fff;
    --dark: #0c1d31;
    --blue: #0c5571;
    --coral: #ff6b6b;
    --muted: #66788d;
    --soft: #eaf6fb;
    --border: #dcecf4;
    --shadow: 0 22px 60px rgba(12, 29, 49, .12);
    --radius: 28px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

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

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

.container {
    width: min(1180px, 92%);
    margin: auto
}

.section {
    padding: 96px 0
}

.section-soft {
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, .16), transparent 30%), radial-gradient(circle at 15% 35%, rgba(12, 85, 113, .14), transparent 34%), var(--bg)
}

.section-dark {
    background: var(--dark);
    color: #fff
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
    font-weight: 800;
    padding: 14px 22px;
    box-shadow: 0 14px 28px rgba(255, 107, 107, .23);
    transition: .25s;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08)
}

.btn-light {
    background: #fff;
    color: var(--blue);
    border: 1px solid var(--border);
    box-shadow: none
}

.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    margin-bottom: 12px
}

.eyebrow.light {
    color: #8be1f5
}

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px
}

.section-head h2,
.story h2,
.video-grid h2,
.contact h2 {
    font-size: clamp(31px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 18px
}

.section-head p,
.section-text {
    color: var(--muted);
    font-size: 17px
}

.section-dark .section-head p,
.section-dark p {
    color: #c8d6e5
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 251, 255, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 236, 244, .78)
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -1px
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 14px
}

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
    color: #41556a;
    font-weight: 800
}

.menu a:hover {
    color: var(--blue)
}

.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    color: var(--dark)
}

.hero {
    position: relative;
    padding: 15px 0 105px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center
}

.hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -3px;
    margin: 12px 0 24px
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 30px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.trust-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.trust-row span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 800;
    color: #405268
}

.trust-row i {
    color: var(--coral);
    margin-right: 6px
}

.hero-visual {
    min-height: 520px;
    position: relative
}

.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 42px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.main-picto {
    height: 430px;
    display: grid;
    place-items: center
}

.main-picto img {
    max-height: 330px;
    object-fit: contain
}

.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900
}

.floating-card img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 16px
}

.card-one {
    left: -10px;
    top: 35px
}

.card-two {
    right: -8px;
    bottom: 40px
}

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

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(12, 29, 49, .06)
}

.stat-card strong {
    font-size: 38px;
    color: var(--blue);
    display: block
}

.stat-card span {
    font-weight: 800;
    color: #43566b
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.service-card {
    flex: 0 0 320px;
    max-width: 360px;
}

.service-card,
.blog-card,
.member {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 12px 35px rgba(12, 29, 49, .06);
    transition: .25s
}

.service-card:hover,
.blog-card:hover,
.member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.service-card img {
    height: 145px;
    width: 100%;
    object-fit: contain;
    border-radius: 22px;
    background: #f8fcff;
    margin-bottom: 20px
}

.service-card i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--soft);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 12px
}

.service-card h3,
.blog-card h3 {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 10px
}

.service-card p,
.blog-card p,
.member span {
    color: var(--muted)
}

.story-grid,
.video-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.story-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 36px;
    padding: 34px;
    text-align: center
}

.story-card img {
    width: 180px;
    margin: 0 auto 24px
}

.story-card h3 {
    font-size: 30px;
    line-height: 1.2
}

.carousel {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 26px;
    box-shadow: var(--shadow)
}

.carousel-track {
    display: flex;
    transition: transform .5s ease
}

.slide {
    min-width: 100%;
    padding: 18px
}

.slide img {
    height: 220px;
    width: 100%;
    object-fit: contain;
    background: #f8fcff;
    border-radius: 24px;
    margin-bottom: 16px
}

.slide h3 {
    font-size: 24px
}

.slide p {
    color: var(--muted)
}

.carousel-btn {
    position: absolute;
    top: 45%;
    z-index: 3;
    border: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--dark);
    color: #fff;
    cursor: pointer
}

.prev {
    left: 16px
}

.next {
    right: 16px
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #cbd8e4;
    cursor: pointer
}

.dot.active {
    background: var(--coral);
    width: 26px;
    border-radius: 999px
}

.video-card {
    background: #fff;
    border-radius: 32px;
    padding: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 24px
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: auto
}

.testimonial {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow)
}

.testimonial.active {
    display: block;
    animation: fade .45s ease
}

.testimonial p {
    font-size: 24px;
    color: #33475b
}

.testimonial strong {
    display: block;
    margin-top: 18px;
    color: var(--blue)
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.team-card{
    width: calc(25% - 24px);
}

.member {
    flex: 1 1 min(280px, 100%);
    max-width: 360px
}

.avatar {
    height: 340px;
    border-radius: 24px;
    background: #f8fcff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.member p {
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px
}

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

.blog-card img {
    height: 170px;
    width: 100%;
    object-fit: contain;
    background: #f8fcff;
    border-radius: 22px;
    margin-bottom: 16px
}

.blog-card span {
    color: var(--coral);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px
}

.blog-card a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--blue);
    font-weight: 900
}

.contact-form {
    background: #fff;
    color: var(--dark);
    border-radius: 34px;
    padding: 32px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow)
}

label {
    font-weight: 800;
    color: #405268
}

input,
textarea {
    margin-top: 7px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    outline: none;
    background: #fbfdff
}

textarea {
    min-height: 125px;
    resize: vertical
}

input:focus,
textarea:focus {
    border-color: var(--blue)
}

.contact-info {
    margin-top: 24px;
    display: grid;
    gap: 10px;
    font-weight: 800
}

.contact-info i {
    color: #8be1f5;
    margin-right: 8px
}

.footer {
    background: #081625;
    color: #fff;
    padding: 70px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px
}

.footer p,
.footer a {
    color: #b8c8da
}

.footer-grid>div {
    display: grid;
    align-content: start;
    gap: 10px
}

.footer h3 {
    margin-bottom: 6px
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .11);
    padding-top: 22px;
    margin-top: 40px;
    color: #91a4b8
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
    z-index: 200
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.blog-hero {
    padding: 90px 0 50px;
    text-align: center
}

.article-wrap {
    max-width: 920px;
    margin: 0 auto
}

.article-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 34px;
    margin-bottom: 24px;
    box-shadow: 0 12px 35px rgba(12, 29, 49, .06)
}

.article-card img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: #f8fcff;
    border-radius: 24px;
    margin: 20px 0
}

.article-card h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12
}

.article-date {
    color: var(--coral);
    font-weight: 900;
    margin: 10px 0 14px
}

@keyframes fade {
    from {
        opacity: .2;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.stats-section {
    padding: 16px 0;
}

@media(max-width:900px) {
    .nav .nav-cta {
        display: none;

    }

    .hamb {
        display: block
    }

    .menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 84px;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 8%;
        border-bottom: 1px solid var(--border)
    }

    .menu.active {
        display: flex
    }

    .hero-grid,
    .story-grid,
    .video-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        min-height: auto
    }

    .floating-card {
        position: static;
        margin-top: 12px
    }

    .stats-grid,
    .service-grid,
    .team-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .slide {
        min-width: 100%
    }

    .section {
        padding: 74px 0
    }

        
    .section {
        padding-top: 58px
    }

    .main-picto {
        height: 310px
    }

    .testimonial p {
        font-size: 19px
    }
}