:root {
    --hp-blue-950: #03265d;
    --hp-blue-900: #063a8c;
    --hp-blue-800: #004bba;
    --hp-blue-700: #005ee8;
    --hp-blue-100: #eaf3ff;
    --hp-green-600: #08a94f;
    --hp-green-700: #078642;
    --hp-ink: #071b4d;
    --hp-text: #31466b;
    --hp-muted: #66789a;
    --hp-line: #d8e6fb;
    --hp-bg: #f4f8ff;
    --hp-white: #ffffff;
    --hp-shadow: 0 18px 44px rgba(3, 38, 93, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--hp-text);
    background: var(--hp-bg);
    line-height: 1.5;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.hp-container {
    width: calc(100% - 48px);
    max-width: 1180px;
    margin: 0 auto;
}

.hp-topbar {
    background: var(--hp-blue-950);
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
}

.hp-topbar .hp-container {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hp-topbar-links {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.hp-topbar-links a {
    color: #ffffff;
    font-weight: 700;
}

.hp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(216, 230, 251, .9);
    backdrop-filter: blur(10px);
}

.hp-nav .hp-container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hp-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.hp-brand img {
    width: 183px;
    height: auto;
    display: block;
}

.hp-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.hp-menu a {
    padding: 11px 10px;
    border-radius: 8px;
    color: var(--hp-ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.hp-menu a:hover,
.hp-menu a:focus {
    background: var(--hp-blue-100);
    color: var(--hp-blue-800);
}

.hp-menu .hp-ia-link {
    color: #06713c;
    background: #e6f8ed;
}

.hp-whatsapp,
.hp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    border: 0;
    color: #ffffff;
    background: var(--hp-green-600);
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(8, 169, 79, .22);
    cursor: pointer;
}

.hp-whatsapp:hover,
.hp-button:hover,
.hp-whatsapp:focus,
.hp-button:focus {
    background: var(--hp-green-700);
    color: #ffffff;
}

.hp-button-secondary {
    color: var(--hp-blue-800);
    background: #ffffff;
    border: 2px solid var(--hp-blue-700);
    box-shadow: none;
}

.hp-button-secondary:hover,
.hp-button-secondary:focus {
    color: #ffffff;
    background: var(--hp-blue-700);
}

.hp-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--hp-blue-900);
    cursor: pointer;
}

.hp-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.hp-hero {
    position: relative;
    min-height: 635px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(244, 249, 255, .96) 42%, rgba(20, 103, 190, .25) 100%), url("/novahome/img/hero-bg.jpg") center right / cover no-repeat;
}

.hp-hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 130px;
    background: linear-gradient(0deg, var(--hp-bg), rgba(244, 248, 255, 0));
}

.hp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
    gap: 18px;
    align-items: center;
    min-height: 635px;
    padding: 54px 0 64px;
}

.hp-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    color: var(--hp-blue-700);
    background: rgba(0, 94, 232, .09);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hp-hero h1 {
    margin: 16px 0 14px;
    color: var(--hp-ink);
    font-size: clamp(46px, 5.6vw, 76px);
    line-height: .98;
    letter-spacing: 0;
    font-weight: 900;
}

.hp-hero h1 strong {
    display: block;
    color: var(--hp-blue-700);
}

.hp-hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--hp-text);
    font-size: 19px;
    line-height: 1.48;
}

.hp-hero-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 26px;
}

.hp-point {
    min-width: 0;
    display: grid;
    gap: 7px;
    color: var(--hp-ink);
    font-size: 13px;
    font-weight: 800;
}

.hp-icon {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hp-blue-700);
    background: #ffffff;
    border: 1px solid var(--hp-line);
    box-shadow: 0 10px 20px rgba(0, 94, 232, .08);
}

.hp-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.hp-hero-actions,
.hp-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hp-hero-visual {
    position: absolute;
    right: -116px;
    top: clamp(76px, 6.5vw, 110px);
    z-index: 1;
    width: min(840px, 61vw);
    pointer-events: none;
}

.hp-hero-products {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    filter: drop-shadow(0 24px 36px rgba(3, 38, 93, .24));
}

.hp-hero-grid > :first-child {
    position: relative;
    z-index: 2;
}

.hp-section {
    padding: 38px 0;
}

.hp-section-tight {
    padding-top: 22px;
}

