:root {
    --o2-blue: #0a78e8;
    --o2-blue-dark: #001e58;
    --o2-cyan: #00a7d8;
    --o2-green: #00b7b5;
    --o2-green-dark: #007d91;
    --o2-text: #12264a;
    --o2-muted: #61718e;
    --o2-soft: #f4f8fb;
    --o2-border: #d9e6ef;
    --o2-white: #ffffff;
    --o2-shadow: 0 20px 50px rgba(0, 30, 88, 0.10);
    --o2-radius: 22px;
    --o2-container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.o2-theme {
    margin: 0;
    color: var(--o2-text);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.o2-container {
    width: min(calc(100% - 40px), var(--o2-container));
    margin-inline: auto;
}

.content-narrow { max-width: 860px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--o2-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 78px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.site-brand__text strong { color: var(--o2-blue); }

.site-brand__icon {
    position: relative;
    width: 58px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--o2-blue);
    font-weight: 800;
    font-size: 22px;
    border: 4px solid var(--o2-blue);
    border-left: 0;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 12px;
    padding-right: 6px;
}

.site-brand__icon::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    border-top: 4px solid var(--o2-blue);
    border-left: 4px solid var(--o2-blue);
    transform: rotate(45deg);
    top: -15px;
    left: 10px;
}

.site-brand__icon sub { font-size: 12px; }

.air-line {
    position: absolute;
    left: -30px;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--o2-cyan), var(--o2-green));
}

.air-line--1 { top: 16px; }
.air-line--2 { top: 26px; }

.site-nav { margin-left: auto; }

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--o2-muted);
    font-size: 15px;
    font-weight: 650;
}

.site-nav__list a:hover { color: var(--o2-blue); }

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-link {
    color: var(--o2-muted);
    font-weight: 650;
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}

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

.btn--primary {
    background: var(--o2-blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(10, 120, 232, .20);
}

.btn--secondary {
    background: #fff;
    color: var(--o2-blue);
    border-color: #b9d9e8;
}

.btn--green {
    background: var(--o2-green);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 183, 181, .20);
}

.btn--green:hover { background: var(--o2-green-dark); }
.btn--small { min-height: 38px; padding: 0 16px; font-size: 14px; }
.btn--full { width: 100%; }

.page-content { padding: 70px 0; }

.page-card, .article-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: var(--o2-radius);
    padding: 40px;
    box-shadow: var(--o2-shadow);
}

.home-hero,
.hero-condensation {
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(0,167,216,.25), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
}

.home-hero__grid,
.hero-condensation__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 52px;
    align-items: center;
    min-height: 620px;
    padding: 76px 0;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--o2-green-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
}

h1, h2, h3 {
    margin: 0 0 16px;
    color: var(--o2-blue-dark);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

h1 { font-size: clamp(44px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: 22px; }

p {
    color: var(--o2-muted);
    margin: 0 0 20px;
}

.hero-condensation__copy p,
.home-hero p {
    font-size: 20px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: var(--o2-muted);
    font-weight: 700;
    font-size: 14px;
}

.mock-window,
.window-card {
    position: relative;
    min-height: 430px;
    border-radius: 32px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,.2)),
        linear-gradient(135deg, #d9eef6, #ffffff 42%, #b4d7e8);
    border: 16px solid #fff;
    box-shadow: var(--o2-shadow);
    overflow: hidden;
}

.mock-window::before,
.window-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.9) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 2px);
    background-size: 42px 58px, 28px 34px;
    opacity: .65;
}

.mock-window__pane,
.window-card__glass {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,.8) 49%, rgba(255,255,255,.8) 51%, transparent 52%),
        linear-gradient(180deg, transparent 47%, rgba(255,255,255,.75) 48%, rgba(255,255,255,.75) 50%, transparent 51%);
}

.mock-sensor,
.sensor-card {
    position: absolute;
    right: 44px;
    bottom: 38px;
    width: 92px;
    height: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f7f6;
    border: 1px solid #cfd9d5;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(0,30,88,.15);
    z-index: 2;
}

.mock-sensor strong,
.sensor-card strong {
    font-size: 28px;
    color: #263228;
}

.mock-sensor span,
.sensor-card span {
    color: #526056;
    font-weight: 700;
}

.o2-section { padding: 76px 0; }

.o2-section--soft {
    background: var(--o2-soft);
    border-block: 1px solid var(--o2-border);
}

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

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

.symptom-grid,
.cause-grid,
.problem-grid,
.product-grid,
.trust-grid {
    display: grid;
    gap: 18px;
}

.symptom-grid { grid-template-columns: repeat(5, 1fr); }

.symptom-card {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    background: #fff;
    color: var(--o2-text);
    text-align: left;
    font: inherit;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
}

.symptom-card.is-selected {
    border-color: var(--o2-green);
    box-shadow: 0 14px 28px rgba(0, 183, 181, .14);
}

.symptom-card span {
    color: var(--o2-blue);
    display: block;
    margin-bottom: 24px;
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.cause-grid { grid-template-columns: repeat(5, 1fr); }

.cause-grid > div,
.problem-card,
.trust-grid > div {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
}

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

.cause-grid span,
.problem-card span {
    display: block;
    font-size: 32px;
    margin-bottom: 14px;
}

.solution-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 38px;
    align-items: start;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.steps-grid > div {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
}

.steps-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}

.bundle-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 26px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.bundle-card ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    gap: 10px;
}

.bundle-card li,
.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--o2-muted);
    font-weight: 650;
}

.bundle-card li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--o2-green);
    font-weight: 900;
}

.badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 18px;
}

.price {
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 24px 0;
    color: var(--o2-blue-dark);
}

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

.product-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
}

.product-card strong {
    margin-top: auto;
    display: block;
    font-size: 22px;
    margin-bottom: 14px;
}

.product-visual {
    height: 130px;
    border-radius: 16px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e8f5f9, #ffffff);
    border: 1px solid var(--o2-border);
    position: relative;
    overflow: hidden;
}

.product-visual.sensor::after {
    content: "56%\A21.3°";
    white-space: pre;
    position: absolute;
    inset: 28px auto auto 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 76px;
    border-radius: 12px;
    border: 1px solid #b8c8c9;
    background: #f7faf8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    color: #2e3a32;
}

.product-visual.spray::after {
    content: "";
    position: absolute;
    width: 42px;
    height: 92px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #bfd0d7;
    left: 50%;
    top: 26px;
    transform: translateX(-50%);
    box-shadow: inset 0 30px 0 rgba(0,167,216,.18);
}

.product-visual.cloth::after {
    content: "";
    position: absolute;
    width: 96px;
    height: 64px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c6c9cb, #f0f0f0);
    left: 50%;
    top: 38px;
    transform: translateX(-50%) rotate(-5deg);
}

.product-visual.air::after {
    content: "↻";
    position: absolute;
    font-size: 74px;
    color: var(--o2-blue);
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
}

.not-enough {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 50px;
    align-items: center;
}

.airflow-house {
    min-height: 280px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 65%, rgba(0,183,181,.25), transparent 18%),
        linear-gradient(135deg, #e8f5f9, #fff);
    border: 1px solid var(--o2-border);
    box-shadow: var(--o2-shadow);
    position: relative;
}

.airflow-house::before {
    content: "⌂";
    position: absolute;
    font-size: 180px;
    color: var(--o2-blue);
    opacity: .8;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -56%);
}

.airflow-house::after {
    content: "→  →  →";
    position: absolute;
    color: var(--o2-green);
    font-weight: 900;
    font-size: 32px;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
}

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

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

.faq details {
    border: 1px solid var(--o2-border);
    border-radius: 16px;
    background: #fff;
    padding: 18px 22px;
}

.faq summary {
    cursor: pointer;
    font-weight: 850;
    color: var(--o2-blue-dark);
}

.faq p { margin: 14px 0 0; }

.final-cta {
    padding: 70px 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(0,167,216,.26), transparent 28%),
        linear-gradient(135deg, #eef8fb, #ffffff);
}

.final-cta__inner {
    text-align: center;
    max-width: 760px;
}

.site-footer {
    padding: 56px 0 26px;
    background: var(--o2-blue-dark);
    color: rgba(255,255,255,.82);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,.72);
    margin-top: 8px;
}

.site-footer strong {
    display: block;
    color: #fff;
    margin-bottom: 8px;
}

.site-footer__bottom {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 14px;
    color: rgba(255,255,255,.55);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--o2-blue);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .site-header__inner { flex-wrap: wrap; padding: 14px 0; }
    .site-nav { order: 3; width: 100%; }
    .site-nav__list { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .site-header__actions { margin-left: auto; }

    .home-hero__grid,
    .hero-condensation__grid,
    .solution-layout,
    .not-enough {
        grid-template-columns: 1fr;
    }

    .symptom-grid,
    .cause-grid,
    .product-grid,
    .trust-grid,
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .o2-container {
        width: min(calc(100% - 28px), var(--o2-container));
    }

    .site-header__actions .cart-link { display: none; }
    .site-brand { font-size: 20px; }

    h1 { font-size: 42px; }
    h2 { font-size: 32px; }

    .home-hero__grid,
    .hero-condensation__grid {
        min-height: unset;
        padding: 46px 0;
    }

    .mock-window,
    .window-card {
        min-height: 310px;
    }

    .symptom-grid,
    .cause-grid,
    .steps-grid,
    .product-grid,
    .trust-grid,
    .site-footer__grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .trust-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { width: 100%; }
}

.consultation-hero {
    background:
        radial-gradient(circle at 75% 25%, rgba(0,183,181,.18), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}

.consultation-hero__grid,
.consultation-layout {
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 44px;
    align-items: start;
}

.consultation-hero p {
    font-size: 20px;
    max-width: 700px;
}

.consultation-info-card,
.side-card,
.o2-form {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    box-shadow: var(--o2-shadow);
}

.consultation-info-card,
.side-card {
    padding: 28px;
}

.consultation-info-card ul,
.side-card ul {
    margin-bottom: 0;
}

.o2-form {
    padding: 34px;
}

.form-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--o2-border);
}

.form-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 16px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.o2-form label {
    display: grid;
    gap: 8px;
    color: var(--o2-blue-dark);
    font-weight: 800;
}

.o2-form input,
.o2-form select,
.o2-form textarea {
    width: 100%;
    border: 1px solid var(--o2-border);
    border-radius: 14px;
    min-height: 48px;
    padding: 12px 14px;
    font: inherit;
    color: var(--o2-text);
    background: #fff;
}

.o2-form textarea {
    resize: vertical;
}

.o2-form input:focus,
.o2-form select:focus,
.o2-form textarea:focus {
    outline: 3px solid rgba(0,167,216,.22);
    border-color: var(--o2-cyan);
}

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

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid var(--o2-border);
    border-radius: 14px;
    background: var(--o2-soft);
}

