/* Contact Sales Page Styles - Combined CSS */

/* Premium Contact Sales Layout Styles */
.contact-sales-wrapper {
    background-color: #FFF6ED; /* Soft background based on the image */
    padding: 40px 20px 60px 20px; /* Micro-adjusted top padding */
    font-family: 'Outfit', sans-serif;
    color: #333;
    overflow: hidden;
}
.cs-container {
    max-width: 1282px;
    margin: 0 auto;
}

/* Typography */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}
.cs-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a4f44; /* Dark greenish based on image */
    line-height: 1.1;
    margin-bottom: 20px;
}
.cs-title-line-1,
.cs-title-line-2 {
    display: block;
}
.cs-title-line-1 {
    color: #C9362B;
}
.cs-title-line-2 {
    color: #004A3E;
}
.cs-subtitle {
    font-size: 1.15rem;
    color: #1a4f44; /* Changed to dark green */
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 40px;
}

/* Hero Section */
.cs-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 50%);
    grid-template-areas:
        "content image"
        "features image";
    column-gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    position: relative;
    width: calc(100% + 1px);
    transform: translateX(-1px);
}

/* Animations matching Elementor Entrance */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.cs-hero-content {
    grid-area: content;
    flex: 1;
    padding-top: 30px;
    animation: fadeInLeft 0.8s ease-out forwards;
}
.cs-hero-image-wrapper {
    grid-area: image;
    flex: 0 0 50%; /* Adjusted mascot size */
    position: relative;
    display: flex;
    justify-content: flex-end;
    animation: fadeInRight 1s ease-out forwards;
}
.cs-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Row */
.cs-features {
    grid-area: features;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.cs-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-right: 20px;
}
.cs-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #FFE9D1;
}
.cs-feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    object-fit: contain;
}
.cs-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 5px;
    line-height: 1.2;
}
.cs-feature-desc {
    font-size: 13px;
    font-weight: 400;
    color: #777777;
    line-height: 1.2;
}

.cs-feature-item:nth-child(1) { animation-delay: 0.2s; }
.cs-feature-item:nth-child(2) { animation-delay: 0.4s; }
.cs-feature-item:nth-child(3) { animation-delay: 0.6s; }
.cs-feature-item:nth-child(4) { animation-delay: 0.8s; }

/* Main Content Grid */
.cs-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.cs-column-left, .cs-column-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cs-form-card {
    /* Reverted */
}
#contactSalesForm {
    /* Reverted */
}

/* Cards Base Style */
.cs-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 15px;
}
.cs-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a4f44;
    margin-bottom: 10px;
}
.cs-card-subtitle {
    font-size: 0.9rem;
    color: #1a4f44;
    margin-bottom: 25px;
}

/* Radio Cards (Pilih Kebutuhan) */
.cs-radio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.cs-radio-grid.wide {
    grid-template-columns: repeat(3, 1fr);
}
.cs-radio-item {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background-color: #fff;
}
.cs-radio-item:hover {
    border-color: #d32f2f;
    background-color: #fff9f9;
    box-shadow: 0 6px 20px rgba(211,47,47,0.15);
}
.cs-radio-item.active {
    border-color: #d32f2f;
    background-color: #fff9f9;
}
.cs-radio-item.active::after {
    content: '\f058'; /* FontAwesome Check Circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: -8px;
    color: #d32f2f;
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
}
.cs-radio-icon {
    font-size: 2.5rem;
    color: #e58d4a; /* Orange/Gold color */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.cs-radio-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
}
.cs-radio-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a4f44;
    margin-bottom: 5px;
}
.cs-radio-desc {
    font-size: 0.75rem;
    color: #1a4f44;
    line-height: 1.3;
}

