:root {
    --blue: #0b5cab;
    --cyan: #00a9e0;
    --green: #38a835;
    --ink: #17202a;
    --soft: #f3f8fb;
    --container-pad: max(1.5rem, calc((100vw - 80rem) / 2));
}

body {
    min-width: 320px;
}

body.modal-open {
    overflow: hidden;
}

body.promo-open,
body.rental-application-open {
    overflow: hidden;
}

a,
button,
input,
select,
textarea {
    outline-color: var(--cyan);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border-radius: 999px;
    padding: .65rem .9rem;
    font-size: .83rem;
    font-weight: 700;
    color: rgba(23, 32, 42, .74);
    transition: .2s ease;
}

.nav-link svg {
    width: .9rem;
    height: .9rem;
}

.nav-dropdown {
    position: relative;
    padding-bottom: .75rem;
    margin-bottom: -.75rem;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% - .15rem);
    left: 0;
    display: grid;
    width: 250px;
    gap: .15rem;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: .6rem;
    background: #fff;
    padding: .65rem;
    box-shadow: 0 20px 55px rgba(23, 32, 42, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: .18s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    border-radius: .45rem;
    padding: .68rem .75rem;
    color: rgba(23, 32, 42, .72);
    font-size: .82rem;
    font-weight: 800;
}

.nav-dropdown-panel a:hover {
    background: rgba(11, 92, 171, .08);
    color: var(--blue);
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(11, 92, 171, .09);
    color: var(--blue);
}

.mobile-nav {
    display: grid;
    gap: .2rem;
    border-top: 1px solid rgba(23, 32, 42, .08);
    padding: .75rem 1rem 1.25rem;
    background: #fff;
}

.mobile-nav a {
    border-radius: .6rem;
    padding: .8rem;
    font-weight: 700;
}

.mobile-nav .mobile-sub {
    margin-left: .8rem;
    padding: .55rem .8rem;
    color: rgba(23, 32, 42, .68);
    font-size: .88rem;
}

.btn,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .7rem;
    min-height: 2.75rem;
    font-weight: 800;
    transition: .2s ease;
}

.btn {
    padding: .8rem 1.05rem;
    font-size: .9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #0875bc);
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 92, 171, .18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(11, 92, 171, .25);
}

.btn-ghost {
    color: var(--blue);
    background: rgba(11, 92, 171, .08);
}

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

.icon-button {
    width: 2.75rem;
    color: var(--blue);
    background: rgba(11, 92, 171, .08);
}

.icon-button svg,
.feature-card svg,
.info-panel svg,
.rental-card svg {
    width: 1.3rem;
    height: 1.3rem;
}

.hero {
    position: relative;
    height: clamp(620px, 82vh, 860px);
    overflow: hidden;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.hero-image,
.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay,
.page-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(6, 20, 34, .88), rgba(6, 20, 34, .68) 42%, rgba(6, 20, 34, .12) 78%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100%;
    width: min(820px, 92vw);
    max-width: none;
    flex-direction: column;
    justify-content: center;
    padding: 5rem var(--container-pad) 7rem;
    color: #fff;
}

@media (min-width: 900px) {
    .hero-content {
        box-sizing: content-box;
        width: min(820px, 60vw);
    }
}

