/* Body / UI — Open Sans, primary font throughout */
body {
    font-family: 'Open Sans', sans-serif !important;
}

/* ── Colour Palette ── */
:root {
    --black:        #000000;
    --white:        #FFFFFF;
    --blue:       #0072BC;
    --blue-dark:  #005A96;
    --blue-deep:  #003F6B;
    --blue-light: #E6F3FB;
    --blue-mid:   #CCE4F6;
    --orange:       #F7941D;
    --orange-dark:  #D97D10;
    --orange-light: #FFF4E6;
    --green:        #8DC63F;
    --green-dark:   #6FA32E;
    --green-deep:   #1B5E20;
    --green-light:  #F0F8E6;
    --bg-alt:       #F5F7FA;
    --bg-dark:      #0D1F35;
    --text:         #333333;
    --text-mid:     #555555;
    --text-muted:   #777777;
    --text-light:   #999999;
    --rule:         #E8ECF0;
    --rule-soft:    #e4e6e8;
    --r:            6px;
    --r2:           10px;
    --r3:           14px;

    /* Neutral UI colours */
    --border-neutral:      #a8a8a8;
    --border-neutral-dark: #888888;
    --white-hover:         #f5f5f5;

    /* Shadows */
    --shadow-blue-sm: 0 2px 8px rgba(0, 114, 188, 0.2);
    --shadow-blue-md: 0 2px 10px rgba(0, 114, 188, 0.3);

    /* ── Typography (extracted from product_custom.css) ── */

    /* Font family */
    --font-family-primary: 'Open Sans', sans-serif;

    /* Font weights */
    --font-weight-regular:   400;
    --font-weight-medium:    500;
    --font-weight-semibold:  600;
    --font-weight-bold:      700;
    --font-weight-extrabold: 800;

    /* Font size scale — rem only (16px base); use directly in component classes */
    --font-size-2xs: 0.625rem;  /* 10px */
    --font-size-xs:  0.75rem;   /* 12px */
    --font-size-sm:  0.875rem;  /* 14px */
    --font-size-md:  1rem;      /* 16px */
    --font-size-lg:  1.125rem;  /* 18px */
    --font-size-xl:  1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 2.75rem;   /* 44px */

    /* Fluid hero — optional; use on hero titles only */
    --font-size-hero: clamp(var(--font-size-2xl), 2.8vw, 2.625rem);


    /* Line heights */
    --line-height-none:    1;
    --line-height-tight:   1.25;
    --line-height-normal:  1.5;
    --line-height-relaxed: 1.65;
}

/* ── Site navbar — scroll with page, not fixed over hero (matches product_custom.css) ── */
#main_menu.ui.top.fixed.menu {
    position: relative !important;
}

/* ── Buttons (from product_custom.css) ── */

.product-btn-orange,
.product-btn-white,
.product-btn-blue,
.product-btn-blue-outline {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--r);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.product-btn-orange {
    background: var(--orange);
    color: var(--white) !important;
    border: 1.5px solid var(--orange);
}

.product-btn-orange:hover {
    background: var(--orange-dark);
    box-shadow: 0 2px 10px rgba(247, 148, 29, 0.3);
    color: var(--white) !important;
}

.product-btn-white {
    background: var(--white);
    color: var(--text) !important;
    border: 1.5px solid var(--border-neutral);
}

.product-btn-white:hover {
    background: var(--white-hover);
    border-color: var(--border-neutral-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text) !important;
}

.product-btn-blue {
    background: var(--blue);
    color: var(--white) !important;
    border: 1.5px solid var(--blue);
}

.product-btn-blue:hover {
    background: var(--blue-dark);
    box-shadow: var(--shadow-blue-md);
    color: var(--white) !important;
}

.product-btn-blue-outline {
    background: var(--white);
    color: var(--blue) !important;
    border: 1.5px solid var(--blue);
}

.product-btn-blue-outline:hover {
    background: var(--blue-light);
    box-shadow: var(--shadow-blue-sm);
    color: var(--blue) !important;
}

/* ── Global container (max 1080px, centred) ── */

