:root {
    --cpc-blue: #147fab;
    --cpc-blue-dark: #0b5f82;
    --cpc-blue-deep: #063b52;
    --cpc-blue-soft: #eaf4f8;
    --cpc-black: #030305;
    --cpc-ink: #101317;
    --cpc-grey: #6f737b;
    --cpc-line: #dfe5e8;
    --cpc-soft: #f1f5f7;
    --cpc-white: #ffffff;
    --cpc-whatsapp: #25d366;
    --cpc-whatsapp-dark: #1fb257;
    --cpc-radius: 24px;
    --cpc-shadow: 0 18px 60px rgba(3, 3, 5, .09);
}

.cpc-hub {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--cpc-ink);
    background: var(--cpc-white);
    overflow: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.cpc-hub *,
.cpc-hub *::before,
.cpc-hub *::after {
    box-sizing: border-box;
}

.cpc-hub a {
    text-decoration: none;
}

.cpc-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.cpc-section-kicker,
.cpc-eyebrow {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cpc-section-kicker {
    color: var(--cpc-blue);
}

.cpc-section-kicker-light {
    color: #9ddcf4;
}

/* Buttons */
.cpc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.cpc-btn-primary {
    color: #fff;
    background: var(--cpc-blue);
    box-shadow: 0 14px 34px rgba(20, 127, 171, .23);
}

.cpc-btn-primary:hover {
    color: #fff;
    background: #1690c2;
}

.cpc-btn-dark {
    color: #fff;
    background: var(--cpc-black);
}

.cpc-btn-dark:hover {
    color: #fff;
    background: var(--cpc-blue-dark);
}

.cpc-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .045);
}

.cpc-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .08);
}

.cpc-btn-white {
    color: #0a0c0e;
    background: #fff;
    box-shadow: 0 16px 34px rgba(2, 43, 59, .14);
}

.cpc-btn-white:hover {
    color: #0a0c0e;
    background: #f7fbfd;
}

.cpc-btn-whatsapp {
    color: #072412;
    background: var(--cpc-whatsapp);
    box-shadow: 0 14px 30px rgba(37, 211, 102, .2);
}

.cpc-btn-whatsapp:hover {
    color: #061e0f;
    background: #34df73;
    box-shadow: 0 17px 34px rgba(37, 211, 102, .28);
}

.cpc-btn-whatsapp-light {
    box-shadow: 0 16px 36px rgba(1, 38, 54, .22);
}

.cpc-btn-compact {
    min-height: 46px;
    padding: 0 19px;
    font-size: 12px;
}

.cpc-icon-wa {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hero */
.cpc-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: var(--cpc-black);
}

.cpc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, .75), transparent 88%);
}

.cpc-hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.cpc-hero-orb-a {
    width: 620px;
    height: 620px;
    right: -190px;
    top: -170px;
    background: radial-gradient(circle, rgba(20, 127, 171, .56), rgba(20, 127, 171, 0) 70%);
}

.cpc-hero-orb-b {
    width: 460px;
    height: 460px;
    left: 36%;
    bottom: -350px;
    background: radial-gradient(circle, rgba(20, 127, 171, .24), rgba(20, 127, 171, 0) 70%);
}

.cpc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 82px;
    align-items: center;
    padding: 104px 0 92px;
}

.cpc-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aab4bc;
}

.cpc-eyebrow span {
    width: 28px;
    height: 2px;
    display: block;
    background: var(--cpc-blue);
}

