:root {
    --site-font-family: Urbanist;
    --primary-color: #c9272d;
    --secondary-color: #111827;
    --text-color: #111827;
    --muted-color: #667085;
    --border-color: #e6e9ef;
    --surface-color: #ffffff;
    --soft-color: #f6f7fa;
    --radius: 18px;
    --heading: var(--text-color);
    --text: var(--text-color);
    --muted: var(--muted-color);
    --primary: var(--primary-color);
}

.builder-section {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 108px) 0;
    background: #fff;
}

.builder-section:nth-of-type(even) {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.builder-section--bg-color {
    background: var(--builder-section-bg, #fff) !important;
}

.builder-section--bg-image {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .86)),
        var(--builder-section-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.builder-section--pt-small {
    padding-top: clamp(36px, 5vw, 58px);
}

.builder-section--pt-medium {
    padding-top: clamp(64px, 8vw, 108px);
}

.builder-section--pt-large {
    padding-top: clamp(92px, 11vw, 148px);
}

.builder-section--pb-small {
    padding-bottom: clamp(36px, 5vw, 58px);
}

.builder-section--pb-medium {
    padding-bottom: clamp(64px, 8vw, 108px);
}

.builder-section--pb-large {
    padding-bottom: clamp(92px, 11vw, 148px);
}

.builder-section--width-wide > .container {
    max-width: min(1440px, calc(100% - 40px));
}

.builder-section--align-top .builder-grid {
    align-items: start;
}

.builder-child-section {
    margin-top: clamp(34px, 5vw, 64px);
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 26px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 54px rgba(15, 23, 42, .05);
}

.builder-child-section.builder-section--bg-color {
    background: var(--builder-section-bg, rgba(255, 255, 255, .72)) !important;
}

.builder-child-section.builder-section--bg-image {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .82)),
        var(--builder-section-bg-image);
    background-position: center;
    background-size: cover;
}

.builder-child-section.builder-section--pt-small {
    padding-top: 22px;
}

.builder-child-section.builder-section--pt-medium {
    padding-top: clamp(28px, 4vw, 44px);
}

.builder-child-section.builder-section--pt-large {
    padding-top: clamp(42px, 6vw, 68px);
}

.builder-child-section.builder-section--pb-small {
    padding-bottom: 22px;
}

.builder-child-section.builder-section--pb-medium {
    padding-bottom: clamp(28px, 4vw, 44px);
}

.builder-child-section.builder-section--pb-large {
    padding-bottom: clamp(42px, 6vw, 68px);
}

.builder-section-head {
    max-width: 820px;
    margin: 0 auto clamp(32px, 5vw, 52px);
    text-align: center;
}

.builder-section-head h2 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
}

.builder-section-head p {
    max-width: 680px;
    margin: 14px auto 0;
    color: var(--muted-color);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.7;
}

.builder-grid {
    display: grid;
    grid-template-columns: var(--builder-grid-columns, 1fr);
    gap: clamp(22px, 3.4vw, 44px);
    align-items: center;
}

.builder-nested-grid {
    display: grid;
    grid-template-columns: var(--builder-grid-columns, 1fr);
    gap: clamp(18px, 2.8vw, 32px);
    align-items: start;
}

.builder-nested-column {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 20px;
}

.builder-column {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 22px;
}

.builder-heading {
    margin: 0;
    color: var(--heading);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: 0;
}

h2.builder-heading {
    font-size: clamp(30px, 3.6vw, 48px);
}

h3.builder-heading {
    font-size: clamp(24px, 2.6vw, 34px);
}

h4.builder-heading {
    font-size: clamp(20px, 2vw, 26px);
}

.builder-text {
    max-width: 74ch;
    color: var(--text-color);
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.75;
}

.builder-text h2,
.builder-text h3,
.builder-text h4 {
    margin: 1.2em 0 .55em;
    color: var(--heading);
    line-height: 1.18;
}

.builder-text p {
    margin: 0 0 1em;
}

.builder-text ul,
.builder-text ol {
    display: grid;
    gap: 8px;
    margin: 1em 0;
    padding-left: 1.2em;
}

.builder-text a {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 28%, transparent);
}

.builder-text > :first-child {
    margin-top: 0;
}

.builder-text > :last-child {
    margin-bottom: 0;
}

.builder-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    padding: 14px 25px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--primary-color) 28%, transparent);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.builder-button:hover,
.builder-button:focus-visible {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--primary-color) 34%, transparent);
}

.builder-spacer {
    display: block;
}

.builder-spacer--small {
    height: clamp(18px, 3vw, 30px);
}

.builder-spacer--medium {
    height: clamp(34px, 5vw, 56px);
}

.builder-spacer--large {
    height: clamp(56px, 8vw, 92px);
}

.builder-divider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 22px;
    color: var(--muted-color);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.builder-divider::before,
.builder-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, .04), rgba(15, 23, 42, .16), rgba(15, 23, 42, .04));
}

.builder-divider:empty::before {
    flex-basis: 100%;
}

.builder-divider:empty::after {
    display: none;
}

.builder-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 26px;
    background: #eef2f7;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

.builder-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}

.builder-image:hover img {
    transform: scale(1.025);
}

.builder-icon-box,
.builder-counter,
.builder-card,
.builder-cta,
.builder-faq details {
    border: 1px solid rgba(15, 23, 42, .075);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(15, 23, 42, .07);
}

.builder-icon-box {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.builder-counter {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
}

.builder-counter > i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 24px;
}

.builder-counter strong {
    display: block;
    color: var(--heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    line-height: 1;
}

.builder-counter h3 {
    margin: 8px 0 0;
    color: var(--heading);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.builder-counter p {
    margin: 8px 0 0;
    color: var(--muted-color);
    line-height: 1.6;
}

.builder-list {
    display: grid;
    gap: 16px;
}

.builder-list h3 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 930;
    line-height: 1.18;
}

.builder-list ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.builder-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--text-color);
    font-weight: 750;
    line-height: 1.55;
}

.builder-list li i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    color: var(--primary-color);
    font-size: 16px;
}

.builder-icon-box:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary-color) 22%, rgba(15, 23, 42, .075));
    box-shadow: 0 26px 68px rgba(15, 23, 42, .1);
}

.builder-icon-box i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 24px;
}

.builder-icon-box h3,
.builder-card h4,
.builder-card-list h3,
.builder-cta h2 {
    margin: 0;
}

.builder-icon-box h3,
.builder-card h4,
.builder-card-list h3 {
    color: var(--heading);
    font-weight: 900;
    line-height: 1.22;
}

.builder-icon-box p,
.builder-card p,
.builder-cta p {
    margin: 9px 0 0;
    color: var(--muted-color);
    line-height: 1.65;
}

.builder-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(24px, 4vw, 38px);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--primary-color) 24%, transparent), transparent 42%),
        linear-gradient(135deg, #101827, #0f172a);
    color: #fff;
    overflow: hidden;
}

.builder-cta h2,
.builder-cta p {
    color: #fff;
}

.builder-cta p {
    opacity: .82;
}

.builder-card-list {
    display: grid;
    gap: 20px;
}

.builder-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.builder-card {
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.builder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(15, 23, 42, .12);
}

.builder-card img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .3s ease;
}

.builder-card:hover img {
    transform: scale(1.04);
}

.builder-card div {
    padding: 20px;
}

.builder-card a {
    color: inherit;
    text-decoration: none;
}

.builder-reference-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}

.builder-reference-strip a,
.builder-reference-strip span {
    min-height: 118px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.builder-reference-strip a:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary-color) 20%, rgba(15, 23, 42, .08));
    box-shadow: 0 22px 58px rgba(15, 23, 42, .09);
}

.builder-reference-strip img {
    width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.builder-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.builder-gallery a {
    overflow: hidden;
    border-radius: 22px;
    background: #eef2f7;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.builder-gallery img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .25s ease;
}

.builder-gallery a:hover img {
    transform: scale(1.05);
}

.builder-faq {
    display: grid;
    gap: 14px;
}

.builder-faq details {
    padding: 20px 22px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.builder-faq details[open] {
    border-color: color-mix(in srgb, var(--primary-color) 22%, rgba(15, 23, 42, .08));
    box-shadow: 0 24px 60px rgba(15, 23, 42, .09);
}

.builder-faq summary {
    cursor: pointer;
    color: var(--text-color);
    font-weight: 900;
    line-height: 1.4;
}

.builder-faq details div {
    margin-top: 12px;
    color: var(--muted-color);
    line-height: 1.7;
}

.builder-map {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 26px;
    box-shadow: 0 22px 62px rgba(15, 23, 42, .1);
}

.builder-map iframe {
    width: 100%;
    min-height: 360px;
    display: block;
    border: 0;
}

@media (max-width: 760px) {
    .builder-section {
        padding: 46px 0;
    }

    .builder-grid,
    .builder-nested-grid,
    .builder-layout-2 .builder-grid,
    .builder-layout-1-2 .builder-grid,
    .builder-layout-2-1 .builder-grid,
    .builder-layout-1-3 .builder-grid,
    .builder-layout-3-1 .builder-grid,
    .builder-layout-3 .builder-grid,
    .builder-layout-4 .builder-grid {
        grid-template-columns: 1fr;
    }

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.front-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    margin: -6px 0 24px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .05);
}

.front-search-form label {
    min-width: 0;
}

.front-search-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 0 15px;
    color: var(--text-color);
    font: inherit;
    font-weight: 700;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.front-search-form input:focus {
    border-color: color-mix(in srgb, var(--primary-color) 38%, var(--border-color));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.front-search-form .btn-primary,
.front-search-form .btn-secondary {
    min-height: 46px;
    border-radius: 13px;
    padding: 0 18px;
    white-space: nowrap;
}

.front-search-form .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--soft-color);
    color: var(--secondary-color);
    font-weight: 900;
}

.reference-logo-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.reference-strip-card {
    min-height: 132px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .05);
}

.reference-strip-card img {
    width: 100%;
    height: 78px;
    object-fit: contain;
}

