/* ==========================================================================
   Redko Machine - Exact 1:1 WP Brizy Screenshot Replica CSS
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Overpass', sans-serif;
    background-image: url('images/bg-watermark.png');
    background-repeat: repeat;
    background-size: 150px 150px;
    background-color: #ffffff;
    color: #282828;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.main-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.content-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --------------------------------------------------------------------------
   Left Side (Logo & Buttons)
   -------------------------------------------------------------------------- */
.left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-box {
    margin-bottom: 25px;
}

.brand-logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.cyan-btn {
    background-color: #05CAB6;
    color: #ffffff;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(5, 202, 182, 0.2);
}

.cyan-btn:hover {
    background-color: #04b3a1;
    transform: translateX(3px);
}

.cyan-btn .arrow {
    font-size: 16px;
    margin-left: 10px;
}

/* --------------------------------------------------------------------------
   Right Side (Motor Images Layout)
   -------------------------------------------------------------------------- */
.right-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-motor-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.motor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b3-img {
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.motor-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.bottom-motors-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}

.motor-label {
    margin-top: 4px;
}

.model-title {
    display: block;
    font-family: 'Overpass', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #444444;
    line-height: 1.3;
}

.model-sub {
    display: block;
    font-family: 'Overpass', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.footer-info {
    text-align: center;
    margin-top: 65px;
    font-family: 'Overpass', sans-serif;
    line-height: 1.5;
}

.company-title {
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.company-email a,
.company-phone a {
    font-size: 13px;
    color: #333333;
    transition: color 0.2s ease;
}

.company-email a:hover,
.company-phone a:hover {
    color: #05CAB6;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 850px) {
    .content-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .left-col {
        align-items: center;
    }

    .action-buttons {
        max-width: 300px;
    }

    .bottom-motors-grid {
        gap: 20px;
    }

    .b3-img {
        max-width: 220px;
    }

    .motor-img {
        max-width: 150px;
    }
}