.cpc-hero h1 {
    max-width: 760px;
    margin: 24px 0;
    color: #fff;
    font-size: clamp(50px, 5.7vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
}

.cpc-hero-copy > p {
    max-width: 660px;
    margin: 0 0 34px;
    color: #bdc4ca;
    font-size: 19px;
    line-height: 1.66;
}

.cpc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cpc-hero-proof {
    max-width: 720px;
    margin-top: 52px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.cpc-hero-proof div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cpc-hero-proof strong {
    color: #fff;
    font-size: 14px;
}

.cpc-hero-proof span {
    color: #808a92;
    font-size: 11px;
    line-height: 1.45;
}

.cpc-hero-visual {
    height: 480px;
    position: relative;
}

.cpc-visual-grid {
    position: absolute;
    inset: 15% 0 0 10%;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 36px;
    transform: rotate(-7deg);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 34px 34px;
}

.cpc-visual-card {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
    backdrop-filter: blur(14px);
}

.cpc-vc-main {
    width: 370px;
    max-width: 89%;
    height: 280px;
    left: 6%;
    top: 106px;
    padding: 32px;
    border-radius: 30px;
    transform: rotate(-4deg);
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
}

.cpc-vc-label {
    color: #78cbe9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.cpc-vc-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 38px;
}

.cpc-vc-products span {
    padding: 11px 14px;
    color: #e7edf0;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: 11px;
    font-weight: 800;
}

.cpc-vc-products span:nth-child(2) {
    color: #a6e2f8;
    border-color: rgba(86, 194, 235, .31);
    background: rgba(20, 127, 171, .24);
}

.cpc-vc-main strong {
    max-width: 290px;
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1.13;
    letter-spacing: -.03em;
}

.cpc-vc-main small {
    max-width: 275px;
    display: block;
    margin-top: 8px;
    color: #909aa2;
    font-size: 12px;
    line-height: 1.45;
}

.cpc-vc-top,
.cpc-vc-bottom {
    width: 154px;
    height: 134px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
}

.cpc-vc-top {
    right: 0;
    top: 40px;
    color: #090b0e;
    background: #fff;
    transform: rotate(6deg);
}

.cpc-vc-bottom {
    right: 16px;
    bottom: 16px;
    color: #fff;
    background: linear-gradient(145deg, #188ab9, #0b668c);
    transform: rotate(3deg);
}

.cpc-vc-top b,
.cpc-vc-bottom b {
    font-size: 28px;
}

.cpc-vc-top span,
.cpc-vc-bottom span {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.24;
}

/* Trust section */
.cpc-trust-section {
    position: relative;
    padding: 78px 0 82px;
    color: #fff;
    background: linear-gradient(135deg, var(--cpc-blue-deep) 0%, var(--cpc-blue-dark) 48%, var(--cpc-blue) 100%);
    overflow: hidden;
}

.cpc-trust-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -250px;
    bottom: -360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .045);
}

.cpc-trust-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
    margin-bottom: 32px;
}

.cpc-trust-intro h2 {
    max-width: 720px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(32px, 3.7vw, 50px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.cpc-trust-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 1fr 1fr;
    gap: 14px;
}

.cpc-trust-grid > div {
    min-height: 132px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 17px;
    color: #eef7fa;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .085);
    box-shadow: 0 16px 40px rgba(1, 30, 42, .12);
    backdrop-filter: blur(8px);
}

.cpc-trust-grid > div.cpc-trust-featured {
    color: var(--cpc-ink);
    border-color: rgba(255, 255, 255, .84);
    background: #fff;
    box-shadow: 0 18px 45px rgba(2, 36, 51, .24);
}

.cpc-trust-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    background: rgba(255, 255, 255, .09);
}

.cpc-trust-featured .cpc-trust-icon {
    color: var(--cpc-blue);
    border-color: #dcebf1;
    background: var(--cpc-blue-soft);
}

.cpc-trust-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cpc-trust-grid p {
    margin: 0;
}

.cpc-trust-grid strong,
.cpc-trust-grid small,
.cpc-trust-grid em {
    display: block;
}

.cpc-trust-grid em {
    margin-bottom: 3px;
    color: var(--cpc-blue);
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .14em;
}

.cpc-trust-grid strong {
    font-size: 16px;
    line-height: 1.25;
}

.cpc-trust-grid small {
    margin-top: 5px;
    color: #c7e2ec;
    font-size: 11px;
    line-height: 1.45;
}

.cpc-trust-featured small {
    color: #748087;
}

/* Products */
.cpc-products-section {
    padding: 112px 0 122px;
    background: var(--cpc-soft);
}

.cpc-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 54px;
    align-items: end;
    margin-bottom: 44px;
}

