/*==================================
This file contains ONLY the sections
unique to the Products page. Shared
rules (reset, buttons, particles,
navbar, footer, CTA) live in base.css,
which must be linked BEFORE this file.
==================================*/

/* Shared header block used above every section on this page */
.pp-section-header {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.pp-section-header h2 {
    margin-top: 25px;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 1.1;
}

.pp-section-header p {
    margin-top: 28px;
    color: #9FB1C2;
    line-height: 1.9;
    font-size: clamp(15px, 1.6vw, 18px);
}

/* Reusable pill-tag list (family "perfect for", custom-systems factors, wizard factors) */
.family-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.family-tags span {
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #C7D3DE;
    background: rgba(79, 246, 255, .05);
    border: 1px solid rgba(79, 246, 255, .15);
}

/*==================================
HERO
==================================*/

.pp-hero {
    position: relative;
    padding: 220px 6% 140px;
    overflow: hidden;
    background:
        radial-gradient(70% 60% at 15% 0%, rgba(66, 165, 255, .14), transparent 60%),
        radial-gradient(60% 50% at 90% 20%, rgba(79, 246, 255, .08), transparent 60%),
        linear-gradient(180deg, #05070B 0%, #070B11 100%);
}

.pp-hero .section-particles {
    z-index: 1;
}

.pp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pp-hero h1 {
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1.05;
    margin-top: 30px;
    letter-spacing: clamp(-1.5px, -0.25vw, -3px);
}

.pp-hero p {
    max-width: 680px;
    margin: 28px auto 0;
    color: #AEBAC8;
    line-height: 1.9;
    font-size: clamp(16px, 1.6vw, 18px);
}

.pp-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

@media(max-width: 700px) {
    .pp-hero {
        padding: 170px 6% 100px;
    }
}

/*==================================
PRODUCT PHILOSOPHY
==================================*/

.pp-philosophy {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #070B11;
}

.philosophy-list {
    max-width: 640px;
    margin: clamp(50px, 8vw, 80px) auto 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.philosophy-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 22px;
    border-radius: 14px;
    transition: background .3s;
}

.philosophy-item:hover {
    background: rgba(79, 246, 255, .04);
}

.philosophy-index {
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--cyan);
    width: 40px;
}

.philosophy-item p {
    color: #C7D3DE;
    font-size: 16px;
    line-height: 1.6;
}

.philosophy-close {
    max-width: 640px;
    margin: clamp(40px, 6vw, 60px) auto 0;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}

/*==================================
SYSTEM ARCHITECTURE
==================================*/

.pp-architecture {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #05070B;
}

.architecture-track {
    position: relative;
    max-width: 640px;
    margin: clamp(70px, 10vw, 110px) auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.architecture-item {
    text-align: center;
    max-width: 460px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.architecture-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.architecture-node-wrap {
    position: relative;
    width: 26px;
    height: 26px;
    margin: 0 auto 18px;
}

.architecture-dot {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(79, 246, 255, .8);
    transition: transform .4s ease, box-shadow .4s ease;
}

.architecture-node-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(79, 246, 255, .3);
    animation: architecture-ping 2.6s ease-out infinite;
}

@keyframes architecture-ping {

    0% {
        transform: scale(.6);
        opacity: .8;
    }

    80%,
    100% {
        transform: scale(1.6);
        opacity: 0;
    }

}

.architecture-item:hover .architecture-dot {
    transform: scale(1.35);
    box-shadow: 0 0 24px rgba(79, 246, 255, 1);
}

.architecture-step {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 8px;
}

.architecture-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #C7D3DE;
    transition: color .35s;
}

.architecture-item:hover h3 {
    color: #FFFFFF;
}

.architecture-item p {
    color: #8DA0B2;
    line-height: 1.7;
    font-size: 14.5px;
    max-width: 420px;
    margin: 0 auto;
    transition: color .35s;
}

.architecture-item:hover p {
    color: #C3D1DE;
}

.architecture-connector {
    width: 2px;
    height: 46px;
    background: rgba(79, 246, 255, .12);
    position: relative;
    overflow: hidden;
}

.architecture-connector::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--cyan), rgba(79, 246, 255, .2));
    box-shadow: 0 0 10px rgba(79, 246, 255, .6);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s ease, box-shadow .4s ease;
}

