/* OST Redesign CSS */

.mbox-section.redesign {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 50%, #e0eafc 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mbox-section.redesign::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(200, 220, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.mbox-container.redesign-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.mbox-content.redesign-content {
    width: 60%;
}

.brand-text {
    color: #d32f2f;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #333;
}

.trustpilot-stars {
    color: #00b67a;
    font-size: 1.2rem;
}

.mbox-content.redesign-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
}

.hero-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.redesign-ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.redesign-ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.redesign-ul li::before {
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #00b67a;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-group-redesign {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-download-new {
    background-color: #00a651;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-download-new:hover {
    background-color: #008c44;
}

.btn-download-new .icon-cloud {
    font-size: 1.5rem;
}

.btn-download-new .btn-text {
    display: flex;
    flex-direction: column;
}

.btn-download-new .btn-text .main-text {
    font-size: 1.1rem;
}

.btn-download-new .btn-text .sub-text {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-buy-new {
    border: 1px solid #01b8ea;
    padding: 1.1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    transition: all 0.3s;
}

.btn-buy-new:hover {
    background-color: #fff5f5;
}

.hero-footer-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #777;
    font-style: italic;
}

.mbox-img.redesign-img {
    width: 35%;
    position: relative;
}

.mbox-img.redesign-img img {
    /* width: 100%; */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.btn-download-new img {
    filter: brightness(0) invert(1);
}

.cloud-download-badge img {
    filter: brightness(0) invert(1);
}

.cloud-download-badge {
    position: absolute;
    bottom: 20%;
    right: -5%;
    background: #00a651;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
}

/* WHEN TO USE SECTION */
.when-to-use-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.wtu-container {
    max-width: 1430px;
    margin: 0 auto;
}

.wtu-label {
    color: #d32f2f;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.wtu-heading {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.wtu-cards-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.wtu-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 31%;
    min-width: 300px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
}

.wtu-card:hover {
    transform: translateY(-5px);
}

.card-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.card-theme .card-top-accent {
    background: linear-gradient(to right, #193459, #01b8ea);
}

.card-blue-gradient .card-top-accent {
    background: linear-gradient(to right, #00c6ff, #0072ff);
}

.card-blue-dark .card-top-accent {
    background: linear-gradient(to right, #1a237e, #0d47a1);
}

.wtu-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.high-light {
    color: #008ebb;
    font-weight: 700;
}


/* SIMPLE STEPS SECTION */
.simple-steps-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.ss-container {
    max-width: 1430px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
}

.ss-content {
    width: 55%;
}

.ss-heading {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ss-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.step-block {
    background-color: #f0f7ff;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    border-left: 4px solid #0056b3;
    font-size: 1.05rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.step-block p {
    margin: 0;
}

.ss-btn-download {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.ss-btn-download:hover {
    background-color: #004494;
}

.ss-image {
    width: 40%;
}

.ss-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Updates for Simple Steps */
@media (max-width: 1024px) {
    .ss-container {
        flex-direction: column;
        text-align: center;
    }

    .ss-content,
    .ss-image {
        width: 100%;
    }

    .step-block {
        text-align: left;
    }

    .ss-heading {
        font-size: 2.2rem;
    }
}


/* IMPORTANT FEATURES SECTION */
.important-features-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.if-container {
    max-width: 1430px;
    margin: 0 auto;
    text-align: center;
}

.if-label {
    color: #d32f2f;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.if-heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
    font-weight: 700;
}

.if-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
    text-align: left;
}

.if-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.if-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #0056b3;
}

.if-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.custom-license-btn a{
    font-size: medium;
    background-color:#008c44;
}
.custom-license-btn a:hover{
    background-color:#000000;
}

/* Responsive updates for the new section */
@media (max-width: 1024px) {
    .if-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .important-features-section {
        padding: 3rem 1.5rem;
    }

    .if-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .if-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive updates for the new section */
@media (max-width: 1024px) {
    .wtu-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .wtu-card {
        width: 100%;
        max-width: 450px;
    }

    .wtu-heading {
        font-size: 1.8rem;
    }
}

/* Responsive Updates */
@media (max-width: 1400px) {
    .mbox-container.redesign-container {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .mbox-container.redesign-container {
        flex-direction: row;
        text-align: left;
    }

    .mbox-content.redesign-content {
        width: 100%;
        margin-bottom: 2rem;
    }

    .mbox-img.redesign-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: block;
        /* Overriding user's potential display: none */
    }

    .mbox-img.redesign-img img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .trustpilot-badge {
        justify-content: center;
    }

    .redesign-ul {
        display: inline-block;
        text-align: left;
    }

    .btn-group-redesign {
        justify-content: center;
    }

    .mbox-content.redesign-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mbox-content.redesign-content h1 {
        font-size: 1.8rem;
        text-align: left;
    }
    .mbox-container.redesign-container {
        flex-direction: column;
        text-align: center;
    }

    .btn-group-redesign {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-download-new,
    .btn-buy-new {
        width: 100%;
        justify-content: center;
    }

    .hero-desc {
        font-size: 0.95rem;
        text-align: left;
    }

    .mbox-section.redesign {
        padding: 1.5rem 1rem;
    }

    .mbox-section.redesign::before {
        background: none;
    }

    .redesign-ul {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .mbox-content.redesign-content h1 {
        font-size: 1.2rem;
    }
    .subtitle{
        text-align: left;
        font-size: 0.9rem;
    }

    .brand-text {
        font-size: 0.8rem;
    }

    .trustpilot-badge {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    .redesign-ul li {
        font-size: 0.85rem;
    }
}