.hero-content h1,
.page-hero h1,
.page-title h1 {
    max-width: 920px;
    font-size: clamp(2.15rem, 4.25vw, 4.45rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(1.9rem, 3.25vw, 3.65rem);
    line-height: 1.08;
}

.hero-content > h1:first-child {
    margin-top: 0;
}

.hero-content p:not(.eyebrow) {
    margin-top: 1rem;
    max-width: 720px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.45rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    padding: .55rem .75rem;
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero-proof svg {
    width: 1rem;
    height: 1rem;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .45;
}

.swiper-pagination-bullet-active {
    background: var(--green);
    opacity: 1;
}

.brand-strip {
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    background: #fff;
    padding: 1.35rem 0;
}

.brand-logo-card {
    display: flex;
    min-width: 132px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    padding: .8rem 1rem;
    box-shadow: 0 10px 28px rgba(23, 32, 42, .05);
}

.brand-logo-card img {
    max-width: 112px;
    max-height: 34px;
    object-fit: contain;
}

.eyebrow {
    margin-bottom: .85rem;
    color: var(--green);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-grid {
    display: grid;
    max-width: 80rem;
    gap: clamp(2rem, 5vw, 5rem);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 900px) {
    .section-grid {
        grid-template-columns: .9fr 1.1fr;
        padding: 0 2rem;
    }
}

.section-title {
    max-width: 720px;
    font-size: clamp(1.9rem, 3.5vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--blue);
    font-weight: 800;
    white-space: nowrap;
}

.link-action svg {
    width: 1rem;
    height: 1rem;
}

.feature-card,
.info-panel,
.rental-card,
.blog-card,
.contact-aside,
.contact-form {
    border: 1px solid rgba(23, 32, 42, .09);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 16px 45px rgba(23, 32, 42, .06);
}

.feature-card,
.info-panel,
.rental-card,
.blog-card {
    padding: 1.35rem;
}

.blog-card {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.blog-card > img {
    width: calc(100% + 2.7rem);
    max-width: none;
    height: 180px;
    object-fit: cover;
    margin: -1.35rem -1.35rem 1.1rem;
    border-radius: .5rem .5rem 0 0;
}

.feature-card svg,
.info-panel svg,
.rental-card svg {
    margin-bottom: 1.15rem;
    color: var(--blue);
}

.feature-card h3,
.info-panel h2,
.rental-card h2,
.blog-card h2 {
    margin-bottom: .5rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.feature-card p,
.info-panel p,
.rental-card p,
.blog-card p,
.prose-block p {
    color: rgba(23, 32, 42, .68);
    line-height: 1.75;
}

.feature-card-link {
    display: block;
}

.feature-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(23, 32, 42, .09);
}

.product-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.product-swiper {
    overflow: hidden;
    padding: .35rem .2rem 1rem;
}

.product-swiper .swiper-slide,
.course-swiper .swiper-slide {
    height: auto;
}

.product-swiper .product-card,
.course-swiper .course-card {
    height: 100%;
}

.course-swiper {
    overflow: hidden;
    padding: .35rem .2rem 1rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.carousel-button {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 32, 42, .12);
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    box-shadow: 0 10px 24px rgba(23, 32, 42, .08);
}

.carousel-button svg {
    width: 1.1rem;
    height: 1.1rem;
}

.product-pagination {
    position: static;
    display: inline-flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
}

.product-pagination .swiper-pagination-bullet,
.course-pagination .swiper-pagination-bullet {
    background: var(--blue);
}

.course-pagination {
    position: static;
    display: inline-flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(23, 32, 42, .08);
}

.product-card-media {
    display: block;
}

.product-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #eef5f8;
    padding: .7rem;
}

.product-card-body {
    display: grid;
    grid-template-rows: auto auto minmax(7.1rem, auto) minmax(6.4rem, auto) auto;
    padding: 1.25rem;
}

.product-card span,
.product-card small,
.blog-card span {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    margin: .7rem 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.product-card p {
    min-height: 0;
    color: rgba(23, 32, 42, .68);
    line-height: 1.65;
}

.product-card ul {
    display: grid;
    align-content: start;
    gap: .45rem;
    margin: 1rem 0;
    color: rgba(23, 32, 42, .75);
    font-size: .88rem;
}

.product-card li {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.product-card li svg {
    width: .95rem;
    height: .95rem;
    color: var(--green);
    flex: 0 0 auto;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    align-self: end;
    border-top: 1px solid rgba(23, 32, 42, .08);
    padding-top: 1rem;
    font-weight: 800;
    color: var(--blue);
}

.product-actions button {
    text-align: right;
}

.course-hero p:not(.eyebrow) {
    margin-top: 1.15rem;
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.course-hero > div {
    max-width: 820px;
}

.course-hero h1 {
    max-width: 780px;
    font-size: clamp(1.9rem, 3.25vw, 3.65rem);
    line-height: 1.04;
}

.course-mode-nav {
    position: sticky;
    top: 79px;
    z-index: 25;
    display: flex;
    justify-content: center;
    gap: .75rem;
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    background: rgba(255, 255, 255, .92);
    padding: .8rem var(--container-pad);
    backdrop-filter: blur(12px);
}

.course-mode-nav a {
    display: inline-flex;
    min-height: 2.65rem;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: 999px;
    background: #fff;
    padding: .7rem 1rem;
    color: rgba(23, 32, 42, .74);
    font-size: .84rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(23, 32, 42, .06);
}

.course-mode-nav a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.course-mode-nav svg {
    width: 1rem;
    height: 1rem;
}

.course-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.course-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(23, 32, 42, .08);
}

.course-card-media {
    position: relative;
    display: block;
}

.course-card-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #eef5f8;
}

.course-card-media span {
    position: absolute;
    top: .75rem;
    left: .75rem;
    border-radius: 999px;
    background: var(--green);
    padding: .4rem .65rem;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.course-card-body {
    display: grid;
    grid-template-rows: auto auto minmax(6.4rem, auto) minmax(3.9rem, auto) auto;
    gap: .8rem;
    padding: 1.25rem;
}

.course-card small {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.course-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
}

.course-card p {
    min-height: 0;
    color: rgba(23, 32, 42, .66);
    line-height: 1.65;
}

.course-card ul {
    display: grid;
    align-content: start;
    gap: .45rem;
    color: rgba(23, 32, 42, .72);
    font-size: .86rem;
}

.course-card li {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.course-card li svg {
    width: .95rem;
    height: .95rem;
    color: var(--green);
}

.course-card-actions {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    align-self: end;
    border-top: 1px solid rgba(23, 32, 42, .08);
    padding-top: 1rem;
    color: var(--blue);
    font-weight: 800;
}

.course-lp-hero {
    display: grid;
    min-height: clamp(650px, 82vh, 860px);
    grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    background: linear-gradient(135deg, #f7fbfd, #eaf5f9);
    padding: clamp(3rem, 7vw, 6rem) var(--container-pad);
}

.course-lp-copy h1 {
    max-width: 860px;
    font-size: clamp(2.35rem, 4.8vw, 5rem);
    line-height: .98;
    font-weight: 800;
}

.course-lp-copy > p:not(.eyebrow) {
    margin-top: 1.2rem;
    max-width: 760px;
    color: rgba(23, 32, 42, .68);
    font-size: 1.08rem;
    line-height: 1.8;
}

.course-lp-copy .hero-proof span {
    border-color: rgba(11, 92, 171, .14);
    background: #fff;
    color: var(--blue);
}

.course-vsl-card {
    display: grid;
    gap: 1rem;
}

.vsl-frame {
    display: grid;
    min-height: 290px;
    place-items: center;
    border-radius: .75rem;
    background: linear-gradient(135deg, rgba(11, 92, 171, .96), rgba(0, 169, 224, .78));
    color: #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 28px 70px rgba(11, 92, 171, .22);
}

.vsl-frame.has-video,
.vsl-frame.has-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 0;
}

.vsl-frame iframe,
.vsl-frame img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-frame img {
    object-fit: cover;
}

.vsl-frame svg {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    padding: 1rem;
}

.vsl-frame span {
    font-size: 1.35rem;
    font-weight: 800;
}

.vsl-frame small {
    max-width: 300px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.55;
}

.course-offer-box {
    display: grid;
    gap: .65rem;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: .65rem;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 18px 45px rgba(23, 32, 42, .08);
}

.course-offer-box strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.course-offer-box span,
.course-offer-box p {
    color: rgba(23, 32, 42, .65);
    line-height: 1.6;
}

.course-offer-box .btn {
    justify-self: start;
}

.course-dark-band {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: .8fr 1.2fr;
    background: var(--ink);
    color: #fff;
    padding: clamp(4rem, 7vw, 6rem) var(--container-pad);
}

.course-dark-band h2 {
    max-width: 620px;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.04;
    font-weight: 800;
}

.course-pill-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: .7rem;
}

.course-pill-list span {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    padding: .75rem .95rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.course-module-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.course-module-grid article {
    display: flex;
    gap: .85rem;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 12px 32px rgba(23, 32, 42, .05);
}

.course-module-grid span {
    color: var(--green);
    font-weight: 800;
}

.course-module-grid p {
    color: rgba(23, 32, 42, .72);
    line-height: 1.55;
}

.plain-list {
    display: grid;
    gap: .5rem;
    color: rgba(23, 32, 42, .7);
    line-height: 1.55;
}

.plain-list li {
    position: relative;
    padding-left: 1rem;
}

.plain-list li::before {
    position: absolute;
    left: 0;
    color: var(--green);
    content: "•";
    font-weight: 800;
}

.course-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-gallery div {
    display: grid;
    min-height: 220px;
    place-items: center;
    border: 1px dashed rgba(11, 92, 171, .26);
    border-radius: .5rem;
    background: #fff;
    color: var(--blue);
    text-align: center;
}

.course-gallery figure {
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 18px 40px rgba(11, 36, 61, .08);
}

.course-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.course-gallery figcaption {
    padding: .85rem 1rem;
    color: rgba(23, 32, 42, .72);
    font-weight: 800;
}

.course-gallery svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: .5rem;
}

.course-gallery span {
    font-weight: 800;
}

.product-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.product-gallery figure {
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 18px 40px rgba(11, 36, 61, .08);
}

.product-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 1rem;
    background: linear-gradient(135deg, #f7fbfd, #edf6fa);
}

.product-gallery figcaption {
    padding: .85rem 1rem;
    color: rgba(23, 32, 42, .72);
    font-weight: 800;
}

.course-proof-grid,
.testimonial-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.testimonial-grid {
    margin-top: 1rem;
}

.testimonial-grid blockquote {
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    padding: 1.3rem;
    box-shadow: 0 16px 45px rgba(23, 32, 42, .06);
}

.testimonial-grid p {
    color: rgba(23, 32, 42, .72);
    line-height: 1.75;
}

.testimonial-grid cite {
    display: block;
    margin-top: 1rem;
    color: var(--blue);
    font-style: normal;
    font-weight: 800;
}

.store-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.store-card {
    display: grid;
    gap: .55rem;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    padding: .85rem;
}

.store-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f8fafc;
}

.store-card span {
    color: rgba(23, 32, 42, .55);
    font-size: .72rem;
    font-weight: 700;
}

.store-card strong {
    min-height: 3rem;
    font-size: .9rem;
    line-height: 1.35;
}

.store-card em {
    color: var(--green);
    font-style: normal;
    font-weight: 800;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #0b5cab, #047fa8 55%, #38a835);
    padding: clamp(2.5rem, 5vw, 4rem) var(--container-pad);
    color: #fff;
}

.cta-band h2 {
    max-width: 760px;
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
}

.cta-band p {
    margin-top: .7rem;
    color: rgba(255, 255, 255, .78);
}

.page-hero {
    position: relative;
    min-height: clamp(430px, 56vh, 660px);
    overflow: hidden;
    color: #fff;
}

.page-hero.compact {
    min-height: 460px;
}

.page-hero > div {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    max-width: 940px;
    flex-direction: column;
    justify-content: end;
    padding: 6rem var(--container-pad) 4rem;
}

.page-hero p:not(.eyebrow) {
    margin-top: 1rem;
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.page-hero.course-hero > div {
    max-width: 820px;
}

.page-hero.course-hero h1 {
    max-width: 780px;
    font-size: clamp(1.9rem, 3.25vw, 3.65rem);
    line-height: 1.04;
}

.page-hero.assist-hero > div {
    max-width: 820px;
    justify-content: center;
}

.page-hero.assist-hero h1 {
    max-width: 820px;
    font-size: clamp(1.85rem, 3vw, 3.35rem);
    line-height: 1.08;
}

.page-title {
    max-width: 80rem;
    padding: clamp(4rem, 8vw, 7rem) 1rem clamp(2rem, 5vw, 4rem);
    margin: 0 auto;
}

.page-title p:not(.eyebrow) {
    margin-top: 1rem;
    max-width: 760px;
    color: rgba(23, 32, 42, .68);
    font-size: 1.08rem;
    line-height: 1.8;
}

.blog-post-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 1rem clamp(2rem, 5vw, 4rem);
}

.blog-post-hero a,
.blog-post-hero span {
    color: var(--blue);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-post-hero h1 {
    max-width: 820px;
    margin-top: 1rem;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
}

.blog-post-hero p {
    margin-top: 1rem;
    color: rgba(23, 32, 42, .68);
    font-size: 1.08rem;
    line-height: 1.8;
}

.blog-post-hero time {
    display: inline-flex;
    margin-top: 1rem;
    color: rgba(23, 32, 42, .55);
    font-weight: 800;
}

.blog-post-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 35, 57, .14);
}

.filter-bar {
    position: sticky;
    top: 80px;
    z-index: 20;
    display: flex;
    gap: .55rem;
    max-width: 80rem;
    overflow-x: auto;
    margin: 0 auto 2rem;
    padding: .4rem 1rem 1rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
}

.filter-bar a {
    flex: 0 0 auto;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: 999px;
    padding: .7rem .95rem;
    color: rgba(23, 32, 42, .76);
    font-size: .82rem;
    font-weight: 800;
}

.filter-bar a.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.product-hero {
    display: grid;
    min-height: clamp(560px, 72vh, 760px);
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    background: linear-gradient(135deg, #f7fbfd, #eef6fa);
}

.product-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.product-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 5vw, 5.1rem);
    line-height: .98;
    font-weight: 800;
}

.product-hero-copy > p:not(.eyebrow) {
    margin-top: 1.2rem;
    max-width: 690px;
    color: rgba(23, 32, 42, .68);
    font-size: 1.08rem;
    line-height: 1.8;
}

.product-hero-copy .hero-proof span {
    border-color: rgba(11, 92, 171, .14);
    background: #fff;
    color: var(--blue);
}

.product-hero-media {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 42%, rgba(0, 169, 224, .18), transparent 38%), #eaf5f9;
}

.product-hero-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    content: "";
    background: linear-gradient(0deg, rgba(11, 92, 171, .28), transparent);
}