.architecture-connector.in-view::after {
    transform: scaleY(1);
}

.architecture-item:hover+.architecture-connector::after {
    box-shadow: 0 0 16px rgba(79, 246, 255, 1);
}

@media(max-width: 560px) {
    .architecture-connector {
        height: 34px;
    }
}

/*==================================
PRODUCT SYSTEM FAMILIES
==================================*/

.pp-families {
    padding: clamp(90px, 16vw, 180px) 6%;
    background: linear-gradient(180deg, #05070B 0%, #070A10 50%, #05070B 100%);
    overflow-x: clip;
}

.family-list {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.family-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
    scroll-margin-top: 130px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.family-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.family-card.reverse .family-media {
    order: 2;
}

.family-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient(circle, rgba(79, 246, 255, .08), transparent 70%);
    border: 1px solid rgba(79, 246, 255, .08);
}

.family-media::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(79, 246, 255, .15);
    filter: blur(90px);
    transition: .5s;
}

.family-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(79, 246, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 246, 255, .04) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: .2;
}

.family-media img {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 420px;
    transition: .6s;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));
}

.family-card:hover .family-media img {
    transform: translateY(-8px) scale(1.03);
}

.family-card:hover .family-media::before {
    transform: scale(1.15);
    background: rgba(79, 246, 255, .25);
}

/* Infrastructure-level families without a product render: an abstract
   engineering-grid panel instead of a photo, reinforcing "this is a
   system, not a catalogue item." */
.family-media.is-abstract {
    min-height: 340px;
}

.family-media.is-abstract::before {
    width: 260px;
    height: 260px;
}

.family-media.is-abstract::after {
    background-size: 28px 28px;
    opacity: .3;
}

.family-eyebrow {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 4px;
}

.family-content h3 {
    font-size: clamp(26px, 3.2vw, 38px);
    margin: 20px 0 10px;
    line-height: 1.15;
}

.family-subtitle {
    display: block;
    color: var(--cyan);
    font-size: 14px;
    letter-spacing: .5px;
    margin-bottom: 22px;
}

.family-content>p {
    color: #AEB8C5;
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 30px;
}

.family-block {
    margin-bottom: 30px;
}

.family-block-title {
    display: block;
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.family-list-items {
    list-style: none;
    padding: 0;
}

.family-list-items li {
    color: #C7D3DE;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
}

.family-list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
}

.family-role {
    margin-bottom: 30px;
    padding: 16px 20px;
    border-left: 2px solid var(--cyan);
    background: rgba(79, 246, 255, .04);
    border-radius: 0 12px 12px 0;
    color: #C7D3DE;
    font-size: 14.5px;
    line-height: 1.6;
}

.family-role span {
    display: block;
    color: var(--cyan);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

@media(max-width: 1000px) {

    .family-card,
    .family-card.reverse {
        grid-template-columns: 1fr;
    }

    .family-card.reverse .family-media {
        order: 0;
    }

    .family-content h3 {
        font-size: 30px;
    }
}

/*==================================
CUSTOM ENGINEERED SYSTEMS
==================================*/

.pp-custom {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 16vw, 180px) 6%;
    background: #070A10;
    text-align: center;
    scroll-margin-top: 100px;
}

.pp-custom-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(79, 246, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 246, 255, .05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(60% 70% at 50% 50%, black, transparent 85%);
    mask-image: radial-gradient(60% 70% at 50% 50%, black, transparent 85%);
}

.pp-custom-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.pp-custom-inner h2 {
    margin-top: 25px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
}

.pp-custom-subtitle {
    display: block;
    margin-top: 16px;
    color: var(--cyan);
    font-size: 14px;
    letter-spacing: 1px;
}

.pp-custom-inner>p {
    margin: 28px auto 0;
    color: #A6B8C8;
    line-height: 1.9;
    font-size: clamp(16px, 1.8vw, 18px);
}

