:root {
    --site-ink: #13202d;
    --site-muted: #52616f;
    --site-line: #d8e1ec;
    --site-surface: #ffffff;
    --site-soft: #f4f7fb;
    --site-primary: #0f6fb3;
    --site-primary-dark: #0f4c81;
    --site-accent: #20a67a;
    --site-warm: #f06b4f;
    --site-focus: #ffbf47;
    --site-header-height: 100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.xsoft-site {
    margin: 0;
    background: var(--site-surface);
    color: var(--site-ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--site-focus);
    outline-offset: 3px;
}

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

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    background: var(--site-primary-dark);
    color: #fff;
    z-index: 1000;
}

.site-shell {
    width: min(1238px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
}

.site-header__inner {
    min-height: var(--site-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 88px;
}

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

.site-brand img {
    width: 142px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 22px;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: #6d6d6d;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: var(--site-primary);
    color: #fff;
}

.site-nav__item.has-dropdown .site-nav__link span {
    font-weight: 900;
}

.site-nav__link--cta {
    background: var(--site-primary);
    color: #fff;
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 240px;
    padding: 8px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(19, 32, 45, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.site-nav__dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--site-ink);
    text-decoration: none;
}

.site-nav__dropdown a:hover {
    background: var(--site-soft);
    color: var(--site-primary-dark);
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__actions,
.hero__actions,
.product-card__actions,
.cta-band__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav__languages {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-left: 8px;
}

.site-nav__language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 14px;
    text-decoration: none;
}

.site-nav__language img {
    width: 16px;
    height: auto;
}

.site-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.site-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--site-ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

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

.btn--primary {
    background: var(--site-primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--site-primary-dark);
}

.btn--secondary {
    background: #eaf6f2;
    color: #11674f;
    border-color: #bde1d5;
}

.btn--ghost {
    background: #fff;
    color: var(--site-primary-dark);
    border-color: var(--site-line);
}

.btn--light {
    background: #fff;
    color: var(--site-primary-dark);
}

.btn--ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
}

.text-link {
    color: var(--site-primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #101820;
}

.hero--carousel {
    align-items: stretch;
}

.hero--compact {
    min-height: 470px;
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.82s ease, visibility 0.82s;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero__image,
.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media {
    background: #102333;
    transform: scale(1.035);
    min-width: 100%;
    min-height: 100%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 3px 3px,
        linear-gradient(90deg, rgba(6, 10, 16, 0.76), rgba(6, 10, 16, 0.56), rgba(6, 10, 16, 0.72));
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 36px 0 92px 48px;
    color: #fff;
}

.hero__content h1,
.hero__content h2 {
    max-width: 690px;
    margin: 0 0 22px;
    font-size: clamp(48px, 5vw, 86px);
    line-height: 1.12;
    letter-spacing: 0;
    color: #fff;
    font-weight: 800;
}

.hero__content p {
    max-width: 760px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.38;
    font-weight: 500;
}

.hero__content .section-eyebrow {
    color: #fff;
}

.hero__cta {
    min-width: 164px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 3px;
    font-size: 0.84rem;
    letter-spacing: 0.01em;
}

.hero__controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__arrow,
.hero__dots button {
    pointer-events: auto;
}

.hero__arrow {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 3px;
    background: rgba(116, 121, 128, 0.72);
    color: #fff;
    cursor: pointer;
    font-size: 3.35rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.16s ease;
}

.hero__arrow[data-hero-prev] {
    left: 0;
}

.hero__arrow[data-hero-next] {
    right: 0;
}

.hero__arrow:hover {
    background: rgba(116, 121, 128, 0.94);
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.hero__dots button {
    width: 17px;
    height: 17px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: rgba(161, 166, 172, 0.86);
    cursor: pointer;
}

.hero__dots button.is-active {
    width: 17px;
    background: transparent;
    border-color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.hero__slide.is-active .hero__media {
    animation: hero-media-drift 7.2s ease-out forwards;
}

@keyframes hero-media-drift {
    from {
        transform: scale(1.035);
    }

    to {
        transform: scale(1.085);
    }
}

.section {
    padding: 84px 0;
}

.section--muted {
    background: var(--site-soft);
}

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

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-eyebrow {
    margin: 0 0 10px;
    color: var(--site-warm);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section h2,
.section-heading h2,
.cta-band h2,
.subhero h1 {
    margin: 0;
    color: var(--site-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section p,
.subhero p {
    color: var(--site-muted);
}

.remote-admin__grid,
.split-content,
.subhero__grid,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: center;
}

.home-services {
    padding: 118px 0 96px;
    background: #fff;
}

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

.home-service {
    max-width: 275px;
    margin: 0 auto;
    text-align: center;
}

.home-service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    color: #075cb4;
}

.home-service__icon svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-service h2 {
    margin: 0 0 18px;
    color: #050b13;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 800;
}

.home-service p {
    margin: 0;
    color: #6a7280;
    font-size: 1rem;
    line-height: 1.45;
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.is-visible {
    opacity: 1;
}

.cards-grid,
.product-grid {
    display: grid;
    gap: 18px;
}

.cards-grid--three,
.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.product-card,
.quote-card,
.contact-card,
.contact-form,
.contact-aside {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.feature-card,
.quote-card {
    padding: 22px;
}

.feature-card h3,
.product-card h3,
.quote-card strong,
.contact-card h2,
.contact-aside h2 {
    margin: 0 0 8px;
    color: var(--site-ink);
    font-size: 1.08rem;
}

.feature-card p,
.quote-card p {
    margin: 0;
}

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

.product-card {
    overflow: hidden;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--site-line);
}

.product-card__body {
    padding: 18px;
}

.product-card__body p {
    min-height: 72px;
}

.remote-admin {
    background: #f9fbfd;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
}

.pill-list span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #eaf6f2;
    color: #11674f;
    font-weight: 800;
}

.framed-media,
.subhero__media {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.framed-media img,
.subhero__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.video-shell {
    overflow: hidden;
    border-radius: 8px;
    background: #111827;
}

.video-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.product-landing-hero {
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
}

.product-landing-hero__overlay {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 3px 3px,
        linear-gradient(90deg, rgba(4, 8, 14, 0.8), rgba(4, 8, 14, 0.6), rgba(4, 8, 14, 0.72));
}

.product-landing-hero__content {
    max-width: 1280px;
}

.product-landing-hero__logo {
    width: min(220px, 72vw);
    height: auto;
    max-height: 96px;
    margin: 0 0 22px;
    object-fit: contain;
}

.product-detail-section,
.product-invoice {
    background: #fff;
}

.product-detail-section:nth-of-type(even) {
    background: var(--site-soft);
}

.product-detail-section__grid,
.product-invoice__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 52px;
    align-items: center;
}

.product-detail-section--reverse .product-detail-section__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.product-detail-section--reverse .product-detail-section__media {
    order: -1;
}

.product-detail-section h2,
.product-invoice h2,
.product-landing-cta h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.product-detail-section p,
.product-invoice p {
    max-width: 680px;
    margin: 18px 0 26px;
    color: var(--site-muted);
    font-size: 1.08rem;
}

.product-detail-section__media,
.product-invoice__media,
.product-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.product-detail-section__media img,
.product-invoice__media img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.product-features {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 24, 76, 0.92), rgba(0, 24, 76, 0.94)),
        var(--product-features-bg, none) center / cover no-repeat,
        #00184c;
}

.product-features .section-heading h2,
.product-features .section-heading p {
    color: #fff;
}

.product-features .section-eyebrow {
    color: #b8e63b;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 66px 34px;
}

.product-feature {
    min-width: 0;
    text-align: center;
}

.product-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    color: #b8e63b;
}

.product-feature__icon svg {
    width: 82px;
    height: 82px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-feature h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.16rem;
    line-height: 1.26;
}

.product-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.5;
}

.product-gallery {
    background: var(--site-soft);
}

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

.product-gallery__item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: var(--site-line);
}

.product-landing-cta {
    padding: 68px 0;
    background: var(--site-primary-dark);
    color: #fff;
}

.product-landing-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.product-landing-cta p {
    max-width: 680px;
    margin: 10px 0 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 38px;
}

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

.faq-item {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px;
    border: 0;
    background: transparent;
    color: var(--site-ink);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: left;
}

.faq-item button span:first-child {
    min-width: 0;
}

.faq-item__chevron {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin: -4px 2px 0 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.16s ease, margin 0.16s ease;
}

.faq-item button[aria-expanded="true"] .faq-item__chevron {
    margin-top: 4px;
    transform: rotate(225deg);
}

.faq-item__body {
    display: none;
    padding: 0 18px 18px;
}

.faq-item__body.is-open {
    display: block;
}

.quote-card {
    min-height: 180px;
}

.testimonials-carousel {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background-image: var(--testimonials-bg);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.testimonials-carousel__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 52% 35%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(12, 22, 30, 0.84), rgba(29, 43, 44, 0.72)),
        radial-gradient(rgba(255, 255, 255, 0.18) 0.7px, transparent 0.8px);
    background-size: auto, auto, 4px 4px;
}