.reference-strip-card strong {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.service-detail-visual {
    min-height: 320px;
    overflow: hidden;
    padding: 0;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.service-detail-visual.is-placeholder {
    display: grid;
    place-items: center;
    color: var(--primary-color);
    font-size: 74px;
}

.service-detail-info-grid.info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-narrow {
    width: min(920px, calc(100% - 40px));
}

.service-faq-list {
    display: grid;
    gap: 14px;
}

.service-faq-list details {
    padding: 22px;
}

.service-faq-list summary {
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 18px;
}

@media (max-width: 760px) {
    .front-search-form {
        grid-template-columns: 1fr;
    }

    .reference-logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-info-grid.info-grid {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--text-color);
    font-family: var(--site-font-family), Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.has-modal-open {
    overflow: hidden;
}

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

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

.home-slider .eyebrow,
.home-slider h1,
.home-slider .lead,
.home-slider .hero-actions {
    opacity: 0;
    transform: translateY(18px);
}

body.is-ready .home-slider .eyebrow,
body.is-ready .home-slider h1,
body.is-ready .home-slider .lead,
body.is-ready .home-slider .hero-actions {
    animation: heroIntro .72s cubic-bezier(.2, .8, .2, 1) forwards;
}

body.is-ready .home-slider h1 {
    animation-delay: .08s;
}

body.is-ready .home-slider .lead {
    animation-delay: .16s;
}

body.is-ready .home-slider .hero-actions {
    animation-delay: .24s;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .58s ease, transform .58s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroIntro {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .home-slider .eyebrow,
    .home-slider h1,
    .home-slider .lead,
    .home-slider .hero-actions,
    .reveal-on-scroll,
    .reference-logo-grid {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(17, 24, 39, .08);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.site-header.is-static {
    position: relative;
}

.site-header.is-position-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-color: rgba(255, 255, 255, .18);
    background: linear-gradient(180deg, rgba(15, 23, 42, .42), rgba(15, 23, 42, .18));
    color: #fff;
    box-shadow: none;
}

.site-header.is-position-overlay .header-inner {
    min-height: 88px;
}

.site-header.is-position-overlay.is-static {
    position: absolute;
}

.site-header.is-position-overlay.is-scrolled {
    position: fixed;
}

.site-header.is-style-transparent:not(.is-scrolled) {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .72);
}

.site-header.is-scrolled {
    border-color: rgba(17, 24, 39, .06);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 40px rgba(17, 24, 39, .08);
}

.site-header.is-position-overlay.is-scrolled .header-inner {
    min-height: 82px;
}

.site-topbar {
    border-bottom: 1px solid rgba(17, 24, 39, .07);
    background: var(--secondary-color);
    color: #fff;
    font-size: 13px;
}

.site-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-topbar-contact,
.site-topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .88);
    font-weight: 750;
}

.site-topbar a:hover {
    color: #fff;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-header.is-layout-centered .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.site-header.is-layout-centered .site-nav {
    justify-self: center;
}

.site-header.is-layout-cta .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.site-header.is-layout-cta .site-nav {
    justify-self: end;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.site-brand img {
    max-width: 176px;
    max-height: 52px;
    object-fit: contain;
}

.site-logo-overlay {
    display: none;
}

.site-header.is-position-overlay:not(.is-scrolled) .site-brand.has-overlay-logo .site-logo-normal {
    display: none;
}

.site-header.is-position-overlay:not(.is-scrolled) .site-logo-overlay {
    display: block;
}

.site-brand strong {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 900;
}

.site-header.is-position-overlay:not(.is-scrolled) .site-brand strong,
.site-header.is-position-overlay:not(.is-scrolled) .site-menu a,
.site-header.is-position-overlay:not(.is-scrolled) .menu-toggle {
    color: #fff;
}

.site-header.is-position-overlay:not(.is-scrolled) .site-menu a:hover,
.site-header.is-position-overlay:not(.is-scrolled) .site-menu a.is-active {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.site-header.is-position-overlay:not(.is-scrolled) .site-menu > li > a.is-active {
    background: rgba(255, 255, 255, .18);
}

.site-header.is-position-overlay:not(.is-scrolled) .menu-toggle {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .12);
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu li {
    position: relative;
}

.site-menu a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    border-radius: 999px;
    padding: 9px 14px;
    color: #374151;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease;
}

.submenu-icon {
    font-size: 12px;
    line-height: 1;
    transition: transform .18s ease;
}

.site-menu li:hover > a .submenu-icon,
.site-menu li:focus-within > a .submenu-icon {
    transform: rotate(180deg);
}

.site-menu a:hover,
.site-menu a.is-active {
    background: var(--soft-color);
    color: var(--primary-color);
}

.site-menu > li > a.is-active {
    background: color-mix(in srgb, var(--primary-color) 11%, #fff);
}

.site-menu ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 16px 10px 10px;
    list-style: none;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(15, 23, 42, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 20;
}

.site-menu li:hover > ul,
.site-menu li:focus-within > ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-menu ul a {
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
}

.site-header.is-position-overlay:not(.is-scrolled) .site-menu ul {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(15, 23, 42, .82);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.site-header.is-position-overlay:not(.is-scrolled) .site-menu ul a {
    color: rgba(255, 255, 255, .9);
}

.site-header.is-position-overlay:not(.is-scrolled) .site-menu ul a:hover,
.site-header.is-position-overlay:not(.is-scrolled) .site-menu ul a.is-active {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    color: var(--secondary-color);
    font-size: 22px;
    cursor: pointer;
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 11px 17px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(201, 39, 45, .22);
}

.header-cta:hover {
    transform: translateY(-1px);
    color: #fff;
}

.site-main {
    min-height: 52vh;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color) 0%, #202938 100%);
    background-size: 28px 28px, auto;
    color: #fff;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 52px;
    align-items: center;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 720px;
}

.lead {
    margin-top: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
}

.page-hero .lead {
    color: #5d6678;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 7px 13px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.hero .eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 900;
}

.btn-primary,
.btn-outline {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    padding: 13px 22px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--primary-color) 28%, transparent);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--primary-color) 34%, transparent);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--secondary-color);
}

.btn.secondary {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
}

.btn.light {
    background: #fff;
    color: var(--secondary-color);
}

.hero-media {
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.home-slider {
    position: relative;
    min-height: clamp(520px, 72vh, 760px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), #202938);
    color: #fff;
}

.home-slider-item {
    position: absolute;
    inset: 0;
    min-height: inherit;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity .55s ease, transform .75s ease;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, var(--slider-overlay-strong, .9)), rgba(17, 24, 39, var(--slider-overlay-mid, .58)) 50%, rgba(17, 24, 39, var(--slider-overlay-soft, .2))),
        var(--slider-bg, linear-gradient(135deg, var(--secondary-color), #202938));
    background-size: cover;
    background-position: center;
}

.home-slider-item.is-align-center {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, var(--slider-overlay-mid, .58)), rgba(17, 24, 39, var(--slider-overlay-strong, .82)) 50%, rgba(17, 24, 39, var(--slider-overlay-mid, .58))),
        var(--slider-bg, linear-gradient(135deg, var(--secondary-color), #202938));
    background-size: cover;
    background-position: center;
}

.home-slider-item.is-align-right {
    background:
        linear-gradient(270deg, rgba(17, 24, 39, var(--slider-overlay-strong, .9)), rgba(17, 24, 39, var(--slider-overlay-mid, .58)) 50%, rgba(17, 24, 39, var(--slider-overlay-soft, .2))),
        var(--slider-bg, linear-gradient(135deg, var(--secondary-color), #202938));
    background-size: cover;
    background-position: center;
}

.home-slider-item.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.home-slider-inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    align-items: center;
    padding: 88px 0;
}

.site-header.is-position-overlay + .site-main .home-slider:first-child .home-slider-inner {
    padding-top: 136px;
}

.home-slider-copy {
    max-width: 760px;
}

.home-slider-item.is-align-center .home-slider-inner {
    justify-items: center;
}

.home-slider-item.is-align-center .home-slider-copy {
    text-align: center;
}

.home-slider-item.is-align-center .home-slider .lead,
.home-slider-item.is-align-center .lead {
    margin-right: auto;
    margin-left: auto;
}

.home-slider-item.is-align-center .hero-actions {
    justify-content: center;
}

.home-slider-item.is-align-right .home-slider-inner {
    justify-items: end;
}

.home-slider-item.is-align-right .home-slider-copy {
    text-align: right;
}

.home-slider-item.is-align-right .lead {
    margin-left: auto;
}

.home-slider-item.is-align-right .hero-actions {
    justify-content: flex-end;
}

.home-slider.is-split .home-slider-item {
    background:
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, .12), transparent 28%),
        linear-gradient(135deg, #121926, #222c3c 56%, color-mix(in srgb, var(--primary-color) 34%, #202938));
}

.home-slider.is-split .home-slider-inner {
    grid-template-columns: minmax(0, .95fr) minmax(340px, .8fr);
    gap: clamp(34px, 6vw, 84px);
}

.home-slider-visual {
    justify-self: end;
    width: min(100%, 520px);
    aspect-ratio: 4 / 3;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
}

.home-slider-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slider h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.home-slider .lead {
    max-width: 680px;
}

.home-slider .eyebrow {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.home-slider-item .eyebrow,
.home-slider-item h1,
.home-slider-item .lead,
.home-slider-item .hero-actions,
.home-slider-item .home-slider-visual {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .48s ease, transform .58s ease;
}

.home-slider-item.is-active .eyebrow,
.home-slider-item.is-active h1,
.home-slider-item.is-active .lead,
.home-slider-item.is-active .hero-actions,
.home-slider-item.is-active .home-slider-visual {
    opacity: 1;
    transform: translateY(0);
}

.home-slider-item.is-active h1 {
    transition-delay: .08s;
}

.home-slider-item.is-active .lead {
    transition-delay: .16s;
}

.home-slider-item.is-active .hero-actions,
.home-slider-item.is-active .home-slider-visual {
    transition-delay: .24s;
}

.home-slider-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.home-slider-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
    cursor: pointer;
    transition: width .2s ease, background .2s ease, transform .2s ease;
}

.home-slider-dots button.is-active {
    width: 46px;
    background: #fff;
    transform: translateY(-1px);
}

.hero-panel {
    display: grid;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    padding: 30px;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.hero-panel div {
    display: grid;
    gap: 8px;
}

.hero-panel span {
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    font-weight: 850;
}

.hero-panel strong {
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
}

.hero-panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.hero-panel i {
    color: var(--primary-color);
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 56px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.hero-stats div {
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 22px;
    background: rgba(255, 255, 255, .045);
}

.hero-stats strong,
.stat-card strong {
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
}

.hero-stats span {
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.section {
    padding: 82px 0;
}

.section.is-soft {
    background: var(--soft-color);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.with-action {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-head.with-action > div {
    max-width: 760px;
}

.section-head h2,
.content-body h2 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
}

.section-head p,
.content-card p,
.footer-brand p,
.empty-state {
    color: var(--muted-color);
}

.page-hero {
    padding: 74px 0;
    background: linear-gradient(180deg, #f7f8fb 0%, #fff 100%);
}

.page-hero-inner {
    max-width: 860px;
}

.service-list-hero,
.listing-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 112px) 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color), #1f2937);
    background-size: 30px 30px, auto;
    color: #fff;
}

.service-list-hero-inner,
.listing-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 46px;
    align-items: center;
}

.service-list-hero-copy,
.listing-hero-copy {
    max-width: 780px;
}

.custom-page-hero.is-simple .custom-page-hero-inner {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
    text-align: center;
}

.custom-page-hero.is-simple .listing-hero-copy {
    max-width: 860px;
    margin: 0 auto;
}

.service-list-hero h1,
.listing-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
}

.service-list-hero .lead,
.listing-hero .lead {
    color: rgba(255, 255, 255, .76);
}

.service-list-hero .eyebrow,
.listing-hero .eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.service-list-hero-panel,
.listing-hero-panel {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.service-list-hero-panel div,
.listing-hero-panel div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, .07);
}

