:root {
    --accent: rgba(237, 181, 112, 1);
    --accent-light: #f6dfc5;
    --accent-dark: #c58d50;
    --anthracite: #606264;
    --anthracite-dark: #4f5153;
    --anthracite-light: #737577;
    --black: #26282b;
    --dark: #34363a;
    --dark-soft: #30302e;
    --gray-900: #363636;
    --gray-700: #626262;
    --gray-500: #888888;
    --gray-300: #d7d5d1;
    --gray-200: #e8e6e1;
    --gray-100: #f3f2ef;
    --white: #ffffff;
    --off-white: #faf9f6;
    --border: #dfddd8;
    --container: 1240px;
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --transition: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--dark);
    font-family: Inter,
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 48px),
            var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    line-height: 1;
}

.eyebrow span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--accent-dark);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 500;
    line-height: 1.03;
}

h3 {
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

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

.btn span {
    font-size: 18px;
    transition: transform var(--transition);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: #efb16b;
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-small {
    min-height: 45px;
    padding-inline: 19px;
}

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    background: rgba(255, 255, 255, .96);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 86px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 42px;
}

.main-nav a {
    position: relative;
    padding: 7px 0;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--accent-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--black);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px auto;
    background: var(--black);
}

.eyebrow-light {
    color: rgba(255, 255, 255, .65);
}

.eyebrow-light span {
    background: var(--accent);
}

.btn-light {
    background: var(--white);
    border-color: var(--white);
    color: var(--anthracite);
}

.btn-light:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.faq-section {
    background: var(--off-white);
}

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 100px;
}

.faq-heading h2 {
    margin-bottom: 20px;
}

.faq-heading h2 em {
    color: var(--accent-dark);
}

.faq-heading>p {
    max-width: 400px;
    margin-bottom: 28px;
    color: var(--gray-700);
    font-size: 13px;
    line-height: 1.7;
}

.faq-list {
    border-top: 1px solid var(--gray-300);
}

.faq-item {
    border-bottom: 1px solid var(--gray-300);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 23px 0;
    cursor: pointer;
    list-style: none;
    color: var(--anthracite);
    font-size: 14px;
    font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary b {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    color: var(--anthracite);
    font-size: 17px;
    font-weight: 300;
    transition: transform var(--transition),
        background var(--transition);
}

.faq-item[open] summary b {
    transform: rotate(45deg);
    background: var(--anthracite);
    border-color: var(--anthracite);
    color: var(--white);
}

.faq-answer {
    max-width: 680px;
    padding: 0 50px 25px 0;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-700);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-heading {
        position: static;
    }

}

@media (max-width: 500px) {
    .faq-item summary {
        font-size: 13px;
    }

    .faq-answer {
        padding-right: 20px;
    }

}

.site-footer {
    padding: 70px 0 25px;
    background: var(--anthracite-dark);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr .7fr .9fr .8fr;
    gap: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 25px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column>span {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-cta p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.footer-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.footer-arrow span {
    transition: transform var(--transition);
}

.footer-arrow:hover {
    color: var(--accent);
}

.footer-arrow:hover span {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.footer-bottom a {
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

@media (max-width: 1050px) {
    .main-nav {
        gap: 22px;
        margin-right: 22px;
    }

    .footer-main {
        gap: 35px;
    }

}

@media (max-width: 800px) {
    .container {
        width: min(calc(100% - 36px),
                var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        z-index: 99;
        top: 72px;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 15px 18px 25px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 35px rgba(0, 0, 0, .08);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 280ms ease,
            opacity 280ms ease;
    }

    .main-nav.mobile-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 15px 8px;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a::after {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

}

@media (max-width: 520px) {
    .container {
        width: calc(100% - 28px);
    }

    .section {
        padding: 65px 0;
    }

    h2 {
        font-size: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        font-size: 8px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none;
    }

}

.services-premium {
    padding: 58px 0 72px;
    overflow: hidden;
    background: var(--off-white);
    color: var(--black);
}

.services-premium-header {
    max-width: 790px;
    margin: 0 auto 42px;
    text-align: center;
}

.services-premium-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
    color: var(--anthracite);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.services-premium-label::before,
.services-premium-label::after {
    content: "";
    width: 27px;
    height: 1px;
    background: var(--accent);
}

.services-premium-header h2 {
    max-width: 790px;
    margin: 0 auto 18px;
    color: var(--black);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: .97;
    letter-spacing: -.052em;
}

.services-premium-header h2 em {
    display: block;
    color: var(--anthracite);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.services-premium-header p {
    max-width: 610px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 13px;
    line-height: 1.75;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    align-items: stretch;
}

.premium-service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.premium-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 141, 80, .4);
    box-shadow: 0 25px 55px rgba(38, 40, 43, .1);
}

.premium-service-card-dark {
    border-color: var(--anthracite);
    background: var(--anthracite);
    color: var(--white);
}

.premium-service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    padding: 18px 18px 4px;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(145deg, rgba(237, 181, 112, .18), rgba(237, 181, 112, .025));
}

.premium-service-visual::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(96, 98, 100, .09);
    transform: rotate(45deg);
}

.premium-service-visual svg {
    position: relative;
    z-index: 1;
    width: min(100%, 245px);
    height: 205px;
    fill: none;
    stroke: var(--anthracite);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1), stroke .35s ease;
}

.premium-service-card:hover .premium-service-visual svg {
    transform: scale(1.055) translateY(-3px);
    stroke: var(--accent-dark);
}

.premium-service-card-dark .premium-service-visual {
    border-color: rgba(255, 255, 255, .13);
    background: linear-gradient(145deg, rgba(237, 181, 112, .13), rgba(255, 255, 255, .015));
}

.premium-service-card-dark .premium-service-visual::before {
    border-color: rgba(255, 255, 255, .07);
}

.premium-service-card-dark .premium-service-visual svg {
    stroke: var(--accent);
}

.premium-service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px 27px 29px;
}

.premium-service-index {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.premium-service-card h3 {
    max-width: 330px;
    margin: 0 0 13px;
    color: var(--black);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.premium-service-description {
    min-height: 56px;
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 11px;
    line-height: 1.65;
}

.premium-service-card-dark h3 {
    color: var(--white);
}

.premium-service-card-dark .premium-service-index {
    color: var(--accent);
}

.premium-service-card-dark .premium-service-description {
    color: rgba(255, 255, 255, .62);
}

.premium-service-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0 0 26px;
    padding: 19px 0 0;
    border-top: 1px solid var(--gray-200);
    list-style: none;
}

.premium-service-list li {
    position: relative;
    padding-left: 17px;
    color: var(--anthracite);
    font-size: 10px;
    line-height: 1.5;
}

.premium-service-list li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.premium-service-list-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 7px;
}

.premium-service-card-dark .premium-service-list {
    border-color: rgba(255, 255, 255, .15);
}

.premium-service-card-dark .premium-service-list li {
    color: rgba(255, 255, 255, .72);
}

.premium-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--anthracite);
    color: var(--anthracite);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.premium-service-link span {
    color: var(--accent-dark);
    font-size: 14px;
    transition: transform var(--transition);
}