.checkbox-grid input {
    width: 18px;
    height: 18px;
    min-height: auto;
}

.form-note {
    font-size: 14px;
    margin-bottom: 22px;
}

.consultation-side {
    display: grid;
    gap: 18px;
}

.side-card--soft {
    background: var(--o2-soft);
}

@media (max-width: 980px) {
    .consultation-hero__grid,
    .consultation-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .o2-form {
        padding: 22px;
    }
}

.home-hero--v2 .home-hero__grid {
    grid-template-columns: 1fr .82fr;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-proof span {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid var(--o2-border);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: var(--o2-muted);
    font-size: 14px;
    font-weight: 750;
}

.diagnosis-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--o2-shadow);
    max-width: 460px;
    margin-left: auto;
}

.diagnosis-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--o2-muted);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 22px;
}

.diagnosis-card__top strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--o2-soft);
    color: var(--o2-blue);
}

.mini-choice {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid var(--o2-border);
    border-radius: 16px;
    margin-bottom: 12px;
    font-weight: 850;
    color: var(--o2-blue-dark);
    background: #fff;
}

.mini-choice.is-active {
    border-color: var(--o2-green);
    background: rgba(0,183,181,.08);
}

.problem-router-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.problem-router-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.problem-router-card:hover {
    transform: translateY(-4px);
    border-color: rgba(10,120,232,.35);
    box-shadow: 0 22px 42px rgba(0,30,88,.12);
}

.problem-router-card--main {
    border-color: rgba(0,183,181,.45);
    background:
        radial-gradient(circle at 85% 15%, rgba(0,183,181,.13), transparent 34%),
        #fff;
}

.problem-icon {
    font-size: 34px;
    margin-bottom: 22px;
}

.problem-router-card strong {
    color: var(--o2-blue-dark);
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.problem-router-card p {
    font-size: 15px;
    margin-bottom: 18px;
}

.problem-router-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 900;
}

.home-solution-grid {
    display: grid;
    grid-template-columns: 1fr .48fr;
    gap: 44px;
    align-items: center;
}

.bundle-card--homepage {
    transform: rotate(.4deg);
}

.ventoxx-trust {
    display: grid;
    grid-template-columns: 1fr .58fr;
    gap: 50px;
    align-items: center;
    padding: 44px;
    border: 1px solid var(--o2-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at 78% 30%, rgba(0,167,216,.20), transparent 30%),
        linear-gradient(135deg, #ffffff, #f5fbfd);
    box-shadow: var(--o2-shadow);
}

.ventoxx-card {
    min-height: 300px;
    border-radius: 26px;
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(0,30,88,.92), rgba(10,120,232,.88));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 24px 48px rgba(0,30,88,.25);
}

.ventoxx-card span {
    color: rgba(255,255,255,.72);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 16px;
}

.ventoxx-card strong {
    font-size: clamp(42px, 5vw, 72px);
    letter-spacing: .08em;
    line-height: 1;
}

.ventoxx-card p {
    margin-top: 20px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.flow-grid > div {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.flow-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.flow-grid strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 21px;
    margin-bottom: 10px;
}

.hero-actions--center {
    justify-content: center;
}

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

@media (max-width: 980px) {
    .home-hero--v2 .home-hero__grid,
    .home-solution-grid,
    .ventoxx-trust {
        grid-template-columns: 1fr;
    }

    .diagnosis-card {
        margin-left: 0;
        max-width: none;
    }

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

@media (max-width: 720px) {
    .problem-router-grid {
        grid-template-columns: 1fr;
    }

    .problem-router-card {
        min-height: auto;
    }

    .ventoxx-trust {
        padding: 26px;
    }
}

.ventoxx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.ventoxx-card {
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.ventoxx-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 58px rgba(0,30,88,.32);
}

.ventoxx-card em {
    color: rgba(255,255,255,.92);
    font-style: normal;
    font-weight: 900;
    margin-top: 12px;
}

/* WooCommerce catalog + product page polish */
.o2-woocommerce-main {
    padding: 56px 0 86px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.o2-woocommerce-main .woocommerce-breadcrumb {
    color: var(--o2-muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.o2-woocommerce-main .page-title,
.o2-woocommerce-main .product_title {
    color: var(--o2-blue-dark);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.o2-woocommerce-main .page-title {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 14px;
}

.o2-woocommerce-main .woocommerce-result-count {
    color: var(--o2-muted);
    font-weight: 650;
    margin-bottom: 24px;
}

.o2-woocommerce-main .woocommerce-ordering {
    margin-bottom: 24px;
}

.o2-woocommerce-main .woocommerce-ordering select {
    min-height: 44px;
    border: 1px solid var(--o2-border);
    border-radius: 12px;
    padding: 8px 12px;
    background: #fff;
    color: var(--o2-text);
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 16px !important;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: 0 22px 44px rgba(0,30,88,.11);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    padding: 20px;
    margin: 0 0 16px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 17px;
    line-height: 1.2;
    color: var(--o2-blue-dark);
    font-weight: 900;
    padding: 0 !important;
    margin: 0 0 10px !important;
    min-height: 42px;
}

.woocommerce ul.products li.product .price {
    font-size: 18px;
    color: var(--o2-blue-dark) !important;
    font-weight: 900;
    margin: auto 0 14px !important;
    letter-spacing: 0;
}

.woocommerce ul.products li.product .price del {
    color: var(--o2-muted) !important;
    opacity: .65;
    margin-right: 6px;
}

.woocommerce span.onsale {
    background: var(--o2-green);
    color: #fff;
    border-radius: 999px;
    min-width: auto;
    min-height: auto;
    padding: 8px 12px;
    line-height: 1;
    font-size: 13px;
    font-weight: 900;
}

.woocommerce ul.products li.product .button {
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Single product */
.woocommerce div.product {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--o2-shadow);
}

.woocommerce div.product div.images {
    width: 48%;
    margin-bottom: 0;
}

.woocommerce div.product div.summary {
    width: 47%;
    margin-bottom: 0;
}

.woocommerce div.product div.images img {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 24px;
}

.woocommerce div.product .product_title {
    font-size: clamp(38px, 4.5vw, 62px);
    margin-bottom: 16px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--o2-blue-dark);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: var(--o2-muted);
    opacity: .65;
    font-size: 22px;
    margin-right: 8px;
}

.woocommerce div.product form.cart {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 22px 0 18px;
}

.woocommerce div.product form.cart div.quantity {
    margin: 0 !important;
}

.woocommerce .quantity .qty {
    min-height: 46px;
    width: 72px;
    border: 1px solid var(--o2-border);
    border-radius: 12px;
    padding: 8px;
}

.woocommerce div.product form.cart .button {
    min-height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    background: var(--o2-blue);
    color: #fff;
}

.woocommerce div.product .product_meta {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--o2-border);
    color: var(--o2-muted);
    font-size: 14px;
}

.woocommerce div.product .woocommerce-tabs {
    clear: both;
    padding-top: 48px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 24px;
    border-bottom: 1px solid var(--o2-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid var(--o2-border);
    background: #fff;
    border-radius: 12px 12px 0 0;
    margin-right: 6px;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.05);
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 32px;
}

.o2-product-secondary-cta {
    margin-top: 16px;
    padding: 18px;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    border-radius: 18px;
}

.o2-product-secondary-cta .btn {
    width: 100%;
}

.o2-product-secondary-cta p {
    margin: 12px 0 0;
    font-size: 14px;
}

/* Store notice / misc */
.woocommerce-store-notice,
p.demo_store {
    background: var(--o2-blue);
}

@media (max-width: 980px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100%;
        float: none;
    }

    .woocommerce div.product div.images {
        margin-bottom: 28px;
    }
}

@media (max-width: 640px) {
    .o2-woocommerce-main {
        padding: 34px 0 64px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product {
        padding: 20px;
        border-radius: 22px;
    }

    .woocommerce div.product .product_title {
        font-size: 36px;
    }

    .woocommerce div.product form.cart {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce .quantity .qty {
        width: 100%;
    }
}

/* WooCommerce cart / checkout block polish */
.wc-block-cart,
.wc-block-checkout {
    font-family: inherit;
}

.wc-block-cart .wc-block-cart__main,
.wc-block-cart .wc-block-cart__sidebar,
.wc-block-checkout .wc-block-checkout__main,
.wc-block-checkout .wc-block-checkout__sidebar {
    font-size: 16px;
}

.wc-block-cart .wc-block-components-product-name,
.wc-block-components-product-name {
    color: var(--o2-blue-dark);
    font-weight: 900;
    font-size: 16px;
    line-height: 1.25;
}

.wc-block-cart .wc-block-components-product-price,
.wc-block-cart .wc-block-components-product-price__value,
.wc-block-cart .wc-block-components-totals-item__value,
.wc-block-cart .wc-block-components-order-summary-item__total-price,
.wc-block-checkout .wc-block-components-product-price,
.wc-block-checkout .wc-block-components-product-price__value,
.wc-block-checkout .wc-block-components-totals-item__value,
.wc-block-checkout .wc-block-components-order-summary-item__total-price {
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    color: var(--o2-blue-dark) !important;
    letter-spacing: 0 !important;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 24px !important;
}

.wc-block-cart .wc-block-components-product-metadata,
.wc-block-components-product-metadata {
    color: var(--o2-muted);
    font-size: 14px;
    line-height: 1.45;
}

.wc-block-cart .wc-block-cart-items__row {
    padding-block: 22px;
}

.wc-block-cart .wc-block-cart-item__image img,
.wc-block-checkout .wc-block-components-order-summary-item__image img {
    object-fit: contain;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    border-radius: 12px;
    padding: 8px;
}

.wc-block-components-quantity-selector {
    border-radius: 12px;
    border-color: var(--o2-border);
}

.wc-block-components-button:not(.is-link) {
    border-radius: 12px !important;
    min-height: 48px;
    font-weight: 900;
}

.wc-block-cart .wc-block-cart__submit-button,
.wc-block-checkout .wc-block-components-checkout-place-order-button {
    background: var(--o2-blue-dark) !important;
    color: #fff !important;
}

.wc-block-components-panel__button,
.wc-block-components-totals-coupon-link {
    color: var(--o2-blue) !important;
    font-weight: 800;
}

.wc-block-components-totals-wrapper {
    border-color: var(--o2-border) !important;
}

@media (max-width: 640px) {
    .wc-block-cart .wc-block-cart__main,
    .wc-block-cart .wc-block-cart__sidebar,
    .wc-block-checkout .wc-block-checkout__main,
    .wc-block-checkout .wc-block-checkout__sidebar {
        font-size: 15px;
    }
}

/* Checkout order summary cleanup */
.wc-block-checkout .wc-block-components-sidebar {
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0,30,88,.07);
    padding: 0 !important;
    overflow: hidden;
}

.wc-block-checkout .wc-block-components-sidebar h2,
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-title {
    font-size: 24px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    padding: 22px 22px 10px !important;
    color: var(--o2-blue-dark) !important;
    letter-spacing: -0.03em;
}

.wc-block-checkout .wc-block-components-order-summary {
    padding: 0 22px 8px !important;
}

.wc-block-checkout .wc-block-components-order-summary-item {
    display: grid !important;
    grid-template-columns: 54px 1fr auto !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--o2-border);
}

.wc-block-checkout .wc-block-components-order-summary-item__image {
    width: 54px !important;
    height: 54px !important;
    align-self: center !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__image img {
    width: 54px !important;
    height: 54px !important;
    object-fit: contain;
    padding: 6px;
}

.wc-block-checkout .wc-block-components-order-summary-item__quantity {
    display: none !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__description {
    display: block !important;
    padding: 0 !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-name {
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    margin: 0 !important;
    color: var(--o2-blue-dark) !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-metadata,
.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-metadata__description,
.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-details,
.wc-block-checkout .wc-block-components-order-summary-item__description p {
    display: none !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__total-price {
    align-self: center !important;
    justify-self: end !important;
    font-size: 18px !important;
    white-space: nowrap !important;
}

.wc-block-checkout .wc-block-components-totals-wrapper {
    padding-inline: 22px !important;
}

.wc-block-checkout .wc-block-components-totals-coupon {
    padding-top: 10px !important;
}

.wc-block-checkout .wc-block-components-totals-item {
    font-size: 15px !important;
    padding: 10px 0 !important;
}

.wc-block-checkout .wc-block-components-totals-footer-item {
    padding-top: 18px !important;
    margin-top: 6px !important;
}

.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--o2-blue-dark);
}

.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 24px !important;
    font-weight: 900 !important;
}

.wc-block-components-totals-coupon__form {
    padding-top: 12px;
}

@media (max-width: 980px) {
    .wc-block-checkout .wc-block-components-order-summary-item {
        grid-template-columns: 46px 1fr auto !important;
    }

    .wc-block-checkout .wc-block-components-order-summary-item__image,
    .wc-block-checkout .wc-block-components-order-summary-item__image img {
        width: 46px !important;
        height: 46px !important;
    }
}

/* Problems hub + unfinished problem templates */
.problems-hub-hero,
.placeholder-hero {
    background:
        radial-gradient(circle at 78% 20%, rgba(0,167,216,.24), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}

.problems-hub-hero__grid,
.placeholder-hero__grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 52px;
    align-items: center;
}

.problems-hub-hero p,
.placeholder-hero p {
    font-size: 20px;
    max-width: 720px;
}

.home-map-card,
.placeholder-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--o2-shadow);
}

.home-map-card > span,
.placeholder-card > span {
    display: block;
    color: var(--o2-green-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    margin-bottom: 18px;
}

.home-map-card div {
    padding: 15px 16px;
    border: 1px solid var(--o2-border);
    border-radius: 16px;
    margin-top: 12px;
    font-weight: 850;
    color: var(--o2-blue-dark);
    background: var(--o2-soft);
}

.problem-router-grid--hub {
    grid-template-columns: repeat(5, 1fr);
}

.hub-method-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 42px;
    align-items: center;
}

.flow-grid--compact {
    grid-template-columns: repeat(3, 1fr);
}

.placeholder-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.placeholder-card strong {
    display: block;
    font-size: clamp(34px, 4vw, 54px);
    color: var(--o2-blue-dark);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.placeholder-step {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.placeholder-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.placeholder-step strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 21px;
    margin-bottom: 10px;
}

.center-text {
    text-align: center;
}

@media (max-width: 1100px) {
    .problem-router-grid--hub {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .problems-hub-hero__grid,
    .placeholder-hero__grid,
    .hub-method-grid {
        grid-template-columns: 1fr;
    }

    .flow-grid--compact,
    .placeholder-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .problem-router-grid--hub {
        grid-template-columns: 1fr;
    }
}

/* Bundles page */
.bundles-hero {
    background:
        radial-gradient(circle at 76% 22%, rgba(0,183,181,.20), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}

.bundles-hero__grid {
    display: grid;
    grid-template-columns: 1fr .62fr;
    gap: 52px;
    align-items: center;
}

.bundles-hero p {
    font-size: 20px;
    max-width: 720px;
}

.bundle-visual-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.bundle-visual-card > span {
    display: inline-flex;
    padding: 8px 12px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 18px;
}

.bundle-visual-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}

.bundle-visual-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.bundle-visual-card li {
    padding: 14px 16px;
    border: 1px solid var(--o2-border);
    border-radius: 14px;
    background: var(--o2-soft);
    color: var(--o2-blue-dark);
    font-weight: 850;
}

.featured-bundle-layout {
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 44px;
    align-items: start;
}

.bundle-includes-grid,
.future-bundles-grid {
    display: grid;
    gap: 18px;
}

.bundle-includes-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
}

.bundle-includes-grid > div,
.future-bundle-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.bundle-includes-grid span,
.future-bundle-card span {
    display: block;
    font-size: 32px;
    margin-bottom: 14px;
}

.bundle-includes-grid strong,
.future-bundle-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.bundle-buy-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--o2-shadow);
    position: sticky;
    top: 110px;
}

.bundle-link {
    display: block;
    color: var(--o2-blue);
    font-weight: 900;
    text-align: center;
    margin-top: 16px;
}

.future-bundles-grid {
    grid-template-columns: repeat(4, 1fr);
}

.future-bundle-card em {
    display: inline-flex;
    margin-top: 10px;
    color: var(--o2-green-dark);
    font-style: normal;
    font-weight: 900;
}

.bundles-method {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 44px;
    align-items: center;
}

@media (max-width: 1100px) {
    .future-bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .bundles-hero__grid,
    .featured-bundle-layout,
    .bundles-method {
        grid-template-columns: 1fr;
    }

    .bundle-buy-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .bundle-includes-grid,
    .future-bundles-grid {
        grid-template-columns: 1fr;
    }
}

/* Advanced diagnostics / calculators */
.diagnostics-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(0,167,216,.22), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.diagnostics-info-card {
    box-shadow: var(--o2-shadow);
}

.diagnostics-grid {
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 42px;
    align-items: start;
}

.diagnostics-grid--reverse {
    grid-template-columns: 1fr .42fr;
}

.diagnostic-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--o2-shadow);
    margin-top: 26px;
}