.service-list-hero-panel i,
.listing-hero-panel i {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    grid-row: span 2;
    border-radius: 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 21px;
}

.service-list-hero-panel strong,
.listing-hero-panel strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.service-list-hero-panel span,
.listing-hero-panel span {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.45;
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 48px;
    align-items: center;
}

.content-split.is-reversed .content-body {
    order: 2;
}

.content-split.is-reversed .content-image {
    order: 1;
}

.content-body {
    color: #3d4658;
}

.content-body > *:first-child {
    margin-top: 0;
}

.content-image {
    overflow: hidden;
    border-radius: 24px;
    background: var(--soft-color);
}

.content-image img {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
}

.about-intro-copy h2 {
    margin: 0 0 18px;
    color: var(--secondary-color);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.about-intro-copy .rich-content {
    color: var(--muted-color);
    font-size: 18px;
    line-height: 1.8;
}

.about-intro-image {
    box-shadow: 0 24px 70px rgba(17, 24, 39, .1);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-mission-card,
.about-value-card {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .055);
}

.about-mission-card {
    min-height: 300px;
    padding: clamp(28px, 4vw, 44px);
}

.about-mission-card > i,
.about-value-card > i {
    display: inline-grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary-color) 11%, #fff);
    color: var(--primary-color);
}

.about-mission-card > i {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin-bottom: 28px;
    font-size: 29px;
}

.about-mission-card h2 {
    margin: 0 0 14px;
    color: var(--secondary-color);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
}

.about-mission-card p {
    margin: 0;
    color: var(--muted-color);
    font-size: 17px;
    line-height: 1.75;
}

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

.about-value-card {
    min-height: 230px;
    padding: 26px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 22px 48px rgba(17, 24, 39, .09);
}

.about-value-card > i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 22px;
    font-size: 24px;
}

.about-value-card h3 {
    margin: 0 0 10px;
    color: var(--secondary-color);
    font-size: 21px;
    line-height: 1.22;
}

.about-value-card p {
    margin: 0;
    color: var(--muted-color);
    line-height: 1.65;
}

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

.content-card,
.info-card,
.request-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
}

.content-card {
    display: flex;
    flex-direction: column;
}

.card-media {
    height: 220px;
    background: var(--soft-color);
}

.card-media.is-placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 10%, #fff), #fff),
        var(--soft-color);
    color: var(--primary-color);
    font-size: 44px;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.card-body .text-link {
    margin-top: auto;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -8px 0 28px;
}

.filter-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 9px 15px;
    background: #fff;
    color: #475467;
    font-size: 14px;
    font-weight: 850;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.filter-pills a:hover,
.filter-pills a.is-active {
    border-color: color-mix(in srgb, var(--primary-color) 24%, var(--border-color));
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    color: var(--primary-color);
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-list-card {
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-list-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 22px 48px rgba(17, 24, 39, .09);
}

.service-list-media {
    aspect-ratio: 16 / 10;
    background: var(--soft-color);
}

.service-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-icon {
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    margin: 24px 24px 0;
    border-radius: 18px;
    background: color-mix(in srgb, var(--primary-color) 11%, #fff);
    color: var(--primary-color);
    font-size: 30px;
}

.service-list-card.is-icon {
    padding-top: 2px;
}

.service-list-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.service-list-body span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.service-list-body h3 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-size: 23px;
    line-height: 1.2;
}

.service-list-body p {
    margin: 0 0 18px;
    color: var(--muted-color);
}

.service-list-body .text-link {
    margin-top: auto;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-list-card {
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-list-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 22px 48px rgba(17, 24, 39, .09);
}

.product-list-media {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    background: var(--soft-color);
    color: var(--primary-color);
    font-size: 42px;
}

.product-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list-media.is-placeholder {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 10%, #fff), #fff),
        var(--soft-color);
}

.product-list-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.product-list-meta {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.product-list-meta span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.product-list-meta small {
    color: var(--muted-color);
    font-size: 12px;
    font-weight: 850;
}

.product-list-body h3 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1.22;
}

.product-list-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.product-list-foot strong {
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 950;
}

.product-list-foot div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-link {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 7px 13px;
    background: color-mix(in srgb, var(--primary-color) 11%, #fff);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s ease, color .18s ease;
}

.quote-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-quote-modal.is-open {
    display: flex;
}

.product-quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .56);
    backdrop-filter: blur(7px);
}

.product-quote-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 24px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .26);
}

.product-quote-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--secondary-color);
    cursor: pointer;
}

.product-quote-head {
    max-width: 560px;
    margin-bottom: 24px;
}

.product-quote-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 950;
}

.product-quote-head h2 {
    margin: 0 0 10px;
    color: var(--secondary-color);
    font-size: 32px;
}

.product-quote-head p {
    margin: 0;
    color: var(--muted-color);
}

.product-quote-form .form-grid {
    gap: 16px;
}

.product-quote-form .btn-primary,
.product-detail-quote .btn-primary {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    font-size: 16px;
}

.product-detail-hero {
    padding: clamp(72px, 8vw, 108px) 0 54px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color), #1f2937);
    background-size: 30px 30px, auto;
    color: #fff;
}

.product-detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.product-detail-copy {
    max-width: 760px;
}

.product-detail-copy .eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.product-detail-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 70px);
    line-height: 1.03;
}

.product-detail-copy .lead {
    color: rgba(255, 255, 255, .76);
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-detail-visual {
    min-height: 430px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
}

.product-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.product-detail-visual.is-placeholder {
    color: rgba(255, 255, 255, .86);
    font-size: 84px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 32px;
    align-items: start;
}

.product-content-panel,
.product-gallery-block,
.product-detail-quote {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
}

.product-detail-main {
    display: grid;
    gap: 24px;
}

.product-content-panel,
.product-gallery-block {
    padding: clamp(26px, 4vw, 42px);
}

.product-info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.product-info-strip div {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 16px;
    background: var(--soft-color);
}

.product-info-strip span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted-color);
    font-size: 13px;
    font-weight: 850;
}

.product-info-strip strong {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.product-detail-section-head {
    margin-bottom: 22px;
}

.product-detail-section-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 950;
}

.product-detail-section-head h2 {
    margin: 0;
    color: var(--secondary-color);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.16;
}

.product-detail-side {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.product-detail-quote {
    padding: 26px;
}

.product-detail-quote .form-grid {
    gap: 14px;
}

.product-gallery-block {
    margin-top: 0;
}

.product-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-detail-gallery a {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--soft-color);
}

.product-detail-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .2s ease;
}

.product-detail-gallery a:hover img {
    transform: scale(1.035);
}

.project-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.project-list-card {
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(17, 24, 39, .055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.project-list-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 26px 62px rgba(17, 24, 39, .11);
}

.project-list-media {
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--soft-color);
    color: var(--primary-color);
    font-size: 48px;
}

.project-list-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .48));
    opacity: .9;
    transition: opacity .2s ease;
}

.project-list-card:hover .project-list-media::after {
    opacity: .98;
}

.project-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.project-list-card:hover .project-list-media img {
    transform: scale(1.035);
}

.project-list-media.is-placeholder {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 10%, #fff), #fff),
        var(--soft-color);
}