.cpc-section-head h2,
.cpc-request-card h2,
.cpc-final-cta h2 {
    margin: 12px 0 0;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.cpc-section-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cpc-section-side > p,
.cpc-section-head-centered p {
    margin: 0;
    color: #69727a;
    font-size: 15px;
    line-height: 1.7;
}

.cpc-filter-panel {
    position: sticky;
    top: 16px;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px;
    border: 1px solid #dbe2e5;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(3, 3, 5, .055);
    backdrop-filter: blur(12px);
}

.cpc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cpc-tabs button {
    padding: 12px 16px;
    color: #667078;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

.cpc-tabs button.is-active {
    color: #fff;
    background: var(--cpc-black);
}

.cpc-search-row {
    min-width: 420px;
    display: flex;
    gap: 8px;
}

.cpc-search,
.cpc-select-wrap {
    height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid #dce2e5;
    border-radius: 13px;
    background: #fff;
}

.cpc-search {
    flex: 1;
    gap: 8px;
    padding: 0 12px;
}

.cpc-search span {
    color: #92979c;
}

.cpc-search input {
    width: 100%;
    padding: 0 !important;
    color: #202328;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    font: inherit;
    font-size: 13px;
}

.cpc-select-wrap {
    position: relative;
    min-width: 182px;
}

.cpc-select-wrap select {
    appearance: none;
    width: 100%;
    height: 100%;
    padding: 0 34px 0 12px;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 13px;
}

.cpc-select-wrap > span {
    position: absolute;
    right: 12px;
    pointer-events: none;
}

.cpc-results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 22px 2px 18px;
    color: #7c858c;
    font-size: 12px;
}

.cpc-live-dot {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cpc-live-dot i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22aa68;
    box-shadow: 0 0 0 4px rgba(34, 170, 104, .09);
}

.cpc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.cpc-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dbe1e4;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(3, 3, 5, .025);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.cpc-product-card:hover {
    transform: translateY(-5px);
    border-color: #cbd4d8;
    box-shadow: var(--cpc-shadow);
}

.cpc-product-image {
    position: relative;
    aspect-ratio: 1.22 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 26px;
    background: linear-gradient(145deg, #fbfcfc, #edf2f4);
}

.cpc-product-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .3s ease;
}

.cpc-product-card:hover .cpc-product-image img {
    transform: scale(1.035);
}

.cpc-image-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #c3cbd0;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -.08em;
}

.cpc-product-image img + .cpc-image-fallback {
    display: none;
}

.cpc-product-image.is-image-error .cpc-image-fallback {
    display: grid;
}

.cpc-badges {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.cpc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
}

.cpc-badge-drop {
    color: #fff;
    background: #111318;
}

.cpc-badge-new {
    color: #fff;
    background: var(--cpc-blue);
}

.cpc-badge-stock {
    margin-left: auto;
    color: #424a50;
    background: rgba(255, 255, 255, .93);
}

.cpc-badge-stock i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22aa68;
}

.cpc-product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.cpc-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--cpc-blue-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.cpc-product-meta small {
    overflow: hidden;
    color: #9ba2a8;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cpc-product-body h3 {
    min-height: 73px;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    color: #121519;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -.025em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cpc-price-block {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.cpc-price-block del {
    color: #989fa5;
    font-size: 12px;
}

.cpc-price-block strong {
    color: #0a0c0e;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.cpc-price-block span {
    margin-top: 4px;
    color: #a0a7ac;
    font-size: 10px;
}