.premium-service-link:hover span {
    transform: translate(4px, -3px);
}

.premium-service-card-dark .premium-service-link {
    border-color: rgba(255, 255, 255, .5);
    color: var(--white);
}

.premium-service-card-dark .premium-service-link span {
    color: var(--accent);
}

.partners {
    padding: 68px 0 54px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

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

.partners-head>.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--accent-dark);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.partners-head h2 {
    margin: 0 auto 15px;
    font-size: clamp(35px, 4.3vw, 55px);
    font-weight: 400;
    line-height: 1.02;
}

.partners-head h2 em {
    display: block;
    color: var(--anthracite);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.partners-head p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 12px;
    line-height: 1.75;
}

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 22px 0;
}

.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 110px;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 68px;
    width: max-content;
    animation: partnersScroll 38s linear infinite;
}

.partners:hover .partners-track {
    animation-play-state: paused;
}

.partners-track span {
    flex-shrink: 0;
    color: var(--anthracite);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.025em;
    opacity: .56;
    transition: opacity .25s ease, transform .25s ease;
}

.partners-track span:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes partnersScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }

}

@media (max-width:980px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-service-card:last-child {
        grid-column: 1/-1;
        min-height: auto;
    }

}

@media (max-width:650px) {
    .services-premium {
        padding: 38px 0 48px;
    }

    .services-premium-header {
        margin-bottom: 28px;
    }

    .services-premium-header h2 {
        font-size: 40px;
    }

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

    .premium-service-card,
    .premium-service-card:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .premium-service-visual {
        height: 225px;
    }

    .premium-service-visual svg {
        height: 185px;
    }

    .premium-service-content {
        padding: 24px 21px 25px;
    }

    .premium-service-card h3 {
        font-size: 25px;
    }

    .premium-service-description {
        min-height: auto;
    }

    .premium-service-list-columns {
        display: flex;
    }

    .partners {
        padding: 50px 0 40px;
    }

    .partners-head {
        margin-bottom: 26px;
    }

    .partners-head h2 {
        font-size: 37px;
    }

    .partners-track {
        gap: 40px;
    }

    .partners-track span {
        font-size: 16px;
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 42px;
    }

}

@media (prefers-reduced-motion:reduce) {
    .partners-track {
        animation: none;
    }

}

.services-premium {
    padding-top: 48px;
}

@media (max-width:650px) {
    .services-premium {
        padding-top: 34px;
    }

}

.credits-section {
    position: relative;
    padding: 84px 0 76px;
    overflow: hidden;
    background: #f4f1ec;
    color: var(--black);
}

.credits-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(96, 98, 100, .09);
    border-radius: 50%;
}

.credits-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 40px;
}

.credits-intro h2 {
    max-width: 820px;
    margin: 14px 0 0;
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 400;
}

.credits-intro h2 em {
    display: block;
    color: var(--anthracite);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.credits-intro>p {
    max-width: 500px;
    margin: 0 0 4px;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.8;
}

.credit-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(96, 98, 100, .17);
}

.credit-card-main {
    background: var(--anthracite);
    border-color: var(--anthracite);
    color: #fff;
}

.credit-card-featured {
    padding: 42px 42px 38px;
}

.credit-card-copy {
    margin-top: 0;
}

.credit-card-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.credit-card h3 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 500;
}

.credit-card-lead {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.8;
}

.credit-projects {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 32px 0 30px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .14);
}

.credit-project-item {
    min-height: 150px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, .035);
}

.credit-project-item>span {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    font-style: italic;
}

.credit-project-item strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.credit-project-item p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.6;
}

.credit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.credit-link span {
    color: var(--accent);
    transition: transform .2s ease;
}

.credit-link:hover span {
    transform: translate(3px, -3px);
}

.credits-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 18px;
    padding: 25px 28px;
    border: 1px solid rgba(96, 98, 100, .14);
    background: rgba(255, 255, 255, .64);
}

.credits-bottom>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credits-bottom strong {
    font-size: 16px;
    font-weight: 650;
}

.credits-bottom span {
    color: var(--gray-700);
    font-size: 12px;
}

.credits-bottom .btn span {
    color: inherit;
}

@media (max-width: 980px) {
    .credits-section {
        padding: 66px 0 62px;
    }

    .credits-intro {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .credit-projects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 650px) {
    .credits-section {
        padding: 50px 0 46px;
    }

    .credits-intro h2 {
        font-size: 38px;
    }

    .credit-card-featured {
        padding: 28px 22px 26px;
    }

    .credit-card h3 {
        font-size: 32px;
    }

    .credit-projects {
        grid-template-columns: 1fr;
        margin: 25px 0 24px;
    }

    .credit-project-item {
        min-height: auto;
        padding: 17px 16px;
    }

    .credit-project-item>span {
        margin-bottom: 12px;
    }

    .credits-bottom {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

    .credits-bottom .btn {
        width: 100%;
    }

}

.credit-legal-warning {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(96, 98, 100, .18);
    background: rgba(255, 255, 255, .72);
}

.credit-legal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--anthracite);
    font-size: 14px;
    font-weight: 800;
}

.credit-legal-warning p {
    margin: 0;
    color: var(--anthracite);
    font-size: 13px;
    line-height: 1.5;
}