.project-list-badges {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.project-list-badges span,
.project-list-badges small {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .9);
    color: var(--secondary-color);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.project-list-badges span {
    color: var(--primary-color);
}

.project-list-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.project-list-body h3 {
    margin: 0 0 14px;
    color: var(--secondary-color);
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.18;
}

.project-list-body p {
    margin: 0 0 22px;
    color: var(--muted-color);
}

.project-list-client {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 11px;
    margin-bottom: 10px;
    background: var(--soft-color);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 900;
}

.project-list-client i {
    color: var(--primary-color);
}

.project-list-foot {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.project-list-grid.is-view-masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.project-list-card.is-view-masonry {
    border-radius: 22px;
}

.project-list-card.is-view-masonry:nth-child(4n + 1) {
    grid-row: span 2;
}

.project-list-card.is-view-masonry:nth-child(4n + 1) .project-list-media {
    aspect-ratio: 4 / 5;
}

.project-list-card.is-view-masonry:nth-child(4n + 2) .project-list-media,
.project-list-card.is-view-masonry:nth-child(4n + 3) .project-list-media {
    aspect-ratio: 1 / 1;
}

.project-list-card.is-view-masonry .project-list-body {
    padding: 22px;
}

.project-list-card.is-view-masonry .project-list-body h3 {
    font-size: clamp(21px, 2vw, 28px);
}

.project-list-card.is-view-masonry .project-list-body p {
    margin-bottom: 16px;
}

.btn-outline.is-dark {
    border-color: var(--border-color);
    background: #fff;
    color: var(--secondary-color);
}

.btn-outline.is-dark:hover {
    border-color: color-mix(in srgb, var(--primary-color) 28%, var(--border-color));
    color: var(--primary-color);
}

.project-detail-hero {
    padding: clamp(72px, 8vw, 108px) 0 54px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color), #1f2937);
    background-size: 30px 30px, auto;
    color: #fff;
}

.project-detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.project-detail-copy {
    max-width: 780px;
}

.project-detail-copy .eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.project-detail-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 70px);
    line-height: 1.03;
}

.project-detail-copy .lead {
    color: rgba(255, 255, 255, .76);
}

.project-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.project-detail-visual {
    min-height: 430px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
}

.project-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.project-detail-visual.is-placeholder {
    color: rgba(255, 255, 255, .86);
    font-size: 84px;
}

.project-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.project-detail-main {
    display: grid;
    gap: 24px;
}

.project-content-panel,
.project-gallery-block,
.project-side-card {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
}

.project-content-panel,
.project-gallery-block {
    padding: clamp(26px, 4vw, 42px);
}

.project-info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.project-info-strip div {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 16px;
    background: var(--soft-color);
}

.project-info-strip span,
.project-detail-section-head span,
.project-side-card > span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 950;
}

.project-info-strip strong {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.project-detail-section-head {
    margin-bottom: 22px;
}

.project-detail-section-head small {
    display: inline-flex;
    margin-top: 8px;
    border-radius: 999px;
    padding: 7px 11px;
    background: var(--soft-color);
    color: var(--muted-color);
    font-size: 13px;
    font-weight: 900;
}

.project-detail-section-head h2,
.project-side-card h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.16;
}

.project-detail-side {
    position: sticky;
    top: 104px;
}

.project-side-card {
    padding: 26px;
}

.project-side-card p {
    margin: 14px 0 0;
    color: var(--muted-color);
}

.project-side-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    grid-auto-flow: dense;
}

.project-detail-gallery a {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--soft-color);
}

.project-detail-gallery a:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.project-detail-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .2s ease;
}

.project-detail-gallery a:first-child img {
    height: 100%;
    min-height: 100%;
}

.project-detail-gallery a span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--secondary-color);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

.project-detail-gallery a:hover img {
    transform: scale(1.035);
}

.project-detail-gallery a:hover span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, .72);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    max-height: calc(100vh - 48px);
    display: grid;
    place-items: center;
}

.gallery-lightbox-dialog img {
    max-width: 100%;
    max-height: calc(100vh - 48px);
    border-radius: 22px;
    object-fit: contain;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.gallery-lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: #fff;
    color: var(--secondary-color);
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.gallery-lightbox-nav.is-prev {
    left: -22px;
}

.gallery-lightbox-nav.is-next {
    right: -22px;
}

.gallery-lightbox-count {
    position: absolute;
    left: 50%;
    bottom: -18px;
    z-index: 2;
    border-radius: 999px;
    padding: 8px 13px;
    background: #fff;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 900;
    transform: translateX(-50%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-process-card {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
}

.service-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.service-process-top span {
    color: color-mix(in srgb, var(--secondary-color) 18%, #fff);
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
}

.service-process-top i {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    color: var(--primary-color);
    font-size: 22px;
}

.service-process-card h3 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 1.22;
}

.service-process-card p {
    margin: 0;
    color: var(--muted-color);
}

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

.home-service-card {
    min-height: 276px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 26px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 28%, var(--border-color));
    box-shadow: 0 22px 48px rgba(17, 24, 39, .09);
}

.home-service-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 20px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 24px;
}

.home-service-card small,
.home-product-body span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.home-service-card h3,
.home-product-body h3,
.home-project-body h3,
.home-blog-card h3 {
    margin: 8px 0 10px;
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1.18;
}

.home-service-card p,
.home-product-body p,
.home-project-body p,
.home-blog-card p {
    margin: 0 0 18px;
    color: var(--muted-color);
}

.home-service-card .text-link {
    margin-top: auto;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.home-product-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
}

.home-product-media {
    aspect-ratio: 1 / .78;
    display: grid;
    place-items: center;
    background: #f1f3f7;
}

.home-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product-media.is-placeholder {
    color: var(--primary-color);
    font-size: 44px;
}

.home-product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.home-product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.home-product-foot strong {
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 950;
}

.home-product-foot a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--secondary-color);
    color: #fff;
}

.home-project-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 18px;
    align-items: stretch;
}

.home-project-stack {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-project-layout.is-single {
    grid-template-columns: 1fr;
}

.home-project-card {
    overflow: hidden;
    height: 100%;
    min-height: 0;
    display: grid;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-project-card.is-featured {
    grid-template-rows: minmax(330px, 1fr) auto;
    border-radius: 24px;
}

.home-project-card.is-compact {
    grid-template-columns: 170px minmax(0, 1fr);
    min-height: 148px;
}

.home-project-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 22px 48px rgba(17, 24, 39, .09);
}

.home-project-media {
    min-height: 100%;
    display: grid;
    place-items: center;
    background: #f3f5f8;
    color: #fff;
    font-size: 46px;
}

.home-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-project-media img {
    transition: transform .35s ease;
}

.home-project-media.is-placeholder {
    color: rgba(255, 255, 255, .86);
}

.home-project-card:hover .home-project-media img {
    transform: scale(1.04);
}

.home-project-body {
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.home-project-card.is-featured .home-project-body {
    padding: 24px;
}

.home-project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.home-project-meta span {
    display: inline-flex;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.home-project-meta a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--secondary-color);
    color: #fff;
}

.home-project-body p {
    margin-bottom: 0;
}

.home-project-card.is-compact .home-project-body h3 {
    font-size: 19px;
}

.home-project-card.is-compact .home-project-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-blog-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.home-blog-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 0;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-blog-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary-color) 24%, var(--border-color));
    box-shadow: 0 20px 42px rgba(17, 24, 39, .08);
}

.home-blog-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px;
}

.home-blog-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    background: var(--soft-color);
    color: var(--primary-color);
    font-size: 34px;
}

.home-blog-card .text-link {
    margin-top: auto;
}

.home-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog-card h3 {
    margin-top: 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-blog-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-blog-card h3,
.home-blog-card p {
    min-width: 0;
}

.home-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.home-blog-meta span,
.home-blog-meta time {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
}

.home-blog-meta time {
    margin-left: auto;
    background: var(--soft-color);
    color: var(--muted-color);
}

.is-counters {
    background:
        linear-gradient(180deg, #fff 0%, var(--soft-color) 100%);
}

.counters-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 28px;
    padding: clamp(18px, 3vw, 28px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84)),
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 18%, #fff), color-mix(in srgb, var(--secondary-color) 12%, #fff));
    box-shadow: 0 24px 70px rgba(17, 24, 39, .08);
}

.counters-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--primary-color);
    opacity: .9;
    pointer-events: none;
}

.stat-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    min-height: 188px;
    display: grid;
    align-content: start;
    gap: 10px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, .86);
    color: var(--text-color);
    box-shadow: 0 12px 28px rgba(17, 24, 39, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary-color) 28%, var(--border-color));
    box-shadow: 0 18px 38px rgba(17, 24, 39, .1);
}

.stat-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 20px;
}

.stat-card strong {
    color: var(--secondary-color);
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1;
    font-weight: 950;
}

.stat-card span:not(.stat-icon) {
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.stat-card p {
    margin: 0;
    color: var(--muted-color);
    line-height: 1.55;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 54px);
    background: linear-gradient(135deg, var(--secondary-color), #1f2937);
    color: #fff;
}

.cta-band > div {
    max-width: 720px;
}

.cta-band h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
}

.cta-band p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .72);
}

.cta-band .eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.card-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.card-body h3 {
    margin: 0 0 10px;
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1.22;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 900;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 18px;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--soft-color);
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 900;
}

.empty-state {
    border: 1px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    background: #fff;
    font-weight: 800;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
}

.detail-main,
.detail-side {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
}

.detail-main {
    padding: 34px;
}

.detail-side {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.detail-cover {
    margin: -34px -34px 30px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.detail-cover img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.gallery-grid,
.logo-grid,
.logo-grid-inner,
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid img,
.logo-card {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
}

.gallery-grid img {
    aspect-ratio: 1 / .75;
    object-fit: cover;
}

.gallery-hero-panel {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 220px;
    text-align: center;
}

.gallery-hero-panel i {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(201, 39, 45, .1);
    color: var(--primary-color);
    font-size: 32px;
}

.theme-gallery-albums,
.theme-gallery-grid {
    display: grid;
    gap: 22px;
}

.theme-gallery-albums.is-cols-2,
.theme-gallery-grid.is-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-gallery-albums.is-cols-3,
.theme-gallery-grid.is-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-gallery-albums.is-cols-4,
.theme-gallery-grid.is-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-gallery-album {
    display: grid;
    gap: 13px;
}

.theme-gallery-cover,
.theme-gallery-grid a {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f6;
}

.theme-gallery-cover img,
.theme-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.theme-gallery-cover:hover img,
.theme-gallery-grid a:hover img {
    transform: scale(1.045);
}

.theme-gallery-cover.is-placeholder {
    display: grid;
    place-items: center;
    color: var(--primary-color);
    font-size: 34px;
}

.theme-gallery-album h2 {
    margin: 0;
    font-size: 20px;
}

.theme-gallery-album span {
    color: var(--muted-color);
    font-size: 14px;
}

.logo-card {
    min-height: 132px;
    display: grid;
    place-items: center;
    padding: 24px;
}

.logo-card img {
    width: auto;
    height: auto;
    max-width: 170px;
    max-height: 74px;
    object-fit: contain;
}

.reference-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 0;
    background: var(--border-color);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .05);
}

