/* OXIIMED Landing Page */
.oxiimed-lp {
    --ox-green: #0aa64f;
    --ox-green-dark: #087a3c;
    --ox-green-soft: #e8f8ef;
    --ox-black: #080b0a;
    --ox-dark: #101713;
    --ox-ink: #172019;
    --ox-muted: #66736a;
    --ox-line: #e5ebe7;
    --ox-bg: #f5f7f5;
    --ox-white: #ffffff;
    --ox-radius-xl: 34px;
    --ox-radius-lg: 24px;
    --ox-radius-md: 18px;
    --ox-shadow: 0 24px 70px rgba(12, 28, 18, .12);
    --ox-container: 1180px;
    color: var(--ox-ink);
    background: var(--ox-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow: hidden;
    scroll-behavior: smooth;
}

.oxiimed-lp *,
.oxiimed-lp *::before,
.oxiimed-lp *::after {
    box-sizing: border-box;
}

.oxiimed-lp img {
    max-width: 100%;
    height: auto;
}

.oxiimed-lp a {
    color: inherit;
    text-decoration: none;
}

.oxiimed-lp button,
.oxiimed-lp input,
.oxiimed-lp select,
.oxiimed-lp textarea {
    font: inherit;
}

.oxiimed-lp svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.oxiimed-lp .ox-section {
    padding: 110px 0;
}

.oxiimed-lp .ox-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--ox-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.oxiimed-lp .ox-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.oxiimed-lp .ox-kicker--light {
    color: #a3f0c4;
}

.oxiimed-lp .ox-section-heading {
    max-width: 700px;
    margin-bottom: 46px;
}

.oxiimed-lp .ox-section-heading--center {
    text-align: center;
    margin-inline: auto;
}

.oxiimed-lp .ox-section-heading h2,
.oxiimed-lp .ox-about__content h2,
.oxiimed-lp .ox-chope__content h2,
.oxiimed-lp .ox-soda__content h2,
.oxiimed-lp .ox-contact__intro h2,
.oxiimed-lp .ox-location__content h2 {
    margin: 0;
    color: var(--ox-dark);
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.oxiimed-lp .ox-section-heading p,
.oxiimed-lp .ox-about__content > p,
.oxiimed-lp .ox-soda__content > p {
    margin: 18px 0 0;
    color: var(--ox-muted);
    font-size: 18px;
}

.oxiimed-lp .ox-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.oxiimed-lp .ox-btn:hover {
    transform: translateY(-2px);
}

.oxiimed-lp .ox-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #10bb5b, #087d3d);
    box-shadow: 0 16px 35px rgba(8, 156, 72, .28);
}

.oxiimed-lp .ox-btn--primary:hover {
    box-shadow: 0 20px 42px rgba(8, 156, 72, .36);
}

.oxiimed-lp .ox-btn--ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}

.oxiimed-lp .ox-btn--light {
    color: var(--ox-dark);
    background: #fff;
}

.oxiimed-lp .ox-btn--dark {
    color: #fff;
    background: var(--ox-dark);
}

.oxiimed-lp .ox-btn--large {
    min-height: 56px;
    padding: 16px 25px;
}

.oxiimed-lp .ox-btn--full {
    width: 100%;
}

/* Header */
.oxiimed-lp .ox-header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(6, 10, 8, .74);
    backdrop-filter: blur(18px);
    transition: background .2s ease, box-shadow .2s ease;
}

.admin-bar .oxiimed-lp .ox-header {
    top: 32px;
}

.oxiimed-lp .ox-header.is-scrolled {
    background: rgba(6, 10, 8, .94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.oxiimed-lp .ox-header__inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.oxiimed-lp .ox-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
}

.oxiimed-lp .ox-brand img {
    display: block;
    width: 300px;
    max-height: 88px;
    object-fit: contain;
    object-position: center;
    filter: none;
}

.oxiimed-lp .ox-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.oxiimed-lp .ox-nav a {
    position: relative;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.oxiimed-lp .ox-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--ox-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.oxiimed-lp .ox-nav a:hover {
    color: #fff;
}

.oxiimed-lp .ox-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.oxiimed-lp .ox-btn--header {
    color: #fff;
    background: var(--ox-green);
}

.oxiimed-lp .ox-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.oxiimed-lp .ox-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.oxiimed-lp .ox-hero {
    position: relative;
    min-height: 830px;
    padding: 155px 0 80px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 32%, rgba(10, 183, 83, .2), transparent 28%),
        linear-gradient(135deg, #050806 0%, #0d1510 56%, #07100b 100%);
}

.oxiimed-lp .ox-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to right, #000, transparent 70%);
}

.oxiimed-lp .ox-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.oxiimed-lp .ox-hero__glow--one {
    top: 140px;
    right: 8%;
    width: 320px;
    height: 320px;
    background: rgba(0, 202, 91, .16);
}

.oxiimed-lp .ox-hero__glow--two {
    bottom: 20px;
    left: 12%;
    width: 200px;
    height: 200px;
    background: rgba(55, 133, 86, .12);
}

.oxiimed-lp .ox-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    align-items: center;
    gap: 70px;
}

