* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ce2029;
    color: #fff;
}

.sfw-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 78px;
    padding: 18px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: transparent;
    transition: 0.35s ease;
}

.sfw-navbar.scrolled {
    background: rgba(6, 20, 6, 0.94);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.sfw-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sfw-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.sfw-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.sfw-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn {
    border: 1px solid #fff;
    padding: 10px 22px;
    border-radius: 30px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 8%;
}

.hero-video,
.footer-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6,20,6,0.92),
        rgba(206,32,41,0.68),
        rgba(0,0,0,0.35)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.eyebrow {
    color: #39ff5a;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.eyebrow.dark {
    color: #ce2029;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 28px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn-main,
.btn-outline {
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main {
    background: #27d52e;
    color: #061406;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.compliance-section {
    background: #f7f7f7;
    color: #061406;
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.section-heading h2 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.7;
}

.control-card {
    height: 100%;
    padding: 35px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 6px solid #ce2029;
    transition: 0.3s ease;
}

.control-card:hover {
    transform: translateY(-8px);
}

.control-card span {
    font-size: 42px;
    font-weight: 900;
    color: #ce2029;
}

.control-card h3 {
    font-weight: 900;
    margin: 15px 0;
}

.control-card p {
    color: #444;
    line-height: 1.7;
}

.footer-video-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 8%;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,20,6,0.82);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.footer-content h2 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
}

.footer-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.main-footer {
    background: #061406;
    text-align: center;
    padding: 20px;
    color: #ddd;
}

@media (max-width: 768px) {
    .sfw-navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        background: rgba(6,20,6,0.94);
    }

    .sfw-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sfw-menu a {
        font-size: 13px;
    }

    .hero-section {
        padding: 170px 25px 80px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}