:root {
    --kivo-blue: #f97316;
    --kivo-blue-dark: #c2410c;
    --kivo-orange: #ff7a00;
    --kivo-dark: #0b1220;
    --kivo-text: #172033;
    --kivo-muted: #697386;
    --kivo-light: #f6f8fc;
    --kivo-border: #e7ebf3;
    --kivo-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff !important;
    color: var(--kivo-text) !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:has(.kivo-home) {
    padding: 0 !important;
}

.kivo-home {
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

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

/* ================= HEADER ================= */

.home-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(231,235,243,.85);
    backdrop-filter: blur(18px);
}

.home-nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.home-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--kivo-dark);
    text-decoration: none;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.home-logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--kivo-blue), #fb923c);
    box-shadow: 0 8px 20px rgba(249,115,22,.25);
}

.home-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.home-menu a {
    color: #536075;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.home-menu a:hover {
    color: var(--kivo-blue);
}

.home-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-login {
    color: var(--kivo-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 11px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.home-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--kivo-blue), #fb923c);
    box-shadow: 0 10px 24px rgba(249,115,22,.22);
}

.home-btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(249,115,22,.30);
}

.home-btn-outline {
    color: var(--kivo-dark);
    background: #ffffff;
    border: 1px solid #dfe5ef;
}

.home-btn-outline:hover {
    color: var(--kivo-blue);
    border-color: #fed7aa;
}

.home-btn-large {
    min-height: 52px;
    padding: 14px 23px;
    font-size: 15px;
}

/* ================= HERO ================= */

.home-hero {
    position: relative;
    padding: 88px 0 100px;
    background:
        radial-gradient(circle at 85% 20%, rgba(249,115,22,.10), transparent 32%),
        radial-gradient(circle at 10% 70%, rgba(255,122,0,.07), transparent 28%),
        #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 65px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid #ffedd5;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--kivo-blue);
    font-size: 12px;
    font-weight: 800;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kivo-orange);
    box-shadow: 0 0 0 5px rgba(255,122,0,.10);
}

.hero-content h1 {
    margin: 22px 0 20px;
    color: var(--kivo-dark);
    font-size: clamp(48px, 5.3vw, 76px);
    line-height: 1.01;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero-content h1 span {
    display: block;
    color: var(--kivo-blue);
}

.hero-description {
    max-width: 610px;
    margin: 0;
    color: var(--kivo-muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-item strong {
    color: var(--kivo-dark);
    font-size: 14px;
}

.trust-item span {
    color: #8a94a6;
    font-size: 11px;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: #e3e7ef;
}

/* ================= WHATSAPP DEMO ================= */

.hero-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-card {
    position: relative;
    z-index: 3;
    width: min(420px, 100%);
    overflow: hidden;
    border: 1px solid #dce3ee;
    border-radius: 25px;
    background: #ffffff;
    box-shadow:
        0 30px 80px rgba(67,35,10,.16),
        0 8px 24px rgba(67,35,10,.08);
    transform: rotate(1.5deg);
}

.wa-header {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #0b5e54, #128c7e);
}

.wa-avatar {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--kivo-blue), #fdba74);
    font-weight: 900;
}

.wa-contact {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.wa-contact strong {
    font-size: 14px;
}

.wa-contact span {
    color: #c8eee9;
    font-size: 11px;
}

.wa-more {
    letter-spacing: 2px;
}

.wa-body {
    min-height: 430px;
    padding: 18px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.8), transparent 30%),
        #efeae2;
}

.wa-date {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 6px 10px;
    border-radius: 7px;
    color: #667781;
    background: #ffffff;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.wa-message {
    position: relative;
    width: fit-content;
    max-width: 83%;
    margin-bottom: 12px;
    padding: 10px 12px 17px;
    border-radius: 9px;
    color: #202c33;
    font-size: 12px;
    line-height: 1.45;
    box-shadow: 0 1px 1px rgba(0,0,0,.06);
}

.wa-message small {
    position: absolute;
    right: 8px;
    bottom: 4px;
    color: #86939b;
    font-size: 8px;
}

.wa-client {
    margin-left: auto;
    background: #d9fdd3;
    border-top-right-radius: 2px;
}

.wa-bot {
    background: #ffffff;
    border-top-left-radius: 2px;
}

.wa-product-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 45px;
}

.wa-product-image {
    width: 55px;
    height: 55px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f4f8;
    font-size: 26px;
}

.wa-product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wa-product-info strong {
    font-size: 11px;
}

.wa-product-info span {
    color: #71808a;
    font-size: 9px;
}

.wa-product-info b {
    color: #0b7a3d;
    font-size: 11px;
}

.wa-input {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13px;
    color: #9aa4ad;
    background: #f0f2f5;
    font-size: 11px;
}