.diagnostic-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.diagnostic-form-grid label {
    display: grid;
    gap: 8px;
    font-weight: 850;
    color: var(--o2-blue-dark);
}

.diagnostic-form-grid input,
.diagnostic-form-grid select {
    width: 100%;
    border: 1px solid var(--o2-border);
    border-radius: 14px;
    min-height: 48px;
    padding: 0 14px;
    font: inherit;
    background: #fff;
}

.diagnostic-result {
    margin-top: 24px;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    background: var(--o2-soft);
    padding: 24px;
}

.diagnostic-result__label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(21,101,192,.12);
    color: var(--o2-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.diagnostic-result h3 {
    margin: 0 0 10px;
    color: var(--o2-blue-dark);
    font-size: 25px;
    letter-spacing: -0.03em;
}

.diagnostic-result p {
    margin-bottom: 18px;
}

.diagnostic-result__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.diagnostics-side-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    position: sticky;
    top: 110px;
}

.diagnostics-side-card--green {
    background: linear-gradient(180deg, rgba(0,183,181,.10), #fff);
}

.diagnostics-side-card h3 {
    margin-top: 0;
    color: var(--o2-blue-dark);
    font-size: 24px;
}

.consultation-page--advanced .o2-form .form-section:first-child {
    border-bottom: 1px solid var(--o2-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

@media (max-width: 980px) {
    .diagnostics-grid,
    .diagnostics-grid--reverse {
        grid-template-columns: 1fr;
    }

    .diagnostics-side-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .diagnostic-form-grid {
        grid-template-columns: 1fr;
    }

    .diagnostic-card {
        padding: 22px;
    }

    .diagnostic-result__actions {
        flex-direction: column;
    }

    .diagnostic-result__actions .btn {
        width: 100%;
    }
}

/* Mobile header / menu */
.custom-logo,
.site-brand img {
    display: block;
    width: auto;
    max-width: 285px;
    max-height: 82px;
    object-fit: contain;
}

.site-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--o2-border);
    border-radius: 14px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
}

.site-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--o2-blue-dark);
    transition: transform .2s ease, opacity .2s ease;
}

.site-nav__mobile-actions {
    display: none;
}

@media (max-width: 900px) {
    .site-header__inner {
        position: relative;
        min-height: 74px;
        padding: 10px 0;
        flex-wrap: nowrap !important;
        gap: 14px;
    }

    .custom-logo,
    .site-brand img {
        max-width: 230px;
        max-height: 64px;
    }

    .site-brand {
        min-width: 0;
    }

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

    .site-header__actions {
        display: none !important;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        margin-left: 0;
        background: #fff;
        border: 1px solid var(--o2-border);
        border-radius: 22px;
        box-shadow: var(--o2-shadow);
        padding: 14px;
        z-index: 80;
    }

    body.o2-mobile-menu-open .site-nav {
        display: block;
    }

    .site-nav__list {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 4px !important;
        justify-content: stretch !important;
        text-align: left;
        font-size: 16px;
    }

    .site-nav__list a {
        display: block;
        padding: 13px 14px;
        border-radius: 14px;
        color: var(--o2-blue-dark);
        font-weight: 850;
    }

    .site-nav__list a:hover {
        background: var(--o2-soft);
    }

    .site-nav__mobile-actions {
        display: grid;
        gap: 10px;
        padding-top: 12px;
        margin-top: 12px;
        border-top: 1px solid var(--o2-border);
    }

    .site-nav__mobile-actions .cart-link {
        display: block;
        padding: 13px 14px;
        border-radius: 14px;
        background: var(--o2-soft);
        color: var(--o2-blue-dark);
        font-weight: 900;
        text-align: center;
    }

    .site-nav__mobile-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.o2-mobile-menu-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.o2-mobile-menu-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.o2-mobile-menu-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .site-header__inner {
        min-height: 66px;
        padding: 8px 0;
    }

    .custom-logo,
    .site-brand img {
        max-width: 205px;
        max-height: 58px;
    }

    .site-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }
}

@media (max-width: 370px) {
    .custom-logo,
    .site-brand img {
        max-width: 178px;
    }
}

/* Guides page */
.guides-hero {
    background:
        radial-gradient(circle at 76% 20%, rgba(0,167,216,.24), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}

.guides-hero__grid {
    display: grid;
    grid-template-columns: 1fr .62fr;
    gap: 52px;
    align-items: center;
}

.guides-hero p {
    font-size: 20px;
    max-width: 720px;
}

.guides-visual-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.guides-visual-card > span {
    display: inline-flex;
    padding: 8px 12px;
    background: rgba(21,101,192,.10);
    color: var(--o2-blue);
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 18px;
}

.guides-visual-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.guide-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(21,101,192,.28);
    box-shadow: var(--o2-shadow);
}

