* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #132238;
    background: #f7f8fa;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    padding: 18px 6%;
    background: rgba(8, 20, 38, 0.76);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}

.site-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.site-nav a,
.header-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.header-cta {
    min-height: 46px;
    padding: 0 22px;
    font-size: 14px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 6% 100px;
    background: url("../images/landing-viviano/team-photo.jpg") center / cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 20, 38, 0.94),
            rgba(8, 20, 38, 0.7),
            rgba(8, 20, 38, 0.25));
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero__trust span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #fff;
    font-weight: 600;
}

.hero p {
    max-width: 600px;
    margin: 0 0 34px;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.hero__actions,
.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.btn--primary {
    background: #e84b2a;
    color: #fff;
    cursor: pointer;
}

.btn--primary:hover {
    background: #fff;
    color: #132238;
}

.btn--secondary {
    background: #fff;
    color: #132238;
}

.page-content {
    padding: 0 6% 80px;
}

.trust-bar {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(12, 28, 54, 0.14);
    max-width: 1200px;
    margin: -70px auto 0;
}

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

.trust-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.trust-card strong {
    display: none;
    margin-bottom: 6px;
    font-size: 36px;
    color: #e84b2a;
}

.trust-card span {
    display: none;
    font-size: 14px;
    font-weight: 700;
}

.services,
.why-grid,
.review-grid {
    display: grid;
    gap: 18px;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 30px;
    isolation: isolate;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(12, 28, 54, 0.12);
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(12, 28, 54, 0.22);
}

.service-card__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.service-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .7s ease,
        filter .7s ease;
}

.service-card:hover .service-card__bg img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg,
            rgba(8, 20, 38, .15) 0%,
            rgba(8, 20, 38, .55) 55%,
            rgba(8, 20, 38, .92) 100%);
}

.service-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 34px;
    color: #fff;
}

.service-card__label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgb(232, 75, 42, .6);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: .95;
    letter-spacing: -.04em;
    color: #fff;
    font-weight: 600;
}

.service-card p {
    margin: 0 0 22px;
    max-width: 320px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.service-card a {
    color: rgb(232, 75, 42);
    text-decoration: none;
    font-weight: 800;
    transition: transform .25s ease;
}

.service-card:hover a {
    transform: translateX(4px);
}

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

    .service-card {
        min-height: 420px;
    }
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.services article,
.why-grid article,
.review-grid blockquote {
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(12, 28, 54, 0.08);
}

.why-grid article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-grid article .why-icon {
    margin-bottom: 24px;
}

.services h3 {
    margin: 0 0 12px;
    font-size: 30px;
}

.why-grid h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.services p {
    margin: 0;
    line-height: 1.6;
    color: #fff;
}

.why-grid p,
.section-heading p,
.team p,
.final-cta p,
.footer-brand p {
    margin: 0;
    line-height: 1.6;
    color: #56657a;
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto 28px;
    text-align: center;
}



.section-heading h2,
.team h2,
.final-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 56px);
    letter-spacing: -0.04em;
    color: #fff;
    font-weight: 700;
}

.section-heading h2 {
    color: #132238;
}

.why-section,
.reviews {
    margin: 64px 0;
}

.team {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 720px;
    margin: 72px 0;
    border-radius: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 42px;
}

.team__bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;
}

.team__overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(180deg,
            rgba(8, 20, 38, .25) 0%,
            rgba(8, 20, 38, .55) 45%,
            rgba(8, 20, 38, .88) 100%);
}

.team__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    color: #fff;
}

.team h2 {
    margin: 0 0 24px;

    font-size: clamp(48px, 7vw, 60px);
    line-height: .92;
    letter-spacing: -.05em;
}

.team p {
    max-width: 760px;
    margin: 0 auto;

    font-size: 22px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .82);
}

.reviews {
    margin: 80px 0;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    margin-top: 36px;
}

.reviews-track {
    display: flex;
    gap: 22px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 10px;

    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(25% - 17px);

    scroll-snap-align: start;

    padding: 34px;
    border-radius: 28px;

    background: #fff;

    box-shadow:
        0 12px 34px rgba(12, 28, 54, .08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 24px 60px rgba(12, 28, 54, .14);
}

.review-stars {
    margin-bottom: 18px;

    font-size: 20px;
    letter-spacing: .08em;

    color: #f5b400;
}

.review-card p {
    margin: 0 0 24px;

    font-size: 18px;
    line-height: 1.7;

    color: #132238;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    font-size: 15px;
    color: #132238;
}

.review-author span {
    font-size: 14px;
    color: #6c7b8a;
}

.reviews-track {
    cursor: grab;
}

.reviews-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}


div.hcp-widget {
    display: none;
    position: fixed;
    z-index: 2147483647;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

div.hcp-widget.hcp-widget--visible {
    display: flex;
}

iframe.hcp-iframe {
    display: block;
    visibility: visible;
    opacity: 1;
    border: none;
    background: transparent;
}

@media (max-width: 1100px) {

    .review-card {
        flex: 0 0 calc(50% - 11px);
    }
}

@media (max-width: 640px) {

    .review-card {
        flex: 0 0 100%;
    }

    .review-card {
        padding: 28px;
    }

    .review-card p {
        font-size: 16px;
    }
}

@media (max-width: 900px) {

    .team {
        min-height: 560px;
    }

    .team__content {
        padding: 80px 24px;
    }

    .team h2 {
        font-size: 54px;
    }

    .team p {
        font-size: 18px;
    }
}

@media (max-width: 640px) {

    .team {
        min-height: 480px;
        border-radius: 28px;
    }

    .team h2 {
        font-size: 42px;
    }

    .team p {
        font-size: 17px;
        line-height: 1.6;
    }
}

blockquote {
    margin: 0;
    font-size: 19px;
    line-height: 1.5;
}

cite {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    color: #e84b2a;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 70px 24px;
    border-radius: 32px;
    text-align: center;
    background: #132238;
    color: #fff;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 40px 6%;
    background: #081426;
    color: #fff;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-brand p,
.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {

    .site-nav,
    .header-phone {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .trust-bar {
        grid-template-columns: 1fr 1fr;
    }

    .services,
    .why-grid,
    .review-grid,
    .team {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        flex-direction: column;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 24px 100px;
    }

    .hero__overlay {
        background: rgba(8, 20, 38, 0.82);
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 17px;
    }

    .btn {
        width: 100%;
    }

    .page-content,
    .site-header,
    .site-footer {
        padding-inline: 18px;
    }
}