/* Nova 6 product landing page */

.nova6-page {
    --nova6-blue: #0072ba;
    --nova6-blue-dark: #0777be;
    --nova6-blue-light: #3ba4ff;
    --nova6-purple: #8d54f3;
    --nova6-cyan: #2ce7fe;
    --nova6-gray: #d9d9d9;
    --nova6-radius-lg: 39px;
    --nova6-radius-xl: 61px;
    --nova6-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    --nova6-shadow-soft: 0 4px 4px rgba(0, 0, 0, 0.11);
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #000;
    overflow-x: hidden;
    width: 100%;
}

/* Break out of any theme content wrapper for full-bleed sections */
.site-main:has(.nova6-page),
#primary.site-main:has(.nova6-page) {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.nova6-page *,
.nova6-page *::before,
.nova6-page *::after {
    box-sizing: border-box;
}

.nova6-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nova6-page a:not(.nova6-btn) {
    color: var(--nova6-blue);
}

/* Buttons */

.nova6-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 17px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nova6-btn:hover,
.nova6-page a.nova6-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff;
}

.nova6-btn--outline {
    min-width: 120px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.nova6-hero .nova6-btn--outline {
    background: rgba(255, 255, 255, 0.12);
}

.nova6-btn--gradient {
    min-height: 61px;
    padding: 14px 24px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(138deg, var(--nova6-blue) 5%, var(--nova6-blue-light) 98%);
}

.nova6-btn--gradient-cyan {
    background: linear-gradient(138deg, var(--nova6-blue) 5%, var(--nova6-cyan) 50%, var(--nova6-blue-light) 98%);
}

.nova6-btn--gradient-purple {
    background: linear-gradient(136deg, var(--nova6-purple) 12%, var(--nova6-blue) 62%, var(--nova6-blue-light) 98%);
}

/* Section titles */

.nova6-section {
    padding: 72px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nova6-section__title {
    margin: 0 0 48px;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
}

.nova6-section__title--gradient {
    background: linear-gradient(158deg, rgba(0, 114, 186, 0.94) 1%, rgba(59, 164, 255, 0.94) 98%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nova6-section__title--cyan {
    background: linear-gradient(147deg, rgba(0, 114, 186, 0.94) 5%, rgba(44, 231, 254, 0.94) 50%, rgba(59, 164, 255, 0.94) 98%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nova6-section__title--purple {
    background: linear-gradient(146deg, rgba(141, 84, 243, 0.94) 12%, rgba(0, 114, 186, 0.94) 62%, rgba(59, 164, 255, 0.94) 98%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero  full viewport width */

.nova6-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 26px 24px 56px;
    border-radius: 0 0 var(--nova6-radius-xl) var(--nova6-radius-xl);
    background: linear-gradient(117deg, rgba(0, 114, 186, 0.94) 1%, rgba(59, 164, 255, 0.94) 98%);
    box-shadow: var(--nova6-shadow);
    color: #fff;
}

.nova6-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.nova6-hero__breadcrumb {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
}

.nova6-hero__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.nova6-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.nova6-hero__product-name {
    margin: 0 0 24px;
    font-size: 40px;
    font-weight: 800;
}

.nova6-hero__layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nova6-hero__sizes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nova6-hero__size {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 7px;
    background: #fff;
    color: #000;
    font-family: inherit;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
}

.nova6-hero__size.is-active {
    outline: 2px solid #fff;
    outline-offset: 2px;
    font-weight: 600;
}

.nova6-hero__figure {
    margin: 0;
    flex: 0 1 688px;
}

.nova6-hero__figure img {
    width: 100%;
    max-width: 688px;
    margin: 0 auto;
}

.nova6-hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 12px;
}

.nova6-hero__dots span {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.nova6-hero__dots span.is-active {
    width: 17px;
    height: 17px;
    background: #fff;
}

.nova6-hero__tagline {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
}

.nova6-hero__desc {
    max-width: 780px;
    margin: 0 auto 24px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.nova6-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Details carousel */

.nova6-details__card {
    background: #fff;
    border-radius: var(--nova6-radius-lg);
    box-shadow: var(--nova6-shadow-soft);
    padding: 44px 40px;
}

.nova6-details__card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.nova6-details__card-text h3 {
    margin: 0 0 24px;
    color: var(--nova6-blue);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
}

.nova6-details__card-text p {
    margin: 16px 0 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.nova6-spec-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 33px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nova6-spec-icons__label {
    display: block;
    font-size: 11px;
    font-weight: 200;
    text-align: center;
    max-width: 60px;
    line-height: 1.2;
}

.nova6-details__card-media {
    margin: 0;
    text-align: center;
}

.nova6-details__card-media img {
    margin: 0 auto;
    max-height: 420px;
    object-fit: contain;
}

.nova6-details__pagination {
    position: static !important;
    margin-top: 32px;
}

.nova6-details__pagination .swiper-pagination-bullet {
    width: 28px;
    height: 28px;
    opacity: 1;
    background: var(--nova6-gray);
    margin: 0 7px !important;
}

.nova6-details__pagination .swiper-pagination-bullet-active {
    background: var(--nova6-blue-dark);
}

/* Software sections */

.nova6-software__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.nova6-software__grid--reverse {
    direction: rtl;
}

.nova6-software__grid--reverse > * {
    direction: ltr;
}

.nova6-software__content h3 {
    margin: 0 0 16px;
    color: var(--nova6-blue);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.nova6-software__content p {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.45;
}

.nova6-software__visual {
    margin: 0;
    text-align: center;
}

.nova6-software__visual img {
    margin: 0 auto;
}

.nova6-software--lock .nova6-software__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
}

/* Features carousel */

.nova6-features {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.nova6-features .nova6-section__title {
    padding: 0 24px;
}

.nova6-features__carousel {
    padding: 0 24px 24px;
    overflow: hidden;
}

.nova6-feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    padding: 31px 38px;
    background: #fff;
    border-radius: 40px;
    box-shadow: var(--nova6-shadow);
}

.nova6-feature-card > img {
    flex: 0 0 auto;
    max-height: 280px;
    width: auto;
    margin: 0 auto 24px;
    object-fit: contain;
}

.nova6-feature-card__body h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 800;
}

.nova6-feature-card__body p {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.45;
}

.nova6-features__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 24px;
}

.nova6-features__nav {
    display: flex;
    gap: 34px;
}

.nova6-features__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    border: 0;
    border-radius: 35px;
    background: var(--nova6-gray);
    cursor: pointer;
    transition: background 0.2s ease;
}

.nova6-features__arrow:hover {
    background: #c4c4c4;
}

.nova6-features__arrow-icon {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--nova6-blue);
    border-bottom: 3px solid var(--nova6-blue);
    transform: rotate(-45deg);
    margin-left: -4px;
}

.nova6-features__arrow--prev .nova6-features__arrow-icon {
    transform: rotate(135deg);
    margin-left: 4px;
}

/* CTA */

.nova6-cta {
    max-width: 1330px;
}

.nova6-cta__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: #fff;
    border-radius: 36px;
    box-shadow: var(--nova6-shadow);
}

.nova6-cta__content h2 {
    margin: 0 0 20px;
    color: var(--nova6-blue);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.nova6-cta__content p {
    margin: 0 0 28px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.45;
}

.nova6-cta__media {
    margin: 0;
}

.nova6-cta__media img {
    border-radius: 41px;
    width: 100%;
    object-fit: cover;
}

/* Responsive */

@media (max-width: 992px) {
    .nova6-details__card-body,
    .nova6-software__grid,
    .nova6-cta__card {
        grid-template-columns: 1fr;
    }

    .nova6-software__grid--reverse {
        direction: ltr;
    }

    .nova6-software__visual {
        order: -1;
    }

    .nova6-software__content p,
    .nova6-feature-card__body p,
    .nova6-cta__content p {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .nova6-section {
        padding: 48px 16px;
    }

    .nova6-hero {
        padding: 20px 16px 40px;
        border-radius: 0 0 32px 32px;
    }

    .nova6-hero__layout {
        flex-direction: column;
    }

    .nova6-hero__sizes {
        flex-direction: row;
        justify-content: center;
    }

    .nova6-feature-card {
        min-height: auto;
        padding: 24px;
    }

    .nova6-features__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .nova6-features__nav {
        justify-content: center;
    }

    .nova6-cta__card {
        padding: 28px 20px;
    }

    .nova6-btn--gradient {
        font-size: 18px;
        min-height: 52px;
    }
}