.container-limit {
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(16px, 4vw, 40px) !important;
    padding-right: clamp(16px, 4vw, 40px) !important;
}

/* ── Hero CTA row (mobile-first base) ── */

.product-hero-btns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
}

.product-hero-btns a:not(.product-hero-scale-link) {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    border-radius: var(--r2);
}

/* ── Hero scale link — orange button style (mobile-first base) ── */

.product-hero-scale-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--blue) !important;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 0;
    text-align: center;
    padding: 0 !important;
    width: auto !important;
}

.product-hero-scale-link:hover {
    text-decoration: underline;
}


/* ── Product Hero (mobile-first base) ── */

.product-hero {
    position: relative;
}

.product-hero .inner-content,
.product-hero .content-block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-hero__container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
    min-height: 55vh;
}

/* Section height (replaces custom-section-height desktop-60vh utilities) */
.product-hero__segment {
    height: auto;
    min-height: auto;
}

.product-hero__segment.header-background {
    position: relative;
    background-position: left center !important;
    background-size: cover !important;
}

.product-hero__segment.header-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    z-index: 0;
    pointer-events: none;
}

.product-hero__segment .row {
    position: relative;
    z-index: 1;
    height: auto;
}

.product-hero__col {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.product-hero__segment .responsive-padding.padding-medium {
    padding: 1.25rem 1rem !important;
}

.product-hero__heading {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text);
    max-width: 100%;
    margin: 0;
}

.product-hero__heading strong {
    color: var(--blue);
}

.product-hero__desc {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-relaxed);
    color: rgba(0, 0, 0, 0.68);
    max-width: 100%;
    margin: 0 0 0.625rem;
}

.product-hero__desc strong {
    color: var(--orange);
}

.product-hero__desc br {
    display: none;
}

.product-hero__brand {
    max-width: 100%;
    width: fit-content;
    margin-bottom: -0.25rem;
}

.product-hero__brand-bar {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    background: var(--white);
    overflow: hidden;
    padding: 0.3125rem 0.5rem;
}

.product-hero__brand-label {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    white-space: nowrap;
}

.product-hero__brand-divider {
    width: 2px;
    height: 1rem;
    background: var(--black);
    flex-shrink: 0;
}

.product-hero__brand-logo {
    height: 1.125rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.product-hero__brand-dot {
    color: var(--black);
    font-size: var(--font-size-2xs);
    flex-shrink: 0;
}

.product-hero__brand-more {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-extrabold);
    color: var(--black);
    white-space: nowrap;
}

/* ── Product Stats Bar (mobile-first base) ── */

.product-stat-bar {
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--rule);
}

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

.product-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 1rem;
}

.product-stat-col + .product-stat-col {
    border-top: 1px solid var(--rule);
}

.product-stat-number {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-none);
    margin-bottom: 0.35rem;
}

.product-stat-number span:first-child {
    color: var(--blue);
}

.product-stat-number span:last-child {
    color: var(--orange);
}

.product-stat-heading {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    line-height: var(--line-height-normal);
    margin-bottom: 0.2rem;
}

.product-stat-sub {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
}

/* ── Page navbar layout ── */
.product-navbar-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.product-navbar-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    padding-left: 1.25rem;
    margin-left: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.page-navbar__inner {
    padding: 0.6rem clamp(16px, 4vw, 40px);
}

.page-navbar__row {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ── Page navbar links + dividers ── */
.product-nav-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-mid);
    text-decoration: none;
    white-space: nowrap;
    padding: 0.25rem 0.4rem;
}
.product-nav-link.active {
    color: var(--blue) !important;
    font-weight: var(--font-weight-medium);
}
.product-nav-divider {
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

/* Free Trial in page navbar — compact orange button */
.product-navbar-ctas .product-btn-orange,
.product-navbar-ctas .product_btn_orange {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    background: var(--orange);
    color: var(--white) !important;
    border: 1.5px solid var(--orange);
    border-radius: var(--r);
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.product-navbar-ctas .product-btn-orange:hover,
.product-navbar-ctas .product_btn_orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    box-shadow: 0 2px 10px rgba(247, 148, 29, 0.3);
    color: var(--white) !important;
}

/* ── Page Navbar (sticky — toggled by product-page.js) ── */
#page-navbar {
    position: relative;
    z-index: 998;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: none !important;
}
#page-navbar.is-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}
#page-navbar-spacer {
    display: none;
}
#page-navbar.is-fixed ~ #page-navbar-spacer,
#page-navbar-spacer.active {
    display: block;
    height: 56px;
}