.testimonials-carousel__inner {
    position: relative;
    z-index: 1;
    padding: 76px 0 88px;
}

.testimonials-carousel h2 {
    width: min(860px, 100%);
    margin: 0 auto 16px;
    color: #fff;
    font-size: clamp(1.25rem, 2.2vw, 1.62rem);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.testimonials-carousel__viewport {
    position: relative;
    min-height: 360px;
    margin: 0 auto;
}

.testimonials-carousel__page {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonials-carousel__page.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.testimonial-card {
    min-width: 0;
    color: #fff;
}

.testimonial-card__bubble {
    position: relative;
    min-height: 262px;
    padding: 28px 34px 32px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
}

.testimonial-card__bubble::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50px;
    width: 0;
    height: 0;
    border-top: 16px solid rgba(255, 255, 255, 0.32);
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
}

.testimonial-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.25;
}

.testimonial-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.62;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0 0 34px;
}

.testimonial-card__person img {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    object-fit: cover;
}

.testimonial-card__person strong,
.testimonial-card__person span {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
}

.testimonial-card__person span {
    font-weight: 800;
}

.testimonials-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 66px;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.34);
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials-carousel__arrow:hover,
.testimonials-carousel__arrow:focus {
    background: rgba(255, 255, 255, 0.48);
    transform: translateY(-50%) scale(1.02);
}