.hp-section-head {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.hp-section-head h2 {
    margin: 8px 0 8px;
    color: var(--hp-ink);
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.hp-section-head h2 strong {
    color: var(--hp-blue-700);
}

.hp-section-head p {
    margin: 0;
    color: var(--hp-text);
    font-size: 18px;
}

.hp-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hp-card {
    min-width: 0;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(3, 38, 93, .08);
}

.hp-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 18px;
    transition: transform .16s ease, box-shadow .16s ease;
}

.hp-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(3, 38, 93, .14);
}

.hp-product-title {
    margin: 0 0 12px;
    color: var(--hp-blue-700);
    text-align: center;
    font-size: 27px;
    line-height: .93;
    font-weight: 900;
}

.hp-product-title small {
    display: block;
    margin-bottom: 2px;
    color: var(--hp-ink);
    font-size: 13px;
    letter-spacing: 0;
}

.hp-product-title span {
    display: block;
    margin-top: 4px;
    color: var(--hp-muted);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hp-product-image {
    height: 150px;
    display: grid;
    place-items: center;
    margin: 0 0 14px;
}

.hp-product-image img {
    max-height: 142px;
    object-fit: contain;
}

.hp-product-card p {
    flex: 1 1 auto;
    margin: 0 0 14px;
    color: var(--hp-text);
    font-size: 15px;
    line-height: 1.38;
}

.hp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.hp-tags span {
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--hp-blue-700);
    background: var(--hp-blue-100);
    font-size: 12px;
    font-weight: 900;
}

.hp-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--hp-blue-950);
    font-size: 13px;
    font-weight: 900;
}

.hp-card-button:hover,
.hp-card-button:focus {
    background: var(--hp-blue-700);
    color: #ffffff;
}

.hp-price-strip,
.hp-benefits {
    margin-top: 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, #eaf4ff 0%, #f6fbff 100%);
    border: 1px solid var(--hp-line);
}

.hp-price-strip {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 0 28px;
    color: var(--hp-ink);
    font-size: 24px;
    font-weight: 900;
}

.hp-price-strip strong {
    color: var(--hp-blue-700);
}

.hp-price-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hp-blue-950);
    font-size: 16px;
    font-weight: 800;
}

.hp-benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 18px 12px;
}

.hp-benefit {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 0 14px;
    color: var(--hp-ink);
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid var(--hp-line);
}

.hp-benefit:last-child {
    border-right: 0;
}

.hp-video-band {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 250px;
    gap: 24px;
    align-items: center;
    min-height: 154px;
    padding: 16px 18px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(3, 38, 93, .98), rgba(0, 94, 232, .9)), url("/novahome/img/video-multiport.png") center / cover no-repeat;
    box-shadow: var(--hp-shadow);
}

.hp-video-thumb {
    position: relative;
    min-height: 122px;
    border-radius: 8px;
    overflow: hidden;
    background: #08255a;
}

.hp-video-thumb img {
    width: 100%;
    height: 122px;
    object-fit: cover;
    opacity: .9;
}

.hp-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.hp-play span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hp-blue-700);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, .2);
    font-weight: 900;
}

.hp-video-band h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(28px, 3.4vw, 43px);
    line-height: 1.08;
    font-weight: 900;
}

.hp-video-band h2 strong {
    color: #1ab8ff;
}

.hp-video-band p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
}

.hp-video-button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    padding: 0 28px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--hp-blue-700);
    font-weight: 900;
}

.hp-ai-panel,
.hp-usb-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
    border: 1px solid var(--hp-line);
    box-shadow: 0 12px 30px rgba(3, 38, 93, .08);
}

.hp-ai-panel h2,
.hp-usb-panel h2 {
    margin: 10px 0 12px;
    color: var(--hp-ink);
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.05;
    font-weight: 900;
}

.hp-ai-panel h2 strong,
.hp-usb-panel h2 strong {
    color: var(--hp-blue-700);
}

.hp-ai-panel p,
.hp-usb-panel p {
    margin: 0 0 18px;
    color: var(--hp-text);
    font-size: 17px;
}

.hp-chat-card,
.hp-usb-card {
    position: relative;
    padding: 22px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--hp-line);
    box-shadow: 0 18px 38px rgba(3, 38, 93, .12);
}

.hp-chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hp-ink);
    font-weight: 900;
    margin-bottom: 18px;
}

.hp-ai-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--hp-blue-700);
    font-weight: 900;
}

.hp-bubble {
    max-width: 82%;
    margin-bottom: 12px;
    padding: 13px 14px;
    border-radius: 8px;
    color: var(--hp-ink);
    background: #e6f8ed;
    font-size: 14px;
}

.hp-bubble.hp-bot {
    margin-left: auto;
    background: #edf4ff;
}

