
:root {
    --cj26-red: #8b0000;
    --cj26-red-light: #e84d43;
    --cj26-red-hover: #730000;
    --cj26-gold: #dcb10d;
    --cj26-yellow: #ffb800;
    --cj26-dark: #18181b;
    --cj26-text: #52525b;
    --cj26-soft: #f8f9fa;
    --cj26-border: #e9ecef;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--cj26-dark);
    overflow-x: hidden;
}

#container.cj26-page {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    font-family: Roboto, Arial, sans-serif;
}

/* NAVBAR */
.cj26-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 9999;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: .3s ease;
}

.cj26-header.scrolled {
    height: 64px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.cj26-nav {
    width: min(1500px, 94%);
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cj26-logo img {
    display: block;
    width: auto;
    height: 98px;
    object-fit: contain;
    transition: .3s ease;
}

.cj26-header.scrolled .cj26-logo img {
    height: 75px;
}

.cj26-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.cj26-menu a {
    color: #3f3f46;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: .25s;
}

.cj26-menu a:hover {
    color: var(--cj26-red);
}

.cj26-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cj26-auth a {
    text-decoration: none !important;
}

.cj26-btn-login {
    color: #3f3f46;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 999px;
}

.cj26-btn-login:hover {
    background: #f4f4f5;
    color: var(--cj26-red);
}

.cj26-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    background: var(--cj26-red);
    color: #fff !important;
    padding: 14px 26px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(139,0,0,.18);
    transition: .3s ease;
}

.cj26-btn-primary:hover {
    background: var(--cj26-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139,0,0,.25);
}

.cj26-mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 29px;
    color: #27272a;
}

/* HERO */
.cj26-hero {
    min-height: 100vh;
    padding: 108px 0 45px;
    background: var(--cj26-soft);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cj26-hero:before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -180px;
    top: 34%;
    border-radius: 50%;
    background: rgba(139,0,0,.055);
    filter: blur(80px);
}

.cj26-hero-wrap {
    width: min(1500px, 94%);
    margin: auto;
    position: relative;
}

.cj26-slider {
    position: relative;
    min-height: 660px;
    border-radius: 48px;
    overflow: hidden;
}

.cj26-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity .8s ease, transform .8s ease, visibility .8s;
}

.cj26-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.cj26-slide-main {
    display: grid;
    grid-template-columns: minmax(0,1fr) 540px;
    min-height: 660px;
    align-items: center;
    gap: 45px;
    position: relative;
    z-index: 2;
}

.cj26-hero-copy {
    padding: 45px 20px 45px 55px;
    position: relative;
    z-index: 4;
}

.cj26-hero-copy h1 {
    font-size: clamp(45px, 5vw, 78px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
    margin: 0 0 25px;
    color: #18181b;
}

.cj26-hero-copy h1 span {
    color: var(--cj26-red);
}

.cj26-hero-copy p {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.7;
    color: #71717a;
    margin-bottom: 32px;
}

.cj26-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.cj26-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #3f3f46;
    font-weight: 600;
}

.cj26-feature .material-icons {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(139,0,0,.08);
    color: var(--cj26-red);
    font-size: 20px;
}

.cj26-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cj26-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border: 2px solid #e4e4e7;
    border-radius: 14px;
    color: #52525b !important;
    background: transparent;
    font-weight: 700;
    text-decoration: none !important;
    transition: .3s ease;
}

.cj26-btn-outline:hover {
    background: #fff;
    border-color: #d4d4d8;
    transform: translateY(-2px);
}

.cj26-hero-art {
    position: relative;
    min-height: 660px;
}

.cj26-hero-photo {
    position: absolute;
    inset: 0 -14% 0 -10%;
    background: url('../home2026/hero-page.webp') center right/cover no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 4%, #000 42%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 4%, #000 42%, #000 100%);
}

.cj26-hero-login {
    position: absolute;
    width: 78%;
    max-width: 480px;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 38px;
    box-shadow: 0 25px 65px rgba(0,0,0,.18);
}

.cj26-slide-app .cj26-hero-copy h1 span {
    color: var(--cj26-yellow);
}

.cj26-slide-app:before {
    content: "";
    position: absolute;
    z-index: 0;
    right: -8%;
    top: -10%;
    bottom: -10%;
    width: 58%;
    background: var(--cj26-red);
    border-radius: 50% 0 0 50%;
}

.cj26-phones {
    height: 620px;
    position: relative;
}