.testimonials-carousel__arrow--prev {
    left: max(-98px, calc((100vw - 100%) / -2 + 14px));
}

.testimonials-carousel__arrow--next {
    right: max(-98px, calc((100vw - 100%) / -2 + 14px));
}

.testimonials-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonials-carousel__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.testimonials-carousel__dots button.is-active {
    border-color: #fff;
    background: transparent;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.subhero {
    padding: 118px 0 72px;
    background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.subhero--contact {
    background: #f8fbfe;
}

.check-list,
.timeline-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li,
.timeline-list li {
    padding: 12px 14px;
    border-left: 4px solid var(--site-accent);
    border-radius: 6px;
    background: #fff;
    color: var(--site-ink);
    font-weight: 800;
}

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

.media-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    background: var(--site-line);
}

.cta-band {
    padding: 60px 0;
    background: var(--site-primary-dark);
    color: #fff;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.cta-band p {
    margin: 8px 0 0;
}

.contact-card,
.contact-form,
.contact-aside {
    padding: 24px;
}

.contact-card a,
.contact-aside a {
    display: block;
    margin-top: 10px;
    color: var(--site-primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.contact-card a:hover,
.contact-aside a:hover {
    text-decoration: underline;
}

.contact-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 320px;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--site-ink);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #bdcad8;
    border-radius: 8px;
    padding: 12px;
    color: var(--site-ink);
    font: inherit;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 3px rgba(15, 111, 179, 0.16);
    outline: 0;
}

.field-error {
    color: #b42318;
    font-size: 0.88rem;
    font-weight: 700;
}

.form-alert {
    margin-bottom: 18px;
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-alert--success {
    background: #e8f7ef;
    color: #11674f;
}

.form-alert--error {
    background: #fff0ed;
    color: #b42318;
}

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

.site-footer {
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 101, 181, 0.16), transparent 30%),
        linear-gradient(180deg, #252525 0%, #1f1f1f 100%);
    color: rgba(255, 255, 255, 0.66);
}

.site-footer__notice {
    padding: 44px 0 30px;
}

.site-footer__notice-inner {
    max-width: 880px;
}

.site-footer__notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.7;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #21a3e8;
    text-decoration: none;
}

.site-footer__notice a {
    color: #1589d2;
}

.site-footer__notice strong {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 34px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 138px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand-panel img {
    width: min(230px, 100%);
    max-height: 112px;
    object-fit: contain;
}

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

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.site-footer__nav-group a {
    display: block;
    width: fit-content;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.35;
}

.site-footer__copyright {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.16);
}

.site-footer__copyright-inner {
    display: flex;
    align-items: center;
    min-height: 58px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.whatsapp-float__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 23px;
    padding: 0 15px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(19, 32, 45, 0.16);
}

.whatsapp-float__bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
}