.oxiimed-lp .ox-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #c8d7ce;
    background: rgba(255,255,255,.04);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxiimed-lp .ox-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10d56a;
    box-shadow: 0 0 0 6px rgba(16, 213, 106, .1);
}

.oxiimed-lp .ox-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 82px);
    line-height: .99;
    letter-spacing: -.06em;
}

.oxiimed-lp .ox-hero__content > p {
    max-width: 650px;
    margin: 26px 0 0;
    color: #b8c5bd;
    font-size: 19px;
    line-height: 1.7;
}

.oxiimed-lp .ox-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.oxiimed-lp .ox-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 650px;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.oxiimed-lp .ox-hero__meta div {
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-hero__meta strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
}

.oxiimed-lp .ox-hero__meta span {
    margin-top: 5px;
    color: #89988f;
    font-size: 12px;
}

.oxiimed-lp .ox-hero__visual {
    position: relative;
    min-height: 560px;
}

.oxiimed-lp .ox-hero__visual::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 92%;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    filter: blur(25px);
    transform: translateX(-50%);
}

.oxiimed-lp .ox-cylinder {
    position: absolute;
    bottom: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 30px 28px rgba(0,0,0,.42));
}

.oxiimed-lp .ox-cylinder--small {
    left: 6%;
    z-index: 2;
    width: 170px;
}

.oxiimed-lp .ox-cylinder--large {
    right: 4%;
    width: 200px;
}

.oxiimed-lp .ox-cylinder__cap {
    width: 43px;
    height: 32px;
    border: 6px solid #5f6b64;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.oxiimed-lp .ox-cylinder__guard {
    width: 78px;
    height: 72px;
    border: 8px solid #4b5650;
    border-bottom: 0;
    border-radius: 38px 38px 8px 8px;
}

.oxiimed-lp .ox-cylinder__neck {
    width: 44%;
    height: 34px;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(90deg, #142019, #334138 50%, #0c130f);
    box-shadow: inset 0 4px rgba(255,255,255,.05);
}

.oxiimed-lp .ox-cylinder__body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(90deg, #050706 0%, #18241d 20%, #27382e 42%, #0c120e 74%, #030504 100%);
    box-shadow:
        inset 18px 0 30px rgba(255,255,255,.035),
        inset -20px 0 30px rgba(0,0,0,.5);
}

.oxiimed-lp .ox-cylinder__body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.12) 28%, transparent 38%);
    opacity: .35;
}

.oxiimed-lp .ox-cylinder--small .ox-cylinder__body {
    height: 330px;
    border-radius: 34px 34px 48px 48px;
}

.oxiimed-lp .ox-cylinder--large .ox-cylinder__body {
    height: 470px;
    border-radius: 26px 26px 44px 44px;
}

.oxiimed-lp .ox-cylinder__body b,
.oxiimed-lp .ox-cylinder__body small {
    position: relative;
    z-index: 1;
}

.oxiimed-lp .ox-cylinder__body b {
    color: #fff;
    font-size: 30px;
}

.oxiimed-lp .ox-cylinder__body small {
    color: #7e8e84;
}

.oxiimed-lp .ox-visual-card {
    position: absolute;
    z-index: 4;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(15, 25, 19, .72);
    backdrop-filter: blur(15px);
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
}

