:root {
    --dimat-blue: #4f73c1;
    --dimat-green: #7dc261;
    --text-dark: #2a2a2a;
    --text-light: #666666;
    --bg-light: #f4f4f2;
}

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

body {
    background-color: var(--bg-light);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(244, 244, 242, 0.88), rgba(244, 244, 242, 0.88)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 5% 10%;
}

.brand-logo {
    max-width: 240px;
    height: auto;
}

.hero-content {
    max-width: 800px;
}

.line-decorator {
    width: 60px;
    height: 5px;
    background-color: var(--dimat-green);
    margin-bottom: 25px;
}

.sub-heading {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--dimat-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--dimat-blue);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 550px;
    margin-bottom: 40px;
}

.progress-box {
    max-width: 400px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dimat-blue);
}

.progress-track {
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.05);
}

.progress-fill {
    width: 90%;
    height: 100%;
    background-color: var(--dimat-green);
}

.footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #999;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

@media (max-width: 768px) {
    .wrapper { padding: 40px 8%; }
    .main-title { font-size: 3.2rem; }
    .footer { flex-direction: column; gap: 10px; text-align: center; }
}