:root {
    --bg-dark: #07090f;
    --card-bg: rgba(16, 22, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --hino-red: #e60012;
    --accent-gold: #f3a812;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(230, 0, 18, 0.08) 0%, transparent 40%);
}

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.badge-red {
    background: var(--hino-red);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}

.cta-header-btn {
    background: var(--hino-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.hero-box-3d {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.15;
}

.hero-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.badge-tag {
    background: rgba(230, 0, 18, 0.15);
    border: 1px solid rgba(230, 0, 18, 0.4);
    color: #ff4d5a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-red-3d {
    background: var(--hino-red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(230, 0, 18, 0.4);
}

.btn-glass-3d {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.cube-container img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.featured-units, .page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.grid-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.card-3d {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s;
}

.card-3d:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 0, 18, 0.5);
}

.card-3d img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.tag-series {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
}

.card-body h3 {
    font-size: 1.25rem;
    margin: 8px 0;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price-tag {
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.card-3d:hover .btn-buy, .btn-buy:hover {
    background: var(--hino-red);
    border-color: var(--hino-red);
}

.content-box-3d {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--hino-red);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.contact-info-list {
    list-style: none;
    margin-top: 20px;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-muted);
}

.contact-info-list li i {
    color: var(--hino-red);
}

.map-box {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg);
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 30px 20px;
    background: rgba(7, 9, 15, 0.95);
    margin-top: 60px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

@media(max-width: 768px) {
    .hero-box-3d, .contact-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .nav-links, .cta-header-btn {
        display: none;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}