/* ── Key Features Section ── */
#key-features {
    background-color: var(--white);
    border-bottom: 1px solid var(--rule);
}

/* ── Demo Section ── */
#demo {
    background: var(--bg-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#demo .section {
    max-width: 1200px;
}
#technology-standards,
#simulation-gallery,
#problem-statement,
#call-to-action,
#pricing {
    background: var(--white);
}

/* Demo two-column layout — stacked on mobile, side-by-side on tablet+ */
.section-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.section-demo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Video player — 16:9 aspect-ratio wrapper */
.section-demo-player {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0.5rem;
    background: var(--black);
}

.section-demo-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.section-demo-facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 1;
}

.section-demo-facade-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-demo-facade-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.section-demo-video-wrap {
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* Product logo used as section title in demo */
.section-demo-logo {
    height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 0.25rem;
}

/* ── Section (generic reusable wrapper) ── */
.section {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(32px, 8vw, 80px);
    padding-right: clamp(32px, 8vw, 80px);
    padding-top: clamp(52px, 7vw, 96px);
    padding-bottom: clamp(52px, 7vw, 96px);
}

/* ── Section label ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.section-label span {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Section label dash ── */
.section-label-dash {
    width: 28px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

/* ── Section title ── */
.section-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    color: var(--text);
    margin: 0 0 0.5rem;
}

/* ── Section description ── */
.section-desc {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm)!important;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-relaxed);
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* ── Card Grid ── */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.75rem;
}

/* ── Card ── */
.card {
    background: var(--white);
    border-radius: var(--r2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ── Card icon ── */
.card-icon {
    width: 36px;
    flex-shrink: 0;
    margin-bottom: 0.15rem;
}

.card-icon i.icon {
    margin: 0 !important;
}

/* ── Card title ── */
.card-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-normal);
    margin: 0;
}

/* ── Card body ── */
.card-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs) !important;
    font-weight: var(--font-weight-regular);
    color: rgba(0, 0, 0, 0.55);
    line-height: var(--line-height-relaxed);
    margin: 0;
    flex: 1;
}

/* ── Card badge ── */
.card-badge {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.3rem 0.75rem;
    border-radius: var(--r2);
    background: rgba(247, 148, 29, 0.1);
    color: rgba(180, 105, 10, 0.9);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-semibold);
    word-break: break-word;
    white-space: normal;
}

.solution-steps {
    margin-top: 0.75rem;
}

.solution-steps__label {
    margin: 1.5rem 0;
}

.solution-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0 0 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid var(--rule);
}

.solution-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 999px;
    background: var(--blue-mid);
    color: var(--blue-dark);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

.solution-step__content {
    display: flex;
    flex-direction: column;
}

.solution-step__title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-normal);
    margin: 0 0 0.4rem;
}

.solution-step__desc {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm)!important;
    font-weight: var(--font-weight-regular);
    color: rgba(0, 0, 0, 0.55);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.solution-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--r2);
    border: 1px solid var(--orange);
    background: var(--orange-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.solution-cta__copy {
    flex: 1;
    min-width: 0;
}

.solution-cta__title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-normal);
    margin: 0 0 0.25rem;
}

.solution-cta__desc {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: rgba(0, 0, 0, 0.55);
    line-height: var(--line-height-normal);
    margin: 0;
}

.solution-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ── Generic two-column section layout ── */
.section-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

/* ── Customer data ── */
.customer-data-lead {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-normal);
    margin: 0 0 0.5rem;
}