.oxiimed-lp .ox-visual-card--top {
    top: 34px;
    right: 0;
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-visual-card--top span {
    color: #8fa097;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.oxiimed-lp .ox-visual-card--top strong {
    margin-top: 4px;
    font-size: 14px;
}

.oxiimed-lp .ox-visual-card--bottom {
    left: -2%;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.oxiimed-lp .ox-visual-card--bottom > svg {
    width: 28px;
    height: 28px;
    color: #29d67a;
}

.oxiimed-lp .ox-visual-card--bottom div {
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-visual-card--bottom strong {
    font-size: 13px;
}

.oxiimed-lp .ox-visual-card--bottom span {
    color: #85968c;
    font-size: 11px;
}

/* Trust */
.oxiimed-lp .ox-trust {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    border-bottom: 1px solid var(--ox-line);
    background: #fff;
}

.oxiimed-lp .ox-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.oxiimed-lp .ox-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 116px;
    padding: 24px;
    border-right: 1px solid var(--ox-line);
}

.oxiimed-lp .ox-trust__item:last-child {
    border-right: 0;
}

.oxiimed-lp .ox-trust__item > span {
    display: grid;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
}

.oxiimed-lp .ox-trust__item > span svg {
    width: 21px;
    height: 21px;
}

.oxiimed-lp .ox-trust__item div {
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-trust__item strong {
    font-size: 14px;
}

.oxiimed-lp .ox-trust__item small {
    margin-top: 3px;
    color: var(--ox-muted);
    font-size: 11px;
    line-height: 1.4;
}

/* Solutions */
.oxiimed-lp .ox-solutions {
    background: var(--ox-bg);
}

.oxiimed-lp .ox-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.oxiimed-lp .ox-solution-card {
    position: relative;
    min-height: 390px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--ox-line);
    border-radius: var(--ox-radius-lg);
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 32, 21, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.oxiimed-lp .ox-solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(10, 166, 79, .25);
    box-shadow: var(--ox-shadow);
}

.oxiimed-lp .ox-solution-card--featured {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0, rgba(47, 234, 130, .2), transparent 34%),
        linear-gradient(145deg, #0b1911, #0a7e3f);
}

.oxiimed-lp .ox-solution-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 50px;
    place-items: center;
    border-radius: 18px;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
}

.oxiimed-lp .ox-solution-card__icon svg {
    width: 27px;
    height: 27px;
}

.oxiimed-lp .ox-solution-card--featured .ox-solution-card__icon {
    color: #fff;
    background: rgba(255,255,255,.12);
}

.oxiimed-lp .ox-solution-card > span {
    color: var(--ox-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.oxiimed-lp .ox-solution-card--featured > span {
    color: #9cecbc;
}

.oxiimed-lp .ox-solution-card h3 {
    margin: 10px 0 13px;
    color: var(--ox-dark);
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.oxiimed-lp .ox-solution-card--featured h3 {
    color: #fff;
}

.oxiimed-lp .ox-solution-card p {
    margin: 0;
    color: var(--ox-muted);
    font-size: 14px;
}

.oxiimed-lp .ox-solution-card--featured p {
    color: rgba(255,255,255,.7);
}

.oxiimed-lp .ox-solution-card a {
    position: absolute;
    left: 34px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ox-green-dark);
    font-size: 13px;
    font-weight: 800;
}

.oxiimed-lp .ox-solution-card--featured a {
    color: #fff;
}

/* Products */
.oxiimed-lp .ox-products {
    background: #fff;
}

.oxiimed-lp .ox-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.oxiimed-lp .ox-product-card {
    display: flex;
    flex-direction: column;
    min-height: 410px;
    padding: 25px;
    border: 1px solid var(--ox-line);
    border-radius: 22px;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.oxiimed-lp .ox-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10,166,79,.3);
    box-shadow: 0 20px 45px rgba(14, 35, 21, .09);
}

.oxiimed-lp .ox-product-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.oxiimed-lp .ox-product-card__icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 16px;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
}

.oxiimed-lp .ox-product-card__icon svg {
    width: 23px;
    height: 23px;
}

.oxiimed-lp .ox-product-card__formula {
    padding: 7px 10px;
    border-radius: 999px;
    color: #4b5a50;
    background: #f2f5f3;
    font-size: 11px;
    font-weight: 800;
}

.oxiimed-lp .ox-product-card h3 {
    margin: 24px 0 10px;
    color: var(--ox-dark);
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.oxiimed-lp .ox-product-card > p {
    margin: 0 0 18px;
    color: var(--ox-muted);
    font-size: 13px;
}

.oxiimed-lp .ox-product-details {
    margin-top: auto;
    border-top: 1px solid var(--ox-line);
}

.oxiimed-lp .ox-product-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 0;
    color: #39453d;
    font-size: 12px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.oxiimed-lp .ox-product-details summary::-webkit-details-marker {
    display: none;
}

.oxiimed-lp .ox-product-details summary span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
    font-size: 17px;
    transition: transform .2s ease;
}

.oxiimed-lp .ox-product-details[open] summary span {
    transform: rotate(45deg);
}

.oxiimed-lp .ox-product-details__body {
    padding: 0 0 17px;
}

.oxiimed-lp .ox-product-details__body > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
}

.oxiimed-lp .ox-product-details ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.oxiimed-lp .ox-product-details li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--ox-muted);
    font-size: 11px;
}

.oxiimed-lp .ox-product-details li svg {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    color: var(--ox-green);
}

.oxiimed-lp .ox-size-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 13px;
    padding: 12px;
    border-radius: 12px;
    background: var(--ox-bg);
}

.oxiimed-lp .ox-size-box span {
    color: var(--ox-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxiimed-lp .ox-size-box strong {
    color: #354138;
    font-size: 11px;
}

.oxiimed-lp .ox-product-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--ox-line);
    color: var(--ox-green-dark);
    font-size: 12px;
    font-weight: 800;
}

/* Chopp */
.oxiimed-lp .ox-chope {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 40%, rgba(18, 215, 102, .16), transparent 33%),
        linear-gradient(135deg, #07100b, #0e1d14 55%, #08733a);
}

.oxiimed-lp .ox-chope::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: radial-gradient(rgba(255,255,255,.7) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.oxiimed-lp .ox-chope__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.oxiimed-lp .ox-chope__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oxiimed-lp .ox-chopp-machine {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oxiimed-lp .ox-chopp-machine::before {
    content: "";
    position: absolute;
    inset: 10% 8% 6%;
    border-radius: 32px;
    background: radial-gradient(circle at center, rgba(255,255,255,.16), rgba(255,255,255,0) 70%);
    filter: blur(18px);
    z-index: -1;
}

.oxiimed-lp .ox-chopp-machine img {
    display: block;
    width: 100%;
    max-width: 420px;
    object-fit: contain;
    filter: drop-shadow(0 35px 40px rgba(0,0,0,.38));
}

.oxiimed-lp .ox-chope__badge {
    position: absolute;
    left: 0;
    bottom: 6px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 17px;
    background: rgba(4,13,8,.64);
    backdrop-filter: blur(12px);
}

.oxiimed-lp .ox-chope__badge span {
    color: #82eba9;
    font-size: 12px;
    font-weight: 900;
}

.oxiimed-lp .ox-chope__badge strong {
    margin-top: 3px;
    font-size: 13px;
}

.oxiimed-lp .ox-chope__content h2 {
    color: #fff;
}

.oxiimed-lp .ox-chope__content > p {
    margin: 22px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 18px;
}

.oxiimed-lp .ox-check-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0 34px;
}

.oxiimed-lp .ox-check-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
}

