/* ================= RESET & BASE ================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    height: 100vh;
}

/* ================= LAYOUT CONTAINERS ================= */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(113.183deg, rgb(249, 83, 62) 6.3217%, rgb(219, 37, 26) 90.175%);
    position: relative;
    overflow: hidden;
}

.main-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 161px;
    align-items: center;
    padding: 0 64px;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

/* ================= BACKGROUND GLOW ================= */
.background-glow {
    position: absolute;
    left: calc(50% - 0.2px);
    top: 92.86px;
    width: 618.466px;
    height: 618.466px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-inner {
    transform: rotate(344.982deg);
    width: 504.883px;
    height: 504.883px;
    position: relative;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 7px 0;
    position: relative;
    border-bottom: 1px solid #de5e58;
}

/* ================= LOGO ================= */
.logo-wrapper {
    height: 63px;
    width: 163.333px;
    position: relative;
}

.logo-content {
    position: absolute;
    left: -9.33px;
    top: 0;
    display: flex;
    align-items: center;
}

.logo-icon-wrapper {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    position: relative;
    line-height: 0;
}

.logo-icon {
    grid-area: 1 / 1;
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon-rotated {
    width: 44.548px;
    height: 44.548px;
    transform: rotate(315deg);
}

.logo-text-sup {
    grid-area: 1 / 1;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 10.586px;
    color: white;
    opacity: 0.85;
    text-align: center;
    white-space: nowrap;
    position: relative;
    margin-left: 32.19px;
    margin-top: 25.38px;
    transform: translateX(-50%);
    line-height: 1.245;
}

.logo-text-system {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15.556px;
    color: #f6f6f6;
    white-space: nowrap;
    letter-spacing: -0.3889px;
    line-height: 1.2;
}

/* ================= NAVIGATION ================= */
.header-nav {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #f6f6f6;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-links a {
    color: #f6f6f6;
    text-decoration: none;
}

/* ================= BUTTONS ================= */
.btn {
    background: #f7d4d1;
    padding: 12px 24px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #393f4d;
    white-space: nowrap;
    line-height: 1.3;
}

.btn-large {
    width: 209px;
    line-height: 1.5;
}

/* ================= HERO SECTION ================= */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    width: 818px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: #f6f6f6;
    white-space: nowrap;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 40px;
    color: #f6f6f6;
    line-height: 1.2;
    width: 100%;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #f7d4d1;
    line-height: 1.4;
    width: 100%;
}

.hero-description p {
    margin: 0;
}

/* ================= FOOTER ================= */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 40px 0;
    width: 100%;
    position: relative;
    border-top: 1px solid #de5e58;
    margin-top: auto;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ededed;
    white-space: nowrap;
    line-height: 1.3;
}

.contact-info {
    display: flex;
    gap: 33px;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ededed;
    white-space: nowrap;
}

.contact-info a {
    color: #ededed;
    text-decoration: none;
    line-height: 1.3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 0 32px;
        gap: 80px;
    }
    
    .hero-section {
        width: 100%;
        max-width: 700px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 20px;
        gap: 60px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 40px;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 16px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .nav-links {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        width: 180px;
    }
}
