/* CSS Reset & Global Vars */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #0a0c10;
    --bg-card: #121620;
    --accent-orange: #ff9900;
    --accent-blue: #00bfff;
    --text-white: #ffffff;
    --text-muted: #a0a5b5;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Navbar */
.navbar {
    background-color: rgba(10, 12, 16, 0.95);
    border-bottom: 2px solid #1a2233;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    line-height: 1.1;
}

.brand-oto {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    color: var(--accent-blue);
    letter-spacing: 1px;
}

.brand-hot {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    color: var(--accent-orange);
    font-style: italic;
}

.tagline {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    margin-top: 75px;
    height: 70vh;
    min-height: 450px;
    background: #111a2e; /* Fallback */
    background-image: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 4px solid var(--accent-orange);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 25px auto;
    color: #cbd5e1;
}

.hero-badges {
    margin-bottom: 30px;
}

.hero-badges span {
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid var(--accent-blue);
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-orange), #ff6a00);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
}

/* Section Common Styles */
section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .bar {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 10px auto 0 auto;
}

.section-desc {
    text-align: center;
    max-width: 850px;
    margin: -20px auto 40px auto;
    color: var(--text-muted);
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    align-items: center;
}

/* Cards */
.card-metric, .step-card, .feat-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #1e2638;
}

.card-metric h3, .step-card h3, .feat-card h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 18px;
}

.card-metric p, .step-card p, .feat-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Experience Steps Extra */
.step-card {
    position: relative;
}

.step-num {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--bg-dark);
}

/* Box & Segment Cards */
.box-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 1px solid #232d42;
    transition: transform 0.3s;
}

.box-card:hover {
    transform: translateY(-5px);
}

.box-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    background: #232d42;
}

.price-fun { border-top: 4px solid #ef4444; }
.price-street { border-top: 4px solid var(--accent-blue); }
.price-elite { border-top: 4px solid var(--accent-orange); }

.box-img-placeholder, .vault-placeholder, .pack-placeholder {
    background: #1b2233;
    border: 2px dashed #384766;
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-img-placeholder img, .vault-placeholder img, .pack-placeholder img {
    max-width: 100%;
    max-height: 130px;
    opacity: 0.1;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 11px;
    color: #6277a1;
    font-family: monospace;
}

.box-card h3 {
    font-family: var(--font-heading);
    margin-top: 15px;
}

.price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--text-white);
    margin: 10px 0 15px 0;
}

.box-card p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Premium Vault Block */
.premium-vault {
    background: linear-gradient(135deg, #131a26 0%, #090d14 100%);
    border: 1px solid #ff990044;
    border-radius: 12px;
    margin-top: 50px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.vault-content {
    flex: 1;
    min-width: 300px;
}

.vault-badge {
    background: var(--accent-orange);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
}

.premium-vault h3 {
    font-family: var(--font-heading);
    margin: 15px 0;
    font-size: 22px;
}

.premium-vault p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.vault-prices span {
    background: #1b2336;
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 14px;
    border: 1px solid #2d3b59;
}

.vault-placeholder {
    flex: 1;
    min-width: 300px;
}

/* Experience Pack */
.pack-section {
    background-color: #0d1117;
    border-top: 1px solid #1a2233;
    border-bottom: 1px solid #1a2233;
}

.pack-list {
    list-style: none;
}

.pack-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-white);
}

.pack-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.pack-list li strong {
    color: var(--accent-blue);
}

/* Features */
.features-section {
    background-color: var(--bg-dark);
}

/* Partnership & Contact Box */
.partnership-section {
    background: #0f1624;
}

.partnership-box {
    background: linear-gradient(90deg, #1a2436, #121824);
    border-left: 5px solid var(--accent-blue);
    padding: 40px;
    border-radius: 0 10px 10px 0;
    text-align: center;
}

.partnership-box h2 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.partnership-box p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: #05070a;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #111622;
    color: #4b5263;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-title {
        font-size: 30px;
    }
    .grid-2, .premium-vault {
        flex-direction: column;
    }
}