.reference-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--border-color);
}

.reference-showcase .logo-card {
    width: auto;
    flex: initial;
    min-height: 132px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.reference-showcase .logo-card img {
    filter: grayscale(1);
    opacity: .76;
    transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.reference-showcase .logo-card:hover {
    transform: none;
    background: color-mix(in srgb, var(--primary-color) 4%, #fff);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color) 14%, transparent);
}

.reference-showcase .logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
}

.reference-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.reference-card {
    min-height: 238px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.reference-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 24px 54px rgba(17, 24, 39, .1);
}

.reference-card-logo {
    aspect-ratio: 2 / 1;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 4%, #fff), #fff),
        var(--soft-color);
}

.reference-card-logo img {
    width: auto;
    height: auto;
    max-width: min(100%, 210px);
    max-height: 86px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .82;
    transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.reference-card:hover .reference-card-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
}

.reference-card-logo strong {
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
}

.reference-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
}

.reference-card-body span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 950;
}

.reference-card-body h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 1.22;
}

.reference-card-body small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 950;
}

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

.blog-list-card {
    overflow: hidden;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.blog-list-card.is-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}

.blog-list-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 26%, var(--border-color));
    box-shadow: 0 24px 54px rgba(17, 24, 39, .1);
}

.blog-list-media {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--soft-color);
    color: var(--primary-color);
    font-size: 48px;
}

.blog-list-card.is-featured .blog-list-media {
    aspect-ratio: auto;
    min-height: 100%;
}

.blog-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.blog-list-card:hover .blog-list-media img {
    transform: scale(1.035);
}

.blog-list-media.is-placeholder {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 10%, #fff), #fff),
        var(--soft-color);
}

.blog-list-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.blog-list-card.is-featured .blog-list-body {
    padding: clamp(28px, 4vw, 42px);
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.blog-list-meta span,
.blog-list-meta small {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.blog-list-meta span {
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    color: var(--primary-color);
}

.blog-list-meta small {
    background: var(--soft-color);
    color: var(--muted-color);
}

.blog-list-body h3 {
    margin: 0 0 14px;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1.18;
}

.blog-list-card.is-featured .blog-list-body h3 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.06;
}

.blog-list-body p {
    margin: 0 0 22px;
    color: var(--muted-color);
}

.blog-list-body .text-link {
    margin-top: auto;
}

.service-list-grid.is-view-compact,
.home-service-grid.is-view-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list-card.is-view-compact {
    min-height: 0;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
}

.service-list-card.is-view-compact .service-list-icon {
    width: 58px;
    height: 58px;
    margin: 0;
}

.service-list-card.is-view-compact .service-list-body {
    padding: 0;
}

.home-service-card.is-view-compact {
    min-height: 230px;
    padding: 22px;
}

.home-service-card.is-view-compact .home-service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 21px;
}

.home-service-card.is-view-image {
    overflow: hidden;
    padding: 0;
}

.home-service-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    background: var(--soft-color);
}

.home-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-service-card.is-view-image small,
.home-service-card.is-view-image h3,
.home-service-card.is-view-image p,
.home-service-card.is-view-image .text-link {
    margin-right: 24px;
    margin-left: 24px;
}

.home-service-card.is-view-image small {
    margin-top: 22px;
}

.home-service-card.is-view-image .text-link {
    margin-bottom: 24px;
}

.product-list-grid.is-view-compact,
.home-product-grid.is-view-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-list-card.is-view-compact,
.home-product-card.is-view-compact {
    min-height: 0;
}

.product-list-card.is-view-compact .product-list-media,
.home-product-card.is-view-compact .home-product-media {
    aspect-ratio: 1 / .72;
}

.product-list-card.is-view-compact .product-list-body,
.home-product-card.is-view-compact .home-product-body {
    padding: 18px;
}

.product-list-card.is-view-compact .product-list-body h3,
.home-product-card.is-view-compact .home-product-body h3 {
    font-size: 19px;
}

.product-list-card.is-view-quote,
.home-product-card.is-view-quote {
    border-color: color-mix(in srgb, var(--primary-color) 24%, var(--border-color));
}

.product-list-card.is-view-quote .quote-link {
    border-radius: 999px;
    padding: 9px 13px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 950;
}

.home-product-card.is-view-quote .home-product-foot {
    border-top: 1px solid var(--border-color);
}

.blog-list-grid.is-view-horizontal,
.home-blog-layout.is-view-horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-list-card.is-view-horizontal,
.home-blog-card.is-view-horizontal {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 0;
}

.blog-list-card.is-view-horizontal .blog-list-media,
.home-blog-card.is-view-horizontal .home-blog-media {
    aspect-ratio: auto;
    min-height: 100%;
}

.blog-list-card.is-view-editorial,
.home-blog-card.is-view-editorial {
    border-radius: 10px;
    box-shadow: none;
}

.blog-list-card.is-view-editorial .blog-list-body h3,
.home-blog-card.is-view-editorial h3 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
}

.blog-list-grid.is-view-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-list-grid.is-view-standard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.project-list-card.is-view-standard .project-list-body h3 {
    font-size: 24px;
}

.project-list-grid.is-view-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-list-card.is-view-compact {
    border-radius: 18px;
}

.project-list-card.is-view-compact .project-list-media {
    aspect-ratio: 16 / 10;
}

.project-list-card.is-view-compact .project-list-body {
    padding: 20px;
}

.project-list-card.is-view-compact .project-list-body h3 {
    font-size: 21px;
}

.home-project-layout.is-view-standard,
.home-project-layout.is-view-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-project-layout.is-view-standard .home-project-stack,
.home-project-layout.is-view-compact .home-project-stack {
    display: contents;
}

.home-project-layout.is-view-standard .home-project-card,
.home-project-layout.is-view-compact .home-project-card,
.home-project-layout.is-view-standard .home-project-card.is-featured,
.home-project-layout.is-view-compact .home-project-card.is-featured,
.home-project-layout.is-view-standard .home-project-card.is-compact,
.home-project-layout.is-view-compact .home-project-card.is-compact {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.home-project-layout.is-view-compact .home-project-card.is-featured {
    border-radius: 20px;
}

.home-project-layout.is-view-compact .home-project-media {
    aspect-ratio: 16 / 10;
}

.home-project-layout.is-view-compact .home-project-body p {
    display: none;
}

.reference-list-grid.is-view-compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reference-logo-grid.is-view-compact {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.reference-logo-grid.is-view-compact .logo-card {
    min-height: 118px;
}

.reference-logo-grid.is-view-stripe {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-logo-grid.is-view-stripe .logo-card {
    min-height: 96px;
    border-radius: 999px;
}

.reference-card.is-view-compact {
    min-height: 178px;
}

.reference-card.is-view-compact .reference-card-logo {
    padding: 18px;
}

.reference-card.is-view-compact .reference-card-body {
    padding: 16px;
}

.reference-list-grid.is-view-stripe {
    grid-template-columns: 1fr;
}

.reference-card.is-view-stripe {
    min-height: 0;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
}

.reference-card.is-view-stripe .reference-card-logo {
    aspect-ratio: auto;
    min-height: 132px;
}

.reference-card.is-view-stripe .reference-card-body {
    flex-direction: row;
    align-items: center;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.blog-toc {
    position: sticky;
    top: 104px;
}

.blog-toc-card {
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .05);
}

.blog-toc-card > span {
    display: block;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 950;
}

.blog-toc-card p {
    margin: 0;
    color: var(--muted-color);
}

.blog-toc nav {
    display: grid;
    gap: 8px;
}

.blog-toc a {
    border-radius: 12px;
    padding: 9px 10px;
    color: var(--muted-color);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    transition: background .18s ease, color .18s ease;
}

.blog-toc a:hover {
    background: color-mix(in srgb, var(--primary-color) 9%, #fff);
    color: var(--primary-color);
}

.blog-toc a.level-3 {
    padding-left: 22px;
}

.blog-toc a.level-4 {
    padding-left: 34px;
    font-size: 13px;
}

.blog-article {
    border: 1px solid var(--border-color);
    border-radius: 26px;
    padding: clamp(28px, 5vw, 58px);
    background: #fff;
    box-shadow: 0 18px 46px rgba(17, 24, 39, .055);
    color: #344054;
    font-size: 18px;
    line-height: 1.85;
}

.blog-article > *:first-child {
    margin-top: 0;
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
    scroll-margin-top: 110px;
    color: var(--secondary-color);
    line-height: 1.18;
}

.blog-article h2 {
    margin: 46px 0 16px;
    font-size: clamp(30px, 3.8vw, 44px);
}

.blog-article h3 {
    margin: 34px 0 14px;
    font-size: 28px;
}

.blog-article h4 {
    margin: 28px 0 12px;
    font-size: 22px;
}

.blog-article p {
    margin: 0 0 20px;
}

.blog-article a {
    color: var(--primary-color);
    font-weight: 900;
}

.blog-article ul,
.blog-article ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.blog-article li + li {
    margin-top: 8px;
}

.blog-article img {
    border-radius: 20px;
    margin: 28px 0;
}

.blog-article blockquote {
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    border-radius: 18px;
    padding: 22px 24px;
    background: var(--soft-color);
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 850;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 0;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .09);
}

.blog-featured-media {
    min-height: 430px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--soft-color);
    color: var(--primary-color);
    font-size: 54px;
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.blog-featured-card:hover .blog-featured-media img {
    transform: scale(1.035);
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 52px);
}

.blog-featured-body h3 {
    margin: 0 0 18px;
    color: var(--secondary-color);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
}

.blog-featured-body p {
    margin: 0 0 26px;
    color: var(--muted-color);
    font-size: 18px;
}

.blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.blog-list-card {
    min-height: 260px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    border-radius: 24px;
}

.blog-list-media {
    aspect-ratio: auto;
    min-height: 100%;
}

.blog-list-body {
    padding: 24px;
}

.blog-list-body h3 {
    font-size: 25px;
}

.blog-detail-cover-section {
    padding: 14px 0 0;
    background: #fff;
}

.blog-detail-cover {
    overflow: hidden;
    margin: 0;
    border-radius: 30px;
    background: var(--soft-color);
    box-shadow: 0 24px 70px rgba(17, 24, 39, .09);
}

.blog-detail-cover img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.blog-detail-cover.is-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    font-size: 82px;
}

.blog-detail-layout {
    grid-template-columns: minmax(0, 790px) 300px;
    justify-content: center;
    gap: 46px;
}

.blog-article {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    font-size: 19px;
}

.blog-toc {
    order: 2;
}

.quote-simple-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.quote-simple-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.quote-simple-info article {
    min-height: 150px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .045);
}