.guide-card--featured {
    background: linear-gradient(180deg, rgba(0,167,216,.13), #fff);
}

.guide-card span {
    display: block;
    font-size: 36px;
    margin-bottom: 16px;
}

.guide-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 12px;
}

.guide-card p {
    margin-bottom: 20px;
}

.guide-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 900;
}

.guides-method {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 44px;
    align-items: center;
}

/* Improved footer */
.site-footer {
    background: var(--o2-blue-dark);
    color: rgba(255,255,255,.78);
    margin-top: 0;
    padding: 58px 0 24px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 38px;
}

.footer-brand img,
.site-footer .custom-logo {
    max-width: 210px;
    max-height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.site-footer__brand p {
    margin: 18px 0;
    max-width: 360px;
}

.footer-trust {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.16);
    color: #dfffe6;
    font-weight: 900;
    font-size: 13px;
}

.site-footer h3 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 16px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer a,
.site-footer span {
    color: rgba(255,255,255,.78);
}

.site-footer a:hover {
    color: #fff;
}

.footer-small {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255,255,255,.58);
    margin-top: 14px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 42px;
    padding-top: 22px;
    font-size: 14px;
    color: rgba(255,255,255,.58);
}

@media (max-width: 980px) {
    .guides-hero__grid,
    .guides-method {
        grid-template-columns: 1fr;
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .guides-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .guide-card {
        min-height: auto;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

/* Shop archive guided layout */
.o2-shop-archive {
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.o2-single-product-area {
    padding: 56px 0 86px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.shop-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(0,167,216,.22), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 76px 0 54px;
}

.shop-hero__grid {
    display: grid;
    grid-template-columns: 1fr .58fr;
    gap: 48px;
    align-items: center;
}

.shop-hero p {
    font-size: 20px;
    max-width: 720px;
}

.shop-hero-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--o2-shadow);
}

.shop-hero-card > span {
    display: inline-flex;
    padding: 8px 12px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 18px;
}

.shop-hero-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.shop-category-router {
    padding: 28px 0 10px;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.shop-category-grid a {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.shop-category-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(10,120,232,.28);
    box-shadow: 0 18px 34px rgba(0,30,88,.09);
}

.shop-category-grid span {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.shop-category-grid strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 16px;
    line-height: 1.15;
    margin-bottom: 6px;
}

.shop-category-grid em {
    color: var(--o2-muted);
    font-style: normal;
    font-size: 13px;
    font-weight: 750;
}

.o2-shop-content {
    padding: 34px 0 86px;
}

.o2-shop-archive .woocommerce-products-header {
    display: none;
}

.o2-shop-archive .woocommerce-notices-wrapper {
    margin-bottom: 18px;
}

.o2-shop-archive .woocommerce-result-count,
.o2-shop-archive .woocommerce-ordering {
    margin-top: 0;
}

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

@media (max-width: 900px) {
    .shop-hero__grid {
        grid-template-columns: 1fr;
    }

    .shop-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .shop-hero {
        padding: 54px 0 36px;
    }

    .shop-category-grid {
        grid-template-columns: 1fr;
    }
}

/* Thank you page */
.thank-you-hero {
    background:
        radial-gradient(circle at 50% 12%, rgba(0,183,181,.20), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 92px 0 78px;
    text-align: center;
}

.thank-you-hero__inner {
    max-width: 880px;
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: var(--o2-green);
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0,183,181,.25);
    margin-bottom: 22px;
}

.thank-you-hero p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.next-step-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 28px;
    min-height: 260px;
    color: inherit;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.next-step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.next-step-card span {
    display: block;
    font-size: 38px;
    margin-bottom: 18px;
}

.next-step-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 23px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.next-step-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 900;
}

.thank-you-note {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 44px;
    align-items: center;
}

@media (max-width: 900px) {
    .next-steps-grid,
    .thank-you-note {
        grid-template-columns: 1fr;
    }

    .next-step-card {
        min-height: auto;
    }
}

/* Full problem solution pages */
.problem-solution-hero {
    background:
        radial-gradient(circle at 78% 20%, rgba(0,167,216,.22), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}

.problem-solution-hero__grid {
    display: grid;
    grid-template-columns: 1fr .52fr;
    gap: 52px;
    align-items: center;
}

.problem-solution-hero p {
    font-size: 20px;
    max-width: 760px;
}

.problem-solution-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.problem-solution-card__icon {
    display: block;
    font-size: 58px;
    margin-bottom: 20px;
}

.problem-solution-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.problem-two-col {
    display: grid;
    grid-template-columns: .86fr 1fr;
    gap: 42px;
    align-items: start;
}

.symptom-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.symptom-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 16px;
    padding: 15px 16px;
    font-weight: 850;
    color: var(--o2-blue-dark);
    box-shadow: 0 8px 18px rgba(0,30,88,.04);
}

.symptom-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    border-radius: 999px;
    background: var(--o2-green);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.explain-card,
.recommendation-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.solution-path-grid {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 42px;
    align-items: start;
}

.solution-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-step-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 26px;
    min-height: 280px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.solution-step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.solution-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.solution-step-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.solution-step-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 900;
}

.problem-recommendation {
    max-width: 920px;
}

@media (max-width: 1100px) {
    .solution-step-grid {
        grid-template-columns: 1fr;
    }

    .solution-step-card {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .problem-solution-hero__grid,
    .problem-two-col,
    .solution-path-grid {
        grid-template-columns: 1fr;
    }
}

/* Ventoxx solution page */
.ventoxx-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(0,183,181,.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}

.ventoxx-hero__grid {
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 52px;
    align-items: center;
}

.ventoxx-hero p {
    font-size: 20px;
    max-width: 760px;
}

.ventoxx-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ventoxx-trust-row span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--o2-border);
    color: var(--o2-blue-dark);
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(0,30,88,.05);
}

.ventoxx-buy-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.ventoxx-buy-card h2 {
    color: var(--o2-blue-dark);
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -0.06em;
    margin: 18px 0 8px;
}

.ventoxx-buy-card .btn + .btn {
    margin-top: 12px;
}

.ventoxx-use-grid,
.ventoxx-flow-layout,
.ventoxx-spec-layout {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 42px;
    align-items: start;
}

.ventoxx-use-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ventoxx-use-cards div,
.ventoxx-flow-card,
.ventoxx-spec-card,
.ventoxx-spec-list div {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.ventoxx-use-cards span {
    display: block;
    font-size: 36px;
    margin-bottom: 14px;
}

.ventoxx-use-cards strong,
.ventoxx-flow-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 10px;
}

.ventoxx-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ventoxx-flow-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    min-height: 285px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ventoxx-flow-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.ventoxx-flow-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.ventoxx-flow-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 900;
}

.ventoxx-spec-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ventoxx-spec-list strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.ventoxx-spec-list span {
    color: var(--o2-muted);
    font-weight: 750;
}

@media (max-width: 1100px) {
    .ventoxx-flow-grid {
        grid-template-columns: 1fr;
    }

    .ventoxx-flow-card {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .ventoxx-hero__grid,
    .ventoxx-use-grid,
    .ventoxx-flow-layout,
    .ventoxx-spec-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ventoxx-use-cards,
    .ventoxx-spec-list {
        grid-template-columns: 1fr;
    }
}

/* Ventoxx discovery routing */
.site-header__solution-link {
    color: var(--o2-blue-dark);
    font-weight: 900;
    white-space: nowrap;
}

.shop-hero-card__link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--o2-blue);
    font-weight: 900;
}

/* Header active states + Ventoxx pill */
.site-nav__list a {
    position: relative;
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current-menu-ancestor > a,
.site-nav__list .current_page_ancestor > a,
.site-nav__list .current_page_parent > a {
    color: var(--o2-blue-dark);
    font-weight: 950;
}

.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after,
.site-nav__list .current-menu-ancestor > a::after,
.site-nav__list .current_page_ancestor > a::after,
.site-nav__list .current_page_parent > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--o2-blue), var(--o2-green));
}

.cart-link {
    position: relative;
}

.cart-link.is-active {
    color: var(--o2-blue-dark);
    font-weight: 950;
}

.cart-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--o2-blue), var(--o2-green));
}

.site-header__solution-link {
    display: none !important;
}

.ventoxx-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid rgba(0,167,216,.38);
    border-radius: 999px;
    background:
        radial-gradient(circle at 88% 50%, rgba(0,183,181,.12), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
    color: var(--o2-blue);
    font-weight: 950;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(0,30,88,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.ventoxx-pill:hover,
.ventoxx-pill.is-active {
    transform: translateY(-1px);
    border-color: rgba(10,120,232,.42);
    box-shadow: 0 16px 30px rgba(0,30,88,.10);
    color: var(--o2-blue-dark);
}

.ventoxx-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    color: var(--o2-blue);
    font-size: 17px;
    line-height: 1;
}

.ventoxx-pill__spark {
    color: var(--o2-green);
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 900px) {
    .site-nav__list .current-menu-item > a::after,
    .site-nav__list .current_page_item > a::after,
    .site-nav__list .current-menu-ancestor > a::after,
    .site-nav__list .current_page_ancestor > a::after,
    .site-nav__list .current_page_parent > a::after,
    .cart-link.is-active::after {
        left: 14px;
        right: 14px;
        bottom: 7px;
        height: 2px;
    }

    .site-nav__mobile-actions .ventoxx-pill {
        width: 100%;
        min-height: 48px;
    }
}

/* About / trust page + homepage trust */
.about-hero {
    background: radial-gradient(circle at 78% 18%, rgba(0,167,216,.22), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 82px 0;
}
.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr .48fr;
    gap: 52px;
    align-items: center;
}
.about-hero p { font-size: 20px; max-width: 760px; }
.about-trust-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}
.about-trust-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    font-weight: 900;
    margin-bottom: 18px;
}
.about-trust-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.about-value-card, .about-large-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}
.about-value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}
.about-value-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 12px;
}
.about-process-layout, .homepage-trust-layout {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 44px;
    align-items: center;
}
.about-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.about-large-card h2 { margin-top: 0; }
.about-large-card--green {
    background: linear-gradient(180deg, rgba(0,183,181,.10), #fff);
}
.homepage-trust-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.homepage-trust-cards div {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0,30,88,.05);
}
.homepage-trust-cards span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--o2-green);
    color: #fff;
    font-weight: 900;
    grid-row: span 2;
}
.homepage-trust-cards strong {
    color: var(--o2-blue-dark);
    font-size: 18px;
}
.homepage-trust-cards p { margin: 4px 0 0; }
@media (max-width: 900px) {
    .about-hero__grid, .about-process-layout, .homepage-trust-layout, .about-split {
        grid-template-columns: 1fr;
    }
    .about-values-grid { grid-template-columns: 1fr; }
}

