body,
td,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
    font-family: "Mr Eaves XL Mod OT", "Dubai", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    font-size: 14px;
    letter-spacing: 0;
    color: #ffffff;
    box-sizing: border-box;
}

body {
    background: url(../img/luma_back_ground_builders.png) center/cover no-repeat fixed;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    color: #ffffff;
}

.subtitle {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.content {
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    gap: 18px;
    padding: 14px 32px;
    background: #17214c;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.brand-logo {
    width: 170px;
    height: 40px;
    object-fit: contain;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang {
    display: inline-block;
    line-height: 35px;
}

.lang a {
    display: inline-block;
    width: 40px;
    text-align: center;
    text-decoration: none;
    color: #f4f4f4;
    transition: all 0.3s ease;
}

.lang a:active, .lang a:focus, .lang a:hover {
    color: #ffffff;
}

.lang a.selected {
    color: #8dd03c;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #7dc829;
    text-decoration: none;
    text-shadow: 2px 2px 3px #17214c;
    color: #ffffff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.cta-button:hover {
    background: #6fb021;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

/* Steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0 auto;
    gap: 100px;
    max-width: 1380px;
}

.step-card {
    background: rgba(23, 33, 76, 0.6);
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    user-select: none;
    min-height: 100px;
    border-radius: 40px;
    margin: 0 auto;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(120, 190, 33, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    user-select: none;
}

.step-number {
    display: inline-block;
    width: 54px;
    height: 54px;
    background: #78BE21;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    line-height: 54px;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px rgba(120, 190, 33, 0.35);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #78BE21;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #eaf1ff;
    font-weight: 400;
}

.content {
    text-align: center;
    height: 100%;
}

.container {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 40px 20px;
    height: 100%;
}

.wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    color: white;
    max-width: 1400px;
}

/* Responsive adjustments */
@media (max-width: 1180px) {
    h1 {
        font-size: 26px;
    }
    .subtitle {
        font-size: 14px;
    }
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 14px 18px;
        gap: 12px;
    }
    .topbar-row {
        gap: 12px;
    }
    .top-actions {
        justify-content: flex-end;
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 520px;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 22px;
    }
    .subtitle {
        font-size: 13px;
    }
    .cta-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    .top-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .lang {
        order: 2;
    }
    .steps-container {
        gap: 18px;
    }
    .step-card {
        padding: 26px 20px;
        min-height: 210px;
        max-width: 488px;
    }
    .step-title {
        font-size: 20px;
    }
    .step-description {
        font-size: 15px;
    }
}

@media screen and (min-width: 2000px) {
    .steps-container {
        max-width: clamp(1380px, 75vw, 2160px);
        gap: clamp(80px, 6vw, 180px);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .step-card {
        padding: clamp(30px, 2vw, 60px);
        border-radius: clamp(40px, 3vw, 70px);
        min-height: 300px;
    }

    .step-number {
        display: flex;
        align-items: center;
        margin: 0 auto 16px;
        justify-content: center;
        width: clamp(54px, 4vw, 80px);
        height: clamp(54px, 4vw, 80px);
        font-size: clamp(20px, 1.5vw, 32px);
    }

    .step-title {
        font-size: clamp(20px, 1.2vw, 30px);
        margin-bottom: 12px;
    }

    .step-description {
        font-size: clamp(14px, 1vw, 22px);
        line-height: 1.6;
    }

    .wrapper {
        max-width: clamp(1400px, 70vw, 2200px);
    }
}