.hp-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 8px 0 14px;
    border: 1px solid var(--hp-line);
    border-radius: 999px;
    color: var(--hp-muted);
    font-size: 13px;
}

.hp-send-dot {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--hp-blue-700);
}

.hp-usb-card {
    display: grid;
    gap: 18px;
    text-align: center;
}

.hp-usb-device {
    min-height: 168px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: radial-gradient(circle at 45% 30%, #ffffff 0%, #dfeaff 46%, #0d3d8f 100%);
    overflow: hidden;
}

.hp-usb-device img {
    width: min(310px, 90%);
    filter: drop-shadow(0 18px 20px rgba(3, 38, 93, .24));
}

.hp-usb-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hp-usb-specs span {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--hp-blue-950);
    background: var(--hp-blue-100);
    font-size: 12px;
    font-weight: 900;
}

.hp-final-cta {
    padding: 28px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--hp-blue-950), var(--hp-blue-800));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--hp-shadow);
}

.hp-final-cta small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hp-final-cta h2 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.1;
    font-weight: 900;
}

.hp-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.hp-footer {
    margin-top: 24px;
    padding: 38px 0 24px;
    color: rgba(255, 255, 255, .78);
    background: var(--hp-blue-950);
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) .75fr .75fr 1fr;
    gap: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.hp-footer img {
    width: 175px;
    filter: brightness(0) invert(1);
}

.hp-footer h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 15px;
}

.hp-footer p,
.hp-footer a {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.hp-footer a:hover,
.hp-footer a:focus {
    color: #ffffff;
}

.hp-footer-links {
    display: grid;
    gap: 6px;
}

.hp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    font-size: 13px;
}

.hp-cookie {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 30;
    width: calc(100% - 48px);
    max-width: 440px;
    display: none;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--hp-line);
    box-shadow: 0 18px 42px rgba(3, 38, 93, .18);
    color: var(--hp-text);
    font-size: 13px;
}

.hp-cookie.is-visible {
    display: flex;
}

.hp-cookie button {
    flex: 0 0 auto;
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    padding: 0 14px;
    color: #ffffff;
    background: var(--hp-blue-700);
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 1120px) {
    .hp-nav .hp-container {
        gap: 14px;
    }

    .hp-menu a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 12px;
    }

    .hp-whatsapp {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hp-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hp-container {
        width: calc(100% - 32px);
        max-width: 1180px;
    }

    .hp-topbar .hp-container {
        display: grid;
        justify-items: center;
        padding: 8px 0;
    }

    .hp-topbar-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
        white-space: normal;
    }

    .hp-nav .hp-container {
        min-height: 68px;
        flex-wrap: wrap;
    }

    .hp-mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hp-menu {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 0 0 14px;
    }

    .hp-menu.is-open {
        display: flex;
    }

    .hp-menu a {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        font-size: 14px;
        background: #f7fbff;
    }

    .hp-nav .hp-whatsapp {
        display: none;
    }

    .hp-hero,
    .hp-hero-grid {
        min-height: auto;
    }

    .hp-hero-grid {
        grid-template-columns: 1fr;
        padding: 36px 0 54px;
    }

    .hp-hero-visual {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        min-height: 380px;
    }

    .hp-hero-products {
        position: relative;
        right: auto;
        display: block;
        margin: 0 auto;
        width: min(620px, 100%);
    }

    .hp-hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-price-strip {
        grid-template-columns: 1fr;
        padding: 18px;
        font-size: 22px;
    }

    .hp-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-benefit {
        border-right: 0;
        border-bottom: 1px solid var(--hp-line);
        padding: 12px;
    }

    .hp-benefit:last-child {
        border-bottom: 0;
    }

    .hp-video-band,
    .hp-ai-panel,
    .hp-usb-panel,
    .hp-final-cta,
    .hp-footer-grid {
        grid-template-columns: 1fr;
    }

    .hp-video-button,
    .hp-final-cta .hp-whatsapp {
        justify-self: stretch;
    }
}