/* WooCommerce order received page */
.o2-order-received-page {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    padding: 76px 0 92px;
}

.o2-order-hero {
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.o2-order-hero p {
    font-size: 20px;
}

.o2-order-layout {
    display: grid;
    grid-template-columns: 1fr .38fr;
    gap: 28px;
    align-items: start;
}

.o2-order-main {
    display: grid;
    gap: 18px;
}

.o2-order-summary-card,
.o2-order-payment-card,
.o2-order-details-card,
.o2-order-side .side-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.o2-order-summary-card h2,
.o2-order-payment-card h2,
.o2-order-details-card h2 {
    margin-top: 0;
    color: var(--o2-blue-dark);
    letter-spacing: -0.03em;
}

.o2-order-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.o2-order-facts div {
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    padding: 16px;
    background: var(--o2-soft);
}

.o2-order-facts span {
    display: block;
    color: var(--o2-muted);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 6px;
}

.o2-order-facts strong {
    color: var(--o2-blue-dark);
    font-size: 17px;
}

.o2-order-payment-card .woocommerce-bacs-bank-details {
    margin-top: 16px;
}

.o2-order-payment-card .wc-bacs-bank-details-heading,
.o2-order-payment-card .woocommerce-order-details__title {
    color: var(--o2-blue-dark);
}

.o2-order-details-card table {
    border-radius: 18px;
    overflow: hidden;
}

.o2-order-side {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.o2-order-side .side-card .btn + .btn {
    margin-top: 10px;
}

@media (max-width: 980px) {
    .o2-order-layout {
        grid-template-columns: 1fr;
    }

    .o2-order-side {
        position: static;
    }

    .o2-order-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .o2-order-received-page {
        padding: 52px 0 72px;
    }

    .o2-order-facts {
        grid-template-columns: 1fr;
    }
}

/* Legal pages */
.legal-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 72px 0 56px;
}

.legal-hero__inner {
    max-width: 900px;
}

.legal-hero p {
    font-size: 20px;
    max-width: 760px;
}

.legal-draft-note {
    margin-top: 24px;
    background: rgba(255, 193, 7, .13);
    border: 1px solid rgba(255, 193, 7, .34);
    border-radius: 18px;
    padding: 16px 18px;
    color: var(--o2-blue-dark);
    font-size: 15px;
    line-height: 1.5;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr .34fr;
    gap: 28px;
    align-items: start;
}

.legal-content-card,
.legal-side-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.legal-section {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--o2-border);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.legal-section > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    color: var(--o2-blue);
    font-weight: 950;
}

.legal-section h2 {
    margin: 0 0 8px;
    color: var(--o2-blue-dark);
    font-size: 23px;
    letter-spacing: -0.03em;
}

.legal-section p {
    margin: 0;
}

.legal-section--content .legal-page-content {
    color: var(--o2-muted);
}

.legal-section--content .legal-page-content:empty {
    display: none;
}

.legal-side-card {
    position: sticky;
    top: 110px;
}

.legal-side-card h3 {
    margin-top: 0;
    color: var(--o2-blue-dark);
}

.legal-side-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}

.legal-side-card a {
    display: block;
    color: var(--o2-blue);
    font-weight: 900;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--o2-soft);
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-side-card {
        position: static;
    }
}

@media (max-width: 560px) {
    .legal-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Homepage V3 */
.home-v3-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(0,167,216,.24), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 1px solid var(--o2-border);
    padding: 86px 0 72px;
}

.home-v3-hero__grid {
    display: grid;
    grid-template-columns: 1fr .46fr;
    gap: 52px;
    align-items: center;
}

.home-v3-hero__lead {
    font-size: 24px !important;
    color: var(--o2-blue-dark);
    font-weight: 900;
    margin-bottom: 8px;
}

.home-v3-hero p {
    font-size: 20px;
    max-width: 760px;
}

.home-v3-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-v3-trust-row span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--o2-border);
    color: var(--o2-blue-dark);
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(0,30,88,.05);
}

.home-v3-hero-card,
.home-v3-starter-card,
.home-v3-ventoxx-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.home-v3-hero-card > span,
.home-v3-starter-card > span,
.home-v3-ventoxx-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    font-weight: 950;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.home-v3-hero-card strong,
.home-v3-ventoxx-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.home-v3-diagnostics {
    padding: 30px 0;
    background: #fff;
}

.home-v3-diagnostics__inner {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 24px;
    align-items: center;
    background: var(--o2-blue-dark);
    color: #fff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--o2-shadow);
}

.home-v3-diagnostics__inner .eyebrow {
    color: rgba(255,255,255,.76);
}

.home-v3-diagnostics__inner h2 {
    color: #fff;
    margin: 0;
}

.home-v3-diagnostic-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-v3-diagnostic-options a {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    transition: transform .18s ease, background .18s ease;
}

.home-v3-diagnostic-options a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.14);
}

.home-v3-diagnostic-options span {
    display: block;
    font-size: 34px;
    margin-bottom: 10px;
}

.home-v3-diagnostic-options strong {
    display: block;
    font-size: 18px;
    line-height: 1.15;
}

.home-v3-problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.home-v3-problem-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    color: inherit;
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-v3-problem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.home-v3-problem-card > span {
    display: block;
    font-size: 36px;
    margin-bottom: 14px;
}

.home-v3-problem-card h3 {
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.home-v3-problem-card strong {
    display: block;
    color: var(--o2-blue-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.home-v3-problem-card p {
    margin-bottom: 18px;
}

.home-v3-problem-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 950;
}

.home-v3-starter-layout,
.home-v3-ventoxx-layout {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 44px;
    align-items: center;
}

.home-v3-starter-card .price {
    font-size: clamp(36px, 5vw, 58px);
    color: var(--o2-blue-dark);
    font-weight: 950;
    letter-spacing: -0.06em;
    margin: 18px 0;
}

.home-v3-ventoxx-section {
    background: #fff;
}

.home-v3-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.home-v3-check-grid span {
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--o2-blue-dark);
    font-weight: 850;
}

.home-v3-ventoxx-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    color: inherit;
    background:
        radial-gradient(circle at 84% 12%, rgba(0,183,181,.12), transparent 38%),
        #fff;
}

.home-v3-ventoxx-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 950;
}

.home-v3-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-v3-how-grid div {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.home-v3-how-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--o2-blue);
    color: #fff;
    font-weight: 950;
    margin-bottom: 18px;
}

.home-v3-how-grid strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 10px;
}

@media (max-width: 1180px) {
    .home-v3-problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .home-v3-hero__grid,
    .home-v3-diagnostics__inner,
    .home-v3-starter-layout,
    .home-v3-ventoxx-layout {
        grid-template-columns: 1fr;
    }

    .home-v3-diagnostic-options,
    .home-v3-how-grid {
        grid-template-columns: 1fr;
    }

    .home-v3-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-v3-problem-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .home-v3-hero {
        padding: 58px 0 48px;
    }

    .home-v3-diagnostics__inner {
        padding: 24px;
        border-radius: 24px;
    }

    .home-v3-problem-grid,
    .home-v3-check-grid {
        grid-template-columns: 1fr;
    }

    .home-v3-trust-row span {
        width: 100%;
    }
}

/* Homepage V3 hero conversion update */
.home-v3-hero-problem-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--o2-shadow);
}

.home-v3-hero-problem-card h2 {
    color: var(--o2-blue-dark);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin: 8px 0 22px;
}

.home-v3-hero-problems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.home-v3-hero-problems a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    padding: 14px;
    color: var(--o2-blue-dark);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.home-v3-hero-problems a:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(10,120,232,.28);
    box-shadow: 0 14px 28px rgba(0,30,88,.08);
}

.home-v3-hero-problems span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--o2-border);
    font-size: 23px;
}

.home-v3-hero-problems strong {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 950;
}

.home-v3-hero-problem-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--o2-blue);
    font-weight: 950;
}

@media (min-width: 981px) {
    .home-v3-hero-problem-card {
        max-width: 460px;
        justify-self: end;
    }
}

@media (max-width: 640px) {
    .home-v3-hero-problem-card {
        padding: 22px;
        border-radius: 24px;
    }
}

/* Homepage Ventoxx visual product card */
.home-v3-ventoxx-card--visual {
    min-height: 480px;
    padding: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 10%, rgba(0,167,216,.16), transparent 36%),
        radial-gradient(circle at 92% 12%, rgba(0,183,181,.12), transparent 30%),
        #fff;
}

.home-v3-ventoxx-card--visual > span {
    position: relative;
    z-index: 2;
}

.home-v3-ventoxx-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    margin: 6px 0 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(247,251,253,.65), rgba(255,255,255,.2));
}

.home-v3-ventoxx-product-image img {
    display: block;
    width: 100%;
    max-width: 390px;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(0,30,88,.12));
    transform: scale(1.04);
}

.home-v3-ventoxx-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 210px;
    border: 1px dashed var(--o2-border);
    border-radius: 22px;
    color: var(--o2-blue);
    font-weight: 950;
    background: var(--o2-soft);
}

.home-v3-ventoxx-card--visual strong {
    font-size: clamp(28px, 3vw, 44px);
    max-width: 460px;
}

.home-v3-ventoxx-card--visual p {
    max-width: 420px;
}

@media (max-width: 980px) {
    .home-v3-ventoxx-card--visual {
        min-height: auto;
    }

    .home-v3-ventoxx-product-image img {
        max-height: 230px;
    }
}

@media (max-width: 640px) {
    .home-v3-ventoxx-card--visual {
        padding: 24px;
    }

    .home-v3-ventoxx-product-image {
        min-height: 190px;
        margin-bottom: 18px;
    }

    .home-v3-ventoxx-product-image img {
        max-height: 200px;
    }
}


/* Homepage starter kit visual card */
.home-v3-starter-card--visual {
    background:
        radial-gradient(circle at 82% 12%, rgba(0,167,216,.08), transparent 28%),
        radial-gradient(circle at 12% 18%, rgba(0,183,181,.07), transparent 24%),
        #fff;
}

.home-v3-starter-composition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 4px 0 18px;
}

.home-v3-starter-item-thumb {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(247,251,253,.95), rgba(255,255,255,.9));
    border: 1px solid var(--o2-border);
    border-radius: 18px;
    overflow: hidden;
}

.home-v3-starter-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.home-v3-starter-thumb-placeholder {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 14px;
    border: 1px dashed var(--o2-border);
    background: var(--o2-soft);
}

.home-v3-starter-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.home-v3-starter-list li {
    position: relative;
    padding-left: 18px;
    color: var(--o2-blue-dark);
    font-weight: 700;
    line-height: 1.35;
}

.home-v3-starter-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 900;
}

@media (max-width: 640px) {
    .home-v3-starter-composition {
        gap: 10px;
    }
    .home-v3-starter-item-thumb {
        height: 88px;
        border-radius: 16px;
    }
}