.footer-regulatory {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-regulatory-main {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    max-width: 760px;
}

.footer-regulatory-main span {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    line-height: 1.55;
}

.footer-regulatory-main strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.footer-credit-warning {
    max-width: 360px;
    margin: 0;
    color: var(--accent);
    font-size: 12px;
    line-height: 1.55;
    text-align: right;
}

@media (max-width: 780px) {
    .footer-regulatory {
        flex-direction: column;
        gap: 14px;
    }

    .footer-regulatory-main {
        flex-direction: column;
        gap: 4px;
    }

    .footer-credit-warning {
        max-width: none;
        text-align: left;
    }

}

@media (max-width: 520px) {
    .credit-legal-warning {
        align-items: flex-start;
        padding: 14px;
    }

}

@media (max-width: 780px) {
    .footer-regulatory {
        flex-direction: column;
        gap: 14px;
    }

    .footer-regulatory-main {
        flex-direction: column;
        gap: 4px;
    }

    .footer-credit-warning {
        max-width: none;
        text-align: left;
    }

}

@media (max-width: 520px) {
    .credit-legal-warning {
        align-items: flex-start;
        padding: 14px;
    }

}

.header-actions {
    gap: 16px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 145px;
    padding-right: 20px;
    border-right: 1px solid rgba(96, 98, 100, .16);
}

.header-phone-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: var(--gray-700);
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.phone-status {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(237, 181, 112, .13);
}

.header-phone-number {
    color: var(--anthracite);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.header-phone-number:hover {
    color: var(--accent-dark);
    transform: translateX(2px);
}

@media (max-width:1050px) and (min-width:801px) {
    .header-phone {
        min-width: auto;
        padding-right: 14px;
    }

    .header-phone-label {
        display: none;
    }

    .header-phone-number {
        font-size: 14px;
        white-space: nowrap;
    }

    .header-actions .btn-small {
        padding-left: 15px;
        padding-right: 15px;
    }

}

.site-logo-image {
    display: block;
    width: auto;
    height: 58px;
    object-fit: contain;
}

.logo-footer .site-logo-image {
    height: 72px;
}

@media (max-width: 800px) {
    .site-logo-image {
        height: 50px;
    }

    .logo-footer .site-logo-image {
        height: 62px;
    }

}

@media (max-width: 520px) {
    .site-logo-image {
        height: 44px;
    }

    .logo-footer .site-logo-image {
        height: 56px;
    }

}

.services-targets {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 12px 0 22px;
}

.services-targets span {
    color: var(--anthracite);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.services-targets i {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--accent);
    opacity: .9;
}

.services-targets span:last-child {
    color: var(--accent-dark);
}

@media (max-width: 600px) {
    .services-targets {
        gap: 11px;
        margin: 10px 0 18px;
    }

    .services-targets span {
        font-size: 10px;
        letter-spacing: .06em;
    }

    .services-targets i {
        width: 20px;
    }

    .services-targets {
        display: flex;
        align-items: center;
        gap: 18px;
        margin: 12px 0 22px;
    }

    .services-targets span {
        color: var(--anthracite);
        font-size: 13px;
        font-weight: 750;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .services-targets i {
        display: block;
        width: 34px;
        height: 1px;
        background: var(--accent);
        opacity: .9;
    }

    .services-targets span:last-child {
        color: var(--accent-dark);
    }

    @media (max-width: 600px) {
        .services-targets {
            gap: 11px;
            margin: 10px 0 18px;
        }

        .services-targets span {
            font-size: 10px;
            letter-spacing: .06em;
        }

        .services-targets i {
            width: 20px;
        }

    }

}

.services-targets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
    margin: 18px auto 28px;
    padding: 13px 24px;
    background: rgba(237, 181, 112, .12);
    border-top: 1px solid rgba(197, 141, 80, .35);
    border-bottom: 1px solid rgba(197, 141, 80, .35);
}

.services-targets span {
    color: var(--anthracite);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .11em;
    text-transform: uppercase;
    white-space: nowrap;
}

.services-targets i {
    display: block;
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--accent-dark);
}

@media (max-width: 600px) {
    .services-targets {
        width: 100%;
        gap: 10px;
        margin: 15px auto 23px;
        padding: 12px 10px;
    }

    .services-targets span {
        font-size: 9px;
        letter-spacing: .06em;
        white-space: normal;
        text-align: center;
    }

}

.anchisi-flow {
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
    background: #606264;
    color: #fff;
}

.anchisi-flow::before {
    content: "25";
    position: absolute;
    right: -18px;
    top: -62px;
    color: rgba(255, 255, 255, .025);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 290px;
    font-style: italic;
    line-height: 1;
    pointer-events: none;
}

.anchisi-flow-inner {
    position: relative;
    z-index: 1;
}

.anchisi-flow-intro {
    max-width: 1080px;
}

.anchisi-flow-intro .eyebrow {
    margin-bottom: 22px;
}

.anchisi-flow-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 48px;
    align-items: end;
}

.anchisi-flow-title-row h2 {
    max-width: 790px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 4.35vw, 57px);
    font-weight: 400;
    line-height: 1.01;
    letter-spacing: -.045em;
}