.cj26-phone {
    position: absolute;
    width: 215px;
    height: 465px;
    background: #222;
    border: 5px solid #333;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.28);
    top: 80px;
    transition: .7s ease;
}

.cj26-phone:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 18px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.cj26-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.cj26-phone.p1 {
    left: 10px;
    transform: rotate(-10deg) scale(.94);
    z-index: 1;
}

.cj26-phone.p2 {
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(1.07);
    z-index: 3;
}

.cj26-phone.p3 {
    right: 0;
    transform: rotate(10deg) scale(.94);
    z-index: 1;
}

.cj26-slide-columns {
    min-height: 660px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.cj26-info-col {
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.cj26-info-col:nth-child(1) {
    background: #fff;
    color: var(--cj26-red);
}

.cj26-info-col:nth-child(2) {
    background: var(--cj26-red);
    color: #fff;
    border-radius: 48px 0 0 48px;
    margin-left: -25px;
    box-shadow: -20px 0 35px rgba(0,0,0,.12);
}

.cj26-info-col:nth-child(3) {
    background: var(--cj26-yellow);
    color: #18181b;
    border-radius: 48px 0 0 48px;
    margin-left: -25px;
    box-shadow: -20px 0 35px rgba(0,0,0,.10);
}

.cj26-info-col .material-icons {
    font-size: 62px;
    margin-bottom: 23px;
}

.cj26-info-col h2 {
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 20px;
    color: inherit;
}

.cj26-info-col p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    color: inherit;
}

.cj26-slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.cj26-slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: #d4d4d8;
    transition: .3s;
}

.cj26-slider-dot.active {
    width: 40px;
    border-radius: 8px;
    background: var(--cj26-red);
}

/* GENERAL SECTIONS */
.cj26-section {
    padding: 100px 0;
}

.cj26-container {
    width: min(1280px, 92%);
    margin: auto;
}

.cj26-eyebrow {
    font-size: 12px;
    color: var(--cj26-red);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 800;
}

.cj26-title {
    font-size: clamp(38px, 4.3vw, 66px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    font-weight: 800;
    color: #18181b;
}

/* ABOUT */
.cj26-about {
    background: #fcfbfa;
    overflow: hidden;
}

.cj26-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-bottom: 105px;
}

.cj26-stat {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,.035);
    transition: .3s ease;
}

.cj26-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,.09);
}

.cj26-stat-label {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #71717a;
    font-weight: 600;
}

.cj26-stat-label .material-icons {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 12px;
    color: #27272a;
}

.cj26-stat strong {
    display: block;
    font-size: 43px;
    line-height: 1;
    margin-top: 22px;
    color: #18181b;
}

.cj26-about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 85px;
    align-items: center;
}

.cj26-about-visual {
    min-height: 600px;
    position: relative;
}

.cj26-about-gold {
    position: absolute;
    left: 0;
    top: 100px;
    bottom: 0;
    width: 68%;
    border-radius: 45px 45px 45px 0;
    background: var(--cj26-gold);
}

.cj26-about-red {
    position: absolute;
    left: 65px;
    right: 0;
    top: 45px;
    bottom: 0;
    border-radius: 55px 90px 75px 55px;
    background: var(--cj26-red);
}

.cj26-about-visual .foto-w {
    position: absolute;
    z-index: 2;
    width: 80%;
    right: -15%;
    bottom: -20px;
    filter: drop-shadow(0 18px 18px rgba(0,0,0,.2));
}

.cj26-about-visual .foto-4 {
    position: absolute;
    z-index: 3;
    width: 75%;
    left: -8%;
    bottom: 0;
    filter: drop-shadow(0 20px 22px rgba(0,0,0,.25));
}

.cj26-about-copy .cj26-title {
    margin: 17px 0 27px;
}

.cj26-about-copy > p {
    color: #71717a;
    font-size: 20px;
    line-height: 1.7;
    max-width: 590px;
}

.cj26-highlight {
    border-left: 4px solid var(--cj26-gold);
    padding-left: 18px;
    margin: 32px 0 40px;
    font-size: 19px;
    color: #52525b;
    font-weight: 700;
}

/* PRODUCTS */
.cj26-products {
    background: var(--cj26-red);
    color: #fff;
    overflow: hidden;
}

.cj26-products-head {
    padding: 115px 0 45px;
    text-align: center;
}

.cj26-products-head h2 {
    font-size: clamp(42px,5vw,76px);
    letter-spacing: .08em;
    font-weight: 300;
    color: #fff;
}