.oxiimed-lp .ox-check-grid svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: #62e99c;
}

/* SodaStream */
.oxiimed-lp .ox-soda {
    background: var(--ox-bg);
}

.oxiimed-lp .ox-soda__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 80px;
}

.oxiimed-lp .ox-soda__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.oxiimed-lp .ox-soda__steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 15px;
    border: 1px solid var(--ox-line);
    border-radius: 16px;
    background: #fff;
}

.oxiimed-lp .ox-soda__steps span {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--ox-green);
    font-size: 11px;
    font-weight: 900;
}

.oxiimed-lp .ox-soda__steps p {
    margin: 0;
    color: #3d4a41;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.oxiimed-lp .ox-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ox-green-dark);
    font-size: 14px;
    font-weight: 900;
}

.oxiimed-lp .ox-soda__card {
    position: relative;
    min-height: 430px;
    padding: 46px;
    overflow: hidden;
    border-radius: var(--ox-radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(150deg, #08a64e, #046e34);
    box-shadow: var(--ox-shadow);
}

.oxiimed-lp .ox-soda__number {
    display: flex;
    flex-direction: column;
    color: rgba(255,255,255,.76);
    font-size: 20px;
    font-weight: 800;
}

.oxiimed-lp .ox-soda__number strong {
    margin: 4px 0;
    color: #fff;
    font-size: 105px;
    line-height: .9;
    letter-spacing: -.07em;
}

.oxiimed-lp .ox-soda__card p {
    position: relative;
    z-index: 2;
    max-width: 320px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.oxiimed-lp .ox-soda__bubbles span {
    position: absolute;
    border: 2px solid rgba(255,255,255,.22);
    border-radius: 50%;
}

.oxiimed-lp .ox-soda__bubbles span:nth-child(1) { width: 100px; height: 100px; right: -18px; bottom: 22px; }
.oxiimed-lp .ox-soda__bubbles span:nth-child(2) { width: 55px; height: 55px; right: 80px; bottom: 95px; }
.oxiimed-lp .ox-soda__bubbles span:nth-child(3) { width: 34px; height: 34px; right: 40px; bottom: 175px; }
.oxiimed-lp .ox-soda__bubbles span:nth-child(4) { width: 20px; height: 20px; right: 145px; bottom: 35px; }
.oxiimed-lp .ox-soda__bubbles span:nth-child(5) { width: 12px; height: 12px; right: 108px; bottom: 175px; }

/* About */
.oxiimed-lp .ox-about {
    background: #fff;
}

.oxiimed-lp .ox-about__grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 90px;
}

.oxiimed-lp .ox-about__media {
    position: relative;
    min-height: 540px;
}

.oxiimed-lp .ox-about__panel {
    position: absolute;
    z-index: 2;
    inset: 0 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    overflow: hidden;
    border-radius: var(--ox-radius-xl);
    background:
        radial-gradient(circle at 100% 0, rgba(34, 223, 114, .2), transparent 38%),
        linear-gradient(145deg, #07100b, #101d15);
    box-shadow: var(--ox-shadow);
}

.oxiimed-lp .ox-about__panel::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -80px;
    width: 280px;
    height: 500px;
    border: 44px solid rgba(255,255,255,.04);
    border-radius: 80px;
    transform: rotate(22deg);
}

.oxiimed-lp .ox-about__panel img {
    position: relative;
    z-index: 2;
    width: 280px;
    filter: brightness(0) invert(1);
}

.oxiimed-lp .ox-about__years {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-about__years strong {
    color: #fff;
    font-size: 92px;
    line-height: .9;
    letter-spacing: -.07em;
}

.oxiimed-lp .ox-about__years span {
    margin-top: 11px;
    color: #a8b8ae;
    font-size: 15px;
}

.oxiimed-lp .ox-about__pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    height: 220px;
    border-radius: 28px;
    background-color: var(--ox-green-soft);
    background-image: radial-gradient(var(--ox-green) 1.3px, transparent 1.3px);
    background-size: 15px 15px;
}

.oxiimed-lp .ox-about__content > p {
    font-size: 16px;
}

.oxiimed-lp .ox-about__values {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.oxiimed-lp .ox-about__values div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--ox-line);
}

.oxiimed-lp .ox-about__values span {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
    font-size: 11px;
    font-weight: 900;
}

.oxiimed-lp .ox-about__values strong {
    font-size: 14px;
}

/* FAQ */
.oxiimed-lp .ox-faq {
    background: var(--ox-bg);
}

.oxiimed-lp .ox-faq__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 90px;
}

.oxiimed-lp .ox-faq__list {
    display: grid;
    gap: 12px;
}

.oxiimed-lp .ox-faq__list details {
    padding: 0 22px;
    border: 1px solid var(--ox-line);
    border-radius: 17px;
    background: #fff;
}