/* Regional Sales Grid */
.cs-regional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.cs-regional-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fafafa;
}
.cs-regional-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.cs-regional-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a4f44;
}
.cs-regional-info p {
    margin: 0 0 8px 0;
    font-size: 0.75rem;
    color: #1a4f44;
    line-height: 1.3;
}
.cs-regional-wa {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2e7d32; /* WhatsApp Green */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cs-regional-wa:hover {
    text-decoration: underline;
}

/* Green Banner */
.cs-green-banner {
    background: #ffffff;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
    flex-grow: 1;
}
.cs-banner-content {
    flex: 1;
    z-index: 2;
}
.cs-banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 5px;
}
.cs-banner-subtitle {
    font-size: 0.9rem;
    color: #2e7d32;
    margin-bottom: 15px;
}
.cs-banner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.cs-banner-list li {
    font-size: 0.9rem;
    color: #004A3E;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs-banner-list li i {
    color: #004A3E;
}
.cs-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.cs-btn-wa:hover {
    transform: translateY(-2px);
    color: white;
}
.cs-banner-mascot {
    width: 200px;
    position: absolute;
    right: 15px;
    bottom: 5px;
    z-index: 1;
}

/* Form Styles */
.cs-form-group {
    margin-bottom: 20px;
}
.cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cs-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a4f44;
    margin-bottom: 8px;
}
.cs-form-label span {
    color: #d32f2f;
}
.cs-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fafafa;
}
.cs-form-control:focus {
    outline: none;
    border-color: #1a4f44;
    background: #fff;
}
textarea.cs-form-control {
    min-height: 115px;
    resize: vertical;
}
.cs-radio-inline {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 45px;
}
.cs-radio-inline label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
}