.cpc-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.cpc-card-main,
.cpc-card-wa {
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.cpc-card-main {
    color: #fff;
    background: #111318;
}

.cpc-card-main:hover {
    color: #fff;
    background: var(--cpc-blue-dark);
}

.cpc-card-wa {
    color: #0a3b1c;
    border: 1px solid rgba(37, 211, 102, .4);
    background: #eafbf0;
}

.cpc-card-wa .cpc-icon-wa {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
}

.cpc-card-wa:hover {
    color: #071e10;
    border-color: var(--cpc-whatsapp);
    background: #d9f8e4;
}

.cpc-load-wrap {
    margin-top: 38px;
    text-align: center;
}

.cpc-load-wrap [hidden] {
    display: none !important;
}

.cpc-grid-state {
    padding: 50px;
    color: #747e85;
    border: 1px dashed #cfd8dc;
    border-radius: 20px;
    background: rgba(255, 255, 255, .55);
    text-align: center;
}

/* Direct consultation */
.cpc-request-section {
    padding: 108px 0;
    background: #fff;
}

.cpc-request-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    padding: 72px;
    color: #fff;
    border-radius: 34px;
    background: linear-gradient(135deg, #075879 0%, #147fab 55%, #1b91c1 100%);
    box-shadow: 0 26px 70px rgba(7, 88, 121, .2);
}

.cpc-request-card::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -230px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.cpc-request-copy {
    position: relative;
    z-index: 1;
}

.cpc-request-card .cpc-section-kicker {
    color: #bce9f8;
}

.cpc-request-card h2 {
    margin-bottom: 22px;
    color: #fff;
}

.cpc-request-card p {
    max-width: 610px;
    margin: 0 0 28px;
    color: #d8eff7;
    font-size: 17px;
    line-height: 1.66;
}

.cpc-request-demo {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(2, 43, 59, .24);
    transform: rotate(1.4deg);
}

.cpc-chat {
    max-width: 86%;
    margin-bottom: 12px;
    padding: 13px 15px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.45;
}

.cpc-chat-user {
    margin-left: auto;
    color: #333;
    border-bottom-right-radius: 5px;
    background: #edf1f3;
}

.cpc-chat-brand {
    color: #0a526e;
    border-bottom-left-radius: 5px;
    background: #dff4fc;
}

.cpc-chat-brand i {
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--cpc-blue);
}

.cpc-chat-input {
    height: 48px;
    margin-top: 22px;
    padding: 0 8px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9ba3a8;
    border: 1px solid #e2e5e7;
    border-radius: 14px;
    font-size: 11px;
}

.cpc-chat-input b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 10px;
    background: #111318;
}

/* How it works */
.cpc-how-section {
    padding: 108px 0 116px;
    background: #eaf2f5;
}

.cpc-section-head-centered {
    display: block;
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.cpc-section-head-centered p {
    max-width: 650px;
    margin: 17px auto 0;
}

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

.cpc-how-grid article {
    min-height: 260px;
    padding: 36px;
    border: 1px solid #d6e0e4;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(3, 3, 5, .03);
}

.cpc-how-grid span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 12px;
    background: var(--cpc-blue);
    font-size: 11px;
    font-weight: 900;
}

.cpc-how-grid h3 {
    margin: 27px 0 12px;
    color: #111418;
    font-size: 24px;
    letter-spacing: -.03em;
}

.cpc-how-grid p {
    margin: 0;
    color: #707a81;
    font-size: 14px;
    line-height: 1.68;
}

.cpc-how-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cpc-text-link {
    color: #1f282e;
    font-size: 13px;
    font-weight: 850;
}

.cpc-text-link:hover {
    color: var(--cpc-blue-dark);
}

/* Final CTA */
.cpc-final-cta-section {
    padding: 94px 0;
    color: #fff;
    background: #081016;
}

.cpc-final-cta {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    padding: 52px 56px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 15%, rgba(20, 127, 171, .33), transparent 30%),
        linear-gradient(135deg, #0a1218, #0b1f29);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.cpc-final-cta::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -210px;
    bottom: -250px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.cpc-final-cta-mark {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    background: linear-gradient(145deg, var(--cpc-blue), var(--cpc-blue-dark));
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.06em;
    transform: rotate(-4deg);
}

.cpc-final-cta-copy,
.cpc-final-cta-actions {
    position: relative;
    z-index: 1;
}

.cpc-final-cta h2 {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(34px, 3.6vw, 48px);
}

.cpc-final-cta p {
    max-width: 700px;
    margin: 14px 0 0;
    color: #aebcc4;
    font-size: 14px;
    line-height: 1.7;
}

.cpc-final-cta-actions {
    min-width: 225px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Footer */
.cpc-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 28px;
    color: #fff;
    border-top: 3px solid var(--cpc-blue);
    background: #030405;
}

.cpc-footer::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -240px;
    top: -300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 127, 171, .24), rgba(20, 127, 171, 0) 68%);
    pointer-events: none;
}

.cpc-footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr .7fr .7fr 1.1fr;
    gap: 48px;
}

.cpc-footer-brand p {
    max-width: 285px;
    margin: 18px 0 0;
    color: #8e969d;
    font-size: 13px;
    line-height: 1.7;
}