.oxiimed-lp .ox-faq__list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
    color: var(--ox-dark);
    font-size: 14px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.oxiimed-lp .ox-faq__list summary::-webkit-details-marker {
    display: none;
}

.oxiimed-lp .ox-faq__list summary span {
    display: grid;
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
    font-size: 18px;
    transition: transform .2s ease;
}

.oxiimed-lp .ox-faq__list details[open] summary span {
    transform: rotate(45deg);
}

.oxiimed-lp .ox-faq__list p {
    margin: -3px 0 20px;
    padding-right: 45px;
    color: var(--ox-muted);
    font-size: 13px;
}

/* Contact */
.oxiimed-lp .ox-contact {
    padding: 110px 0;
    background: #fff;
}

.oxiimed-lp .ox-contact__box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    padding: 64px;
    border-radius: 38px;
    color: #fff;
    background:
        radial-gradient(circle at 0 100%, rgba(13, 197, 91, .2), transparent 33%),
        linear-gradient(140deg, #07100b, #0d1b13 70%);
    box-shadow: var(--ox-shadow);
}

.oxiimed-lp .ox-contact__intro h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
}

.oxiimed-lp .ox-contact__intro > p {
    margin: 19px 0 0;
    color: #9fafA5;
}

.oxiimed-lp .ox-contact__channels {
    display: grid;
    gap: 11px;
    margin-top: 34px;
}

.oxiimed-lp .ox-contact__channels a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(255,255,255,.04);
}

.oxiimed-lp .ox-contact__channels a > span {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #6eeaa6;
    background: rgba(13, 190, 86, .12);
}

.oxiimed-lp .ox-contact__channels a div {
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-contact__channels small {
    color: #829188;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.oxiimed-lp .ox-contact__channels strong {
    margin-top: 3px;
    font-size: 14px;
}

.oxiimed-lp .ox-quote-form {
    padding: 28px;
    border-radius: 24px;
    color: var(--ox-ink);
    background: #fff;
}

.oxiimed-lp .ox-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.oxiimed-lp .ox-quote-form label {
    display: block;
    margin-bottom: 14px;
}

.oxiimed-lp .ox-quote-form label > span {
    display: block;
    margin-bottom: 7px;
    color: #344139;
    font-size: 11px;
    font-weight: 800;
}

.oxiimed-lp .ox-quote-form input,
.oxiimed-lp .ox-quote-form select,
.oxiimed-lp .ox-quote-form textarea {
    width: 100%;
    border: 1px solid #dfe6e1;
    border-radius: 12px;
    color: #1b251e;
    background: #fafcfb;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.oxiimed-lp .ox-quote-form input,
.oxiimed-lp .ox-quote-form select {
    height: 49px;
    padding: 0 13px;
}

.oxiimed-lp .ox-quote-form textarea {
    min-height: 108px;
    padding: 12px 13px;
    resize: vertical;
}

.oxiimed-lp .ox-quote-form input:focus,
.oxiimed-lp .ox-quote-form select:focus,
.oxiimed-lp .ox-quote-form textarea:focus {
    border-color: var(--ox-green);
    box-shadow: 0 0 0 4px rgba(10,166,79,.1);
}

.oxiimed-lp .ox-form-note {
    display: block;
    margin-top: 11px;
    color: #869087;
    text-align: center;
    font-size: 10px;
}

/* Location */
.oxiimed-lp .ox-location {
    padding: 0 0 110px;
    background: #fff;
}

.oxiimed-lp .ox-location__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--ox-line);
    border-radius: var(--ox-radius-xl);
    background: var(--ox-bg);
}

.oxiimed-lp .ox-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
    filter: grayscale(.9) contrast(.9);
}

.oxiimed-lp .ox-location__content {
    padding: 48px;
}

.oxiimed-lp .ox-location__content h2 {
    font-size: 40px;
}

.oxiimed-lp .ox-location__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 20px;
}

.oxiimed-lp .ox-location__item > span {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--ox-green-dark);
    background: var(--ox-green-soft);
}

.oxiimed-lp .ox-location__item div {
    display: flex;
    flex-direction: column;
}

.oxiimed-lp .ox-location__item small {
    color: var(--ox-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxiimed-lp .ox-location__item strong {
    margin-top: 4px;
    color: #354139;
    font-size: 13px;
    line-height: 1.5;
}

.oxiimed-lp .ox-location__content .ox-btn {
    margin-top: 28px;
}

/* Footer */
.oxiimed-lp .ox-footer {
    padding: 72px 0 22px;
    color: #fff;
    background: #050806;
}

.oxiimed-lp .ox-footer__top {
    display: grid;
    grid-template-columns: 1.4fr .6fr .8fr;
    gap: 70px;
    padding-bottom: 48px;
}

.oxiimed-lp .ox-footer__brand img {
    width: 215px;
    filter: brightness(0) invert(1);
}

.oxiimed-lp .ox-footer__brand p {
    max-width: 420px;
    margin: 20px 0 0;
    color: #7f8f85;
    font-size: 13px;
}

.oxiimed-lp .ox-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.oxiimed-lp .ox-footer__links strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.oxiimed-lp .ox-footer__links a,
.oxiimed-lp .ox-footer__links span {
    color: #7f8f85;
    font-size: 12px;
}

.oxiimed-lp .ox-footer__links a:hover {
    color: #fff;
}

.oxiimed-lp .ox-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #66736b;
    font-size: 10px;
}

/* Floating buttons */
.oxiimed-lp .ox-floating-wa {
    position: fixed;
    z-index: 998;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 12px 17px;
    border-radius: 999px;
    color: #fff;
    background: #16a95a;
    box-shadow: 0 15px 35px rgba(6, 104, 50, .35);
    font-size: 12px;
    font-weight: 900;
    transition: transform .2s ease;
}

.oxiimed-lp .ox-floating-wa:hover {
    transform: translateY(-3px);
}

.oxiimed-lp .ox-floating-wa svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
    stroke: none;
}