/* Problem pages: related guides */
.section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.section-heading--split > div {
    max-width: 720px;
}

.section-heading--split .btn {
    flex: 0 0 auto;
    margin-bottom: 6px;
}

.problem-related-guides-section {
    background:
        linear-gradient(180deg, #fff 0%, rgba(247,251,253,.86) 100%);
}

.problem-related-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.problem-related-guide-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--o2-border);
    color: inherit;
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.problem-related-guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.problem-related-guide-card > span {
    align-self: flex-start;
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(10,120,232,.08);
    color: var(--o2-blue);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.problem-related-guide-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.problem-related-guide-card p {
    margin-bottom: 18px;
}

.problem-related-guide-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 950;
}

@media (max-width: 980px) {
    .section-heading--split {
        display: block;
    }

    .section-heading--split .btn {
        margin-top: 18px;
    }

    .problem-related-guides-grid {
        grid-template-columns: 1fr;
    }
}

/* Guides page v2 topic hub */
.guides-page-v2 .guides-hero p {
    max-width: 780px;
}

.guides-topic-selector {
    padding-bottom: 42px;
}

.guides-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.guides-topic-card {
    display: flex;
    flex-direction: column;
    min-height: 176px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--o2-border);
    color: inherit;
    box-shadow: 0 12px 28px rgba(0,30,88,.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.guides-topic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.guides-topic-card span {
    display: block;
    font-size: 34px;
    margin-bottom: 14px;
}

.guides-topic-card strong {
    color: var(--o2-blue-dark);
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.guides-topic-card em {
    margin-top: auto;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 950;
    font-size: 14px;
}

.guides-topic-section {
    scroll-margin-top: 120px;
}

.guides-topic-layout {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 42px;
    align-items: start;
}

.guides-topic-content h2 {
    max-width: 760px;
}

.guides-topic-intro {
    font-size: 19px;
    max-width: 780px;
}

.guides-info-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    padding: 24px;
    margin-top: 16px;
    box-shadow: 0 12px 28px rgba(0,30,88,.05);
}

.guides-info-card h3 {
    margin: 0 0 10px;
    color: var(--o2-blue-dark);
    font-size: 22px;
    line-height: 1.15;
}

.guides-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.guides-info-card li {
    position: relative;
    padding-left: 22px;
    color: var(--o2-text);
    line-height: 1.45;
}

.guides-info-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

.guides-risk-note {
    border-radius: 24px;
    padding: 22px;
    margin: 16px 0 24px;
    background: rgba(255, 246, 225, .82);
    border: 1px solid rgba(224, 162, 40, .25);
}

.guides-risk-note strong {
    display: block;
    color: var(--o2-blue-dark);
    margin-bottom: 6px;
}

.guides-risk-note p {
    margin: 0;
}

.guides-article-list {
    display: grid;
    gap: 16px;
}

.guides-article-list__label {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,120,232,.08);
    color: var(--o2-blue);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.guide-card--article {
    min-height: auto;
    padding: 24px;
}

.guide-card--article span {
    font-size: 28px;
    margin-bottom: 12px;
}

.guide-card--article strong {
    font-size: 21px;
}

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

@media (max-width: 980px) {
    .guides-topic-layout {
        grid-template-columns: 1fr;
    }

    .guides-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .guides-topic-grid {
        grid-template-columns: 1fr;
    }

    .guides-topic-card {
        min-height: auto;
    }
}

/* Guides answer strip */
.guides-answer-strip {
    margin: 22px 0 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(247,251,253,.92);
    border: 1px solid var(--o2-border);
    box-shadow: 0 12px 28px rgba(0,30,88,.04);
}

.guides-answer-strip > span {
    display: block;
    color: var(--o2-blue);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 12px;
}

.guides-answer-strip strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 18px;
    margin-bottom: 12px;
}

.guides-answer-strip ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 14px;
}

.guides-answer-strip li {
    position: relative;
    padding-left: 20px;
    color: var(--o2-text);
    line-height: 1.35;
    font-weight: 700;
}

.guides-answer-strip li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

@media (max-width: 640px) {
    .guides-answer-strip ul {
        grid-template-columns: 1fr;
    }
}

/* Bundles page v2 polish */
.bundles-page-v2 .bundle-visual-card li {
    position: relative;
    padding-left: 42px;
}

.bundles-page-v2 .bundle-visual-card li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--o2-green);
    font-weight: 950;
}

.bundle-reason-card {
    margin: 20px 0 22px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(247,251,253,.92);
    border: 1px solid var(--o2-border);
}

.bundle-reason-card strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 18px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.bundle-reason-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.bundle-reason-card li {
    position: relative;
    padding-left: 20px;
    color: var(--o2-text);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.bundle-reason-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

.bundles-page-v2 .bundle-buy-card .price {
    margin-top: 10px;
}

/* Consultation page v2 */
.consultation-page-v2 .consultation-hero-card ul,
.consultation-info-card ul,
.consultation-benefit-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.consultation-page-v2 .consultation-hero-card li,
.consultation-info-card li,
.consultation-benefit-box li {
    position: relative;
    padding-left: 22px;
    line-height: 1.4;
    font-weight: 700;
}

.consultation-page-v2 .consultation-hero-card li::before,
.consultation-info-card li::before,
.consultation-benefit-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

.consultation-step-layout {
    display: grid;
    grid-template-columns: 1fr .46fr;
    gap: 34px;
    align-items: start;
}

.consultation-info-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--o2-shadow);
}

.consultation-info-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    font-weight: 950;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.consultation-info-card p {
    margin-bottom: 14px;
}

.consultation-info-card--sticky {
    position: sticky;
    top: 110px;
}

.consultation-benefit-box {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(247,251,253,.92);
    border: 1px solid var(--o2-border);
}

.consultation-benefit-box strong {
    display: block;
    color: var(--o2-blue-dark);
    margin-bottom: 12px;
    font-size: 18px;
}

.o2-consultation-form textarea::placeholder {
    color: rgba(73, 92, 111, .72);
}

@media (max-width: 980px) {
    .consultation-step-layout {
        grid-template-columns: 1fr;
    }

    .consultation-info-card--sticky {
        position: static;
    }
}

/* Consultation page v3 wizard */
.consultation-page-v3 .consultation-hero-card,
.consultation-page-v3 .wizard-hero-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--o2-shadow);
}

.consultation-page-v3 .consultation-hero-card > span,
.wizard-tip-card > span,
.wizard-hero-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.12);
    color: var(--o2-green-dark);
    font-weight: 950;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.consultation-page-v3 .consultation-hero-card ul,
.wizard-tip-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.consultation-page-v3 .consultation-hero-card li,
.wizard-tip-card li {
    position: relative;
    padding-left: 22px;
    color: var(--o2-blue-dark);
    line-height: 1.4;
    font-weight: 750;
}

.consultation-page-v3 .consultation-hero-card li::before,
.wizard-tip-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

.wizard-shell {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 34px;
    box-shadow: var(--o2-shadow);
    overflow: hidden;
}

.wizard-header {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 28px;
    align-items: end;
    padding: 36px 38px 24px;
    background:
        radial-gradient(circle at 80% 0%, rgba(0,167,216,.14), transparent 32%),
        linear-gradient(180deg, #fff 0%, rgba(247,251,253,.96) 100%);
    border-bottom: 1px solid var(--o2-border);
}

.wizard-header h2 {
    margin-bottom: 10px;
}

.wizard-header p {
    margin-bottom: 0;
    max-width: 760px;
}

.wizard-mini-note {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--o2-border);
}

.wizard-mini-note strong,
.wizard-mini-note span {
    display: block;
}

.wizard-mini-note strong {
    color: var(--o2-blue-dark);
    font-size: 18px;
    margin-bottom: 6px;
}

.wizard-mini-note span {
    color: var(--o2-muted);
    line-height: 1.4;
}

.wizard-form {
    padding: 0;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 0 38px;
    background: #fff;
    border-bottom: 1px solid var(--o2-border);
}

.wizard-progress button {
    appearance: none;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 70px;
    color: var(--o2-muted);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.wizard-progress button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--o2-soft);
    color: var(--o2-blue);
    font-size: 14px;
}

.wizard-progress button.is-active {
    color: var(--o2-blue-dark);
    border-bottom-color: var(--o2-blue);
}

.wizard-progress button.is-active span,
.wizard-progress button.is-complete span {
    background: var(--o2-blue);
    color: #fff;
}

.wizard-step {
    display: none;
    padding: 38px;
}

.wizard-step.is-active {
    display: block;
}

.wizard-step__head {
    max-width: 820px;
    margin-bottom: 28px;
}