.pp-custom-tags {
    justify-content: center;
    margin: 30px auto 0;
}

.pp-custom-statement {
    margin-top: 34px;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
}

.pp-custom-cta {
    margin-top: 45px;
}

/*==================================
CHOOSING THE RIGHT ARCHITECTURE
==================================*/

.pp-compare {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #070B11;
}

.architecture-picker {
    max-width: 800px;
    margin: clamp(50px, 8vw, 90px) auto 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(79, 246, 255, .12);
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(20px);
}

.picker-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .3s;
}

.picker-row:last-child {
    border-bottom: none;
}

.picker-row:hover {
    background: rgba(79, 246, 255, .05);
}

.picker-name {
    flex: 0 0 220px;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: .3px;
}

.picker-arrow {
    flex-shrink: 0;
    color: var(--cyan);
    font-size: 16px;
}

.picker-role {
    color: #AEB8C5;
    font-size: 15px;
}

@media(max-width: 700px) {

    .picker-row {
        flex-wrap: wrap;
        gap: 6px 18px;
    }

    .picker-name {
        flex: 1 1 100%;
    }
}

/*==================================
INDUSTRIES SERVED
==================================*/

.pp-industries {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #05070B;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: clamp(50px, 8vw, 90px) auto 0;
}

.industry-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(79, 246, 255, .08);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .4s ease, border-color .4s ease, background .4s ease;
}

.industry-chip.in-view {
    opacity: 1;
    transform: translateY(0);
}

.industry-chip:hover {
    border-color: rgba(79, 246, 255, .3);
    background: rgba(79, 246, 255, .045);
    transform: translateY(-6px);
}

.industry-icon {
    font-size: 30px;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(79, 246, 255, .3));
}

.industry-chip span:last-child {
    color: #C7D3DE;
    font-size: 14px;
    line-height: 1.4;
}

@media(max-width: 900px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================
COMPLETE INDUSTRIAL COOLING SOLUTIONS
==================================*/

.pp-solutions {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #070B11;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: clamp(50px, 8vw, 90px) auto 0;
}

.solution-item {
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(79, 246, 255, .1);
    color: #D2DCE5;
    font-size: 14.5px;
    opacity: 0;
    transform: translateY(16px);
    /* Hover only ever animates border/background — the initial reveal
       below uses a separate `animation`, so hovering never inherits a
       staggered delay from the entrance effect. */
    transition: border-color .4s ease, background .4s ease;
}

.solution-item.in-view {
    animation: solution-in .5s ease forwards;
}

@keyframes solution-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-item:hover {
    border-color: rgba(79, 246, 255, .3);
    background: rgba(79, 246, 255, .045);
}

.solution-item:nth-child(2).in-view {
    animation-delay: .04s;
}

.solution-item:nth-child(3).in-view {
    animation-delay: .08s;
}

.solution-item:nth-child(4).in-view {
    animation-delay: .12s;
}

.solution-item:nth-child(5).in-view {
    animation-delay: .16s;
}

.solution-item:nth-child(6).in-view {
    animation-delay: .2s;
}

.solution-item:nth-child(7).in-view {
    animation-delay: .24s;
}

.solution-item:nth-child(8).in-view {
    animation-delay: .28s;
}

.solution-item:nth-child(9).in-view {
    animation-delay: .32s;
}

.solution-item:nth-child(10).in-view {
    animation-delay: .36s;
}

@media(max-width: 900px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================
WHY ENGINEERS CHOOSE LOHABOUR
==================================*/

.pp-engineers {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #05070B;
}

.pp-engineers-content {
    max-width: 720px;
    margin: clamp(50px, 8vw, 80px) auto 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}

.pp-engineers-content.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pp-engineers-content p {
    color: #C7D3DE;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.85;
    text-align: center;
}

/*==================================
WHY LOHABOUR SYSTEMS
==================================*/

.pp-why {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #070B11;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: clamp(50px, 8vw, 90px);
}

.value-card {
    padding: clamp(28px, 3vw, 38px) 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(79, 246, 255, .08);
    opacity: 0;
    transform: translateY(24px);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.value-card.in-view {
    animation: value-in .6s ease forwards;
}

@keyframes value-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 246, 255, .3);
    box-shadow: 0 25px 60px rgba(79, 246, 255, .12);
}

.value-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(66, 165, 255, .25), rgba(79, 246, 255, .15));
    margin-bottom: 26px;
    position: relative;
}