.cj26-products-head h2 strong {
    font-weight: 900;
}

.cj26-product {
    padding: 70px 0 100px;
}

.cj26-product-row {
    width: min(1280px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cj26-product:nth-child(even) .cj26-product-image {
    order: 2;
}

.cj26-product-image img {
    display: block;
    width: 100%;
    max-width: 470px;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin: auto;
    border-radius: 58px;
    box-shadow: 0 26px 60px rgba(0,0,0,.25);
    transition: .5s ease;
}

.cj26-product-image img:hover {
    transform: scale(1.02);
}

.cj26-product-copy h3 {
    font-size: clamp(35px,4vw,59px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 28px;
}

.cj26-product-copy p {
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255,255,255,.94);
}

.cj26-product-copy a {
    display: inline-flex;
    margin-top: 20px;
    background: #fff;
    color: var(--cj26-red) !important;
    font-weight: 800;
    padding: 14px 29px;
    border-radius: 999px;
    text-decoration: none !important;
}

/* PARTNERS */
.cj26-partners {
    background: #fff;
    padding: 35px 0 65px;
    overflow: hidden;
}

.cj26-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cj26-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: cj26marquee 32s linear infinite;
}

.cj26-marquee-item {
    width: 210px;
    height: 130px;
    padding: 15px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    filter: grayscale(1);
    transition: .3s;
}

.cj26-marquee-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.cj26-marquee-item img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

@keyframes cj26marquee {
    to { transform: translateX(-50%); }
}

/* INFO */
.cj26-info {
    background: #f8f9fa;
    padding: 20px 0 90px;
}

.cj26-info-grid {
    width: min(1500px, 95%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,.08);
}

.cj26-info-grid .cj26-info-card {
    min-height: 430px;
    padding: 55px 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cj26-info-grid .cj26-info-card:nth-child(1) {
    background: #fff;
    color: var(--cj26-red);
}

.cj26-info-grid .cj26-info-card:nth-child(2) {
    background: var(--cj26-red);
    color: #fff;
    border-radius: 45px 0 0 45px;
    margin-left: -22px;
    box-shadow: -15px 0 30px rgba(0,0,0,.12);
}

.cj26-info-grid .cj26-info-card:nth-child(3) {
    background: var(--cj26-yellow);
    color: #18181b;
    border-radius: 45px 0 0 45px;
    margin-left: -22px;
    box-shadow: -15px 0 30px rgba(0,0,0,.10);
}

.cj26-info-card .material-icons {
    font-size: 54px;
    margin-bottom: 20px;
}

.cj26-info-card h3 {
    color: inherit;
    font-size: 27px;
    font-weight: 800;
    margin: 0 0 15px;
}

.cj26-info-card p {
    color: inherit;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* SIGNUP */
.cj26-signup {
    background: #fff;
    padding: 130px 0 150px;
}

.cj26-signup-grid {
    width: min(1100px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.cj26-form-card {
    background: #fff;
    padding: 48px;
    border-radius: 32px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 25px 65px rgba(0,0,0,.12);
}

.cj26-form-row {
    position: relative;
    border-bottom: 1px solid #d4d4d8;
    margin-bottom: 24px;
}

.cj26-form-row .material-icons {
    position: absolute;
    left: 0;
    top: 12px;
    color: #a1a1aa;
    font-size: 20px;
}

.cj26-form-row input {
    width: 100%;
    height: 48px;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 6px 0 32px !important;
    background: transparent !important;
    color: #3f3f46;
    font-size: 15px;
}

.cj26-form-submit {
    width: 100%;
    border: 0;
    background: var(--cj26-red-light);
    color: #fff;
    font-weight: 800;
    min-height: 52px;
    border-radius: 13px;
    margin-top: 15px;
    transition: .3s;
}

.cj26-form-submit:hover {
    background: var(--cj26-red);
}

.cj26-steps h2 {
    color: #1e293b;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 38px;
}

.cj26-step-list {
    position: relative;
    padding-left: 42px;
}

.cj26-step-list:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 30px;
    width: 2px;
    background: #e5e7eb;
}

.cj26-step {
    position: relative;
    background: #fff;
    padding: 22px;
    margin-bottom: 22px;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

.cj26-step:before {
    content: "";
    position: absolute;
    left: -41px;
    top: 29px;
    width: 13px;
    height: 13px;
    background: #fff;
    border: 2px solid #27272a;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fff;
}

.cj26-step h3 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
}

.cj26-step p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CONTACT */
.cj26-contact {
    background: var(--cj26-red);
    padding: 115px 0 0;
}

.cj26-contact-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 65px;
}

.cj26-contact-head h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    margin: 0 0 20px;
}

.cj26-contact-head p {
    color: rgba(255,255,255,.8);
    font-size: 18px;
    line-height: 1.6;
}

.cj26-contact-grid {
    width: min(1050px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    padding-bottom: 100px;
}

.cj26-contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px 25px;
    text-align: center;
    text-decoration: none !important;
    color: #52525b !important;
    transition: .3s ease;
}

.cj26-contact-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 45px rgba(0,0,0,.18);
}

.cj26-contact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: rgba(139,0,0,.08);
    color: var(--cj26-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cj26-contact-icon .material-icons {
    font-size: 25px;
}

.cj26-contact-card h3 {
    font-size: 17px;
    color: #18181b;
    font-weight: 800;
    margin: 0 0 10px;
}

.cj26-contact-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #71717a;
    margin: 0;
}

.cj26-footerbar {
    background: #fff;
    border-top: 1px solid #eee;
}

.cj26-footerbar-inner {
    width: min(1280px, 92%);
    margin: auto;
    min-height: 85px;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
    color: #71717a;
    font-size: 13px;
}

.cj26-footer-links {
    display: flex;
    gap: 22px;
}

.cj26-footer-links a {
    color: #71717a;
    text-decoration: none !important;
}

.cj26-footer-links a:hover {
    color: var(--cj26-red);
}

/* COOKIES */
.cj26-cookies {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 10000;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 12px 45px rgba(0,0,0,.16);
    padding: 18px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #52525b;
    font-size: 13px;
}

.cj26-cookies button {
    border: 0;
    border-radius: 999px;
    background: var(--cj26-red);
    color: #fff;
    padding: 10px 23px;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 991px) {
    .cj26-header {
        height: 72px;
    }

    .cj26-logo img,
    .cj26-header.scrolled .cj26-logo img {
        height: 80px;
    }

    .cj26-menu,
    .cj26-auth {
        display: none;
    }

    .cj26-mobile-toggle {
        display: block;
    }

    .cj26-mobile-menu {
        position: fixed;
        inset: 72px 0 auto 0;
        background: #fff;
        padding: 22px 25px 30px;
        box-shadow: 0 18px 30px rgba(0,0,0,.08);
        display: none;
    }

    .cj26-mobile-menu.open {
        display: block;
    }

    .cj26-mobile-menu a {
        display: block;
        padding: 14px 5px;
        color: #27272a;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none !important;
        border-bottom: 1px solid #f4f4f5;
    }

    .cj26-mobile-menu .cj26-btn-primary {
        margin-top: 15px;
        text-align: center;
        color: #fff !important;
    }

    .cj26-hero {
        min-height: auto;
        padding: 105px 0 60px;
        background: #fff;
    }

    .cj26-hero-wrap {
        width: 100%;
    }

    .cj26-slider {
        min-height: auto;
        border-radius: 0;
    }

    .cj26-slide-main {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 15px;
    }

    .cj26-hero-copy {
        padding: 20px 24px 15px;
        width: 100%;
    }

    .cj26-hero-copy h1 {
        font-size: clamp(46px, 13vw, 64px);
        letter-spacing: -2px;
    }

    .cj26-hero-copy p {
        font-size: 17px;
        line-height: 1.6;
    }

    .cj26-features,
    .cj26-btn-outline {
        display: none;
    }

    .cj26-hero-actions {
        margin-bottom: 18px;
    }

    .cj26-hero-art {
        min-height: 490px;
        width: calc(100% - 48px);
        margin: auto;
        border-radius: 32px;
        overflow: hidden;
    }

    .cj26-hero-photo {
        inset: 0;
        mask-image: none;
        -webkit-mask-image: none;
        background-position: center;
    }

    .cj26-hero-login {
        width: 100%;
        max-width: none;
        height: 100%;
        top: 0;
        right: 0;
        transform: none;
        object-fit: cover;
        border-radius: 32px;
    }

    .cj26-slide-app:before {
        display: none;
    }

    .cj26-phones {
        width: 100%;
        height: 500px;
    }

    .cj26-phone {
        width: 170px;
        height: 365px;
    }

    .cj26-phone.p1 {
        left: 5%;
    }

    .cj26-phone.p3 {
        right: 5%;
    }

    .cj26-slide-columns {
        grid-template-columns: 1fr;
    }

    .cj26-info-col {
        padding: 45px 30px;
    }

    .cj26-info-col:nth-child(2),
    .cj26-info-col:nth-child(3) {
        border-radius: 35px 35px 0 0;
        margin: -20px 0 0;
    }

    .cj26-stats,
    .cj26-about-grid,
    .cj26-product-row,
    .cj26-info-grid,
    .cj26-signup-grid,
    .cj26-contact-grid {
        grid-template-columns: 1fr;
    }

    .cj26-section {
        padding: 75px 0;
    }

    .cj26-stats {
        margin-bottom: 65px;
    }

    .cj26-about-grid {
        gap: 55px;
    }

    .cj26-about-visual {
        min-height: 500px;
    }

    .cj26-about-copy {
        text-align: center;
    }

    .cj26-about-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .cj26-highlight {
        display: inline-block;
        text-align: left;
    }

    .cj26-products {
        background: #fff;
    }

    .cj26-products-head {
        padding: 70px 0 25px;
    }

    .cj26-products-head h2 {
        color: var(--cj26-red);
        font-size: 42px;
    }

    .cj26-product {
        padding: 15px 0;
    }

    .cj26-product-image {
        display: none;
    }

    .cj26-product-copy {
        background: var(--cj26-red);
        border-radius: 22px;
        padding: 28px 24px;
        text-align: center;
    }

    .cj26-product-copy h3 {
        font-size: 31px;
    }

    .cj26-product-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .cj26-info {
        padding-top: 40px;
    }

    .cj26-info-grid {
        width: 92%;
    }

    .cj26-info-grid .cj26-info-card {
        min-height: auto;
        padding: 45px 30px;
    }

    .cj26-info-grid .cj26-info-card:nth-child(2),
    .cj26-info-grid .cj26-info-card:nth-child(3) {
        margin: -20px 0 0;
        border-radius: 35px 35px 0 0;
    }

    .cj26-signup {
        padding: 80px 0 100px;
    }

    .cj26-signup-grid {
        gap: 55px;
    }

    .cj26-form-card {
        padding: 32px 25px;
    }

    .cj26-steps {
        grid-row: 1;
    }

    .cj26-steps h2 {
        text-align: center;
        font-size: 34px;
    }

    .cj26-contact {
        padding-top: 80px;
    }

    .cj26-contact-grid {
        padding-bottom: 70px;
    }

    .cj26-footerbar-inner {
        padding: 25px 0;
        flex-direction: column;
        text-align: center;
    }

    .cj26-cookies {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 580px) {
    .cj26-about-visual {
        min-height: 410px;
    }

    .cj26-about-red {
        left: 38px;
    }

    .cj26-about-visual .foto-w {
        width: 92%;
        right: -22%;
    }

    .cj26-about-visual .foto-4 {
        width: 86%;
        left: -16%;
    }

    .cj26-phone {
        width: 145px;
        height: 315px;
        border-radius: 28px;
    }

    .cj26-phone.p1 {
        left: 0;
    }

    .cj26-phone.p3 {
        right: 0;
    }

    .cj26-marquee-item {
        width: 170px;
    }
}


/* =========================================================
   CORRECAO 01 - HEADER / LOGO / MENU MOBILE
========================================================= */

.cj26-logo {
    width: 220px;
    height: 64px;
    display: flex;
    align-items: center;
}

.cj26-logo img {
    width: 210px !important;
    height: auto !important;
    max-height: 62px !important;
    object-fit: contain;
}

.cj26-header.scrolled .cj26-logo img {
    width: 190px !important;
    height: auto !important;
    max-height: 52px !important;
}

/* O menu mobile nunca deve aparecer no desktop */
.cj26-mobile-menu {
    display: none;
}

@media (max-width: 991px) {

    .cj26-logo {
        width: 175px;
        height: 58px;
    }

    .cj26-logo img,
    .cj26-header.scrolled .cj26-logo img {
        width: 170px !important;
        height: auto !important;
        max-height: 55px !important;
    }

    .cj26-mobile-menu {
        display: none;
    }

    .cj26-mobile-menu.open {
        display: block;
    }
}


/* =========================================================
   CORRECAO 02 - FOTO QUEM SOMOS
========================================================= */

.cj26-about-visual {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cj26-about-visual .cj26-equipe-foto {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 32px;
}

@media (max-width: 991px) {
    .cj26-about-visual {
        min-height: auto;
    }

    .cj26-about-visual .cj26-equipe-foto {
        width: 100%;
        max-width: 520px;
    }
}