.customer-data-copy {
    margin-bottom: 0.75rem;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.standards-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

.standards-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.6rem;
    border-radius: var(--r);
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
    flex: 0 0 7.5rem;
    text-align: center;
}

.standards-text {
    min-width: 0;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
}

.comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px dashed var(--blue);
    border-radius: var(--r2);
    background: var(--blue-light);
    margin-bottom: 0.75rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    color: var(--bg-dark);
    text-align: left;
}

.comparison-table th {
    background: var(--text-mid);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.comparison-table th,
.comparison-table td {
    padding: 0.4rem 0.625rem;
    border: 1px solid var(--blue-deep);
    vertical-align: top;
}

.comparison-table th {
    border-color: var(--blue-mid);
}

.comparison-table td:first-child,
.comparison-table td:last-child {
    font-weight: var(--font-weight-semibold);
}

.comparison-table td:last-child {
    color: var(--green-deep);
}

.customer-data-note {
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--blue-mid);
    border-radius: var(--r2);
    background: var(--blue-light);
}

.customer-data-note__text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
    margin: 0 0 0.5rem;
}

.customer-data-note__link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--blue) !important;
    text-decoration: none;
}

/* ── Technology section ── */
.technology-lead {
    margin-bottom: 0.6rem;
    color: var(--black);
}

.technology-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* ── Customer stories ── */
.story-section-desc {
    margin-bottom: 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.story-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--r2);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.story-logo {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 1.25rem;
}

.story-logo--bray {
    height: 4rem;
}

.story-logo--gm {
    height: 5rem;
}

.story-company {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-bold);
    color: var(--blue);
    line-height: var(--line-height-normal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.story-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-tight);
    margin-bottom: 0.5rem;
}

.story-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm) !important;
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
    margin: 0;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.20rem;
    margin-top: auto;
}

.story-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border: 1px solid var(--green-dark);
    border-radius: 2rem;
    background: var(--green-light);
    color: var(--green-dark);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-bold);
}

.story-quote {
    padding: 1.25rem 1rem;
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--r) var(--r) 0;
    background: var(--blue-light);
}

.story-quote__text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-style: italic;
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-tight);
    margin: 0 0 0.75rem;
}

.story-quote__author {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-muted);
    line-height: var(--line-height-tight);
}

.story-cta {
    padding: 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--r2);
    background: var(--white);
}

.story-cta__text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm) !important;
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
    margin: 0 0 0.75rem;
}

/* ── Simulation gallery ── */
.gallery-header {
    margin-bottom: 1.25rem;
}

.gallery-desc-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.gallery-desc-row .product-btn-blue-outline {
    justify-self: start;
    width: auto !important;
    max-width: 100%;
    white-space: normal;
}

.gallery-desc {
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.6rem;
    align-items: stretch;
}

.gallery-card {
    --gallery-card-height: clamp(4.75rem, 18vw, 6.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: var(--gallery-card-height);
    min-height: var(--gallery-card-height);
    padding: 0.5rem;
    border: 1px solid var(--rule);
    border-radius: var(--r2);
    background: var(--bg-alt);
    text-decoration: none;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.gallery-card:hover {
    border-color: var(--blue-mid);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.gallery-card--image {
    padding: 0;
    overflow: hidden;
    background: var(--blue-light);
}

.gallery-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-name {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-tight);
    margin-bottom: 0.2rem;
}

.gallery-meta {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
}

.gallery-note {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
    margin: 1.3rem 0 0;
}

.gallery-note strong {
    color: var(--text);
}

/* ── Fit section ── */
.fit-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule);
}

.fit-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule-soft);
}

.fit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}

.fit-tag {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    border-radius: var(--r);
    background: var(--rule-soft);
    color: var(--text-mid);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fit-heading {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: var(--line-height-tight);
}

.fit-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm)!important;
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.fit-body strong {
    color: var(--text);
}

.fit-link {
    align-self: start;
    justify-self: start;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--blue) !important;
    text-decoration: none;
    white-space: nowrap;
}

/* ── Pricing ── */
.pricing-desc {
    margin-bottom: 1rem;
}

.pricing-grid {
    margin-bottom: 0.75rem;
}