.product-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(1rem, 4vw, 3.5rem);
}

@media (min-width: 1024px) {
    .product-hero {
        min-height: min(760px, calc(100vh - 80px));
    }

    .product-hero-media {
        display: grid;
        place-items: center;
        min-height: min(760px, calc(100vh - 80px));
    }

    .product-hero-media img {
        width: min(100%, calc(100vh - 130px));
        height: min(100%, calc(100vh - 130px));
        padding: clamp(1rem, 2.2vw, 2.2rem);
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.2rem;
    color: rgba(23, 32, 42, .52);
    font-size: .8rem;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.product-anchor-nav {
    position: sticky;
    top: 79px;
    z-index: 25;
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    border-block: 1px solid rgba(23, 32, 42, .08);
    background: rgba(255, 255, 255, .92);
    padding: .7rem var(--container-pad);
    backdrop-filter: blur(12px);
}

.product-anchor-nav a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: .65rem .9rem;
    color: rgba(23, 32, 42, .68);
    font-size: .82rem;
    font-weight: 800;
}

.product-anchor-nav a:hover {
    background: rgba(11, 92, 171, .08);
    color: var(--blue);
}

.product-feature-grid,
.use-case-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.product-story {
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    grid-template-columns: .8fr 1.2fr;
    padding: clamp(4rem, 7vw, 7rem) var(--container-pad);
    background: var(--ink);
    color: #fff;
}

.product-story h2 {
    max-width: 560px;
    font-size: clamp(2rem, 3.8vw, 3.7rem);
    line-height: 1.04;
    font-weight: 800;
}

.story-list {
    display: grid;
    gap: 1rem;
}

.story-list article {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding-bottom: 1.4rem;
}

.story-list span {
    color: var(--green);
    font-weight: 800;
}

.story-list h3 {
    margin: .45rem 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.story-list p {
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.use-case-grid article {
    border-radius: .5rem;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 16px 45px rgba(23, 32, 42, .06);
}

.use-case-grid svg {
    width: 1.2rem;
    color: var(--blue);
}

.use-case-grid h3 {
    margin-top: 1.1rem;
    font-weight: 800;
}

.spec-table {
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: .5rem;
}

.spec-table div {
    display: grid;
    grid-template-columns: minmax(140px, .42fr) 1fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    padding: 1rem;
}

.spec-table div:last-child {
    border-bottom: 0;
}

.spec-table strong {
    color: rgba(23, 32, 42, .58);
}

.spec-table a {
    color: var(--blue);
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 60;
    display: inline-flex;
    width: 3.55rem;
    height: 3.55rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .36);
}

.whatsapp-float::before,
.whatsapp-float::after {
    position: absolute;
    inset: -.35rem;
    border: 1px solid rgba(37, 211, 102, .45);
    border-radius: inherit;
    content: "";
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: .8s;
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;
}

.whatsapp-float svg {
    width: 1.55rem;
    height: 1.55rem;
}

@keyframes whatsapp-pulse {
    0% {
        opacity: .75;
        transform: scale(.92);
    }
    75%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.rental-popup {
    position: fixed;
    inset: 0;
    z-index: 75;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
}

.rental-popup.is-open {
    opacity: 1;
    pointer-events: auto;
}

.rental-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 34, .54);
    backdrop-filter: blur(6px);
}

.rental-popup-panel {
    position: relative;
    display: grid;
    width: min(100%, 860px);
    max-height: min(92vh, 720px);
    overflow: hidden;
    grid-template-columns: .95fr 1.05fr;
    border-radius: .85rem;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    transform: translateY(12px) scale(.98);
    transition: .22s ease;
}

.rental-popup.is-open .rental-popup-panel {
    transform: translateY(0) scale(1);
}

.rental-popup-media {
    min-height: 360px;
    background: #eef6fa;
}

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

.rental-popup-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.rental-popup-copy h2 {
    max-width: 480px;
    font-size: clamp(1.8rem, 3.8vw, 3.35rem);
    line-height: 1.03;
    font-weight: 800;
}

.rental-popup-copy p:not(.eyebrow) {
    margin-top: 1rem;
    color: rgba(23, 32, 42, .66);
    line-height: 1.75;
}

.rental-popup-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
}