.quote-simple-info i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 23px;
}

.quote-simple-info h2 {
    margin: 0 0 8px;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 1.22;
}

.quote-simple-info p {
    margin: 0;
    color: var(--muted-color);
    line-height: 1.58;
}

.quote-simple-card {
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: clamp(28px, 4vw, 46px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .075);
}

.quote-simple-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.quote-simple-head span {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 7px 13px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 950;
}

.quote-simple-head h2 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.08;
}

.quote-simple-head p {
    margin: 0;
    color: var(--muted-color);
    font-size: 17px;
    line-height: 1.65;
}

.quote-simple-form {
    gap: 18px;
}

.quote-simple-submit {
    display: flex;
    justify-content: flex-end;
}

.quote-simple-submit .btn-primary {
    min-width: min(100%, 260px);
}

.quote-simple-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.quote-simple-process article {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17, 24, 39, .055);
}

.quote-simple-process small {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(15, 23, 42, .07);
    font-size: 54px;
    line-height: 1;
    font-weight: 950;
}

.quote-simple-process i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 17px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 23px;
}

.quote-simple-process h3 {
    position: relative;
    margin: 0 0 10px;
    color: var(--secondary-color);
    font-size: 21px;
    line-height: 1.2;
}

.quote-simple-process p {
    position: relative;
    margin: 0;
    color: var(--muted-color);
    line-height: 1.62;
}

.contact-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.contact-info-card {
    min-height: 164px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .045);
}

.contact-info-card > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 17px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 23px;
}

.contact-info-card span,
.contact-side-panel > span,
.contact-form-head span {
    display: inline-flex;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 950;
}

.contact-value-list {
    display: grid;
    gap: 7px;
    margin-top: 8px;
}

.contact-info-card a,
.contact-info-card strong {
    display: block;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    gap: 24px;
    align-items: stretch;
}

.contact-side-panel,
.contact-form-card {
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 62px rgba(17, 24, 39, .065);
}

.contact-side-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(26px, 3vw, 38px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color), #172033);
    background-size: 28px 28px, auto;
    color: #fff;
}

.contact-side-panel > span {
    color: rgba(255, 255, 255, .72);
}

.contact-side-panel h2 {
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.contact-side-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
}

.contact-hours-box {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, .08);
}

.contact-hours-box i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 22px;
}

.contact-hours-box span,
.contact-hours-box strong {
    display: block;
}

.contact-hours-box span {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 950;
}

.contact-hours-box strong {
    margin-top: 5px;
    color: #fff;
    line-height: 1.45;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: transform .18s ease, background .18s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
}

.contact-form-card {
    padding: clamp(28px, 4vw, 46px);
}

.contact-form-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.contact-form-head span {
    margin-bottom: 12px;
}

.contact-form-head h2 {
    margin: 0 0 12px;
    color: var(--secondary-color);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.08;
}

.contact-form-head p {
    margin: 0;
    color: var(--muted-color);
    line-height: 1.65;
}

.contact-form-grid {
    gap: 18px;
}

.contact-submit-row {
    display: flex;
    justify-content: flex-end;
}

.contact-submit-row .btn-primary {
    min-width: min(100%, 220px);
}

.contact-map-section {
    padding-top: 0;
    background: #f8fafc;
}

.contact-map-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(17, 24, 39, .06);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.custom-page-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.custom-page-article {
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 64px);
    background: #fff;
    box-shadow: 0 22px 64px rgba(17, 24, 39, .065);
    color: #344054;
    font-size: 18px;
    line-height: 1.85;
}

.custom-page-article > *:first-child {
    margin-top: 0;
}

.custom-page-article > *:last-child {
    margin-bottom: 0;
}

.custom-page-article h2,
.custom-page-article h3,
.custom-page-article h4 {
    color: var(--secondary-color);
    line-height: 1.18;
    scroll-margin-top: 110px;
}

.custom-page-article h2 {
    margin: 46px 0 16px;
    font-size: clamp(30px, 3.6vw, 44px);
}

.custom-page-article h3 {
    margin: 34px 0 14px;
    font-size: 28px;
}

.custom-page-article h4 {
    margin: 28px 0 12px;
    font-size: 22px;
}

.custom-page-article p {
    margin: 0 0 20px;
}

.custom-page-article a {
    color: var(--primary-color);
    font-weight: 900;
}

.custom-page-article ul,
.custom-page-article ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.custom-page-article li + li {
    margin-top: 8px;
}

.custom-page-article img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 28px 0;
}

.custom-page-article table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    font-size: 16px;
}

.custom-page-article th,
.custom-page-article td {
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    text-align: left;
}

.custom-page-article th {
    background: var(--soft-color);
    color: var(--secondary-color);
    font-weight: 950;
}

.custom-page-article blockquote {
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    border-radius: 18px;
    padding: 22px 24px;
    background: var(--soft-color);
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 850;
}

.not-found-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 9vw, 128px) 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color), #151d2d);
    background-size: 30px 30px, auto;
    color: #fff;
}

.not-found-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
    gap: 44px;
    align-items: center;
}

.not-found-copy {
    max-width: 760px;
}

.not-found-copy .eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.not-found-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
}

.not-found-copy p {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.62;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.not-found-actions .btn-outline {
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.not-found-actions .btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: var(--secondary-color);
}

.not-found-code {
    min-height: 300px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 32px;
    padding: 28px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
    text-align: center;
    backdrop-filter: blur(18px);
}

.not-found-code strong,
.not-found-code span {
    display: block;
}

.not-found-code strong {
    color: #fff;
    font-size: clamp(82px, 10vw, 148px);
    line-height: .9;
    font-weight: 950;
}

.not-found-code span {
    margin-top: 12px;
    color: rgba(255, 255, 255, .64);
    font-weight: 900;
}

.not-found-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.not-found-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.not-found-links a {
    min-height: 130px;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 20px;
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 16px 40px rgba(17, 24, 39, .045);
    font-weight: 950;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.not-found-links a:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary-color) 38%, var(--border-color));
    color: var(--primary-color);
    box-shadow: 0 22px 56px rgba(17, 24, 39, .08);
}

.not-found-links i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 23px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field.is-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 12px 14px;
    color: var(--text-color);
    font: inherit;
    outline: none;
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 14%, transparent);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin-bottom: 18px;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 850;
}

.form-alert.is-success {
    background: #ecfdf3;
    color: #166534;
}

.form-alert.is-error {
    background: #fff1f2;
    color: #9f1239;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 66px 0 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, var(--secondary-color), #151d2d);
    background-size: 30px 30px, auto;
    color: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 45%, #fff));
}

.site-footer > .container {
    position: relative;
}

.site-announcement {
    position: relative;
    z-index: 60;
    background: var(--secondary-color);
    color: #fff;
}

.site-announcement-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.site-announcement-inner span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
}

.site-announcement-inner span i {
    color: var(--primary-color);
    font-size: 17px;
}

.site-announcement-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 6px 12px;
    background: #fff;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

.site-announcement-inner button {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
}

.site-floating-widgets {
    position: fixed;
    top: 50%;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateY(-50%);
}

.site-floating-widgets.is-right {
    right: 0;
}

.site-floating-widgets.is-left {
    left: 0;
}

.site-floating-widgets.is-right .site-floating-actions {
    order: 1;
}

.site-floating-widgets.is-right .site-floating-toggle {
    order: 2;
}

.site-floating-widgets.is-left .site-floating-toggle {
    order: 1;
}

.site-floating-widgets.is-left .site-floating-actions {
    order: 2;
}

.site-floating-actions {
    display: grid;
    align-items: center;
    gap: 9px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(14px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.site-floating-widgets.is-left .site-floating-actions {
    transform: translateX(-14px);
}

.site-floating-widgets.is-open .site-floating-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.site-floating-action {
    width: auto;
    min-width: 142px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    padding: 0 18px;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .22);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.site-floating-toggle {
    width: 54px;
    min-height: 176px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    padding: 14px 0;
    background: linear-gradient(135deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color) 78%, var(--primary-color)));
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .22);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.site-floating-widgets.is-right .site-floating-action {
    border-radius: 999px;
}

.site-floating-widgets.is-right .site-floating-toggle {
    border-radius: 18px 0 0 18px;
    border-right: 0;
}

.site-floating-widgets.is-left .site-floating-action {
    border-radius: 999px;
}

.site-floating-widgets.is-left .site-floating-toggle {
    border-radius: 0 18px 18px 0;
    border-left: 0;
}

.site-floating-action:hover,
.site-floating-toggle:hover {
    transform: translateX(-3px);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .28);
}