.pricing-card {
    position: relative;
    height: 100%;
}

.pricing-card--featured {
    border: 2px solid var(--orange);
}

.pricing-badge {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    color: var(--blue);
    line-height: var(--line-height-tight);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pricing-name {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-extrabold);
    color: var(--text);
    line-height: var(--line-height-tight);
    margin-bottom: 0.25rem;
}

.pricing-price {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-none);
    margin-bottom: 0.25rem;
}

.pricing-price--orange {
    color: var(--orange);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
}

.pricing-price--blue {
    color: var(--blue);
    font-size: var(--font-size-md);
}

.pricing-meta {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
    margin-bottom: 0.6rem;
}

.pricing-copy {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
    margin: 0 0 0.75rem;
}

.pricing-copy strong {
    color: var(--text);
}

.pricing-divider {
    border-top: 1px solid var(--rule);
    margin-bottom: 0.6rem;
}

.pricing-section-label {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-2xs);
    font-weight: var(--font-weight-bold);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.pricing-features {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.3rem;
}

.pricing-feature {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-mid);
    line-height: var(--line-height-normal);
}

.pricing-feature span {
    flex-shrink: 0;
    color: var(--green);
    font-weight: var(--font-weight-bold);
}

.pricing-feature strong {
    color: var(--blue);
}

.pricing-btn {
    display: block;
    margin-top: 0.85rem;
    text-align: center;
}

.pricing-note {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md)!important;
    font-weight: var(--font-weight-regular);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
    text-align: center;
    margin: 1rem;
}

.pricing-note strong {
    color: var(--text-mid);
}

/* ── FAQ section ── */
.section-faq {
    max-width: 1080px;
}

.faq-desc {
    margin-bottom: 1.25rem;
}

.product-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.product-faq-tab {
    flex-shrink: 0;
    padding: 0.4rem 0.9rem;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.4rem;
    background: var(--white);
    color: rgba(0, 0, 0, 0.65);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-tight);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.product-faq-tab:hover,
.product-faq-tab:focus {
    border-color: var(--blue);
    color: var(--blue);
    outline: none;
}

.product-faq-tab.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.product-faq-panel {
    display: none;
}

.product-faq-panel.is-active {
    display: block;
}

.product-faq-tab-label {
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.product-faq-tab-label .section-label-dash {
    width: 18px;
}

.product-faq-tab-label span {
    font-size: var(--font-size-sm) !important;
    letter-spacing: 0.08em;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-faq-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-faq-item {
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--rule);
}

.product-faq-col .product-faq-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-faq-question {
    display: block !important;
    width: auto;
    margin-bottom: 0.65rem;
    padding-left: 0 !important;
    color: rgba(0, 0, 0, 0.85);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-normal);
}

.product-faq-question::before {
    content: none !important;
    display: none !important;
}

.product-faq-answer {
    display: block !important;
    width: auto;
    margin: 0;
    padding: 0 !important;
    color: rgba(0, 0, 0, 0.58);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-relaxed);
}

.product-faq-answer span,
.product-faq-answer strong {
    color: var(--blue);
}

/* ── Call to action section ── */
.section-cta {
    max-width: 1080px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.cta-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-quotes {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cta-quote-card {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(33, 133, 208, 0.15);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.72);
}

.cta-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    background: var(--white);
}

.cta-icon i.icon {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.1rem;
    line-height: var(--line-height-none) !important;
}

.cta-icon--orange i.icon {
    color: var(--orange);
}

.cta-icon--blue i.icon {
    color: var(--blue);
}

.cta-quote-text {
    margin: 0;
    color: var(--text-mid);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
}

.cta-quote-text em {
    color: rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.trust-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.5);
    font-family: var(--font-family-primary);
    font-size: 0.62rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.04em;
}

.cta-card {
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.cta-card-title {
    color: rgba(0, 0, 0, 0.88);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    text-align: center;
}

.cta-card-desc {
    margin: 0;
    color: rgba(0, 0, 0, 0.55);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    text-align: center;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: min(100%, 220px);
    margin: 0 auto;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
}

.cta-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.75rem;
}