.cpc-footer-logo {
    display: inline-flex;
    flex-direction: column;
    color: #fff !important;
    line-height: .9;
}

.cpc-footer-logo span {
    font-size: 27px;
    font-weight: 950;
    letter-spacing: -.045em;
}

.cpc-footer-logo small {
    margin-top: 7px;
    color: #4fb6df;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .35em;
}

.cpc-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cpc-footer-nav strong,
.cpc-footer-cta > strong {
    margin-bottom: 6px;
    color: #dce3e7;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cpc-footer-nav a,
.cpc-footer-nav span {
    color: #8e969d;
    font-size: 13px;
    transition: color .2s ease;
}

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

.cpc-footer-cta p {
    margin: 9px 0 18px;
    color: #8e969d;
    font-size: 13px;
    line-height: 1.6;
}

.cpc-footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 58px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #687078;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
    letter-spacing: .02em;
}

/* Floating WhatsApp */
.cpc-wa-float {
    position: fixed;
    z-index: 9996;
    right: 22px;
    bottom: 22px;
    min-height: 50px;
    padding: 0 18px 0 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #062311 !important;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    background: var(--cpc-whatsapp);
    box-shadow: 0 16px 38px rgba(4, 35, 17, .24);
    font-size: 12px;
    font-weight: 900;
    transition: transform .2s ease, background-color .2s ease;
}

.cpc-wa-float:hover {
    color: #062311 !important;
    background: #34df73;
    transform: translateY(-2px);
}

.cpc-wa-float .cpc-icon-wa {
    width: 21px;
    height: 21px;
}