.oxiimed-lp .ox-back-top {
    position: fixed;
    z-index: 997;
    right: 25px;
    bottom: 86px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 15, 10, .9);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
}

.oxiimed-lp .ox-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .oxiimed-lp .ox-nav {
        gap: 18px;
    }

    .oxiimed-lp .ox-btn--header {
        display: none;
    }

    .oxiimed-lp .ox-header__inner {
        min-height: 88px;
    }

    .oxiimed-lp .ox-brand img {
        width: 250px;
        max-height: 74px;
    }

    .oxiimed-lp .ox-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oxiimed-lp .ox-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oxiimed-lp .ox-trust__item:nth-child(2) {
        border-right: 0;
    }

    .oxiimed-lp .ox-trust__item:nth-child(-n+2) {
        border-bottom: 1px solid var(--ox-line);
    }

    .oxiimed-lp .ox-hero__grid,
    .oxiimed-lp .ox-about__grid,
    .oxiimed-lp .ox-soda__grid,
    .oxiimed-lp .ox-faq__grid,
    .oxiimed-lp .ox-contact__box {
        gap: 50px;
    }

    .oxiimed-lp .ox-contact__box {
        padding: 48px;
    }
}

@media (max-width: 880px) {
    .admin-bar .oxiimed-lp .ox-header {
        top: 46px;
    }

    .oxiimed-lp .ox-header__inner {
        min-height: 72px;
    }

    .oxiimed-lp .ox-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .oxiimed-lp .ox-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 18px;
        background: rgba(7,13,9,.97);
        box-shadow: 0 20px 45px rgba(0,0,0,.3);
    }

    .oxiimed-lp .ox-nav.is-open {
        display: flex;
    }

    .oxiimed-lp .ox-nav a {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .oxiimed-lp .ox-nav a:hover {
        background: rgba(255,255,255,.06);
    }

    .oxiimed-lp .ox-nav a::after {
        display: none;
    }

    .oxiimed-lp .ox-hero {
        padding-top: 130px;
    }

    .oxiimed-lp .ox-hero__grid {
        grid-template-columns: 1fr;
    }

    .oxiimed-lp .ox-hero__content {
        text-align: center;
    }

    .oxiimed-lp .ox-hero__content > p,
    .oxiimed-lp .ox-hero__meta {
        margin-inline: auto;
    }

    .oxiimed-lp .ox-hero__actions {
        justify-content: center;
    }

    .oxiimed-lp .ox-hero__visual {
        min-height: 500px;
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }

    .oxiimed-lp .ox-solutions__grid,
    .oxiimed-lp .ox-chope__grid,
    .oxiimed-lp .ox-about__grid,
    .oxiimed-lp .ox-soda__grid,
    .oxiimed-lp .ox-faq__grid,
    .oxiimed-lp .ox-contact__box,
    .oxiimed-lp .ox-location__grid {
        grid-template-columns: 1fr;
    }

    .oxiimed-lp .ox-solutions__grid {
        max-width: 680px;
        margin-inline: auto;
    }

    .oxiimed-lp .ox-solution-card {
        min-height: 330px;
    }

    .oxiimed-lp .ox-chope__grid {
        gap: 45px;
    }

    .oxiimed-lp .ox-chope__visual {
        min-height: 450px;
    }

    .oxiimed-lp .ox-about__media {
        min-height: 500px;
    }

    .oxiimed-lp .ox-faq__grid {
        gap: 35px;
    }

    .oxiimed-lp .ox-contact__box {
        gap: 35px;
    }

    .oxiimed-lp .ox-location__map iframe {
        min-height: 350px;
    }

    .oxiimed-lp .ox-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .oxiimed-lp .ox-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .oxiimed-lp .ox-container {
        width: min(calc(100% - 28px), var(--ox-container));
    }

    .oxiimed-lp .ox-section,
    .oxiimed-lp .ox-chope,
    .oxiimed-lp .ox-contact {
        padding: 76px 0;
    }

    .oxiimed-lp .ox-brand {
        padding: 8px 12px;
        border-radius: 12px;
    }

    .oxiimed-lp .ox-brand img {
        width: 180px;
        max-height: 58px;
    }

    .oxiimed-lp .ox-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .oxiimed-lp .ox-hero h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .oxiimed-lp .ox-hero__content > p {
        font-size: 16px;
    }

    .oxiimed-lp .ox-hero__actions {
        flex-direction: column;
    }

    .oxiimed-lp .ox-hero__actions .ox-btn {
        width: 100%;
    }

    .oxiimed-lp .ox-hero__meta {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: left;
    }

    .oxiimed-lp .ox-hero__meta div {
        flex-direction: row;
        align-items: baseline;
        gap: 9px;
    }

    .oxiimed-lp .ox-hero__visual {
        min-height: 420px;
    }

    .oxiimed-lp .ox-cylinder--small {
        left: 0;
        width: 130px;
    }

    .oxiimed-lp .ox-cylinder--large {
        right: 0;
        width: 155px;
    }

    .oxiimed-lp .ox-cylinder--small .ox-cylinder__body {
        height: 250px;
    }

    .oxiimed-lp .ox-cylinder--large .ox-cylinder__body {
        height: 360px;
    }

    .oxiimed-lp .ox-visual-card--top {
        right: 2px;
        top: 0;
    }

    .oxiimed-lp .ox-visual-card--bottom {
        left: 0;
        bottom: 8px;
    }

    .oxiimed-lp .ox-trust__grid,
    .oxiimed-lp .ox-products__grid,
    .oxiimed-lp .ox-check-grid,
    .oxiimed-lp .ox-soda__steps,
    .oxiimed-lp .ox-form-row {
        grid-template-columns: 1fr;
    }

    .oxiimed-lp .ox-trust__item {
        border-right: 0;
        border-bottom: 1px solid var(--ox-line);
    }

    .oxiimed-lp .ox-trust__item:last-child {
        border-bottom: 0;
    }

    .oxiimed-lp .ox-section-heading h2,
    .oxiimed-lp .ox-about__content h2,
    .oxiimed-lp .ox-chope__content h2,
    .oxiimed-lp .ox-soda__content h2,
    .oxiimed-lp .ox-contact__intro h2,
    .oxiimed-lp .ox-location__content h2 {
        font-size: 36px;
    }

    .oxiimed-lp .ox-products__grid {
        gap: 14px;
    }

    .oxiimed-lp .ox-product-card {
        min-height: auto;
    }

    .oxiimed-lp .ox-chope__visual {
        min-height: 380px;
    }

    .oxiimed-lp .ox-chopp-machine {
        width: min(100%, 300px);
    }

    .oxiimed-lp .ox-chope__badge {
        left: 5px;
        bottom: 0;
    }

    .oxiimed-lp .ox-soda__card {
        min-height: 360px;
        padding: 34px;
    }

    .oxiimed-lp .ox-soda__number strong {
        font-size: 84px;
    }

    .oxiimed-lp .ox-about__media {
        min-height: 410px;
    }

    .oxiimed-lp .ox-about__panel {
        inset: 0 20px 20px 0;
        padding: 30px;
    }

    .oxiimed-lp .ox-about__panel img {
        width: 220px;
    }

    .oxiimed-lp .ox-about__years strong {
        font-size: 74px;
    }

    .oxiimed-lp .ox-contact__box {
        padding: 27px;
        border-radius: 27px;
    }

    .oxiimed-lp .ox-quote-form {
        padding: 20px;
    }

    .oxiimed-lp .ox-location__content {
        padding: 30px;
    }

    .oxiimed-lp .ox-footer__top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .oxiimed-lp .ox-footer__brand {
        grid-column: auto;
    }

    .oxiimed-lp .ox-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }

    .oxiimed-lp .ox-floating-wa {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }

    .oxiimed-lp .ox-floating-wa span {
        display: none;
    }

    .oxiimed-lp .ox-back-top {
        right: 20px;
        bottom: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .oxiimed-lp *,
    .oxiimed-lp *::before,
    .oxiimed-lp *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* Instagram CTA */
.oxiimed-lp .ox-instagram {
    padding: 0 0 110px;
    background: var(--ox-bg);
}

.oxiimed-lp .ox-instagram__box {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 38px 42px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 18%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(135deg, #151515 0%, #0b5b32 58%, #0aa64f 100%);
    box-shadow: 0 22px 55px rgba(8, 91, 46, .18);
}

.oxiimed-lp .ox-instagram__box::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, transparent, #000 52%, #000);
}

.oxiimed-lp .ox-instagram__box > * {
    position: relative;
    z-index: 2;
}

.oxiimed-lp .ox-instagram__icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
}