.whatsapp-float__bubble img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.is-broken-media {
    min-height: 220px;
    background: repeating-linear-gradient(45deg, #eef2f7, #eef2f7 10px, #e5ebf2 10px, #e5ebf2 20px);
}

@media (max-width: 1040px) {
    :root {
        --site-header-height: 76px;
    }

    .site-header__inner {
        min-height: var(--site-header-height);
    }

    .site-menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        top: var(--site-header-height);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 18px;
        border-bottom: 1px solid var(--site-line);
        background: #fff;
        box-shadow: 0 16px 30px rgba(19, 32, 45, 0.12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__link {
        width: 100%;
        justify-content: space-between;
    }

    .site-nav__dropdown {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 4px 0 8px;
    }

    .site-nav__dropdown.is-open {
        display: block;
    }

    .site-nav__actions {
        margin: 8px 0 0;
    }

    .site-nav__languages {
        justify-content: flex-start;
        margin: 10px 0 0;
        padding: 8px 12px;
    }

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

    .product-features__grid,
    .product-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .hero__content {
        min-height: 620px;
        padding: 70px 54px 86px 24px;
    }

    .hero__content h1,
    .hero__content h2 {
        font-size: clamp(42px, 10vw, 64px);
        max-width: 560px;
    }

    .hero__content p {
        font-size: 1.08rem;
    }

    .hero__arrow {
        width: 48px;
        height: 58px;
        font-size: 2.8rem;
    }

    .remote-admin__grid,
    .split-content,
    .product-detail-section__grid,
    .product-invoice__grid,
    .subhero__grid,
    .contact-layout,
    .faq-grid,
    .product-landing-cta__inner,
    .cta-band__inner {
        grid-template-columns: 1fr;
    }

    .product-detail-section__grid,
    .product-invoice__grid {
        gap: 28px;
    }

    .product-detail-section--reverse .product-detail-section__grid {
        grid-template-columns: 1fr;
    }

    .product-detail-section--reverse .product-detail-section__media {
        order: 0;
    }

    .product-landing-cta__inner {
        display: grid;
    }

    .home-services {
        padding: 84px 0 76px;
    }

    .home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 28px;
    }

    .cta-band__inner {
        display: grid;
    }

    .cards-grid--three,
    .cards-grid--six {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        min-height: 0;
    }

    .testimonials-carousel__inner {
        padding: 64px 0 72px;
    }

    .testimonials-carousel__viewport {
        min-height: 360px;
    }

    .testimonials-carousel__page {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .testimonial-card__bubble {
        min-height: 196px;
    }

    .testimonials-carousel__arrow {
        width: 46px;
        height: 56px;
        font-size: 2.7rem;
    }

    .testimonials-carousel__arrow--prev {
        left: max(-14px, calc((100vw - 100%) / -2 + 8px));
    }

    .testimonials-carousel__arrow--next {
        right: max(-14px, calc((100vw - 100%) / -2 + 8px));
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 0 36px;
    }

    .site-footer__brand-panel {
        justify-content: flex-start;
        min-height: auto;
        padding-right: 0;
        padding-bottom: 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

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

    .field-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        gap: 20px;
    }

    .product-features__grid {
        gap: 46px 26px;
    }
}

@media (max-width: 560px) {
    :root {
        --site-header-height: 68px;
    }

    .site-shell {
        width: min(100% - 24px, 1160px);
    }

    .site-header__inner {
        min-height: var(--site-header-height);
    }

    .site-brand img {
        width: 118px;
    }

    .site-nav {
        top: var(--site-header-height);
    }

    .hero {
        min-height: 600px;
    }

    .hero__content {
        min-height: 600px;
        padding: 56px 38px 86px 14px;
    }

    .hero__content h1,
    .hero__content h2 {
        font-size: 38px;
        line-height: 1.12;
    }

    .hero__content p {
        margin-bottom: 24px;
    }

    .product-landing-hero__content {
        padding-right: 46px;
    }

    .home-services {
        padding: 66px 0;
    }

    .home-services__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-service__icon {
        margin-bottom: 18px;
    }

    .hero__cta {
        min-width: 142px;
        min-height: 48px;
        padding: 0 18px;
    }

    .hero__arrow {
        width: 38px;
        height: 50px;
        font-size: 2.4rem;
    }

    .testimonials-carousel {
        min-height: 0;
    }

    .testimonials-carousel__inner {
        padding: 52px 0 68px;
    }

    .testimonials-carousel h2 {
        font-size: 1.18rem;
    }

    .testimonials-carousel__viewport {
        min-height: 360px;
    }

    .testimonial-card__bubble {
        min-height: 214px;
        padding: 24px 24px 28px;
    }

    .testimonial-card__person {
        margin-left: 24px;
    }

    .testimonials-carousel__arrow {
        width: 38px;
        height: 50px;
        font-size: 2.4rem;
    }

    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float__bubble {
        width: 60px;
        height: 60px;
    }

    .section {
        padding: 62px 0;
    }

    .subhero {
        padding: 96px 0 56px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-features__grid,
    .product-gallery__grid {
        grid-template-columns: 1fr;
    }

    .product-feature {
        max-width: 330px;
        margin: 0 auto;
    }

    .product-detail-section__media img,
    .product-invoice__media img {
        min-height: 240px;
    }

    .product-landing-cta__inner .btn {
        width: 100%;
    }

    .btn,
    .site-nav__actions .btn,
    .subhero .hero__actions .btn {
        width: 100%;
    }

    .site-footer__notice {
        padding: 34px 0 24px;
    }

    .site-footer__notice p {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .site-footer__brand-panel {
        justify-content: center;
    }

    .site-footer__brand-panel img {
        width: 190px;
    }

    .site-footer__sitemap {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .site-footer__nav-group a {
        width: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .site-footer__copyright-inner {
        justify-content: center;
        min-height: 56px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