.cs-alert-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.cs-alert-icon {
    color: #ffb300;
    font-size: 1.5rem;
    margin-top: 2px;
}
.cs-alert-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-top: 2px;
}
.cs-alert-text h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #333;
}
.cs-alert-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.cs-btn-submit {
    width: 100%;
    background-color: #c62828;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}
.cs-btn-submit:hover {
    background-color: #b71c1c;
}

/* Response Time Box */
.cs-response-box {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    flex-grow: 1;
}
.cs-response-left {
    flex: 1;
}
.cs-response-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.cs-response-icon {
    font-size: 2.5rem;
    color: #aaa;
}
.cs-response-text h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #1a4f44;
}
.cs-response-text p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #2e7d32;
}
.cs-response-highlight {
    text-align: center;
    background-color: #FFFBF6;
    border: 1px solid #FFE9D1;
    border-radius: 12px;
    padding: 15px;
}
.cs-response-highlight p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #666;
}
.cs-response-highlight h3 {
    margin: 0 0 5px 0;
    font-size: 2rem;
    color: #d32f2f;
    font-weight: 800;
}
.cs-response-highlight small {
    font-size: 0.75rem;
    color: #999;
}
.cs-response-mascot {
    width: 150px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cs-hero {
        flex-direction: column;
    }
    .cs-hero-image-wrapper {
        flex: none;
        width: 100%;
        max-width: 450px;
        margin: 0 auto 30px;
        order: -1; /* Image on top */
    }
    .cs-main-grid {
        grid-template-columns: 1fr;
    }
    .cs-features {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .cs-title {
        font-size: 2.5rem;
    }
    .cs-form-row, .cs-regional-grid {
        grid-template-columns: 1fr;
    }
    .cs-radio-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .cs-response-box {
        flex-direction: column;
        text-align: center;
    }
    .cs-response-row {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .cs-banner-mascot {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        display: block;
        margin: 20px auto 0;
    }
}

/* Float Animation (referenced by override CSS) */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Custom Override CSS from style.css */

/* Custom Added CSS for Contact Form Fixes */
.cs-main-grid {
    display: grid;
    grid-template-columns: 55% 45% !important;
    gap: 30px;
}
.cs-column-left > .cs-card {
    margin-bottom: 10px;
}
.cs-radio-item::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid #eee;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.cs-radio-item.active::after {
    content: '\f058' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    border: none !important;
    color: #d32f2f !important;
    font-size: 20px !important;
    top: 7px !important;
    right: 7px !important;
    background: #fff !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
}
.cs-regional-grid {
    gap: 10px !important;
}
.cs-regional-item {
    gap: 10px !important;
    padding: 10px !important;
}
.reg-icon {
    font-size: 2rem;
    color: #e58d4a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-regional-wa {
    white-space: nowrap !important;
}
@media (max-width: 768px) {
    .cs-main-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Override for Mascot Size */
.cs-hero-image-wrapper {
    position: relative !important;
    
    flex: 0 0 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 5 !important;
}
.cs-hero-image-wrapper img {
    width: 125% !important;
    max-width: 400px !important;
    max-height: 400px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 20px 30px rgba(35, 27, 21, 0.15)) !important;
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 0 !important;
    
}
/* Custom Shadows and Borders for Cards & Response Box */
.cs-card, .cs-response-box {
    box-shadow: 0 10px 30px #FFE9D1 !important;
    border: 2px solid #FFE9D1 !important;
}
.cs-card {
    margin-bottom: 10px !important;
}



/* Refine Mascot and Features Layout */
.cs-hero-image-wrapper {
    flex: 0 0 40% !important;
}
.cs-hero-image-wrapper img {
    max-width: 650px !important;
    max-height: 650px !important;
}
.cs-feature-title {
    white-space: nowrap !important;
}




/* Refine Mascot and Container Animations */
.cs-hero-image-wrapper {
    animation: fadeInRight 1s ease-out forwards !important;
    opacity: 0;
}
.cs-hero-image-wrapper img {
    top: 30px !important;
    transform: translateX(0) !important;
    animation: float 6s ease-in-out infinite 1s !important;
}
.cs-main-grid {
    animation: fadeInUp 1s ease-out forwards !important;
    opacity: 0;
}

.cs-inline-faq-card {
    width: 100%;
    margin: 30px 0 0 !important;
    padding: 24px 30px 28px !important;
    border: 2px solid #FFE9D1 !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px #FFE9D1 !important;
    box-sizing: border-box;
}

.cs-inline-faq-card .cs-card-title {
    margin-bottom: 18px !important;
    color: #1a4f44 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

.cs-inline-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.cs-inline-faq-item {
    background: #fff;
    border: 2px solid #FFE9D1;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.cs-inline-faq-toggle {
    display: none;
}

.cs-inline-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 42px;
    margin: 0;
    padding: 10px 14px 10px 18px;
    cursor: pointer;
}

.cs-inline-faq-question span:first-child {
    color: #004A3E;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.cs-inline-faq-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.cs-inline-faq-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.cs-inline-faq-icon .vertical-line {
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cs-inline-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.cs-inline-faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: #004A3E;
    font-size: 0.95rem;
    line-height: 1.55;
}

.cs-inline-faq-toggle:checked ~ .cs-inline-faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: 10px;
}

.cs-inline-faq-toggle:checked ~ .cs-inline-faq-question .vertical-line {
    opacity: 0;
    transform: rotate(90deg);
}

.cs-inline-faq-item:has(.cs-inline-faq-toggle:checked) {
    box-shadow: 0 8px 18px #FFE9D1;
}

body.page-id-13 .partners-section {
    background: #FFF6ED !important;
    margin-top: 0 !important;
    padding-top: 0;
}

.cs-contact-faq-section {
    background: transparent;
    padding: 16px 0 18px;
}

.cs-contact-faq-container {
    width: 100%;
    max-width: 1282px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .cs-contact-faq-container .cs-inline-faq-card {
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
    }
}