.anchisi-flow-title-row h2 em {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.anchisi-flow-years {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    padding-bottom: 5px;
}

.anchisi-flow-years strong {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    font-style: italic;
    font-weight: 400;
    line-height: .78;
}

.anchisi-flow-years span {
    color: rgba(255, 255, 255, .52);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.anchisi-flow-quote {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    gap: 46px;
    align-items: end;
    margin-top: 36px;
    padding: 25px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.anchisi-flow-quote blockquote {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 1.7vw, 23px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.anchisi-flow-signature {
    min-width: 220px;
    padding-left: 16px;
    border-left: 2px solid var(--accent);
}

.anchisi-flow-signature strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 13px;
}

.anchisi-flow-signature span {
    display: block;
    color: rgba(255, 255, 255, .46);
    font-size: 7px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.anchisi-flow-divider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 52px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.anchisi-flow-divider span {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.anchisi-flow-divider p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
}

.anchisi-flow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anchisi-flow-steps article {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
    padding: 31px 30px 30px 0;
}

.anchisi-flow-steps article+article {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.anchisi-flow-number {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-style: italic;
    line-height: 1;
}

.anchisi-flow-steps small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .40);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
}

.anchisi-flow-steps h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.anchisi-flow-steps p {
    max-width: 315px;
    margin: 0;
    color: rgba(255, 255, 255, .60);
    font-size: 10.5px;
    line-height: 1.7;
}

.anchisi-flow-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.anchisi-flow-cta>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.anchisi-flow-cta strong {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.anchisi-flow-cta>div span {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
}

@media(max-width:900px) {
    .anchisi-flow-title-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .anchisi-flow-years {
        justify-content: flex-start;
    }

    .anchisi-flow-quote {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .anchisi-flow-signature {
        min-width: 0;
        max-width: 300px;
    }

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

    .anchisi-flow-steps article,
    .anchisi-flow-steps article+article {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 24px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .anchisi-flow-steps article:last-child {
        border-bottom: 0;
    }

    .anchisi-flow-steps p {
        max-width: 620px;
    }

}

@media(max-width:650px) {
    .anchisi-flow {
        padding: 52px 0 44px;
    }

    .anchisi-flow::before {
        font-size: 190px;
        right: -16px;
        top: -28px;
    }

    .anchisi-flow-title-row h2 {
        font-size: clamp(34px, 9vw, 45px);
    }

    .anchisi-flow-years strong {
        font-size: 48px;
    }

    .anchisi-flow-quote {
        margin-top: 28px;
        padding-top: 20px;
    }

    .anchisi-flow-quote blockquote {
        font-size: 17px;
        line-height: 1.55;
    }

    .anchisi-flow-divider {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-top: 38px;
    }

    .anchisi-flow-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .anchisi-flow-cta .btn {
        width: 100%;
    }

}

.credit-projects {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0 30px;
    background: transparent;
    border: 0;
}

.credit-project-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 125px;
    padding: 22px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.credit-project-item>span {
    display: none;
}

.credit-project-content {
    min-width: 0;
}

.credit-project-item strong {
    display: block;
    margin: 2px 0 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.2;
}

.credit-project-item p {
    max-width: 290px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    line-height: 1.6;
}

.credit-project-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .085);
    border-color: rgba(237, 181, 112, .45);
}

@media (max-width: 700px) {
    .credit-projects {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 26px 0 28px;
        background: transparent;
        border: 0;
    }

    .credit-project-item {
        min-height: auto;
        padding: 19px;
    }

    .credit-project-item p {
        max-width: none;
    }

}

.credit-projects {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.credit-project-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 135px;
    padding: 19px 16px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.credit-project-item strong {
    display: block;
    margin: 1px 0 7px;
    color: var(--white);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;
}

.credit-project-item p {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.55;
}

@media (max-width: 1000px) {
    .credit-projects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {
    .credit-projects {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .credit-project-item {
        min-height: auto;
    }

}

.credit-projects {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.credit-project-item {
    display: block;
    min-height: 0;
    padding: 17px 18px 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.credit-project-item strong {
    display: block;
    margin: 0 0 7px;
    color: var(--white);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.25;
}

.hero-contact-band {
    position: relative;
    z-index: 3;
    background: rgba(31, 33, 35, .98);
    border-top: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
}

.hero-contact-band-inner {
    display: grid;
    grid-template-columns: 1.2fr .72fr 1.35fr 1.15fr .78fr auto;
    align-items: stretch;
    min-height: 92px;
}

.hero-contact-band-static:hover {
    background: transparent;
}

.hero-contact-picto-whatsapp {
    font-size: 18px;
    font-weight: 700;
}

.hero-contact-whatsapp {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .hero-contact-band-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {
    .hero-contact-band-inner {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 520px) {
    .hero-contact-band-inner {
        grid-template-columns: 1fr;
    }

}

.hero-contact-band {
    position: relative;
    z-index: 3;
    width: 100%;
    background: #606264;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .10);
}

.hero-contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-height: 92px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.hero-contact-band-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
}

.hero-contact-band-static {
    cursor: default;
}

.hero-contact-picto {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border: 1px solid rgba(237, 181, 112, .55);
    border-radius: 50%;
    background: rgba(237, 181, 112, .08);
    color: var(--accent);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.hero-contact-picto-facebook {
    background: var(--accent);
    color: var(--anthracite);
    border-color: var(--accent);
}

.hero-contact-copy {
    display: block;
    min-width: 0;
}

.hero-contact-copy small {
    display: block;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, .50);
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-contact-copy strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
    overflow-wrap: anywhere;
}

a.hero-contact-band-link:hover .hero-contact-picto {
    background: var(--accent);
    color: var(--anthracite);
    border-color: var(--accent);
}

a.hero-contact-band-link:hover .hero-contact-copy strong {
    color: var(--accent);
}

@media (max-width: 1100px) {
    .hero-contact-band-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 18px 32px;
        min-height: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-contact-band-link {
        flex: 1 1 29%;
    }

}

@media (max-width: 700px) {
    .hero-contact-band-inner {
        gap: 15px 22px;
    }

    .hero-contact-band-link {
        flex: 1 1 45%;
    }

}

@media (max-width: 520px) {
    .hero-contact-band-inner {
        display: block;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .hero-contact-band-link {
        display: flex;
        width: 100%;
        margin: 0;
        padding: 9px 0;
        border: 0 !important;
        background: transparent !important;
    }

    .hero-contact-copy strong {
        font-size: 11px;
    }

}

.hero-editorial {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #f7f6f2;
}

.hero-editorial-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 80%;
    overflow: hidden;
}

.hero-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 60%;
}

.hero-editorial-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(249, 248, 244, .995) 0%,
            rgba(249, 248, 244, .985) 29%,
            rgba(249, 248, 244, .92) 39%,
            rgba(249, 248, 244, .72) 48%,
            rgba(249, 248, 244, .34) 59%,
            rgba(249, 248, 244, .08) 69%,
            rgba(249, 248, 244, 0) 78%);
}

.hero-editorial-inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-editorial-content {
    width: min(640px, 52%);
    padding: 72px 0 68px;
}

.hero-editorial-eyebrow {
    margin-bottom: 18px;
    color: #6a6c6e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.hero-editorial-eyebrow span {
    background: var(--accent);
}

.hero-editorial h1 {
    max-width: 630px;
    margin: 0 0 22px;
    color: #27292b;
    font-size: clamp(38px, 3.8vw, 56px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.hero-editorial h1 em {
    display: block;
    margin-top: 5px;
    color: #c58d50;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -.03em;
}

.hero-editorial-lead {
    max-width: 550px;
    margin: 0;
    color: #606264;
    font-size: 15px;
    line-height: 1.65;
}

.hero-editorial-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 25px;
    margin-top: 28px;
}

.hero-editorial .btn-primary {
    box-shadow: 0 10px 25px rgba(197, 141, 80, .14);
}

.hero-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3d3f41;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.hero-editorial-link span {
    color: var(--accent);
    transition: transform .2s ease;
}

.hero-editorial-link:hover {
    color: #c58d50;
}

.hero-editorial-link:hover span {
    transform: translate(2px, -2px);
}

.hero-editorial-benefits {
    display: flex;
    align-items: stretch;
    margin-top: 42px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    color: #343638;
}

.hero-benefit:first-child {
    padding-left: 0;
}

.hero-benefit+.hero-benefit {
    border-left: 1px solid rgba(39, 41, 43, .14);
}

.hero-benefit-icon {
    display: grid;
    place-items: center;
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    color: #c58d50;
    font-size: 19px;
    line-height: 1;
}

.hero-benefit strong {
    color: #343638;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.hero-editorial .hero-contact-band {
    position: relative;
    z-index: 3;
}

@media (max-width: 1050px) {
    .hero-editorial {
        min-height: 620px;
    }

    .hero-editorial-inner {
        min-height: 620px;
    }

    .hero-editorial-content {
        width: 58%;
    }

    .hero-editorial-image img {
        object-position: 60% 50%;
    }

    .hero-editorial h1 {
        font-size: clamp(36px, 4.5vw, 50px);
    }

    .hero-benefit {
        padding: 0 17px;
    }

}

@media (max-width: 750px) {
    .hero-editorial {
        min-height: auto;
        background: #f7f6f2;
    }

    .hero-editorial-image {
        position: relative;
        height: 390px;
    }

    .hero-editorial-image img {
        object-position: 53% 50%;
    }

    .hero-editorial-overlay {
        background: linear-gradient(180deg,
                rgba(247, 246, 242, 0) 0%,
                rgba(247, 246, 242, .05) 55%,
                rgba(247, 246, 242, .93) 88%,
                #f7f6f2 100%);
    }

    .hero-editorial-inner {
        min-height: 0;
        margin-top: -72px;
    }

    .hero-editorial-content {
        width: 100%;
        padding: 0 0 45px;
    }

    .hero-editorial-eyebrow {
        margin-bottom: 14px;
    }

    .hero-editorial h1 {
        max-width: 620px;
        margin-bottom: 18px;
        font-size: clamp(34px, 9vw, 46px);
    }

    .hero-editorial-lead {
        max-width: 600px;
        font-size: 14px;
    }

    .hero-editorial-actions {
        margin-top: 24px;
    }

    .hero-editorial-benefits {
        margin-top: 32px;
    }

}

@media (max-width: 560px) {
    .hero-editorial-image {
        height: 340px;
    }

    .hero-editorial-inner {
        margin-top: -48px;
    }

    .hero-editorial h1 {
        font-size: 34px;
    }

    .hero-editorial-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .hero-editorial-benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-benefit {
        padding: 0;
    }

    .hero-benefit+.hero-benefit {
        border-left: 0;
    }

}

.hero-editorial-image img {
    object-position: 66% 59%;
}

@media (max-width: 1050px) {
    .hero-editorial-image img {
        object-position: 60% 60%;
    }

}

@media (max-width: 750px) {
    .hero-editorial-image img {
        object-position: 53% 58%;
    }

}

.insurance-general-conditions {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    padding: 22px 24px;
    border: 1px solid #dfe5ec;
    border-left: 3px solid #0b4fb3;
    border-radius: 8px;
    background: #f7f9fc;
}

.insurance-general-conditions-copy {
    min-width: 0;
}

.insurance-general-conditions-copy>span {
    display: block;
    margin-bottom: 3px;
    color: #0b4fb3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.insurance-general-conditions-copy strong {
    display: block;
    margin-bottom: 2px;
    color: #2f353b;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.insurance-general-conditions-copy p {
    margin: 0;
    color: #737b84;
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 650px) {
    .insurance-general-conditions {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 19px;
    }

}

.insurance-general-conditions {
    display: block;
    margin-top: 32px;
    padding: 18px 0 0;
    border: 0;
    border-top: 1px solid #dedede;
    border-radius: 0;
    background: transparent;
}

.insurance-general-conditions-copy {
    display: flex;
    align-items: baseline;
    gap: 22px;
    min-width: 0;
}

.insurance-general-conditions-label,
.insurance-general-conditions-copy>span {
    flex: 0 0 auto;
    margin: 0;
    color: #8a8a8a;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .17em;
}

.insurance-general-conditions-copy p {
    max-width: 860px;
    margin: 0;
    color: #737373;
    font-size: 11px;
    line-height: 1.7;
}

.insurance-general-conditions-copy p strong {
    color: #34363a;
    font-weight: 650;
}

.insurance-general-conditions-copy p a {
    display: inline;
    padding: 0 0 2px;
    border: 0;
    border-bottom: 1px solid #8d8d8d;
    border-radius: 0;
    background: transparent;
    color: #34363a;
    font-size: inherit;
    font-weight: 650;
    white-space: normal;
    transition: color .2s ease, border-color .2s ease;
}

.insurance-general-conditions-copy p a span {
    font-size: 11px;
}

.insurance-general-conditions-copy p a:hover {
    transform: none;
    background: transparent;
    color: #000;
    border-color: #000;
}

@media (max-width: 650px) {
    .insurance-general-conditions {
        padding: 16px 0 0;
    }

    .insurance-general-conditions-copy {
        display: block;
    }

    .insurance-general-conditions-label,
    .insurance-general-conditions-copy>span {
        display: block;
        margin-bottom: 7px;
    }

}

.insurance-general-conditions {
    border-top: none;
    padding-top: 8px;
}

.insurance-general-conditions {
    position: relative;
    margin-top: 30px;
    padding: 20px 24px 20px 30px;
    border: 1px solid #e6e4e1;
    border-top: 1px solid #e6e4e1;
    border-radius: 6px;
    background: #fbfaf8;
    box-shadow: 0 8px 24px rgba(32, 37, 43, .045);
}

.insurance-general-conditions::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #4f555d;
}

.insurance-general-conditions-copy {
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
    gap: 20px;
}

.insurance-general-conditions-label,
.insurance-general-conditions-copy>span {
    margin: 0;
    color: #85817c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.insurance-general-conditions-copy p {
    margin: 0;
    max-width: none;
    color: #686868;
    font-size: 11px;
    line-height: 1.65;
}

.insurance-general-conditions-copy p strong {
    color: #292d31;
    font-size: 12px;
    font-weight: 700;
}

.insurance-general-conditions-copy p a {
    color: #292d31;
    border-bottom: 1px solid #aaa6a0;
    font-weight: 700;
}

.insurance-general-conditions-copy p a:hover {
    color: #000;
    border-color: #000;
}

@media (max-width: 650px) {
    .insurance-general-conditions {
        padding: 18px 19px 18px 24px;
    }

    .insurance-general-conditions::before {
        top: 17px;
        bottom: 17px;
    }

    .insurance-general-conditions-copy {
        display: block;
    }

    .insurance-general-conditions-label,
    .insurance-general-conditions-copy>span {
        margin-bottom: 7px;
    }

}

.insurance-general-conditions.conditions-sobre-final {
    margin-top: 28px;
    padding: 17px 20px;
    border: 1px solid #ebe8e3;
    border-radius: 6px;
    background: #fdfcfb;
    box-shadow: none;
}

.insurance-general-conditions.conditions-sobre-final::before {
    display: none;
}

.insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 18px;
}

.insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-label,
.insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy>span {
    color: #9a958f;
    font-size: 7px;
    letter-spacing: .16em;
}

.insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy p {
    color: #747474;
    font-size: 10.5px;
    line-height: 1.6;
}

.insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy p strong {
    color: #393c3f;
    font-size: 11.5px;
    font-weight: 650;
}

.insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy p a {
    color: #393c3f;
    border-bottom: 1px solid #b9b4ae;
    font-weight: 650;
}

@media (max-width: 650px) {
    .insurance-general-conditions.conditions-sobre-final {
        padding: 16px 17px;
    }

    .insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy {
        display: block;
    }

    .insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-label,
    .insurance-general-conditions.conditions-sobre-final .insurance-general-conditions-copy>span {
        display: block;
        margin-bottom: 6px;
    }

}

.credit-card,
.credit-card-copy,
.credit-projects,
.credit-project-item,
.credit-project-content {
    min-width: 0;
    max-width: 100%;
}

.credit-project-item strong,
.credit-project-item p,
.credit-card-copy p,
.credit-link {
    overflow-wrap: anywhere;
    word-break: normal;
}

.credit-link {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
}

@media (max-width: 650px) {
    .credit-card-featured {
        width: 100%;
        max-width: 100%;
        padding: 28px 18px 26px;
        overflow: hidden;
    }

    .credit-projects {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 12px;
    }

    .credit-project-item {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 17px 15px;
    }

    .credit-project-content {
        width: 100%;
        min-width: 0;
    }

    .credit-project-item strong,
    .credit-project-item p {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .credit-card h3 {
        max-width: 100%;
        font-size: clamp(27px, 9vw, 32px);
        overflow-wrap: anywhere;
    }

    .credit-card-lead {
        max-width: 100%;
    }

    .credit-link {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        flex-wrap: wrap;
        line-height: 1.45;
    }

}

@media (max-width: 380px) {
    .credit-card-featured {
        padding-left: 15px;
        padding-right: 15px;
    }

    .credit-project-item {
        padding: 15px 13px;
    }

    .credit-card h3 {
        font-size: 27px;
    }

}

@media (max-width: 560px) {
    .hero-editorial-image {
        height: 390px;
    }

    .hero-editorial-image img {
        object-position: 53% 55%;
    }

    .hero-editorial-overlay {
        background: linear-gradient(180deg,
                rgba(247, 246, 242, 0) 0%,
                rgba(247, 246, 242, .02) 45%,
                rgba(247, 246, 242, .75) 78%,
                #f7f6f2 96%);
    }

    .hero-editorial-inner {
        margin-top: -70px;
    }

    .hero-editorial-content {
        position: relative;
        width: 100%;
        padding: 26px 20px 38px;
        background: rgba(247, 246, 242, .94);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        border-radius: 14px 14px 0 0;
    }

    .hero-editorial-eyebrow {
        margin-bottom: 12px;
    }

    .hero-editorial h1 {
        max-width: 100%;
        margin-bottom: 16px;
        font-size: 32px;
        line-height: 1.02;
        letter-spacing: -.04em;
    }

    .hero-editorial-lead {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.65;
    }

    .hero-editorial-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

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

    .hero-editorial-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-editorial-benefits {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        margin-top: 28px;
        border-top: 1px solid rgba(39, 41, 43, .10);
        border-bottom: 1px solid rgba(39, 41, 43, .10);
    }

    .hero-benefit {
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 13px 5px;
        text-align: center;
    }

    .hero-benefit:first-child {
        padding-left: 5px;
    }

    .hero-benefit+.hero-benefit {
        border-left: 1px solid rgba(39, 41, 43, .10);
    }

    .hero-benefit-icon {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        font-size: 16px;
    }

    .hero-benefit strong {
        max-width: 100%;
        font-size: 8px;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

}

@media (max-width: 380px) {
    .hero-editorial-image {
        height: 365px;
    }

    .hero-editorial-inner {
        margin-top: -62px;
    }

    .hero-editorial-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-editorial h1 {
        font-size: 29px;
    }

    .hero-benefit strong {
        font-size: 7.5px;
    }

}

@media (max-width: 560px) {
    .hero-editorial {
        min-height: auto;
        overflow: hidden;
        background: #f7f6f2;
    }

    .hero-editorial-image {
        position: relative;
        width: 100%;
        height: 365px;
        overflow: hidden;
    }

    .hero-editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 54% 46%;
        transform: scale(1.02);
    }

    .hero-editorial-overlay {
        background: linear-gradient(180deg,
                rgba(247, 246, 242, 0) 0%,
                rgba(247, 246, 242, 0) 54%,
                rgba(247, 246, 242, .18) 66%,
                rgba(247, 246, 242, .72) 82%,
                #f7f6f2 98%);
    }

    .hero-editorial-inner {
        min-height: 0;
        margin-top: -34px;
        padding: 0 18px;
        align-items: flex-start;
    }

    .hero-editorial-content {
        position: relative;
        width: 100%;
        max-width: none;
        padding: 0 0 34px;
        background: transparent;
        border-radius: 0;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .hero-editorial-eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 14px;
        color: #5f6163;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .18em;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .hero-editorial-eyebrow::before {
        content: "";
        width: 30px;
        height: 2px;
        flex: 0 0 30px;
        background: var(--accent);
    }

    .hero-editorial h1 {
        max-width: 100%;
        margin: 0 0 16px;
        color: #2d2f31;
        font-size: clamp(34px, 10vw, 43px);
        line-height: .98;
        letter-spacing: -.045em;
        font-weight: 700;
    }

    .hero-editorial h1 em {
        display: block;
        margin-top: 7px;
        color: #d5964f;
        font-size: .94em;
        font-family: Georgia, "Times New Roman", serif;
        font-weight: 400;
        font-style: italic;
        line-height: 1.04;
        letter-spacing: -.035em;
    }

    .hero-editorial-lead {
        max-width: 100%;
        margin: 0;
        color: #5f6163;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-editorial-actions {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        margin-top: 24px;
    }

    .hero-editorial-actions .btn,
    .hero-editorial .btn-primary {
        width: 100%;
        min-height: 56px;
        justify-content: center;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 14px;
        box-shadow: 0 10px 26px rgba(197, 141, 80, .16);
    }

    .hero-editorial-link {
        width: 100%;
        justify-content: center;
        padding: 4px 0;
        color: #3d3f41;
        font-size: 12px;
        text-align: center;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .hero-editorial-benefits {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        margin-top: 28px;
        padding: 0;
        border-top: 0;
        border-bottom: 0;
    }

    .hero-benefit {
        position: relative;
        min-width: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 8px 2px;
        text-align: center;
    }

    .hero-benefit:first-child {
        padding-left: 8px;
    }

    .hero-benefit+.hero-benefit {
        border-left: 1px solid rgba(39, 41, 43, .13);
    }

    .hero-benefit-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        margin: 0 auto;
        border-radius: 50%;
        background: rgba(237, 181, 112, .13);
        color: var(--accent-dark);
        font-size: 17px;
    }

    .hero-benefit strong {
        max-width: 100%;
        color: #303234;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.3;
        overflow-wrap: normal;
    }

    .hero-contact-band {
        margin-top: 0;
    }

}

@media (max-width: 390px) {
    .hero-editorial-image {
        height: 340px;
    }

    .hero-editorial-inner {
        margin-top: -28px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .hero-editorial h1 em {
        font-size: .92em;
    }

    .hero-editorial-lead {
        font-size: 13px;
    }

    .hero-benefit {
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero-benefit:first-child {
        padding-left: 5px;
    }

    .hero-benefit strong {
        font-size: 9px;
    }

}

@media (max-width: 560px) {
    .hero-editorial-image {
        position: relative;
        overflow: hidden;
    }

    .hero-editorial-image::after {
        content: "";
        position: absolute;
        z-index: 2;
        left: -5%;
        right: -5%;
        bottom: -1px;
        height: 135px;
        pointer-events: none;
        background: linear-gradient(to bottom,
                rgba(247, 246, 242, 0) 0%,
                rgba(247, 246, 242, .10) 18%,
                rgba(247, 246, 242, .38) 42%,
                rgba(247, 246, 242, .76) 68%,
                rgba(247, 246, 242, .96) 88%,
                #f7f6f2 100%);
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 100%);
    }

    .hero-editorial-overlay {
        background: linear-gradient(180deg,
                rgba(247, 246, 242, 0) 0%,
                rgba(247, 246, 242, 0) 58%,
                rgba(247, 246, 242, .08) 70%,
                rgba(247, 246, 242, .40) 86%,
                #f7f6f2 100%);
    }

    .hero-editorial-inner {
        position: relative;
        z-index: 3;
        margin-top: -42px;
    }

    .hero-editorial-content {
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

}

@media (max-width: 390px) {
    .hero-editorial-image::after {
        height: 120px;
    }

    .hero-editorial-inner {
        margin-top: -36px;
    }

}

@media (max-width: 560px) {
    .hero-editorial-image {
        position: relative;
        overflow: hidden;
    }

    .hero-editorial-image::after {
        content: none;
    }

    .hero-editorial-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(180deg,
                rgba(249, 248, 244, 0) 0%,
                rgba(249, 248, 244, 0) 48%,
                rgba(249, 248, 244, .08) 58%,
                rgba(249, 248, 244, .34) 69%,
                rgba(249, 248, 244, .72) 79%,
                rgba(249, 248, 244, .92) 88%,
                rgba(249, 248, 244, .985) 95%,
                rgba(249, 248, 244, .995) 100%);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .hero-editorial-inner {
        position: relative;
        z-index: 2;
        margin-top: -50px;
    }

    .hero-editorial-content {
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

}

@media (max-width: 390px) {
    .hero-editorial-inner {
        margin-top: -44px;
    }

}

@media (max-width: 560px) {
    .hero-editorial {
        overflow: hidden;
        background: #f7f6f2;
    }

    .hero-editorial-image {
        position: relative;
        overflow: visible;
        z-index: 1;
    }

    .hero-editorial-overlay {
        background: transparent !important;
    }

    .hero-editorial-image::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 4;
        left: 0;
        right: 0;
        bottom: -70px;
        height: 190px;
        pointer-events: none;
        background: linear-gradient(180deg,
                rgba(247, 246, 242, 0) 0%,
                rgba(247, 246, 242, .04) 12%,
                rgba(247, 246, 242, .16) 25%,
                rgba(247, 246, 242, .40) 40%,
                rgba(247, 246, 242, .68) 55%,
                rgba(247, 246, 242, .88) 70%,
                rgba(247, 246, 242, .97) 84%,
                #f7f6f2 100%);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        -webkit-mask-image: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 0, 0, .25) 18%,
                #000 48%,
                #000 100%);
        mask-image: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 0, 0, .25) 18%,
                #000 48%,
                #000 100%);
    }

    .hero-editorial-inner {
        position: relative;
        z-index: 5;
        margin-top: -34px;
    }

    .hero-editorial-content {
        position: relative;
        z-index: 5;
        background: transparent;
    }

}

@media (max-width: 390px) {
    .hero-editorial-image::after {
        bottom: -62px;
        height: 170px;
    }

    .hero-editorial-inner {
        margin-top: -28px;
    }

}

@media (max-width: 560px) {
    .hero-editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 56% 48%;
        transform: scale(1.16);
        transform-origin: 56% 48%;
    }

}

@media (max-width: 390px) {
    .hero-editorial-image img {
        transform: scale(1.20);
        object-position: 57% 48%;
        transform-origin: 57% 48%;
    }

}

@media (max-width: 560px) {
    .hero-editorial-image {
        height: 390px;
        overflow: hidden;
    }

    .hero-editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 66% 48%;
        transform: scale(1.30);
        transform-origin: 66% 48%;
    }

}

@media (max-width: 390px) {
    .hero-editorial-image {
        height: 365px;
    }

    .hero-editorial-image img {
        object-position: 67% 48%;
        transform: scale(1.32);
        transform-origin: 67% 48%;
    }

}

@media (min-width: 561px) and (max-width: 750px) {
    .hero-editorial .hero-editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 69% 49%;
        transform: scale(1.55);
        transform-origin: 88% 62%;
    }

}

@media (max-width: 560px) {
    .hero-editorial .hero-editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 72% 48%;
        transform: scale(1.8);
        transform-origin: 92% 65%;
    }

}

@media (max-width: 390px) {
    .hero-editorial .hero-editorial-image img {
        object-position: 72% 48%;
        transform: scale(1.72);
        transform-origin: 92% 65%;
    }

}

@media (max-width: 700px) {
    .hero-contact-band {
        padding: 18px 0;
    }

    .hero-contact-band-inner {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        min-height: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-contact-band-link {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        min-height: 92px;
        margin: 0;
        padding: 14px 10px !important;
        border: 1px solid rgba(255, 255, 255, .10) !important;
        border-radius: 10px;
        background: rgba(255, 255, 255, .035) !important;
        text-align: center;
    }

    .hero-contact-picto {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        margin-bottom: 8px;
    }

    .hero-contact-copy {
        width: 100%;
        text-align: center;
    }

    .hero-contact-copy small {
        margin-bottom: 5px;
        font-size: 7px;
        line-height: 1.15;
    }

    .hero-contact-copy strong {
        max-width: 100%;
        font-size: 10.5px;
        line-height: 1.35;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .hero-contact-whatsapp {
        white-space: normal;
    }

}

@media (max-width: 380px) {
    .hero-contact-band-inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-contact-band-link {
        min-height: 78px;
        padding: 12px 14px !important;
    }

}

@media (max-width: 800px) {
    .site-footer {
        padding-top: 54px;
    }

    .footer-main {
        gap: 38px 28px;
    }

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

    .logo-footer {
        justify-content: center;
        width: 100%;
    }

    .logo-footer .site-logo-image {
        margin-inline: auto;
    }

    .footer-brand p {
        max-width: 420px;
        margin: 22px auto 0;
        text-align: center;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-column h3 {
        margin-bottom: 16px;
        text-align: center;
    }

    .footer-column a,
    .footer-column>span {
        text-align: center;
    }

    .footer-cta {
        align-items: center;
        text-align: center;
    }

    .footer-cta p {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-arrow {
        justify-content: center;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
    }

}

@media (max-width: 520px) {
    .site-footer {
        padding: 48px 0 22px;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 34px;
        padding-bottom: 42px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-column {
        width: 100%;
        align-items: center;
    }

    .footer-column h3 {
        margin-bottom: 13px;
    }

    .footer-column a,
    .footer-column>span {
        margin-bottom: 8px;
    }

    .footer-bottom {
        align-items: center;
        gap: 12px;
        padding-top: 18px;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
        gap: 8px 14px;
    }

    .footer-regulatory {
        align-items: stretch;
        gap: 14px;
        margin-top: 24px;
        padding: 18px 0;
        text-align: left;
    }

    .footer-regulatory-main {
        align-items: flex-start;
        gap: 5px;
        max-width: none;
        text-align: left;
    }

    .footer-regulatory-main span,
    .footer-regulatory-main strong,
    .footer-credit-warning {
        text-align: left;
    }

    .footer-credit-warning {
        max-width: none;
        margin: 0;
    }

}

@media (max-width: 700px) {
    .hero-contact-band {
        padding: 0;
    }

    .hero-contact-band-inner {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 14px 22px !important;
        min-height: 0;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .hero-contact-band-link {
        display: inline-flex !important;
        flex: 1 1 45%;
        flex-direction: row !important;
        align-items: center;
        justify-content: center !important;
        width: auto;
        min-width: 0;
        min-height: 0;
        margin: 0;
        padding: 9px 4px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none;
        text-align: left;
    }

    .hero-contact-picto {
        width: 31px;
        height: 31px;
        flex: 0 0 31px;
        margin: 0;
    }

    .hero-contact-copy {
        width: auto;
        min-width: 0;
        text-align: left;
    }

    .hero-contact-copy small,
    .hero-contact-copy strong {
        text-align: left;
    }

    .hero-contact-whatsapp {
        white-space: normal;
    }

}

@media (max-width: 520px) {
    .hero-contact-band-inner {
        display: block !important;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        text-align: center;
    }

    .hero-contact-band-link {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-start !important;
        width: min(100%, 290px);
        min-height: 0;
        margin: 0 auto;
        padding: 9px 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .hero-contact-copy {
        text-align: left;
    }

    .hero-contact-copy small,
    .hero-contact-copy strong {
        text-align: left;
    }

}

@media (max-width: 380px) {
    .hero-contact-band-inner {
        display: block;
    }

    .hero-contact-band-link {
        width: min(100%, 275px);
        min-height: 0;
        padding: 9px 0 !important;
    }

}

@media (max-width: 520px) {
    .hero-contact-band-inner {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .hero-contact-band-link {
        display: grid !important;
        grid-template-columns: 31px minmax(0, 210px);
        align-items: center;
        justify-content: center !important;
        column-gap: 11px;
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto !important;
        padding: 9px 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .hero-contact-picto {
        margin: 0;
    }

    .hero-contact-copy {
        width: 100%;
        min-width: 0;
        text-align: left;
    }

    .hero-contact-copy small,
    .hero-contact-copy strong {
        text-align: left;
    }

}

@media (max-width: 380px) {
    .hero-contact-band-link {
        grid-template-columns: 31px minmax(0, 195px);
        width: 100% !important;
    }

}

@media (max-width: 560px) {
    .hero-contact-band {
        padding: 0;
        background: #606264;
    }

    .hero-contact-band-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        justify-content: stretch;
        gap: 0;
        width: 100%;
        padding: 10px 0;
    }

    .hero-contact-band-link {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 72px;
        margin: 0;
        padding: 13px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        text-align: left;
    }

    .hero-contact-band-link:nth-child(n

        /**/
        +3) {
        border-top: 1px solid rgba(255, 255, 255, .10);
    }

    .hero-contact-band-link:nth-child(even)::after {
        content: "";
        position: absolute;
        top: 13px;
        bottom: 13px;
        left: 0;
        width: 1px;
        background: rgba(255, 255, 255, .10);
    }

    .hero-contact-picto {
        display: grid;
        place-items: center;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        margin: 0;
        border-color: rgba(237, 181, 112, .48);
        background: transparent;
        font-size: 13px;
    }

    .hero-contact-copy {
        display: block;
        width: auto;
        min-width: 0;
        text-align: left;
    }

    .hero-contact-copy small {
        margin: 0 0 4px;
        color: rgba(255, 255, 255, .46);
        font-size: 6.5px;
        line-height: 1.15;
        letter-spacing: .12em;
        text-align: left;
    }

    .hero-contact-copy strong {
        display: block;
        max-width: 100%;
        color: #fff;
        font-size: 10px;
        line-height: 1.35;
        text-align: left;
        overflow-wrap: anywhere;
    }

    .hero-contact-whatsapp {
        white-space: normal;
    }

}

@media (max-width: 370px) {
    .hero-contact-band-link {
        min-height: 68px;
        gap: 8px;
        padding: 11px 9px;
    }

    .hero-contact-picto {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        font-size: 12px;
    }

    .hero-contact-copy small {
        font-size: 6px;
    }

    .hero-contact-copy strong {
        font-size: 9px;
    }

}

@media (max-width: 560px) {
    .hero-contact-picto-facebook {
        display: grid;
        place-items: center;
        background: var(--accent);
        border-color: var(--accent);
        color: var(--anthracite);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px !important;
        font-weight: 800;
        line-height: 1 !important;
        opacity: 1;
        visibility: visible;
    }

}

@media (max-width: 370px) {
    .hero-contact-picto-facebook {
        font-size: 14px !important;
    }

}

@media (max-width: 560px) {
    .hero-contact-picto-facebook {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        flex: 0 0 30px;
        margin: 0;
        padding: 0;
        border-width: 1px;
        border-radius: 50%;
        font-size: 13px !important;
        line-height: 30px !important;
        text-align: center;
    }

}

@media (max-width: 370px) {
    .hero-contact-picto-facebook {
        width: 27px;
        height: 27px;
        min-width: 27px;
        min-height: 27px;
        flex-basis: 27px;
        font-size: 12px !important;
        line-height: 27px;
    }

}