.wizard-step__head > span {
    color: var(--o2-green-dark);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.wizard-step__head h3 {
    color: var(--o2-blue-dark);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin: 8px 0 12px;
}

.wizard-step__head p {
    font-size: 18px;
    max-width: 780px;
}

.wizard-choice-grid {
    display: grid;
    gap: 16px;
}

.wizard-choice-grid--problems {
    grid-template-columns: repeat(5, 1fr);
}

.wizard-choice-grid--small {
    grid-template-columns: repeat(2, 1fr);
}

.wizard-choice {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 225px;
    padding: 22px;
    border: 1px solid var(--o2-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,30,88,.05);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.wizard-choice:hover {
    transform: translateY(-3px);
    border-color: rgba(10,120,232,.28);
    box-shadow: var(--o2-shadow);
}

.wizard-choice input {
    width: 18px;
    height: 18px;
    min-height: auto;
    margin: 0;
    accent-color: var(--o2-blue);
}

.wizard-choice:has(input:checked) {
    border-color: rgba(10,120,232,.55);
    background: linear-gradient(180deg, rgba(247,251,253,.85), #fff);
    box-shadow: var(--o2-shadow);
}

.wizard-choice > span {
    display: block;
    font-size: 36px;
}

.wizard-choice strong {
    color: var(--o2-blue-dark);
    font-size: 21px;
    line-height: 1.12;
}

.wizard-choice em {
    color: var(--o2-muted);
    font-style: normal;
    line-height: 1.38;
}

.wizard-choice--small {
    min-height: 90px;
    justify-content: center;
}

.wizard-choice--small strong {
    font-size: 18px;
}

.wizard-two-col {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 28px;
    align-items: start;
}

.wizard-label {
    display: block;
    color: var(--o2-blue-dark);
    font-weight: 950;
    margin-bottom: 14px;
}

.wizard-field-card,
.wizard-tip-card,
.wizard-result-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(0,30,88,.05);
}

.wizard-field-card {
    display: grid;
    gap: 18px;
}

.wizard-field-card label {
    display: grid;
    gap: 8px;
    color: var(--o2-blue-dark);
    font-weight: 850;
}

.wizard-form input[type="text"],
.wizard-form input[type="tel"],
.wizard-form input[type="email"],
.wizard-form input[type="number"],
.wizard-form select,
.wizard-form textarea {
    width: 100%;
    border: 1px solid var(--o2-border);
    border-radius: 16px;
    min-height: 52px;
    padding: 13px 15px;
    font: inherit;
    color: var(--o2-text);
    background: #fff;
}

.wizard-form textarea {
    resize: vertical;
}

.wizard-form input:focus,
.wizard-form select:focus,
.wizard-form textarea:focus {
    outline: 3px solid rgba(0,167,216,.22);
    border-color: var(--o2-cyan);
}

.wizard-tip-card p:last-child,
.wizard-tip-card ul:last-child {
    margin-bottom: 0;
}

.wizard-tip-card--green {
    background: linear-gradient(180deg, rgba(0,183,181,.08), #fff);
}

.wizard-result-card {
    background:
        radial-gradient(circle at 88% 0%, rgba(0,183,181,.12), transparent 30%),
        linear-gradient(180deg, #fff, rgba(247,251,253,.82));
}

.wizard-result-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,120,232,.09);
    color: var(--o2-blue);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 16px;
}

.wizard-result-card h4 {
    margin: 0 0 12px;
    color: var(--o2-blue-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.wizard-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.wizard-result-grid div {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--o2-border);
}

.wizard-result-grid strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}

.wizard-result-grid em {
    color: var(--o2-muted);
    font-style: normal;
    font-weight: 700;
}

.wizard-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 30px;
}

.wizard-actions .btn {
    min-width: 180px;
}

.wizard-step.is-shaking {
    animation: o2WizardShake .28s ease;
}

@keyframes o2WizardShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

@media (max-width: 1100px) {
    .wizard-choice-grid--problems {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-header,
    .wizard-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .wizard-progress {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .wizard-progress button {
        justify-content: flex-start;
        min-height: 56px;
        padding: 0 22px;
        border-bottom: 1px solid var(--o2-border);
    }

    .wizard-step,
    .wizard-header {
        padding: 28px 22px;
    }

    .wizard-result-grid,
    .wizard-choice-grid--small {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wizard-choice-grid--problems {
        grid-template-columns: 1fr;
    }

    .wizard-choice {
        min-height: auto;
    }

    .wizard-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wizard-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

/* Wizard v3.7 adaptive multi-problem UI */
.wizard-choice-grid--problems .wizard-choice::after {
    content: "Pasirinkti";
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10,120,232,.07);
    color: var(--o2-blue);
    font-size: 12px;
    font-weight: 950;
}

.wizard-choice-grid--problems .wizard-choice:has(input:checked)::after {
    content: "Pasirinkta";
    background: rgba(0,183,181,.14);
    color: var(--o2-green-dark);
}

.wizard-step-signal {
    margin-top: 20px;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--o2-border);
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.wizard-step-signal > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,120,232,.08);
    color: var(--o2-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 12px;
}

.wizard-step-signal strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.wizard-step-signal p {
    margin-bottom: 10px;
    max-width: 920px;
}

.wizard-step-signal em {
    display: block;
    color: var(--o2-blue);
    font-style: normal;
    font-weight: 900;
}

.wizard-step-signal.is-high {
    border-color: rgba(220, 80, 50, .26);
    background: linear-gradient(180deg, rgba(255,246,242,.95), #fff);
}

.wizard-step-signal.is-high > span {
    background: rgba(220,80,50,.12);
    color: #b63d24;
}

.wizard-step-signal.is-medium {
    border-color: rgba(224,162,40,.24);
    background: linear-gradient(180deg, rgba(255,248,230,.95), #fff);
}

.wizard-step-signal.is-medium > span {
    background: rgba(224,162,40,.16);
    color: #9b650e;
}

.wizard-step-signal.is-low {
    border-color: rgba(0,183,181,.24);
    background: linear-gradient(180deg, rgba(240,250,243,.95), #fff);
}

.wizard-step-signal.is-low > span {
    background: rgba(0,183,181,.14);
    color: var(--o2-green-dark);
}

/* Portable AC landing */
.portable-ac-hero {
    padding: 86px 0;
    background:
        radial-gradient(circle at 78% 8%, rgba(0,167,216,.16), transparent 36%),
        linear-gradient(180deg, #fff 0%, rgba(247,251,253,.94) 100%);
}

.portable-ac-hero__grid,
.portable-ac-layout {
    display: grid;
    grid-template-columns: 1fr .48fr;
    gap: 42px;
    align-items: center;
}

.portable-ac-card {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--o2-shadow);
}

.portable-ac-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,167,216,.14);
    color: var(--o2-blue);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 16px;
}

.portable-ac-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.portable-ac-card li {
    position: relative;
    padding-left: 22px;
    color: var(--o2-blue-dark);
    font-weight: 800;
    line-height: 1.35;
}

.portable-ac-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

@media (max-width: 980px) {
    .portable-ac-hero__grid,
    .portable-ac-layout {
        grid-template-columns: 1fr;
    }
}

/* Wizard v3.8 summary and recommendation */
.wizard-summary-box,
.wizard-recommendation-box {
    margin-top: 22px;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--o2-border);
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.wizard-summary-box > span,
.wizard-recommendation-box > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,120,232,.08);
    color: var(--o2-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 12px;
}

.wizard-summary-box strong,
.wizard-recommendation-box strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.wizard-summary-box p,
.wizard-recommendation-box p {
    max-width: 880px;
}

.wizard-recommendation-box {
    background:
        radial-gradient(circle at 92% 10%, rgba(0,183,181,.10), transparent 32%),
        #fff;
}

.wizard-recommendation-actions {
    margin-top: 18px;
    flex-wrap: wrap;
}

/* Wizard v3.9 contact summary / CRM-ready data */
.wizard-contact-summary {
    margin: 18px 0 24px;
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 12%, rgba(0,183,181,.10), transparent 30%),
        #fff;
    border: 1px solid var(--o2-border);
    box-shadow: 0 12px 28px rgba(0,30,88,.06);
}

.wizard-contact-summary > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,120,232,.08);
    color: var(--o2-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 12px;
}

.wizard-contact-summary strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.wizard-contact-summary p {
    max-width: 860px;
    margin-bottom: 16px;
}

.wizard-contact-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wizard-contact-summary li {
    padding: 14px;
    border-radius: 16px;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
    color: var(--o2-text);
    line-height: 1.35;
}

.wizard-contact-summary b {
    display: block;
    color: var(--o2-blue-dark);
    margin-bottom: 4px;
}

@media (max-width: 780px) {
    .wizard-contact-summary ul {
        grid-template-columns: 1fr;
    }
}

/* Soravent v4.1 brand system */
.site-brand {
    flex: 0 0 auto;
    line-height: 0;
}

.site-brand__logo {
    display: block;
    width: 238px;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand {
    display: inline-flex;
    line-height: 0;
}

.footer-brand__logo {
    display: block;
    width: 225px;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
}

.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: rgba(10, 120, 232, .14);
}

.btn--primary {
    background: linear-gradient(135deg, var(--o2-blue-dark), var(--o2-blue));
    box-shadow: 0 12px 28px rgba(0, 30, 88, .20);
}

.btn--primary:hover {
    box-shadow: 0 16px 34px rgba(0, 30, 88, .25);
}

.btn--green {
    background: linear-gradient(135deg, var(--o2-green-dark), var(--o2-green));
    box-shadow: 0 12px 28px rgba(0, 183, 181, .20);
}

.btn--green:hover {
    background: linear-gradient(135deg, #006f82, #00a8aa);
}

.eyebrow,
.footer-trust {
    color: var(--o2-green-dark);
}

::selection {
    color: #fff;
    background: var(--o2-blue);
}

@media (max-width: 1100px) {
    .site-brand__logo {
        width: 205px;
    }
}

@media (max-width: 640px) {
    .site-brand__logo {
        width: 178px;
        max-height: 46px;
    }

    .footer-brand__logo {
        width: 195px;
    }
}

/* Soravent v4.2 — Ventoxx-first launch */
.launch-model-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.launch-model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--o2-border);
    box-shadow: 0 16px 38px rgba(0,30,88,.07);
}

.launch-model-card--featured {
    border-color: rgba(0,183,181,.38);
    background:
        radial-gradient(circle at 92% 8%, rgba(0,183,181,.12), transparent 32%),
        #fff;
    box-shadow: 0 18px 46px rgba(0,30,88,.12);
}

.launch-model-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,167,216,.10);
    color: var(--o2-blue);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.launch-model-card h3 {
    margin: 0 0 10px;
    color: var(--o2-blue-dark);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.launch-model-card__price {
    color: var(--o2-blue-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    font-weight: 950;
    margin: 10px 0 18px;
}

.launch-model-card ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 24px;
    display: grid;
    gap: 11px;
}

.launch-model-card li {
    position: relative;
    padding-left: 22px;
    color: var(--o2-text);
    font-weight: 700;
    line-height: 1.4;
}

.launch-model-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--o2-green);
    font-weight: 950;
}

.launch-model-card .btn {
    margin-top: auto;
}

.launch-model-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
    color: var(--o2-blue);
    font-weight: 950;
}

.launch-install-note {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 24px;
    border-radius: 24px;
    background: rgba(0,30,88,.045);
    border: 1px solid var(--o2-border);
}

.launch-install-note strong {
    display: block;
    color: var(--o2-blue-dark);
    font-size: 22px;
    margin-bottom: 6px;
}

.launch-install-note p {
    margin-bottom: 16px;
}

.ventoxx-buy-card--visual .ventoxx-hero-product {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin: 4px 0 18px;
}

.ventoxx-hero-product img {
    width: 100%;
    max-width: 360px;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(0,30,88,.14));
}

.ventoxx-faq {
    max-width: 1000px;
}

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

.ventoxx-faq details {
    background: #fff;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    padding: 20px 22px;
    box-shadow: 0 10px 24px rgba(0,30,88,.045);
}

.ventoxx-faq summary {
    cursor: pointer;
    color: var(--o2-blue-dark);
    font-weight: 950;
    font-size: 18px;
    line-height: 1.3;
}

.ventoxx-faq details p {
    margin: 14px 0 0;
}

.soravent-ventoxx-first .woocommerce-products-header,
.soravent-ventoxx-first .storefront-sorting {
    display: none;
}

@media (max-width: 820px) {
    .launch-model-grid {
        grid-template-columns: 1fr;
    }

    .launch-model-card {
        padding: 26px;
    }
}

/* Soravent v4.3 — Ventoxx catalogue and sales cards */
.soravent-products-archive .o2-shop-content,
.soravent-home-products {
    background:
        radial-gradient(circle at 90% 0%, rgba(0,167,216,.08), transparent 30%),
        var(--o2-soft);
}

.soravent-product-trust {
    padding: 18px 0;
    background: #fff;
    border-top: 1px solid var(--o2-border);
    border-bottom: 1px solid var(--o2-border);
}

