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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1e293b;
    background: #f8fafc;
    line-height: 1.7
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto
}

header {
    background: #08152f;
    color: #fff;
    position: sticky;
    top: 0
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff7a00
}

.menu a {
    margin-left: 20px;
    color: #fff
}

.hero {
    background: linear-gradient(rgba(8, 21, 47, .85), rgba(8, 21, 47, .85)), linear-gradient(135deg, #1e3a8a, #0f172a);
    color: #fff;
    padding: 100px 0
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px
}

.hero p {
    font-size: 20px;
    max-width: 800px
}

.section {
    padding: 70px 0
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.article {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

footer {
    background: #08152f;
    color: #d4d4d4;
    padding: 50px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px
}

.footer-grid h3,
.footer-grid h4 {
    color: #fff;
    margin-bottom: 15px
}

.footer-grid li {
    list-style: none;
    margin-bottom: 10px
}

.copy {
    text-align: center;
    border-top: 1px solid #22345c;
    margin-top: 30px;
    padding-top: 25px
}
.hero {
    background: linear-gradient(135deg, #07152f 0%, #112a70 55%, #08152f 100%);
    color: #fff;
    padding: 110px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.brand-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.brand-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.35);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 14px;
    font-weight: 800;
}

.hero h1 span {
    color: #ff8a00;
}

.line {
    width: 95px;
    height: 3px;
    background: #ff8a00;
    margin: 18px 0;
}

.subtitle {
    color: #9bd7ff;
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 650px;
    font-size: 19px;
    color: #e5ecff;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 45px;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    background: #ff6a00;
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 620px;
    gap: 25px;
    text-align: center;
}

.hero-stats strong {
    display: block;
    color: #ff8a00;
    font-size: 32px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    color: #dbe7ff;
    font-size: 14px;
    margin-top: 8px;
}

.hero-image-wrap {
    background: rgba(255, 255, 255, 0.11);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    background: #fff;
}

@media (max-width: 900px) {
    .hero {
        padding: 70px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        text-align: left;
    }
}