.site-floating-widgets.is-left .site-floating-action:hover,
.site-floating-widgets.is-left .site-floating-toggle:hover {
    transform: translateX(3px);
}

.site-floating-action i,
.site-floating-toggle i {
    font-size: 21px;
}

.site-floating-action span,
.site-floating-toggle span {
    white-space: nowrap;
}

.site-floating-toggle span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: .02em;
}

.site-floating-widgets.is-right .site-floating-toggle span {
    transform: rotate(180deg);
}

.site-floating-action.is-quote {
    background: var(--primary-color);
}

.site-floating-action.is-whatsapp {
    background: #25d366;
}

.site-floating-action.is-phone {
    background: var(--secondary-color);
}

.privacy-cookie-banner[hidden] {
    display: none;
}

.privacy-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 90;
    width: min(760px, calc(100vw - 32px));
    transform: translateX(-50%);
}

.privacy-cookie-banner.is-bottom-left {
    left: 22px;
    transform: none;
}

.privacy-cookie-banner.is-bottom-right {
    right: 22px;
    left: auto;
    transform: none;
}

.privacy-cookie-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 22px;
    padding: 18px;
    background: rgba(17, 24, 39, .96);
    color: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
    backdrop-filter: blur(14px);
}

.privacy-cookie-copy strong {
    display: block;
    font-size: 16px;
    font-weight: 950;
}

.privacy-cookie-copy p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.privacy-cookie-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.privacy-cookie-actions a,
.privacy-cookie-actions button {
    min-height: 40px;
    border-radius: 999px;
    padding: 0 15px;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
    cursor: pointer;
}

.privacy-cookie-actions a,
.btn-cookie-secondary {
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.btn-cookie-primary {
    border: 0;
    background: var(--primary-color);
    color: #fff;
}

.privacy-form-consent {
    margin-top: 4px;
}

.privacy-checkline {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
}

.privacy-checkline input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: var(--primary-color);
}

.privacy-checkline em {
    color: var(--muted-color);
    font-style: normal;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
}

.privacy-checkline a {
    color: var(--primary-color);
    font-weight: 950;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, .8fr));
    gap: 38px;
}

.footer-grid.is-1-2 {
    grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(0, .8fr));
}

.site-brand.is-footer img {
    max-width: 170px;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .68);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    transition: transform .18s ease, background .18s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
}

.footer-block h3 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 17px;
}

.footer-block h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary-color);
}

.footer-block ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-block a,
.footer-bottom {
    color: rgba(255, 255, 255, .68);
}

.footer-block a:hover {
    color: #fff;
}

.footer-block a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .18s ease, transform .18s ease;
}

.footer-block a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--primary-color);
    opacity: .75;
}

.footer-block a:hover {
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
}