.oxiimed-lp .ox-instagram__icon svg {
    width: 35px;
    height: 35px;
}

.oxiimed-lp .ox-instagram__content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.oxiimed-lp .ox-instagram__content p {
    max-width: 690px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.oxiimed-lp .ox-instagram__box .ox-btn svg {
    width: 20px;
    height: 20px;
}

/* Crédito Infoplus */
.oxiimed-lp .ox-infoplus-credit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #66736b;
    white-space: nowrap;
}

.oxiimed-lp .ox-infoplus-credit span {
    font-size: 10px;
}

.oxiimed-lp .ox-infoplus-credit img {
    display: block;
    width: 118px;
    height: auto;
    transform-origin: center;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

.oxiimed-lp .ox-infoplus-credit:hover img {
    transform: translateY(-3px) rotate(-2deg) scale(1.06);
    filter: drop-shadow(0 8px 14px rgba(183, 21, 29, .28));
}

@media (max-width: 880px) {
    .oxiimed-lp .ox-instagram__box {
        grid-template-columns: auto 1fr;
    }

    .oxiimed-lp .ox-instagram__box .ox-btn {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .oxiimed-lp .ox-instagram {
        padding: 0 0 76px;
    }

    .oxiimed-lp .ox-instagram__box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px;
        text-align: left;
    }

    .oxiimed-lp .ox-instagram__icon {
        width: 64px;
        height: 64px;
    }

    .oxiimed-lp .ox-instagram__box .ox-btn {
        width: 100%;
        justify-self: stretch;
    }

    .oxiimed-lp .ox-infoplus-credit {
        width: 100%;
        justify-content: flex-start;
    }

    .oxiimed-lp .ox-infoplus-credit img {
        width: 128px;
    }
}


/* ===== OXIIMED v1.0.3 visual updates ===== */
.oxiimed-lp .ox-hero__visual {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oxiimed-lp .ox-hero__visual::before {
    display: none;
}

.oxiimed-lp .ox-hero-product-image {
    position: absolute;
    inset: 18px 0 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.oxiimed-lp .ox-hero-product-image img {
    display: block;
    width: min(100%, 600px);
    max-height: 100%;
    object-fit: contain;
    border-radius: 26px;
    box-shadow: 0 28px 52px rgba(0,0,0,.28);
}

.oxiimed-lp .ox-visual-card--top {
    top: 20px;
    right: -4px;
    z-index: 3;
}

.oxiimed-lp .ox-visual-card--bottom {
    left: -1%;
    bottom: 8px;
    z-index: 3;
}

.oxiimed-lp .ox-soda__visual {
    position: relative;
    min-height: 430px;
    padding: 30px;
    border-radius: var(--ox-radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(150deg, #08a64e, #046e34);
    box-shadow: var(--ox-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.oxiimed-lp .ox-soda__image-wrap {
    width: 100%;
    max-width: 390px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 34px rgba(0,0,0,.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oxiimed-lp .ox-soda__image-wrap img {
    display: block;
    width: min(100%, 310px);
    max-height: 320px;
    object-fit: contain;
}

.oxiimed-lp .ox-soda__caption {
    max-width: 390px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.88);
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 880px) {
    .oxiimed-lp .ox-hero__visual {
        min-height: 560px;
        max-width: 620px;
    }

    .oxiimed-lp .ox-hero-product-image {
        inset: 18px 8px 74px;
    }
}

@media (max-width: 620px) {
    .oxiimed-lp .ox-hero__visual {
        min-height: 340px;
    }

    .oxiimed-lp .ox-hero-product-image {
        inset: 12px 4px 68px;
    }

    .oxiimed-lp .ox-hero-product-image img {
        width: min(100%, 340px);
        border-radius: 18px;
    }

    .oxiimed-lp .ox-visual-card--top {
        top: -2px;
        right: 0;
    }

    .oxiimed-lp .ox-soda__visual {
        min-height: auto;
        padding: 24px 20px;
    }

    .oxiimed-lp .ox-soda__image-wrap {
        padding: 14px;
        border-radius: 22px;
    }

    .oxiimed-lp .ox-soda__image-wrap img {
        width: min(100%, 250px);
        max-height: 260px;
    }

    .oxiimed-lp .ox-soda__caption {
        font-size: 13px;
    }
}
/* Cabeçalho verde hospital bem suave */
.oxiimed-lp .ox-header,
.oxiimed-lp .ox-header.is-scrolled {
    background: rgba(237, 248, 242, 0.98);
    border-bottom: 1px solid rgba(10, 166, 79, 0.12);
    box-shadow: 0 4px 18px rgba(15, 80, 45, 0.05);
    backdrop-filter: blur(18px);
}

/* Logo integrada ao cabeçalho */
.oxiimed-lp .ox-brand {
    background: transparent;
    box-shadow: none;
}

/* Links do menu */
.oxiimed-lp .ox-nav a {
    color: #24382d;
}

.oxiimed-lp .ox-nav a:hover {
    color: #078c43;
}

/* Linha verde abaixo dos links */
.oxiimed-lp .ox-nav a::after {
    background: #0aa64f;
}

/* Botão de orçamento */
.oxiimed-lp .ox-btn--header {
    color: #ffffff;
    background: #0aa64f;
    box-shadow: 0 10px 24px rgba(10, 166, 79, 0.18);
}

.oxiimed-lp .ox-btn--header:hover {
    background: #078b42;
}

/* Botão do menu mobile */
.oxiimed-lp .ox-menu-toggle {
    color: #1c3326;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(10, 166, 79, 0.12);
}

/* Menu mobile */
@media (max-width: 880px) {
    .oxiimed-lp .ox-nav {
        border: 1px solid rgba(10, 166, 79, 0.14);
        background: rgba(244, 251, 247, 0.99);
        box-shadow: 0 18px 45px rgba(15, 80, 45, 0.12);
    }

    .oxiimed-lp .ox-nav a {
        color: #24382d;
    }

    .oxiimed-lp .ox-nav a:hover {
        color: #078c43;
        background: rgba(10, 166, 79, 0.08);
    }
}

/* Remove o quadro branco da imagem SodaStream */
.oxiimed-lp .ox-soda__image-wrap {
    width: 100%;
    max-width: 390px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.oxiimed-lp .ox-soda__image-wrap img {
    width: min(100%, 330px);
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}