@media (max-width: 560px) {
    .hp-container,
    .hp-hero-grid,
    .hp-hero-grid > div,
    .hp-section-head,
    .hp-ai-panel,
    .hp-usb-panel,
    .hp-final-cta {
        max-width: 358px;
    }

    .hp-container {
        width: calc(100vw - 32px);
        margin-left: 16px;
        margin-right: 16px;
    }

    .hp-hero h1,
    .hp-hero-lead,
    .hp-section-head h2,
    .hp-section-head p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hp-topbar .hp-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 8px 16px;
    }

    .hp-topbar .hp-container > span {
        max-width: 100%;
        text-align: center;
    }

    .hp-topbar-links {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 6px;
    }

    .hp-topbar-links a {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hp-brand img {
        width: 160px;
    }

    .hp-hero h1 {
        font-size: 42px;
    }

    .hp-hero-lead {
        font-size: 17px;
    }

    .hp-hero-points,
    .hp-products,
    .hp-benefits,
    .hp-usb-specs {
        grid-template-columns: 1fr;
    }

    .hp-hero-actions .hp-button,
    .hp-hero-actions .hp-whatsapp,
    .hp-actions-row .hp-button,
    .hp-actions-row .hp-whatsapp {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hp-ai-panel,
    .hp-usb-panel,
    .hp-final-cta {
        padding: 22px 18px;
    }

    .hp-footer-bottom {
        flex-direction: column;
    }

    .hp-cookie {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        max-width: 360px;
        flex-direction: column;
        align-items: stretch;
    }

    .hp-cookie button {
        width: 100%;
    }
}

.hp-product-main {
    background: #f7fbff;
}

.hp-product-hero {
    background: linear-gradient(135deg, #eff8ff 0%, #f8fcff 42%, #f6faf9 100%);
    border-bottom: 1px solid var(--hp-line);
}

.hp-product-hero-grid {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 44px;
    align-items: center;
    padding: 54px 0 64px;
}

.hp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--hp-muted);
    font-size: 14px;
}

.hp-breadcrumb a {
    color: var(--hp-blue);
    font-weight: 800;
}

.hp-product-copy h1 {
    margin: 0;
    color: var(--hp-navy);
    font-size: clamp(44px, 6vw, 82px);
    line-height: .92;
}

.hp-product-copy h1 strong {
    color: var(--hp-green);
}

.hp-product-copy p {
    max-width: 680px;
    margin: 22px 0;
    color: #3d5364;
    font-size: 20px;
    line-height: 1.6;
}

.hp-product-tags,
.hp-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hp-product-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 999px;
    background: #fff;
    color: var(--hp-navy);
    font-size: 14px;
    font-weight: 800;
}

.hp-product-actions {
    margin-top: 28px;
}

.hp-product-media {
    position: relative;
}

.hp-product-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 119, 242, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(13, 44, 72, .16);
}

.hp-product-frame:before {
    content: "";
    display: block;
    aspect-ratio: 1 / .78;
}

.hp-product-frame img {
    position: absolute;
    inset: 8% 8% 12%;
    width: 84%;
    height: 80%;
    object-fit: contain;
}

.hp-product-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.hp-product-stats span {
    display: grid;
    align-content: center;
    min-height: 78px;
    padding: 12px;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
    color: var(--hp-muted);
    font-size: 13px;
    line-height: 1.25;
}

.hp-product-stats strong {
    display: block;
    color: var(--hp-navy);
    font-size: 20px;
    line-height: 1;
}

.hp-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 26px;
    align-items: start;
}

.hp-product-panel,
.hp-buy-card,
.hp-spec-card {
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--hp-soft-shadow);
}

.hp-product-panel {
    padding: 28px;
}

.hp-product-panel h2,
.hp-buy-card h2,
.hp-spec-card h2 {
    margin: 0 0 14px;
    color: var(--hp-navy);
    font-size: 28px;
    line-height: 1.15;
}

.hp-product-panel p {
    color: #42596a;
    line-height: 1.7;
}

.hp-check-list,
.hp-kit-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hp-check-list li,
.hp-kit-list li {
    position: relative;
    padding-left: 26px;
    color: #334a5c;
    line-height: 1.5;
}

.hp-check-list li:before,
.hp-kit-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--hp-green);
    box-shadow: inset 0 0 0 4px #dff8ef;
}

.hp-buy-card {
    padding: 26px;
    position: sticky;
    top: 98px;
}

.hp-price-highlight {
    margin: 0 0 18px;
    color: var(--hp-navy);
    font-size: 18px;
}

.hp-price-highlight strong {
    display: block;
    font-size: 36px;
    line-height: 1.05;
}

.hp-coupon-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.hp-field {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d8e5ef;
    border-radius: 8px;
    background: #fff;
    color: var(--hp-navy);
    font: inherit;
    padding: 0 13px;
}

.hp-field:focus {
    border-color: var(--hp-blue);
    outline: 3px solid rgba(24, 119, 242, .14);
}

.hp-payment-select {
    margin: 12px 0;
}