@media (max-width: 980px) {
    .site-topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding-block: 8px;
    }

    .site-topbar-contact {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-header.is-layout-centered .header-inner,
    .site-header.is-layout-cta .header-inner {
        display: flex;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        order: 4;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        display: none;
        border: 1px solid var(--border-color);
        border-radius: 18px;
        padding: 12px;
        background: #fff;
        box-shadow: 0 20px 54px rgba(15, 23, 42, .12);
    }

    .site-header.is-mobile-fullscreen .site-nav {
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        right: 0;
        z-index: 80;
        border: 0;
        border-radius: 0;
        padding: 88px 22px 24px;
        background: rgba(255, 255, 255, .98);
        box-shadow: none;
        overflow-y: auto;
    }

    .site-header.is-mobile-fullscreen .menu-toggle {
        position: relative;
        z-index: 90;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-header.is-position-overlay:not(.is-scrolled) .site-nav.is-open,
    .site-header.is-position-overlay:not(.is-scrolled) .site-nav.is-open .site-menu ul {
        border-color: var(--border-color);
        background: #fff;
        box-shadow: 0 20px 54px rgba(15, 23, 42, .12);
        backdrop-filter: none;
    }

    .site-header.is-position-overlay:not(.is-scrolled) .site-nav.is-open .site-menu a,
    .site-header.is-position-overlay:not(.is-scrolled) .site-nav.is-open .site-menu ul a {
        color: #374151;
    }

    .site-header.is-position-overlay:not(.is-scrolled) .site-nav.is-open .site-menu a:hover,
    .site-header.is-position-overlay:not(.is-scrolled) .site-nav.is-open .site-menu a.is-active {
        background: var(--soft-color);
        color: var(--primary-color);
    }

    .site-menu,
    .site-menu ul {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        min-width: 0;
        box-shadow: none;
        border: 0;
        padding: 0;
    }

    .site-menu {
        display: grid;
    }

    .site-menu ul {
        display: none;
        margin-left: 16px;
        padding-left: 12px;
        border-left: 1px solid var(--border-color);
    }

    .site-menu .has-children.is-open > ul {
        display: grid;
    }

    .site-menu .has-children.is-open > a .submenu-icon {
        transform: rotate(180deg);
    }

    .site-menu ul::before {
        display: none;
    }

    .site-menu a {
        width: 100%;
        justify-content: space-between;
        border-radius: 12px;
    }

    .header-cta {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 14px;
    }

    .hero-grid,
    .not-found-grid,
    .service-list-hero-inner,
    .listing-hero-inner,
    .product-detail-hero-inner,
    .product-detail-layout,
    .project-detail-hero-inner,
    .project-detail-layout,
    .blog-detail-layout,
    .content-split,
    .detail-layout,
    .footer-grid,
    .footer-grid.is-1-2 {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .gallery-grid,
    .theme-gallery-albums,
    .theme-gallery-grid,
    .logo-grid,
    .logo-grid-inner,
    .info-grid,
    .stat-grid,
    .hero-stats,
    .service-list-grid,
    .service-process-grid,
    .product-list-grid,
    .project-list-grid,
    .reference-list-grid,
    .blog-list-grid,
    .contact-info-grid,
    .contact-main-grid,
    .not-found-links,
    .quote-simple-info,
    .quote-simple-process,
    .about-mission-grid,
    .about-values-grid,
    .home-service-grid,
    .home-product-grid,
    .home-project-layout,
    .home-blog-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-project-stack {
        grid-template-rows: none;
        grid-auto-rows: 1fr;
    }

    .home-slider.is-split .home-slider-inner {
        grid-template-columns: 1fr;
    }

    .home-slider-visual {
        justify-self: start;
        width: min(100%, 440px);
        aspect-ratio: 16 / 10;
    }

    .home-project-card,
    .home-project-card.is-featured,
    .home-project-card.is-compact {
        grid-template-columns: 1fr;
    }

    .home-project-card.is-featured {
        grid-template-rows: auto auto;
    }

    .section-head.with-action,
    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail-side {
        position: static;
    }

    .project-detail-side {
        position: static;
    }

    .blog-toc {
        position: static;
    }

    .product-detail-visual,
    .product-detail-visual img,
    .project-detail-visual,
    .project-detail-visual img {
        min-height: 340px;
    }

    .blog-list-card.is-featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .blog-featured-card,
    .blog-list-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-media {
        min-height: 340px;
    }

    .blog-list-card.is-featured .blog-list-media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .blog-list-media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .project-list-grid.is-view-masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-list-card.is-view-masonry,
    .project-list-card.is-view-masonry:nth-child(4n + 1) {
        grid-row: auto;
    }

    .project-detail-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

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

    .site-nav {
        top: 74px;
        left: 14px;
        right: 14px;
    }

    .site-header.is-position-overlay + .site-main .home-slider:first-child .home-slider-inner {
        padding-top: 118px;
    }

    .home-slider {
        min-height: 620px;
    }

    .home-slider-item {
        background:
            linear-gradient(180deg, rgba(17, 24, 39, var(--slider-overlay-strong, .9)), rgba(17, 24, 39, var(--slider-overlay-mid, .62))),
            var(--slider-mobile-bg, var(--slider-bg, linear-gradient(135deg, var(--secondary-color), #202938)));
        background-size: cover;
        background-position: center;
    }

    .home-slider-item.is-align-right .home-slider-copy,
    .home-slider-item.is-align-center .home-slider-copy {
        text-align: left;
    }

    .home-slider-item.is-align-right .home-slider-inner,
    .home-slider-item.is-align-center .home-slider-inner {
        justify-items: start;
    }

    .home-slider-item.is-align-right .hero-actions,
    .home-slider-item.is-align-center .hero-actions {
        justify-content: flex-start;
    }

    .home-slider.is-split .home-slider-inner {
        grid-template-columns: 1fr;
    }

    .home-slider-visual {
        display: none;
    }

    .site-header.is-mobile-fullscreen .site-nav {
        top: 0;
        left: 0;
        right: 0;
    }

    .header-cta {
        display: none;
    }

    .hero,
    .section,
    .page-hero {
        padding: 52px 0;
    }

    .card-grid,
    .gallery-grid,
    .theme-gallery-albums,
    .theme-gallery-grid,
    .logo-grid,
    .logo-grid-inner,
    .info-grid,
    .stat-grid,
    .hero-stats,
    .service-list-grid,
    .service-process-grid,
    .product-list-grid,
    .project-list-grid,
    .reference-list-grid,
    .blog-list-grid,
    .contact-info-grid,
    .contact-main-grid,
    .not-found-links,
    .quote-simple-info,
    .quote-simple-process,
    .about-mission-grid,
    .about-values-grid,
    .home-service-grid,
    .home-product-grid,
    .home-project-layout,
    .home-blog-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-list-grid.is-view-compact,
    .home-service-grid.is-view-compact,
    .product-list-grid.is-view-compact,
    .home-product-grid.is-view-compact,
    .blog-list-grid.is-view-horizontal,
    .home-blog-layout.is-view-horizontal,
    .blog-list-grid.is-view-editorial,
    .project-list-grid.is-view-standard,
    .project-list-grid.is-view-compact,
    .project-list-grid.is-view-masonry,
    .home-project-layout.is-view-standard,
    .home-project-layout.is-view-compact,
    .reference-list-grid.is-view-compact,
    .reference-logo-grid.is-view-compact,
    .reference-logo-grid.is-view-stripe {
        grid-template-columns: 1fr;
    }

    .blog-list-card.is-view-horizontal,
    .home-blog-card.is-view-horizontal,
    .reference-card.is-view-stripe,
    .service-list-card.is-view-compact {
        grid-template-columns: 1fr;
    }

    .content-split.is-reversed .content-body,
    .content-split.is-reversed .content-image {
        order: initial;
    }

    .custom-page-article {
        border-radius: 22px;
        padding: 24px 20px;
        font-size: 17px;
    }

    .home-project-card,
    .home-project-card.is-featured,
    .home-project-card.is-compact {
        grid-template-columns: 1fr;
    }

    .project-list-card.is-view-masonry:nth-child(4n + 1) .project-list-media,
    .project-list-card.is-view-masonry:nth-child(4n + 2) .project-list-media,
    .project-list-card.is-view-masonry:nth-child(4n + 3) .project-list-media {
        aspect-ratio: 16 / 10;
    }

    .project-detail-gallery {
        grid-template-columns: 1fr;
    }

    .project-detail-gallery a:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-lightbox-nav.is-prev {
        left: 10px;
    }

    .gallery-lightbox-nav.is-next {
        right: 10px;
    }

    .product-detail-hero {
        padding: 58px 0 36px;
    }

    .project-detail-hero {
        padding: 58px 0 36px;
    }

    .product-detail-actions,
    .product-detail-actions .btn-primary,
    .product-detail-actions .btn-outline,
    .project-detail-actions,
    .project-detail-actions .btn-primary,
    .project-detail-actions .btn-outline {
        width: 100%;
    }

    .blog-list-card.is-featured {
        grid-column: span 1;
    }

    .blog-featured-media {
        min-height: 260px;
    }

    .blog-detail-cover img {
        aspect-ratio: 4 / 3;
    }

    .blog-article {
        font-size: 17px;
    }

    .product-detail-gallery,
    .project-detail-gallery {
        grid-template-columns: 1fr;
    }

    .product-info-strip,
    .project-info-strip {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .reference-showcase .logo-card {
        min-height: 128px;
    }

    .product-list-foot,
    .product-list-foot div {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-quote-dialog {
        padding: 24px;
        border-radius: 20px;
    }

    .site-announcement-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-announcement-inner button {
        position: absolute;
        top: 8px;
        right: 12px;
    }

    .site-floating-widgets {
        top: auto;
        bottom: 14px;
        align-items: flex-end;
        flex-direction: column;
        transform: none;
    }

    .site-floating-widgets.is-left {
        align-items: flex-start;
    }

    .site-floating-actions,
    .site-floating-widgets.is-left .site-floating-actions {
        flex-direction: column;
        transform: translateY(10px);
    }

    .site-floating-widgets.is-right {
        right: 14px;
    }

    .site-floating-widgets.is-left {
        left: 14px;
    }

    .site-floating-action {
        width: auto;
        min-width: 150px;
        min-height: 48px;
    }

    .site-floating-toggle {
        width: 52px;
        min-width: 52px;
        min-height: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }

    .site-floating-widgets.is-right .site-floating-action,
    .site-floating-widgets.is-right .site-floating-toggle,
    .site-floating-widgets.is-left .site-floating-action,
    .site-floating-widgets.is-left .site-floating-toggle {
        border-radius: 999px;
    }

    .site-floating-toggle span {
        display: none;
    }

    .privacy-cookie-banner,
    .privacy-cookie-banner.is-bottom-left,
    .privacy-cookie-banner.is-bottom-right {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        transform: none;
    }

    .privacy-cookie-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .privacy-cookie-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .privacy-cookie-actions a,
    .privacy-cookie-actions button {
        justify-content: center;
        width: 100%;
        display: inline-flex;
        align-items: center;
    }

    .product-quote-head h2 {
        font-size: 26px;
    }

    .detail-main {
        padding: 24px;
    }

    .detail-cover {
        margin: -24px -24px 24px;
    }
}

/* Earna CMS integration */
.navbar .navbar-brand .text-logo,
.collapse-header .text-logo,
footer .text-logo,
.side .text-logo {
    display: inline-flex;
    align-items: center;
    min-height: 60px;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

footer .text-logo,
.side .text-logo {
    color: var(--white);
}

.top-bar-area a,
footer.bg-dark a {
    color: inherit;
}

.top-bar-area a:hover,
footer.bg-dark a:hover {
    color: var(--color-primary);
}

.attr-nav.attr-box .btn {
    margin-left: 20px;
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.footer-bottom-menu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-menu li {
    margin: 0;
    padding: 0;
}

.footer-bottom-menu .dropdown-menu {
    display: none;
}

.breadcrumb-area {
    margin-top: 0;
}

.builder-content,
.page-content,
.detail-content {
    font-family: var(--font-default);
}

@media (max-width: 991px) {
    .attr-nav.attr-box .btn {
        margin-left: 0;
    }

    .footer-bottom-menu {
        justify-content: flex-start;
        margin-top: 12px;
    }
}

.breadcrumb-description {
    margin: 14px auto 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.breadcrumb-description p,
.section-description p,
.banner-description p {
    margin: 0;
}

.banner-area .content .banner-description {
    margin-top: 22px;
    max-width: 580px;
    color: var(--color-paragraph);
    font-size: 18px;
    line-height: 1.75;
}

.section-description {
    color: var(--color-paragraph);
    line-height: 1.8;
}

.earna-page-content {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--border-default);
    background: var(--white);
    box-shadow: var(--box-shadow-primary);
}

.earna-page-content,
.earna-page-content p,
.earna-page-content li {
    color: var(--color-paragraph);
    font-size: 17px;
    line-height: 1.85;
}

.earna-page-content h2,
.earna-page-content h3,
.earna-page-content h4 {
    margin-top: 1.5em;
    color: var(--color-heading);
}

.earna-page-content h2:first-child,
.earna-page-content h3:first-child,
.earna-page-content h4:first-child {
    margin-top: 0;
}

.earna-page-content img {
    max-width: 100%;
    height: auto;
}

.earna-page-content a {
    color: var(--color-primary);
    font-weight: 700;
}

.earna-builder-page .builder-section:first-child {
    padding-top: 0;
}

.about-us-area .info > h4,
.services-heading h4 {
    color: var(--color-primary);
    font-weight: 800;
    text-transform: uppercase;
}

.feature-style-one {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.earna-filter-bar {
    display: grid;
    gap: 18px;
    margin: 0 0 34px;
}

.earna-search-form {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.earna-search-form input {
    width: 100%;
    height: 58px;
    padding: 0 62px 0 22px;
    border: 1px solid var(--border-default);
    border-radius: 999px;
    background: var(--white);
    font: inherit;
}

.earna-search-form button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--white);
}

.earna-category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.earna-category-filter a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid var(--border-default);
    border-radius: 999px;
    background: var(--white);
    color: var(--color-heading);
    font-weight: 700;
}

.earna-category-filter a.active,
.earna-category-filter a:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--white);
}

.earna-article-content,
.earna-article-content p,
.earna-article-content li {
    color: var(--color-paragraph);
    font-size: 17px;
    line-height: 1.85;
}

.earna-article-content h2,
.earna-article-content h3,
.earna-article-content h4 {
    margin-top: 1.6em;
    color: var(--color-heading);
}

.earna-article-content img {
    max-width: 100%;
    height: auto;
}

.earna-article-content blockquote {
    border-left: 4px solid var(--color-primary);
}

.cms-contact-form .privacy-form-consent {
    display: block;
    margin-bottom: 18px;
}

.earna-contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.earna-contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--white);
}

.feature-style-one-box {
    position: relative;
    margin-top: -60px;
    z-index: 2;
}

.feature-style-one {
    display: flex;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--border-default);
    background: var(--white);
    box-shadow: var(--box-shadow-primary);
}

.feature-style-one .icon {
    flex: 0 0 58px;
}

.feature-style-one .icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--white);
    font-size: 24px;
}

.feature-style-one h4 {
    margin-bottom: 8px;
    font-size: 20px;
}

.feature-style-one p {
    margin: 0;
    color: var(--color-paragraph);
}

.services-content .item.earna-service-card {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.earna-service-card > span {
    display: inline-flex;
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.earna-service-thumb {
    display: block;
    overflow: hidden;
    margin: -50px -35px 28px;
    aspect-ratio: 16 / 10;
}

.earna-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-process-style-one {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 34px 28px;
    border: 1px solid var(--border-default);
    background: var(--white);
    box-shadow: var(--box-shadow-primary);
}

.work-process-style-one > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.work-process-style-one > i {
    display: block;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 42px;
}

.work-process-style-one h4 {
    margin-bottom: 10px;
}

.work-process-style-one p {
    margin: 0;
}

.service-detail-main-image {
    overflow: hidden;
    margin: 0 0 28px;
    background: var(--bg-gray);
}

.service-detail-main-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.detail-side .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.product-content-panel .product-detail-visual,
.project-content-panel .project-detail-visual {
    min-height: auto;
    margin: 0 0 28px;
    border: 0;
    border-radius: 0;
    background: var(--bg-gray);
    box-shadow: none;
    color: var(--color-primary);
}

.product-content-panel .product-detail-visual img,
.project-content-panel .project-detail-visual img {
    min-height: 320px;
    max-height: 520px;
    object-fit: cover;
}

.product-content-panel .product-detail-visual.is-placeholder,
.project-content-panel .project-detail-visual.is-placeholder {
    min-height: 300px;
    color: var(--color-primary);
}

.quote-feature-box {
    margin-bottom: 40px;
}

.quote-simple-card {
    border-radius: 0;
}

.product-quote-form .btn,
.quote-simple-form .btn,
.product-detail-quote .btn {
    width: 100%;
    justify-content: center;
}

.site-heading .btn + .btn {
    margin-left: 10px;
}