.cpc-hub button:focus-visible,
.cpc-hub a:focus-visible,
.cpc-hub input:focus-visible,
.cpc-hub select:focus-visible {
    outline: 3px solid rgba(20, 127, 171, .3);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1050px) {
    .cpc-hero-grid {
        grid-template-columns: 1fr .8fr;
        gap: 30px;
    }

    .cpc-hero-visual {
        transform: scale(.88);
        transform-origin: center right;
    }

    .cpc-trust-intro {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .cpc-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cpc-trust-featured {
        grid-column: 1 / -1;
    }

    .cpc-section-head {
        grid-template-columns: 1fr 360px;
        gap: 36px;
    }

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

    .cpc-filter-panel {
        position: relative;
        top: auto;
        align-items: stretch;
        flex-direction: column;
    }

    .cpc-search-row {
        width: 100%;
        min-width: 0;
    }

    .cpc-request-card {
        gap: 36px;
        padding: 56px;
    }

    .cpc-final-cta {
        grid-template-columns: auto 1fr;
    }

    .cpc-final-cta-actions {
        grid-column: 1 / -1;
        min-width: 0;
        flex-direction: row;
        padding-left: 116px;
    }

    .cpc-footer-main {
        grid-template-columns: 1.2fr .8fr .8fr;
    }

    .cpc-footer-cta {
        grid-column: 1 / -1;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .cpc-footer-cta p {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 780px) {
    .cpc-shell {
        width: min(calc(100% - 30px), 1180px);
    }

    .cpc-hero {
        min-height: auto;
    }

    .cpc-hero-grid {
        display: block;
        padding: 76px 0 60px;
    }

    .cpc-hero h1 {
        font-size: clamp(44px, 12vw, 58px);
    }

    .cpc-hero-copy > p {
        font-size: 17px;
    }

    .cpc-hero-visual {
        display: none;
    }

    .cpc-hero-proof {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 42px;
    }

    .cpc-hero-proof div:last-child {
        grid-column: 1 / -1;
    }

    .cpc-trust-section {
        padding: 66px 0 70px;
    }

    .cpc-trust-intro h2 {
        font-size: 36px;
    }

    .cpc-trust-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .cpc-trust-featured {
        grid-column: auto;
    }

    .cpc-trust-grid > div {
        min-height: 96px;
        padding: 18px;
    }

    .cpc-trust-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .cpc-products-section {
        padding: 80px 0 90px;
    }

    .cpc-section-head {
        display: block;
        margin-bottom: 30px;
    }

    .cpc-section-side {
        margin-top: 18px;
        gap: 16px;
    }

    .cpc-filter-panel {
        padding: 10px;
        border-radius: 18px;
    }

    .cpc-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .cpc-tabs::-webkit-scrollbar {
        display: none;
    }

    .cpc-tabs button {
        flex: 0 0 auto;
    }

    .cpc-search-row {
        flex-direction: column;
    }

    .cpc-select-wrap {
        min-width: 100%;
    }

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

    .cpc-product-card {
        display: grid;
        grid-template-columns: 154px minmax(0, 1fr);
    }

    .cpc-product-image {
        min-height: 100%;
        aspect-ratio: auto;
        padding: 14px;
    }

    .cpc-product-body {
        padding: 17px;
    }

    .cpc-product-body h3 {
        min-height: auto;
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .cpc-price-block {
        padding-top: 13px;
    }

    .cpc-price-block strong {
        font-size: 22px;
    }

    .cpc-card-actions {
        margin-top: 13px;
    }

    .cpc-card-main,
    .cpc-card-wa {
        min-height: 42px;
        padding: 0 8px;
        font-size: 10px;
    }

    .cpc-badges {
        top: 8px;
        left: 8px;
        right: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cpc-badge-stock {
        margin-left: 0;
    }

    .cpc-request-section {
        padding: 82px 0;
    }

    .cpc-request-card {
        grid-template-columns: 1fr;
        padding: 40px 27px;
        border-radius: 26px;
    }

    .cpc-request-demo {
        display: none;
    }

    .cpc-how-section {
        padding: 82px 0 90px;
    }

    .cpc-section-head-centered {
        margin-bottom: 36px;
    }

    .cpc-how-grid {
        grid-template-columns: 1fr;
    }

    .cpc-how-grid article {
        min-height: 0;
        padding: 28px;
    }

    .cpc-final-cta-section {
        padding: 74px 0;
    }

    .cpc-final-cta {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 38px 28px;
    }

    .cpc-final-cta-mark {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .cpc-final-cta-actions {
        grid-column: auto;
        flex-direction: column;
        padding-left: 0;
    }

    .cpc-footer {
        padding: 54px 0 24px;
    }

    .cpc-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cpc-footer-brand,
    .cpc-footer-cta {
        grid-column: 1 / -1;
    }

    .cpc-footer-cta {
        padding-top: 24px;
    }

    .cpc-footer-bottom {
        margin-top: 42px;
        flex-direction: column;
        gap: 7px;
    }
}

@media (max-width: 520px) {
    .cpc-hero-actions,
    .cpc-trust-intro .cpc-btn,
    .cpc-section-side .cpc-btn,
    .cpc-request-card .cpc-btn,
    .cpc-how-actions .cpc-btn,
    .cpc-final-cta-actions .cpc-btn,
    .cpc-footer-cta .cpc-btn {
        width: 100%;
    }

    .cpc-hero-actions {
        display: grid;
    }

    .cpc-section-head h2,
    .cpc-request-card h2,
    .cpc-final-cta h2 {
        font-size: 38px;
    }

    .cpc-product-card {
        grid-template-columns: 120px minmax(0, 1fr);
        border-radius: 18px;
    }

    .cpc-product-meta small {
        display: none;
    }

    .cpc-product-image {
        padding: 10px;
    }

    .cpc-price-block span {
        display: none;
    }

    .cpc-card-actions {
        grid-template-columns: 1fr;
    }

    .cpc-results-meta {
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
    }

    .cpc-request-card {
        padding: 34px 22px;
    }

    .cpc-how-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

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

    .cpc-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cpc-footer-brand,
    .cpc-footer-cta {
        grid-column: auto;
    }

    .cpc-footer-nav {
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .cpc-wa-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .cpc-wa-float span {
        display: none;
    }
}

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

/* Empty product state / commercial fallback */
.cpc-grid-state {
    padding: 56px 28px;
}
.cpc-empty-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.cpc-empty-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--cpc-blue);
}
.cpc-empty-inner h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    color: #101315;
}
.cpc-empty-inner p {
    max-width: 600px;
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.55;
    color: #6a747b;
}
.cpc-empty-inner .cpc-btn {
    margin-top: 4px;
}