.hp-buy-note {
    margin: 14px 0 20px;
    color: var(--hp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hp-message {
    min-height: 22px;
    margin: 8px 0 14px;
    font-size: 14px;
    font-weight: 800;
}

.hp-message.is-ok {
    color: #047857;
}

.hp-message.is-warn {
    color: #b45309;
}

.hp-message.is-error {
    color: #b91c1c;
}

.hp-buy-card .hp-button,
.hp-buy-card .hp-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.hp-video-showcase {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, .6fr);
    gap: 24px;
    align-items: center;
}

.hp-product-video {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid rgba(13, 44, 72, .14);
    border-radius: 8px;
    background: #061826;
    box-shadow: var(--hp-soft-shadow);
}

.hp-video-text h2 {
    margin: 0 0 12px;
    color: var(--hp-navy);
    font-size: 34px;
    line-height: 1.15;
}

.hp-video-text p {
    color: #42596a;
    line-height: 1.7;
}

.hp-kit-grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.hp-kit-image {
    overflow: hidden;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--hp-soft-shadow);
}

.hp-kit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hp-spec-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

.hp-spec-table tr {
    border-bottom: 1px solid var(--hp-line);
}

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

.hp-spec-table th,
.hp-spec-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    line-height: 1.45;
}

.hp-spec-table th {
    width: 34%;
    color: var(--hp-navy);
    font-weight: 900;
}

.hp-spec-table td {
    color: #3d5364;
}

.hp-mini-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hp-mini-band article {
    padding: 24px;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
}

.hp-mini-band h3 {
    margin: 0 0 8px;
    color: var(--hp-navy);
    font-size: 22px;
}

.hp-mini-band p {
    color: #42596a;
    line-height: 1.65;
}

.hp-example-page form {
    margin: 0;
}

.hp-example-hero {
    background: linear-gradient(135deg, #eef8ff 0%, #f7fcff 52%, #f4fbf7 100%);
    border-bottom: 1px solid var(--hp-line);
}

.hp-example-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.hp-example-hero h1 {
    margin: 0;
    color: var(--hp-navy);
    font-size: clamp(40px, 5vw, 72px);
    line-height: .96;
}

.hp-example-hero h1 strong {
    color: var(--hp-green);
}

.hp-example-hero p {
    max-width: 720px;
    color: #3d5364;
    font-size: 20px;
    line-height: 1.6;
}

.hp-example-summary {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--hp-soft-shadow);
}

.hp-example-summary span {
    color: var(--hp-muted);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.hp-example-summary strong {
    color: var(--hp-navy);
    font-size: 38px;
    line-height: 1;
}

.hp-example-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hp-example-card {
    overflow: hidden;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--hp-soft-shadow);
}

.hp-example-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 18px 14px;
}

.hp-example-card-head h2 {
    margin: 0;
    color: var(--hp-navy);
    font-size: 22px;
    line-height: 1.18;
}

.hp-example-chip {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf6ff;
    color: var(--hp-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hp-example-video,
.hp-example-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #061826;
}

.hp-example-video {
    height: auto;
}

.hp-example-image {
    height: auto;
    object-fit: contain;
    background: #fff;
}

.hp-example-card-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px 18px;
    color: var(--hp-muted);
    font-size: 13px;
}

.hp-example-empty {
    padding: 26px;
    border: 1px solid var(--hp-line);
    border-radius: 8px;
    background: #fff;
    color: var(--hp-muted);
}

@media (max-width: 900px) {
    .hp-product-hero-grid,
    .hp-product-grid,
    .hp-video-showcase,
    .hp-kit-grid,
    .hp-mini-band,
    .hp-example-hero-grid,
    .hp-example-grid {
        grid-template-columns: 1fr;
    }

    .hp-product-hero-grid {
        min-height: auto;
        padding: 34px 0 44px;
    }

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

@media (max-width: 560px) {
    .hp-product-copy h1 {
        font-size: 42px;
    }

    .hp-product-copy p {
        font-size: 17px;
    }

    .hp-product-stats {
        grid-template-columns: 1fr;
    }

    .hp-product-panel,
    .hp-buy-card,
    .hp-spec-card,
    .hp-mini-band article {
        padding: 20px 18px;
    }

    .hp-coupon-row {
        grid-template-columns: 1fr;
    }

    .hp-product-actions .hp-button,
    .hp-product-actions .hp-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hp-spec-table,
    .hp-spec-table tbody,
    .hp-spec-table tr,
    .hp-spec-table th,
    .hp-spec-table td {
        display: block;
        width: 100%;
    }

    .hp-spec-table th {
        padding-bottom: 4px;
    }

    .hp-spec-table td {
        padding-top: 0;
    }
}