@media (max-width: 768px) {
    .cs-inline-faq-card {
        margin-top: 18px !important;
        padding: 20px 16px;
        border-radius: 18px;
    }

    .cs-inline-faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    body.page-id-13 {
        overflow-x: hidden;
    }

    body.page-id-13 #page,
    body.page-id-13 .site,
    body.page-id-13 .elementor,
    body.page-id-13 .elementor-section,
    body.page-id-13 .elementor-container,
    body.page-id-13 .elementor-column,
    body.page-id-13 .elementor-widget-wrap {
        max-width: 100%;
        overflow-x: hidden;
    }

    body.page-id-13 .contact-sales-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 24px 16px 34px !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    body.page-id-13 .cs-hero {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        margin-bottom: 26px !important;
        overflow: hidden;
    }

    body.page-id-13 .cs-hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        order: 1;
        padding-top: 0 !important;
        text-align: center;
    }

    body.page-id-13 .cs-hero-image-wrapper {
        order: 2;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
    }

    body.page-id-13 .cs-hero-image-wrapper img {
        width: min(320px, 82vw) !important;
        max-width: 82vw !important;
        max-height: none !important;
        height: auto !important;
        top: 0 !important;
        margin: 0 auto !important;
        transform: none !important;
        animation: float 6s ease-in-out infinite !important;
        object-fit: contain !important;
    }

    body.page-id-13 .cs-badge {
        font-family: var(--font-heading);
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 18px;
    }

    body.page-id-13 .cs-badge,
    body.page-id-13 .cs-title,
    body.page-id-13 .cs-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    body.page-id-13 .cs-title {
        font-size: clamp(2.2rem, 12vw, 3rem) !important;
        line-height: 1.05;
        margin-bottom: 16px;
    }

    body.page-id-13 .cs-subtitle {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    body.page-id-13 .cs-features {
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin-top: 18px;
    }

    body.page-id-13 .cs-feature-item {
        padding: 14px;
        border: 2px solid #FFE9D1;
        border-radius: 14px;
        background: #fff;
        text-align: left;
    }

    body.page-id-13 .cs-feature-item::after {
        display: none;
    }

    body.page-id-13 .cs-container,
    body.page-id-13 .cs-main-grid,
    body.page-id-13 .cs-column-left,
    body.page-id-13 .cs-column-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    body.page-id-13 .cs-main-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body.page-id-13 .cs-card,
    body.page-id-13 .cs-response-box,
    body.page-id-13 .cs-green-banner,
    body.page-id-13 .cs-inline-faq-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        border-radius: 18px !important;
    }

    body.page-id-13 .cs-card {
        padding: 18px 16px !important;
        margin-bottom: 12px !important;
    }

    body.page-id-13 .cs-card-title,
    body.page-id-13 .cs-inline-faq-card .cs-card-title {
        font-size: 1.2rem !important;
        line-height: 1.25;
        margin-bottom: 12px !important;
    }

    body.page-id-13 .cs-card-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    body.page-id-13 .cs-radio-grid,
    body.page-id-13 .cs-radio-grid.wide,
    body.page-id-13 .cs-regional-grid,
    body.page-id-13 .cs-form-row,
    body.page-id-13 .cs-inline-faq-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.page-id-13 .cs-radio-item,
    body.page-id-13 .cs-regional-item,
    body.page-id-13 .cs-inline-faq-item {
        min-width: 0;
        box-sizing: border-box;
    }

    body.page-id-13 .cs-green-banner {
        padding: 20px 16px 0 !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    body.page-id-13 .cs-banner-title {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    body.page-id-13 .cs-btn-wa,
    body.page-id-13 .cs-btn-submit {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        box-sizing: border-box;
    }

    body.page-id-13 .cs-banner-mascot {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: min(210px, 62vw) !important;
        max-width: 62vw !important;
        margin: 12px auto -6px !important;
        transform: none !important;
    }

    body.page-id-13 .cs-response-box {
        padding: 20px 16px !important;
        align-items: center;
        gap: 16px;
        overflow: hidden;
    }

    body.page-id-13 .cs-response-highlight {
        width: 100%;
        box-sizing: border-box;
    }

    body.page-id-13 .cs-response-highlight h3 {
        font-size: clamp(1.65rem, 9vw, 2rem);
    }

    body.page-id-13 .cs-response-mascot {
        width: min(170px, 54vw);
        max-width: 54vw;
    }

    body.page-id-13 .cs-inline-faq-card {
        margin-top: 0 !important;
        padding: 18px 16px !important;
    }

    body.page-id-13 .cs-inline-faq-question {
        min-height: auto;
        padding: 12px 12px 12px 14px;
        align-items: flex-start;
    }

    body.page-id-13 .cs-inline-faq-question span:first-child {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    body.page-id-13 .cs-inline-faq-answer-inner {
        font-size: 0.92rem;
        line-height: 1.5;
        padding: 0 14px;
    }

    body.page-id-13 .partners-section {
        padding-top: 0 !important;
        overflow: hidden;
    }

    body.page-id-13 .cs-contact-faq-section {
        padding: 0 16px 16px !important;
        overflow: visible !important;
        background: transparent;
    }

    body.page-id-13 .cs-contact-faq-container {
        width: 100%;
        max-width: 100%;
    }

    body.page-id-13 .floating-whatsapp-container {
        right: 10px;
        bottom: 16px;
        max-width: calc(100vw - 20px);
        overflow: hidden;
        z-index: 20;
    }

    body.page-id-13 .floating-whatsapp-container a,
    body.page-id-13 .floating-whatsapp-button {
        max-width: calc(100vw - 20px);
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    body.page-id-13 .contact-sales-wrapper {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    body.page-id-13 .cs-card,
    body.page-id-13 .cs-response-box,
    body.page-id-13 .cs-green-banner,
    body.page-id-13 .cs-inline-faq-card {
        border-radius: 16px !important;
    }

    body.page-id-13 .cs-banner-mascot {
        width: min(190px, 64vw) !important;
    }

    body.page-id-13 .floating-whatsapp-container {
        right: 8px;
        bottom: 10px;
        transform: scale(0.9);
        transform-origin: right bottom;
    }
}

body.page-id-13 .cs-column-left,
body.page-id-13 .cs-column-right {
    height: auto;
}

body.page-id-13 .cs-green-banner,
body.page-id-13 .cs-response-box {
    flex-grow: 0;
}

body.page-id-13 .cs-radio-item {
    border-color: #FFE9D1;
    box-shadow: 0 8px 18px rgba(255, 233, 209, 0.65);
}

body.page-id-13 .cs-radio-item:hover {
    border-color: #F6CFA7;
    background-color: #FFFBF6;
    box-shadow: 0 10px 24px rgba(255, 233, 209, 0.85);
}

body.page-id-13 .cs-radio-item.active {
    border-color: #d32f2f;
    background-color: #fff9f9;
}

body.page-id-13 .cs-form-control {
    border-color: #FFE9D1;
    background-color: #FFFBF6;
    color: #1a4f44;
    box-shadow: 0 4px 14px rgba(255, 233, 209, 0.42);
}

body.page-id-13 select.cs-form-control {
    color: #1a4f44;
    font-weight: 500;
}

body.page-id-13 select.cs-form-control:invalid {
    color: #8A8A8A;
}

body.page-id-13 select.cs-form-control option {
    color: #1a4f44;
    background-color: #FFFBF6;
    font-weight: 500;
}

body.page-id-13 select.cs-form-control option[disabled] {
    color: #8A8A8A;
}

body.page-id-13 .cs-form-control:focus {
    border-color: #F6CFA7;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 233, 209, 0.65);
}

@media (min-width: 769px) {
    body.page-id-13 .cs-column-left > .cs-card:first-child {
        padding: 18px 30px 20px;
        margin-bottom: 15px;
    }

    body.page-id-13 .cs-column-left > .cs-card:first-child .cs-card-title {
        margin-bottom: 6px;
    }

    body.page-id-13 .cs-column-left > .cs-card:first-child .cs-card-subtitle {
        margin-bottom: 18px;
    }

    body.page-id-13 .cs-radio-grid {
        gap: 14px;
    }

    body.page-id-13 .cs-radio-grid.wide {
        margin-top: 12px !important;
    }

    body.page-id-13 .cs-radio-item {
        padding: 13px 10px 12px;
        min-height: 154px;
    }

    body.page-id-13 .cs-radio-img {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    body.page-id-13 .cs-radio-label {
        margin-bottom: 4px;
    }

    body.page-id-13 .cs-green-banner {
        min-height: 230px;
        padding: 18px 26px;
        margin-bottom: 8px;
    }

    body.page-id-13 .cs-banner-title {
        margin-bottom: 4px;
    }

    body.page-id-13 .cs-banner-subtitle {
        margin-bottom: 12px;
    }

    body.page-id-13 .cs-banner-list {
        margin-bottom: 16px;
    }

    body.page-id-13 .cs-banner-list li {
        margin-bottom: 7px;
    }

    body.page-id-13 .cs-response-box {
        min-height: 190px;
        padding: 13px 24px;
        gap: 16px;
    }

    body.page-id-13 .cs-response-row {
        margin-bottom: 14px;
    }

    body.page-id-13 .cs-response-highlight {
        padding: 12px 14px;
    }

    body.page-id-13 .cs-response-highlight h3 {
        margin-bottom: 3px;
    }

    body.page-id-13 .cs-response-mascot {
        width: 118px;
    }
}

@media (max-width: 768px) {
    html:has(body.page-id-13),
    body.page-id-13 {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    body.page-id-13 #page,
    body.page-id-13 .site,
    body.page-id-13 .elementor,
    body.page-id-13 .elementor-section,
    body.page-id-13 .elementor-container,
    body.page-id-13 .elementor-column,
    body.page-id-13 .elementor-widget-wrap,
    body.page-id-13 .elementor-widget,
    body.page-id-13 .elementor-widget-container {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-x: clip !important;
        box-sizing: border-box;
    }

    body.page-id-13 .contact-sales-wrapper {
        padding: 56px 16px 32px !important;
        overflow: visible !important;
        overflow-x: clip !important;
        background: #FFF6ED;
    }

    body.page-id-13 .cs-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        overflow: visible !important;
    }

    body.page-id-13 .cs-hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 22px !important;
        margin: 0 0 24px !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    body.page-id-13 .cs-hero-content {
        order: 1 !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    body.page-id-13 .cs-badge {
        display: inline-flex;
        margin: 0 auto 18px !important;
        font-size: 0.8rem !important;
        padding: 6px 16px !important;
        font-family: var(--font-heading);
        white-space: nowrap;
    }

    body.page-id-13 .cs-title {
        margin: 0 auto 16px !important;
        font-size: clamp(2.25rem, 12vw, 3rem) !important;
        line-height: 1.05 !important;
        text-align: center !important;
    }

    body.page-id-13 .cs-subtitle {
        margin: 0 auto 22px !important;
        max-width: 340px;
        font-size: 1rem !important;
        line-height: 1.55 !important;
        text-align: center !important;
    }

    body.page-id-13 .cs-features {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100%;
        margin: 0 !important;
    }

    body.page-id-13 .cs-feature-item {
        width: 100%;
        min-width: 0;
        padding: 14px !important;
        border: 2px solid #FFE9D1;
        border-radius: 14px;
        background: #fff;
        box-sizing: border-box;
        text-align: left;
    }

    body.page-id-13 .cs-feature-item::after {
        display: none !important;
    }

    body.page-id-13 .cs-hero-image-wrapper {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    body.page-id-13 .cs-hero-image-wrapper img {
        width: min(300px, 78vw) !important;
        max-width: 78vw !important;
        max-height: none !important;
        height: auto !important;
        margin: 0 auto !important;
        top: auto !important;
        transform: none !important;
        object-fit: contain !important;
    }

    body.page-id-13 .cs-main-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
        animation: none !important;
        opacity: 1 !important;
    }

    body.page-id-13 .cs-column-left,
    body.page-id-13 .cs-column-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto !important;
    }

    body.page-id-13 .cs-card,
    body.page-id-13 .cs-green-banner,
    body.page-id-13 .cs-response-box,
    body.page-id-13 .cs-inline-faq-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 0 14px !important;
        padding: 18px 16px !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    body.page-id-13 .cs-inline-faq-card {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    body.page-id-13 .cs-inline-faq-card .cs-card-title,
    body.page-id-13 .cs-inline-faq-grid,
    body.page-id-13 .cs-inline-faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.page-id-13 .cs-inline-faq-question {
        width: 100% !important;
        padding: 12px 14px !important;
        box-sizing: border-box !important;
    }

    body.page-id-13 .cs-inline-faq-question span:first-child {
        min-width: 0;
        padding-right: 8px;
    }

    body.page-id-13 .cs-radio-grid,
    body.page-id-13 .cs-radio-grid.wide,
    body.page-id-13 .cs-regional-grid,
    body.page-id-13 .cs-form-row,
    body.page-id-13 .cs-inline-faq-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.page-id-13 .cs-btn-wa,
    body.page-id-13 .cs-btn-submit {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center;
        white-space: normal;
    }

    body.page-id-13 .cs-green-banner {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    body.page-id-13 .cs-banner-mascot {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: min(190px, 58vw) !important;
        max-width: 58vw !important;
        margin: 14px auto -4px !important;
        display: block !important;
    }

    body.page-id-13 .cs-response-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    body.page-id-13 .cs-response-mascot {
        width: min(160px, 50vw) !important;
        max-width: 50vw !important;
    }

    body.page-id-13 .cs-features {
        width: min(240px, 78vw) !important;
        margin: 0 auto !important;
        padding: 22px 18px !important;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(255, 233, 209, 0.7);
        gap: 14px !important;
    }

    body.page-id-13 .cs-feature-item {
        display: grid !important;
        grid-template-columns: 42px 1fr;
        align-items: center;
        gap: 8px 12px;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        animation: none !important;
        opacity: 1 !important;
    }

    body.page-id-13 .cs-feature-icon {
        grid-row: span 2;
        width: 34px !important;
        height: 34px !important;
        margin: 0 !important;
        object-fit: contain;
    }

    body.page-id-13 .cs-feature-title {
        margin: 0 !important;
        font-size: 16px !important;
        line-height: 1.15;
        white-space: normal !important;
    }

    body.page-id-13 .cs-feature-desc {
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.2;
    }

}

@media (max-width: 768px) {
    body.page-id-13 .cs-hero {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas: none !important;
        gap: 18px !important;
    }

    body.page-id-13 .cs-hero-content {
        display: contents !important;
        grid-area: auto !important;
        order: initial !important;
    }

    body.page-id-13 .cs-badge {
        grid-row: 1 !important;
        justify-self: center !important;
    }

    body.page-id-13 .cs-title {
        grid-row: 2 !important;
    }

    body.page-id-13 .cs-subtitle {
        grid-row: 3 !important;
    }

    body.page-id-13 .cs-hero-image-wrapper {
        grid-area: auto !important;
        grid-row: 4 !important;
        order: initial !important;
        margin: -6px auto 0 !important;
    }

    body.page-id-13 .cs-features {
        grid-area: auto !important;
        grid-row: 5 !important;
        order: initial !important;
        margin-top: 0 !important;
    }

    body.page-id-13 .cs-contact-faq-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    body.page-id-13 .cs-contact-faq-container,
    body.page-id-13 .cs-inline-faq-card,
    body.page-id-13 .cs-inline-faq-grid,
    body.page-id-13 .cs-inline-faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    body.page-id-13 .cs-inline-faq-card {
        padding: 18px 16px !important;
        overflow: visible !important;
    }

    body.page-id-13 .cs-inline-faq-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.page-id-13 .cs-inline-faq-question {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 24px;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 12px 14px !important;
        box-sizing: border-box !important;
    }

    body.page-id-13 .cs-inline-faq-question span:first-child {
        min-width: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 420px) {
    body.page-id-13 .cs-contact-faq-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