.value-mark::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 4px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.value-card p {
    color: #9FB1C2;
    line-height: 1.7;
    font-size: 14.5px;
}

@media(max-width: 900px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================
MEMORABLE STATEMENT BANNER
==================================*/

.pp-statement {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 14vw, 150px) 6%;
    background:
        radial-gradient(60% 80% at 50% 50%, rgba(79, 246, 255, .08), transparent 70%),
        #05070B;
    text-align: center;
}

.pp-statement .section-particles {
    z-index: 1;
}

.pp-statement-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}

.pp-statement-inner.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pp-statement h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(22px, 4vw, 42px);
    line-height: 1.4;
    font-weight: 600;
}

.pp-statement span {
    background: linear-gradient(135deg, #42A5FF, #4FF6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*==================================
PRODUCT SELECTION WIZARD
==================================*/

.pp-wizard {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #05070B;
}

.selection-factors {
    max-width: 720px;
    margin: clamp(40px, 6vw, 60px) auto 0;
    text-align: center;
}

.selection-factors-lead {
    display: block;
    color: #8DA4B8;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.selection-factors-tags {
    justify-content: center;
}

.selection-factors-note {
    margin-top: 24px;
    color: #9FB1C2;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.wizard-panel {
    max-width: 720px;
    margin: clamp(50px, 7vw, 70px) auto 0;
    padding: clamp(30px, 4vw, 50px);
    border-radius: 28px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(79, 246, 255, .12);
    backdrop-filter: blur(20px);
}

.wizard-progress {
    margin-bottom: 40px;
}

.wizard-progress-track {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
    margin-bottom: 22px;
}

.wizard-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width .5s ease;
}

.wizard-dots {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #8DA0B2;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: .35s;
}

.dot.active {
    color: #05070B;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-color: transparent;
    box-shadow: 0 0 16px rgba(79, 246, 255, .5);
}

.dot.done {
    color: var(--cyan);
    border-color: rgba(79, 246, 255, .4);
}

.wizard-step {
    display: none;
    animation: wizard-fade .4s ease;
}

.wizard-step.is-active {
    display: block;
}

@keyframes wizard-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.wizard-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.wizard-option {
    padding: 14px 26px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(79, 246, 255, .18);
    color: #C7D3DE;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.wizard-option:hover {
    border-color: rgba(79, 246, 255, .5);
    color: white;
}

.wizard-option.selected {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #05070B;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(79, 246, 255, .3);
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.wizard-nav .btn-primary:disabled,
.wizard-nav .btn-primary[disabled] {
    opacity: .35;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.wizard-result {
    text-align: center;
}

.wizard-result-title {
    margin-top: 22px;
    font-size: clamp(24px, 3vw, 34px);
    background: linear-gradient(135deg, #42A5FF, #4FF6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wizard-result-text {
    margin: 20px auto 0;
    max-width: 480px;
    color: #AEB8C5;
    line-height: 1.8;
    font-size: 15.5px;
}

.wizard-result-trust {
    margin: 18px auto 0;
    max-width: 440px;
    color: #7F93A6;
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
}

.wizard-result-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

@media(max-width: 560px) {
    .wizard-nav {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wizard-nav .btn-primary,
    .wizard-nav .btn-secondary {
        width: 100%;
    }
}

/*==================================
ENGINEERING SUPPORT
==================================*/

.pp-support {
    padding: clamp(90px, 14vw, 160px) 6%;
    background: #070B11;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: clamp(50px, 8vw, 90px) auto 0;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(79, 246, 255, .08);
    color: #D2DCE5;
    font-size: 15px;
}

.support-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 246, 255, .12);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
}

@media(max-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}