.wa-send {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #128c7e;
    font-size: 14px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.glow-one {
    width: 250px;
    height: 250px;
    top: 40px;
    right: 5px;
    background: rgba(249,115,22,.12);
}

.glow-two {
    width: 190px;
    height: 190px;
    bottom: 40px;
    left: 15px;
    background: rgba(255,122,0,.10);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #e1e6ef;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 15px 35px rgba(67,35,10,.12);
}

.floating-card strong {
    display: block;
    color: var(--kivo-dark);
    font-size: 11px;
}

.floating-card small {
    display: block;
    margin-top: 2px;
    color: #8993a3;
    font-size: 9px;
}

.floating-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #ffffff;
    background: var(--kivo-blue);
    font-weight: 900;
}

.floating-sales {
    left: 0;
    bottom: 95px;
}

.floating-ai {
    right: 0;
    top: 115px;
}

.ai-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #23c16b;
    box-shadow: 0 0 0 7px rgba(35,193,107,.12);
}

/* ================= INTRO ================= */

.home-intro {
    padding: 105px 0;
    text-align: center;
    background: var(--kivo-light);
}

.section-overline,
.section-label {
    color: var(--kivo-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.home-intro h2 {
    max-width: 800px;
    margin: 16px auto;
    color: var(--kivo-dark);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.home-intro h2 span,
.section-heading h2 span,
.home-cta h2 span {
    color: var(--kivo-blue);
}

.section-description {
    max-width: 680px;
    margin: 0 auto;
    color: var(--kivo-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* ================= SECTIONS ================= */

.home-section {
    padding: 110px 0;
}

.features-section {
    background: #ffffff;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

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

.section-heading h2 {
    margin: 13px 0 0;
    color: var(--kivo-dark);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading > p {
    max-width: 390px;
    margin: 0;
    color: var(--kivo-muted);
    font-size: 15px;
    line-height: 1.7;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading.centered h2 {
    max-width: 750px;
    margin: 13px auto;
}

.section-heading.centered p {
    max-width: 620px;
    margin: 0 auto;
}

/* ================= FEATURES ================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.feature-card {
    min-height: 230px;
    padding: 27px;
    border: 1px solid var(--kivo-border);
    border-radius: 18px;
    background: #ffffff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #fed7aa;
    box-shadow: 0 18px 45px rgba(24,47,85,.08);
}

.feature-main {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border-color: #ffedd5;
}

.feature-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--kivo-blue);
    font-size: 19px;
    font-weight: 900;
}

.feature-card h3 {
    margin: 0 0 10px;
    color: var(--kivo-dark);
    font-size: 17px;
}

.feature-card p {
    margin: 0;
    color: var(--kivo-muted);
    font-size: 13px;
    line-height: 1.65;
}

.feature-tag {
    width: fit-content;
    margin-top: 20px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--kivo-blue);
    background: #fff7ed;
    font-size: 9px;
    font-weight: 900;
}

.feature-tag-light {
    color: #bd5b00;
    background: #fff1e4;
}

/* ================= HOW ================= */

.how-section {
    background: var(--kivo-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 65px;
}

.step-card {
    position: relative;
    padding: 0 10px 10px;
}

.step-number {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 15px;
    color: #ffffff;
    background: var(--kivo-dark);
    font-size: 12px;
    font-weight: 900;
}

.step-line {
    position: absolute;
    top: 29px;
    left: 70px;
    width: calc(100% - 40px);
    height: 1px;
    background: #dce2ec;
}

.step-card:last-child .step-line {
    display: none;
}

.step-card h3 {
    margin: 0 0 10px;
    color: var(--kivo-dark);
    font-size: 17px;
}

.step-card p {
    margin: 0;
    color: var(--kivo-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ================= PRICING ================= */

.pricing-section {
    background: #ffffff;
}

.pricing-grid {
    width: min(880px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 65px auto 0;
}

.pricing-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--kivo-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(67,35,10,.05);
}

.pricing-card-pro {
    border: 2px solid var(--kivo-blue);
    box-shadow: 0 20px 55px rgba(249,115,22,.12);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    right: 25px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--kivo-orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .7px;
}

.pricing-badge {
    color: var(--kivo-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pricing-top h3 {
    margin: 10px 0 8px;
    color: var(--kivo-dark);
    font-size: 25px;
}

.pricing-top p {
    min-height: 45px;
    margin: 0;
    color: var(--kivo-muted);
    font-size: 13px;
    line-height: 1.6;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 30px 0 22px;
}

.pricing-price strong {
    color: var(--kivo-dark);
    font-size: 42px;
    letter-spacing: -2px;
}

.pricing-price span {
    color: #8a94a6;
    font-size: 12px;
}

.pricing-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid #dce3ee;
    border-radius: 10px;
    color: var(--kivo-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.pricing-btn-pro {
    color: #ffffff;
    background: var(--kivo-blue);
    border-color: var(--kivo-blue);
}

.pricing-divider {
    height: 1px;
    margin: 28px 0 23px;
    background: var(--kivo-border);
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-card li {
    color: #536075;
    font-size: 13px;
}

/* ================= CTA ================= */

.home-cta {
    padding: 30px 0 110px;
}

.cta-card {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 65px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(120deg, #c2410c, #f97316);
    box-shadow: 0 30px 70px rgba(249,115,22,.20);
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.cta-content .section-label {
    color: #fed7aa;
}

.home-cta h2 {
    margin: 15px 0;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.home-cta h2 span {
    display: block;
    color: #ffffff;
}

.home-cta p {
    max-width: 570px;
    margin: 0 0 30px;
    color: #ffedd5;
    font-size: 16px;
    line-height: 1.7;
}

.home-btn-white {
    color: var(--kivo-blue);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.home-btn-white:hover {
    color: var(--kivo-blue);
}

.cta-decoration {
    position: absolute;
    right: -80px;
    top: -100px;
    width: 500px;
    height: 500px;
}

.cta-circle {
    position: absolute;
    inset: 0;
    border: 80px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.cta-circle-small {
    position: absolute;
    width: 240px;
    height: 240px;
    right: 30px;
    bottom: 20px;
    border: 45px solid rgba(255,122,0,.30);
    border-radius: 50%;
}

/* ================= FAQ ================= */

.faq-section {
    padding-top: 20px;
    background: #ffffff;
}

.faq-list {
    width: min(800px, 100%);
    margin: 55px auto 0;
}

.faq-list details {
    border-bottom: 1px solid var(--kivo-border);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 5px;
    color: var(--kivo-dark);
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--kivo-blue);
    font-size: 22px;
    font-weight: 400;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 700px;
    padding: 0 5px 23px;
    margin: 0;
    color: var(--kivo-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ================= FOOTER ================= */

.home-footer {
    padding: 65px 0 25px;
    color: #aab5c7;
    background: #0a1221;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    color: #ffffff;
}

.home-footer p {
    max-width: 300px;
    margin-top: 18px;
    color: #8996ab;
    font-size: 13px;
    line-height: 1.7;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 12px;
}

.footer-grid a {
    color: #8996ab;
    text-decoration: none;
    font-size: 12px;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #68758a;
    font-size: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .home-menu {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

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

    .hero-visual {
        min-height: 560px;
    }

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

    .feature-main {
        grid-column: span 2;
    }

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

    .step-line {
        display: none;
    }
}

@media (max-width: 700px) {

    .home-container {
        width: min(100% - 30px, 1180px);
    }

    .home-nav {
        height: 68px;
    }

    .home-nav-actions {
        gap: 8px;
    }

    .home-login {
        display: none;
    }

    .home-btn {
        padding: 10px 14px;
    }

    .home-hero {
        padding: 60px 0 65px;
    }

    .hero-content h1 {
        font-size: 45px;
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .home-btn {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-divider {
        height: 25px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .whatsapp-card {
        width: min(380px, 92%);
    }

    .floating-sales {
        left: -2px;
        bottom: 65px;
    }

    .floating-ai {
        right: -2px;
        top: 65px;
    }

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

    .section-heading {
        display: block;
        margin-bottom: 40px;
    }

    .section-heading > p {
        margin-top: 20px;
    }

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

    .feature-main {
        grid-column: span 1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 45px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .cta-card {
        min-height: 420px;
        padding: 40px 27px;
    }

    .cta-decoration {
        opacity: .5;
        right: -180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-grid > div:first-child {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 430px) {

    .home-logo {
        font-size: 21px;
    }

    .home-logo-mark {
        width: 34px;
        height: 34px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-divider {
        display: none;
    }

    .hero-visual {
        min-height: 475px;
    }

    .whatsapp-card {
        transform: none;
    }

    .floating-card {
        transform: scale(.85);
    }

    .floating-sales {
        left: -25px;
    }

    .floating-ai {
        right: -25px;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

/* =========================================================
   KIVO HOME — LARGEUR PLEINE
   ========================================================= */

.kivo-home {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.kivo-home .kivo-home-container,
.kivo-home .container,
.kivo-home .home-container {
    width: calc(100% - 48px);
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.kivo-home section {
    width: 100%;
}

@media (max-width: 700px) {
    .kivo-home .kivo-home-container,
    .kivo-home .container,
    .kivo-home .home-container {
        width: calc(100% - 28px);
    }
}

@media (min-width: 1600px) {
    .kivo-home .kivo-home-container,
    .kivo-home .container,
    .kivo-home .home-container {
        max-width: 1600px;
    }
}