.soravent-product-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.soravent-product-trust__grid span {
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--o2-soft);
    color: var(--o2-blue-dark);
    font-weight: 850;
    text-align: center;
}

.soravent-product-grid,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.soravent-product-card {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--o2-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(0,30,88,.075);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.soravent-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(10,120,232,.28);
    box-shadow: 0 22px 44px rgba(0,30,88,.12);
}

.soravent-product-card__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 295px;
    padding: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, #f8fbfd, #dfe5e8 76%);
}

.soravent-product-card__visual img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: contain;
    transition: transform .25s ease;
}

.soravent-product-card:hover .soravent-product-card__visual img {
    transform: scale(1.025);
}

.soravent-sale-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #ff4054;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
    box-shadow: 0 8px 18px rgba(255,64,84,.25);
}

.soravent-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px 22px;
}

.soravent-product-card__title {
    display: block;
    min-height: 52px;
    margin-bottom: 9px;
    color: var(--o2-blue-dark);
    font-size: 19px;
    font-weight: 950;
    line-height: 1.25;
}

.soravent-product-card__description {
    min-height: 66px;
    margin: 0 0 18px;
    color: var(--o2-muted);
    font-size: 15px;
    line-height: 1.45;
}

.soravent-product-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 15px;
}

.soravent-product-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.soravent-product-card__price strong {
    color: var(--o2-blue-dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.soravent-product-card__price del {
    color: #8090a5;
    font-size: 16px;
    text-decoration-thickness: 1px;
}

.soravent-discount-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #d2f8e6;
    color: #09824a;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
}

.soravent-delivery-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 31px;
    margin-bottom: 17px;
}

.soravent-delivery-badges span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(10,120,232,.28);
    background: rgba(10,120,232,.055);
    color: var(--o2-blue);
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.soravent-delivery-badges svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.soravent-product-card__actions {
    display: grid;
    gap: 10px;
}

.btn--product,
.woocommerce a.button.btn--product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 13px 18px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--o2-blue-dark), var(--o2-blue));
    color: #fff;
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(0,30,88,.16);
}

.btn--product:hover,
.woocommerce a.button.btn--product:hover {
    color: #fff;
    background: linear-gradient(135deg, #001744, #086bd0);
}

.soravent-product-card__more {
    display: inline-flex;
    justify-content: center;
    color: var(--o2-blue);
    font-size: 13px;
    font-weight: 900;
}

.home-v3-diagnostic-options small {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.70);
    font-size: 13px;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .soravent-product-grid,
    .woocommerce ul.products,
    .soravent-product-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .soravent-product-grid,
    .woocommerce ul.products,
    .soravent-product-grid--home,
    .soravent-product-trust__grid {
        grid-template-columns: 1fr !important;
    }

    .soravent-product-card__visual {
        height: 260px;
    }

    .soravent-product-card__title,
    .soravent-product-card__description {
        min-height: auto;
    }
}

/* Soravent v4.4 — checkout summary responsive hotfix */
.wc-block-checkout .wc-block-components-order-summary-item {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    grid-template-areas:
        "image description"
        "image individual"
        "image total" !important;
    column-gap: 13px !important;
    row-gap: 7px !important;
    align-items: start !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__image {
    grid-area: image !important;
    align-self: start !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__description {
    grid-area: description !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__individual-prices {
    grid-area: individual !important;
    min-width: 0 !important;
    width: auto !important;
    justify-self: start !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__total-price {
    grid-area: total !important;
    justify-self: start !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-name,
.wc-block-checkout .wc-block-components-order-summary-item__description a,
.wc-block-checkout .wc-block-components-order-summary-item__description span {
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
}

.wc-block-checkout .wc-block-components-order-summary-item__total-price,
.wc-block-checkout .wc-block-components-order-summary-item__individual-prices,
.wc-block-checkout .wc-block-components-order-summary-item__individual-prices * {
    font-size: 16px !important;
    line-height: 1.25 !important;
}

.wc-block-checkout .wc-block-components-product-badge {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    margin-top: 5px !important;
    white-space: normal !important;
    line-height: 1.2 !important;
}

@media (max-width: 480px) {
    .wc-block-checkout .wc-block-components-sidebar h2,
    .wc-block-checkout .wc-block-components-sidebar .wc-block-components-title {
        padding-inline: 18px !important;
        font-size: 22px !important;
    }

    .wc-block-checkout .wc-block-components-order-summary,
    .wc-block-checkout .wc-block-components-totals-wrapper {
        padding-inline: 18px !important;
    }

    .wc-block-checkout .wc-block-components-order-summary-item {
        grid-template-columns: 50px minmax(0, 1fr) !important;
    }

    .wc-block-checkout .wc-block-components-order-summary-item__image,
    .wc-block-checkout .wc-block-components-order-summary-item__image img {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Soravent v4.6 — legal information hub */
.legal-hub-hero {
    padding: 78px 0 54px;
    background:
        radial-gradient(circle at 84% 8%, rgba(0,183,181,.12), transparent 30%),
        linear-gradient(180deg, #fff 0%, var(--o2-soft) 100%);
}

.legal-hub-hero__grid {
    display: grid;
    grid-template-columns: 1fr .48fr;
    gap: 42px;
    align-items: center;
}

.legal-hub-hero h1 {
    max-width: 880px;
}

.legal-updated {
    display: inline-flex;
    margin-top: 14px;
    color: var(--o2-muted);
    font-weight: 750;
}

.legal-company-card {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--o2-border);
    background: #fff;
    box-shadow: var(--o2-shadow);
}

.legal-company-card > span,
.legal-sidebar-card > span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,183,181,.11);
    color: var(--o2-green-dark);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.legal-company-card h2 {
    margin-bottom: 18px;
    font-size: 26px;
}

.legal-company-card dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.legal-company-card dl div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--o2-border);
}

.legal-company-card dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-company-card dt {
    color: var(--o2-muted);
    font-weight: 750;
}

.legal-company-card dd {
    margin: 0;
    color: var(--o2-blue-dark);
    font-weight: 850;
    overflow-wrap: anywhere;
}

.legal-anchor-bar {
    position: sticky;
    z-index: 15;
    top: 82px;
    border-top: 1px solid var(--o2-border);
    border-bottom: 1px solid var(--o2-border);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
}

.legal-anchor-bar__inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-top: 12px;
    padding-bottom: 12px;
}

.legal-anchor-bar a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--o2-blue-dark);
    background: var(--o2-soft);
    font-size: 13px;
    font-weight: 850;
}

.legal-hub-content {
    background: #fff;
}

.legal-hub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: start;
}

.legal-document {
    display: grid;
    gap: 22px;
}

.legal-document-section {
    scroll-margin-top: 160px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    padding: 32px;
    border: 1px solid var(--o2-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,30,88,.05);
}

.legal-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--o2-blue-dark), var(--o2-blue));
    color: #fff;
    font-weight: 950;
}

.legal-document-section h2 {
    margin-bottom: 18px;
    font-size: clamp(28px, 4vw, 42px);
}

.legal-document-section h3 {
    margin: 26px 0 10px;
    color: var(--o2-blue-dark);
    font-size: 21px;
}

.legal-numbered-list {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 11px;
}

.legal-numbered-list li,
.legal-check-list li {
    color: var(--o2-text);
    line-height: 1.65;
}

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

.legal-check-list li {
    position: relative;
    padding-left: 23px;
}

.legal-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--o2-green);
    font-weight: 950;
}

.legal-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--o2-border);
    border-radius: 20px;
}

.legal-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 15px 17px;
    border-bottom: 1px solid var(--o2-border);
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.legal-table th {
    color: var(--o2-blue-dark);
    background: var(--o2-soft);
    font-weight: 950;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

.legal-contact-box {
    display: grid;
    gap: 7px;
    margin-top: 22px;
    padding: 22px;
    border-radius: 22px;
    background: var(--o2-soft);
    border: 1px solid var(--o2-border);
}

.legal-contact-box strong {
    color: var(--o2-blue-dark);
    font-size: 19px;
}

.legal-hub-sidebar {
    position: sticky;
    top: 155px;
    display: grid;
    gap: 18px;
}

.legal-sidebar-card {
    display: grid;
    gap: 8px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--o2-border);
    box-shadow: 0 12px 28px rgba(0,30,88,.05);
}

.legal-sidebar-card a:not(.btn) {
    padding: 10px 0;
    border-bottom: 1px solid var(--o2-border);
    color: var(--o2-blue-dark);
    font-weight: 800;
}

.legal-sidebar-card a:not(.btn):last-child {
    border-bottom: 0;
}

.legal-sidebar-card--notice {
    background:
        radial-gradient(circle at 92% 8%, rgba(0,183,181,.10), transparent 34%),
        #fff;
}

.footer-company-details {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.4;
}

.footer-company-details strong {
    color: #fff;
    font-size: 14px;
}

.footer-company-details a {
    color: rgba(255,255,255,.82);
}

@media (max-width: 980px) {
    .legal-hub-hero__grid,
    .legal-hub-layout {
        grid-template-columns: 1fr;
    }

    .legal-hub-sidebar {
        position: static;
    }

    .legal-anchor-bar {
        top: 68px;
    }
}

@media (max-width: 640px) {
    .legal-document-section {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .legal-section-number {
        width: 42px;
        height: 42px;
    }

    .legal-company-card dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .legal-anchor-bar {
        top: 60px;
    }
}

/* Soravent v4.7 — consent and analytics UI */
.soravent-consent[hidden] {
    display: none !important;
}

.soravent-consent {
    position: fixed;
    z-index: 99998;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 22px;
    background: rgba(0, 20, 55, .36);
    backdrop-filter: blur(5px);
}

.soravent-consent__panel {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(10,120,232,.20);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(0,30,88,.25);
}

.soravent-consent__copy h2 {
    margin: 2px 0 9px;
    color: var(--o2-blue-dark);
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.08;
}

.soravent-consent__copy p {
    margin: 0;
    max-width: 780px;
    line-height: 1.55;
}

.soravent-consent__actions {
    display: grid;
    min-width: 220px;
    gap: 9px;
}

.soravent-consent__actions .btn {
    width: 100%;
    white-space: nowrap;
}

.soravent-consent__necessary {
    border: 0;
    padding: 8px;
    background: transparent;
    color: var(--o2-muted);
    font-weight: 850;
    cursor: pointer;
}

.soravent-consent-settings {
    position: fixed;
    z-index: 120;
    right: 16px;
    bottom: 14px;
    border: 1px solid rgba(10,120,232,.20);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255,255,255,.94);
    color: var(--o2-blue-dark);
    box-shadow: 0 8px 24px rgba(0,30,88,.10);
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

@media (max-width: 800px) {
    .soravent-consent {
        padding: 12px;
    }

    .soravent-consent__panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .soravent-consent__actions {
        min-width: 0;
    }

    .soravent-consent-settings {
        right: 10px;
        bottom: 10px;
    }
}