.cta-check {
    color: rgba(0, 0, 0, 0.45);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
}

.cta-check-tick {
    color: var(--green);
    font-weight: var(--font-weight-bold);
}

/* ══════════════════════════════════════════════════════════════════════════
   Breakpoint overrides (min-width only)
     640px  — small devices
     768px  — tablets
     1024px — desktops
     1280px — large desktops
     1536px — 2xl screens
   ══════════════════════════════════════════════════════════════════════════ */

/* ── start: 640px — small devices ── */
@media (min-width: 640px) {

    /* Hero CTA */
    .product-hero-btns {
        gap: 0.625rem;
    }

    /* Product Hero */
    .product-hero__brand-bar {
        gap: 0.5rem;
        padding: 0.375rem 0.625rem;
    }

    .product-hero__brand-label,
    .product-hero__brand-dot {
        font-size: var(--font-size-2xs);
    }

    .product-hero__brand-divider {
        height: 1.25rem;
    }

    .product-hero__brand-logo {
        height: 1.375rem;
    }

    .product-hero__brand-more {
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-bold);
    }

    /* Product Stats */
    .product-stat-number {
        font-size: var(--font-size-4xl);
    }
    .section{
        padding-top: clamp(52px, 7vw, 96px);
        padding-bottom: clamp(52px, 7vw, 96px);
    }

    /* Section */
    .section-label span {
        font-size: var(--font-size-sm);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .section-desc {
        font-size: var(--font-size-md)!important;
    }

    /* Cards */
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .card-grid--single-until-large {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem 1.25rem;
    }

    /* Solution */
    .solution-cta {
        flex-direction: row;
        align-items: center;
    }

    .solution-cta__buttons {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    /* Customer Data */
    .standards-row {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }

    .standards-badge {
        flex: 0 0 8.25rem;
        text-align: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}
/* ── end: 640px ── */

/* ── start: 768px — tablets ── */
@media (min-width: 768px) {

    /* Hero CTA */
    .product-hero-btns {
        flex-direction: row;
        align-items: center;
    }

    .product-hero-btns a:not(.product-hero-scale-link) {
        width: auto;
        padding: 0.55rem 1.15rem;
        border-radius: var(--r);
    }

    .product-hero-scale-link {
        width: auto;
        padding: 0.55rem 1.15rem;
        border-radius: var(--r);
        margin-left: 0.25rem;
        text-align: left;
    }

    .product-hero-btns a {
        flex-shrink: 1;
        min-width: 0;
    }

    /* Product Hero */
    .product-hero__segment {
        height: 73vh;
        min-height: 400px;
    }

    .product-hero__segment .row {
        height: 100%;
    }

    .product-hero__segment.header-background::before {
        display: none;
    }

    .product-hero__segment.background-position-right-center {
        background-position: right center !important;
        background-size: auto 120% !important;
    }

    .product-hero__segment .responsive-padding.padding-medium {
        padding: inherit !important;
    }

    .product-hero__container {
        gap: 0.6rem;
    }

    .product-hero__heading {
        font-size: var(--font-size-hero);
        line-height: var(--line-height-tight);
        max-width: 700px;
    }

    .product-hero__desc {
        line-height: var(--line-height-relaxed);
        max-width: 26.25rem;
    }

    .product-hero__brand-bar {
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 0.625rem 0.875rem 0.625rem 0;
        zoom: 0.85;
    }

    .product-hero__brand-label {
        font-size: var(--font-size-md);
    }

    .product-hero__brand-divider {
        height: 1.5rem;
    }

    .product-hero__brand-logo {
        height: 2.5rem;
    }

    .product-hero__brand-dot {
        font-size: var(--font-size-sm);
    }

    .product-hero__brand-more {
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-extrabold);
    }

    /* Product Stats */
    .product-stat-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-stat-bar {
        height: 17vh;
        min-height: 160px;
        display: flex;
        align-items: center;
    }

    .product-stat-bar > .product-stat-grid {
        width: 100%;
    }

    .product-stat-col + .product-stat-col {
        border-top: none;
        border-left: 1px solid var(--rule);
    }

    .product-stat-bar .product-stat-col {
        padding: 0.5rem 1rem;
    }

    .product-stat-number {
        font-size: var(--font-size-5xl);
    }

    /* Section */
    /* .section-title {
        font-size: var(--font-size-3xl);
    } */

    /* Demo */
    .section-demo-grid {
        grid-template-columns: 3fr 2fr;
        gap: 2.5rem;
    }

    .section-demo-text {
        padding-left: 1rem;
    }

    .section-demo-video-wrap {
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
    }

    .section-demo-logo {
        height: 88px;
    }

    /* Two-column sections */
    .section-two-col {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    /* Call to action */
    .cta-grid {
        grid-template-columns: minmax(0, 5fr) minmax(280px, 3fr);
        gap: 2rem;
    }

    /* Technology */
    .technology-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Customer Stories */
    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .story-card {
        padding: 1.25rem;
    }

    /* Gallery */
    .gallery-desc-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1.5rem;
    }

    .gallery-desc-row .product-btn-blue-outline {
        flex-shrink: 0;
        white-space: nowrap;
    }

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

}
/* ── end: 768px ── */

/* ── start: 1024px — desktops ── */
@media (min-width: 1024px) {

    /* Hero CTA */
    .product-hero-btns a {
        flex-shrink: 0;
        min-width: auto;
    }

    /* Product Hero */
    .product-hero__col {
        padding-left: 2.5rem !important;
    }

    .product-hero__heading {
        line-height: var(--line-height-tight);
    }

    .product-hero__desc {
        font-size: var(--font-size-md) !important;
        line-height: var(--line-height-normal);
    }

    /* Page Navbar */
    .product-nav-link {
        font-size: var(--font-size-2xs);
        padding: 0.2rem 0.25rem;
    }
    .product-navbar-ctas .product-btn-orange,
    .product-navbar-ctas .product_btn_orange {
        font-size: var(--font-size-2xs);
        padding: 0.3rem 0.6rem;
    }
    .product-navbar-ctas {
        padding-left: 0.75rem;
        margin-left: 0.5rem;
    }

    /* Section */
    /* .section-title {
        font-size: var(--font-size-4xl);
    } */

    #page-navbar {
        display: block !important;
    }

    /* Demo */
    .section-demo-logo {
        height: 100px;
    }

    /* Cards */
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .card-grid--single-until-large {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Two-column sections */
    .section-two-col {
        gap: 2.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    /* Fit */
    .fit-row {
        grid-template-columns: 15rem minmax(0, 1fr) 11.25rem;
        align-items: start;
        gap: 1.75rem;
    }

    .fit-link {
        justify-self: end;
    }
}
/* ── end: 1024px ── */


/* ── start: 1280px — large desktops ── */
@media (min-width: 1280px) {

    /* Hero CTA */
    .product-hero-btns {
        gap: 0.75rem;
    }

    /* Product Hero */
    .product-hero__container {
        gap: 0.75rem;
    }

    /* Page Navbar */
    .product-nav-link {
        font-size: var(--font-size-xs);
        padding: 0.25rem 0.4rem;
    }
    .product-navbar-ctas .product-btn-orange,
    .product-navbar-ctas .product_btn_orange {
        font-size: var(--font-size-xs);
        padding: 0.35rem 0.75rem;
    }
    .product-navbar-ctas {
        padding-left: 1.25rem;
        margin-left: 0;
    }

    /* Section */
    .section {
        padding-top: clamp(56px, 7vw, 96px);
        padding-bottom: clamp(56px, 7vw, 96px);
    }

    /* .section-title {
        font-size: var(--font-size-2xl);
    } */
}
/* ── end: 1280px ── */

/* ── start: 1536px — 2xl screens ── */
@media (min-width: 1536px) {

    /* Hero CTA */
    .product-hero-btns {
        gap: 0.875rem;
    }

    /* Product Hero */
    .product-hero__container {
        gap: 0.875rem;
    }
}
/* ── end: 1536px ── */