.rental-dismiss {
    color: rgba(23, 32, 42, .62);
    font-weight: 800;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
}

.contact-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 34, .68);
    backdrop-filter: blur(8px);
}

.contact-modal-panel {
    position: relative;
    width: min(100%, 680px);
    max-width: calc(100vw - 2rem);
    max-height: min(92vh, 760px);
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: .75rem;
    background: #fff;
    padding: clamp(1.35rem, 4vw, 2.2rem);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    transform: translateY(10px) scale(.98);
    transition: .2s ease;
}

.contact-modal-panel * {
    min-width: 0;
}

.contact-modal.is-open .contact-modal-panel {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(23, 32, 42, .06);
    color: var(--ink);
}

.contact-modal-close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.contact-modal-panel h2 {
    max-width: 520px;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.08;
    font-weight: 800;
}

.contact-modal-intro {
    margin-top: .8rem;
    max-width: 560px;
    color: rgba(23, 32, 42, .65);
    line-height: 1.7;
}

.specialist-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.contact-choice {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-choice input {
    position: absolute;
    width: auto;
    opacity: 0;
}

.contact-choice span {
    display: flex;
    min-height: 4rem;
    align-items: center;
    gap: .65rem;
    border: 1px solid rgba(23, 32, 42, .12);
    border-radius: .55rem;
    padding: .85rem;
    color: rgba(23, 32, 42, .74);
    font-weight: 800;
    cursor: pointer;
}

.contact-choice input:checked + span {
    border-color: var(--blue);
    background: rgba(11, 92, 171, .08);
    color: var(--blue);
}

.contact-choice svg {
    width: 1.15rem;
    height: 1.15rem;
}

.specialist-form label {
    display: grid;
    gap: .45rem;
    color: rgba(23, 32, 42, .68);
    font-size: .86rem;
    font-weight: 800;
}

.specialist-form input,
.specialist-form select {
    width: 100%;
    border: 1px solid rgba(23, 32, 42, .14);
    border-radius: .5rem;
    padding: .85rem .9rem;
    color: var(--ink);
    font-weight: 700;
}

.specialist-form input.is-invalid,
.specialist-form select.is-invalid {
    border-color: #dc2626;
    background: #fff7f7;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}

.specialist-form .btn:disabled,
.contact-form .btn:disabled {
    opacity: .72;
    cursor: wait;
}

.form-status {
    margin: -.2rem 0 0;
    border-radius: .5rem;
    background: rgba(56, 168, 53, .11);
    padding: .75rem .85rem;
    color: #1f8a36;
    font-size: .9rem;
    font-weight: 800;
}

.form-status.is-error {
    background: rgba(220, 38, 38, .1);
    color: #b42318;
}

.specialist-form .contact-choice input[type="radio"],
.contact-form .contact-choice input[type="radio"] {
    width: 1px;
    height: 1px;
}

.phone-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: minmax(150px, .9fr) minmax(220px, 1.8fr);
}

.prose-block {
    display: grid;
    gap: 1.1rem;
    font-size: 1.02rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1rem;
}

.stats-row strong {
    border-radius: .5rem;
    background: rgba(56, 168, 53, .1);
    padding: .85rem 1rem;
    color: var(--green);
}

.contact-aside,
.contact-form {
    padding: 1.5rem;
}

.contact-aside h2 {
    margin-bottom: .75rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.contact-aside ul {
    display: grid;
    gap: .9rem;
    margin-top: 1.5rem;
}

.contact-aside li {
    display: flex;
    gap: .7rem;
    color: rgba(23, 32, 42, .72);
}

.contact-aside svg {
    width: 1.1rem;
    color: var(--blue);
    flex: 0 0 auto;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.rental-application-choice {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.rental-application-choice .rental-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
}

.rental-application-choice .rental-card .btn {
    width: fit-content;
    margin-top: 1rem;
}

@media (min-width: 1180px) {
    .rental-application-choice {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
}

.rental-form-note {
    max-width: 460px;
    color: rgba(23, 32, 42, .68);
    line-height: 1.65;
}

.rental-application-form {
    align-content: start;
}

.rental-application-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.rental-application-modal.is-open {
    display: flex;
}

.rental-application-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 19, 32, .72);
    backdrop-filter: blur(7px);
}

.rental-application-panel {
    position: relative;
    width: min(1120px, 100%);
    max-height: min(88vh, 980px);
    overflow: auto;
    border-radius: .65rem;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.rental-application-panel .contact-modal-close {
    position: sticky;
    top: 1rem;
    float: right;
    z-index: 2;
    margin: 1rem 1rem 0 0;
}

.rental-application-panel .rental-application-form {
    border: 0;
    box-shadow: none;
}

.rental-form-header {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    padding-bottom: .85rem;
}

.rental-form-header span {
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.rental-form-header h3 {
    margin-top: .25rem;
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.rental-form-subtitle {
    grid-column: 1 / -1;
    display: grid;
    gap: .25rem;
    border-top: 1px solid rgba(23, 32, 42, .08);
    padding-top: .9rem;
}

.rental-form-subtitle strong {
    color: var(--ink);
    font-size: 1rem;
}

.rental-form-subtitle span {
    color: rgba(23, 32, 42, .66);
    font-size: .86rem;
    font-weight: 700;
}

.rental-application-form input[type="file"] {
    padding: .7rem;
    background: #f8fafc;
    font-size: .82rem;
}

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

@media (min-width: 900px) {
    .contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form label {
    display: grid;
    gap: .45rem;
    color: rgba(23, 32, 42, .72);
    font-size: .86rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(23, 32, 42, .14);
    border-radius: .5rem;
    padding: .85rem .9rem;
    color: var(--ink);
    font-weight: 600;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}

.lecture-checkbox {
    display: flex;
    align-items: center;
    gap: .65rem;
    border: 1px solid rgba(23, 32, 42, .12);
    border-radius: .5rem;
    padding: .85rem 1rem;
    color: rgba(23, 32, 42, .78);
    font-weight: 800;
}

.lecture-checkbox input {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--blue);
}

.footer-title {
    margin-bottom: 1rem;
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .section-heading,
    .cta-band {
        align-items: start;
        flex-direction: column;
    }

    .hero {
        height: 720px;
    }

    .hero-overlay,
    .page-hero::after {
        background: linear-gradient(180deg, rgba(6, 20, 34, .48), rgba(6, 20, 34, .88));
    }

    .product-hero,
    .product-story,
    .course-lp-hero,
    .blog-post-hero,
    .course-dark-band {
        grid-template-columns: 1fr;
    }

    .product-hero-media {
        order: -1;
        min-height: 300px;
    }

    .course-lp-hero {
        padding-top: 4rem;
    }

    .course-gallery {
        grid-template-columns: 1fr;
    }

    .product-anchor-nav {
        top: 73px;
    }

    .course-mode-nav {
        top: 73px;
        justify-content: start;
        overflow-x: auto;
    }

    .spec-table div {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .contact-choice,
    .phone-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: .9rem;
        bottom: .9rem;
    }

    .rental-popup-panel {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .rental-popup-media {
        min-height: 220px;
    }
}

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

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

@media (min-width: 761px) {
    .page-hero.assist-hero > div {
        width: min(820px, calc(100vw - 3rem));
        max-width: none;
    }

    .page-hero.assist-hero h1 {
        width: min(760px, 100%);
        max-width: none;
        font-size: clamp(1.85rem, 3vw, 3.1rem);
        line-height: 1.08;
    }
}
