* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #f3f3f3;
    color: #1a2433;
    line-height: 1.5;
}

.container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}

/* HEADER */


.topbar {
    background: #c9072f;
    color: white;
    height: 84px;
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_logo {
    filter: brightness(0) invert(1);
    max-height: 40px;
    display: flex;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-icon {
    font-size: 28px;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
}

.header-tagline {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* HERO */

.hero {
    padding: 60px 0 80px;
}

.launching {
    color: #c9072f;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #c9072f;
    border-radius: 50%;
}

.hero h1 {
    margin-top: 20px;
    font-size: clamp(48px, 7vw, 72px);
    line-height: 0.95;
    font-weight: 800;
    max-width: 650px;
}

.hero h1 span {
    color: #c9072f;
}

.intro {
    margin-top: 30px;
    max-width: 820px;
    font-size: 24px;
    color: #556173;
}

.hero-meta {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.line {
    width: 50px;
    height: 3px;
    background: #c9072f;
}

.meta-left strong {
    font-size: 18px;
}

.label {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #475366;
}

.meta-right a {
    color: #2364ff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

/* FEATURES */

.features {
    border-top: 1px solid #ddd;
    padding: 40px 0;
    background-color: #ededed;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature {
    padding: 0 40px 0 0;
}

.feature:not(:last-child) {
    border-right: 1px solid #ddd;
    padding-right: 40px;
    margin-right: 40px;
}

.number {
    color: #c9072f;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.feature p {
    color: #556173;
    font-size: 18px;
}

/* FOOTER */

.footer {
    background: #111a27;
    color: white;
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
}

.footer-logo span {
    color: #c9072f;
}

.footer-email {
    font-weight: 700;
}

/* TABLET */

@media (max-width: 900px) {

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature {
        border-right: none !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* MOBILE */

@media (max-width: 600px) {

    .main_logo {
        max-width: 350px;
    }

    .container {
        width: calc(100% - 40px);
    }

    .topbar {
        height: auto;
        padding: 20px 0;
    }

    .header-inner {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .intro {
        font-size: 20px;
    }

    .meta-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-title {
        font-size: 16px;
    }
}