:root {
    --primary-black: #0a0a0a;
    --secondary-black: #111111;
    --tertiary-black: #1a1a1a;
    --card-black: #141414;
    --primary-red: #ff2942;
    --secondary-red: #cc1f33;
    --dark-red: #8b0000;
    --glow-red: rgba(255, 41, 66, 0.5);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-light-gray: #888888;
    --border-gray: #2a2a2a;
    --border-red: rgba(255, 41, 66, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', Arial, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    border-right: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.sidebar-header::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, transparent 50%, var(--primary-red) 100%);
    opacity: 0.5;
}

.logo-section {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-gray);
    text-align: center;
}

.logo {
    display: block;
}

.logo img {
    max-width: 140px;
    height: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-section {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-gray);
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 14px;
}

.logo-image {
    width: 72px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 14px rgba(255, 41, 66, 0.35));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-red);
    line-height: 1;
}

.nav-section {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.nav-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 20px 10px;
    text-shadow: 0 0 8px var(--glow-red);
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin: 4px 10px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-menu a:hover {
    background: rgba(255, 41, 66, 0.1);
    color: var(--text-white);
    border-left-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 41, 66, 0.2);
}

.nav-menu a.active {
    background: linear-gradient(90deg, rgba(255, 41, 66, 0.2) 0%, transparent 100%);
    color: var(--text-white);
    border-left-color: var(--primary-red);
    box-shadow: inset 0 0 20px rgba(255, 41, 66, 0.1);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--glow-red);
}

.nav-icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
    font-size: 14px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-gray);
    background: var(--tertiary-black);
}

.sidebar-contact {
    font-size: 12px;
    color: var(--text-light-gray);
}

.sidebar-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-contact a:hover {
    color: var(--primary-red);
}

.main-content {
    flex: 1;
    margin-left: 220px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    padding: 0;
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.5) 100%);
    z-index: 2;
}

.hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    z-index: 3;
    box-shadow: 0 0 20px var(--glow-red);
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 60px;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 41, 66, 0.15);
    border: 1px solid var(--border-red);
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow:
        2px 2px 0 rgba(255, 255, 255, 0.1),
        0 0 30px var(--glow-red);
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--text-white);
    display: block;
    font-size: 42px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 15px var(--glow-red);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section {
    padding: 80px 60px;
    position: relative;
}

.section-dark {
    background: var(--secondary-black);
}

.section-darker {
    background: var(--primary-black);
}

.section-accent {
    background: linear-gradient(135deg, var(--tertiary-black) 0%, var(--secondary-black) 100%);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.15),
        0 0 20px var(--glow-red);
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    border-color: var(--border-red);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 41, 66, 0.1);
    transform: translateY(-5px);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 41, 66, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon img {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 41, 66, 0.3);
}

.card-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-black) 0%, var(--tertiary-black) 100%);
    border: 1px solid var(--border-gray);
    padding: 35px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--primary-red) 50%);
    opacity: 0.5;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reversed {
    direction: rtl;
}

.split-section.reversed > * {
    direction: ltr;
}

.split-content {
    padding: 20px 0;
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-gray);
}

.split-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--border-red);
    border-radius: 4px;
    z-index: -1;
}

.promo-strip {
    background: linear-gradient(90deg, var(--dark-red) 0%, var(--secondary-red) 50%, var(--dark-red) 100%);
    padding: 50px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-strip::before,
.promo-strip::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-black), transparent);
}

.promo-strip::before {
    left: 0;
}

.promo-strip::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--primary-black));
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.promo-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--glow-red);
}

.stat-card-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--glow-red);
    margin-bottom: 10px;
}

.stat-card-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 41, 66, 0.3);
}

.content-block p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    margin: 20px 0;
}

.content-block ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-gray);
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.site-footer {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    border-top: 1px solid var(--border-gray);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--glow-red);
}

.footer-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact-info {
    font-size: 13px;
    color: var(--text-light-gray);
}

.footer-contact-info p {
    margin-bottom: 8px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
    text-shadow: 0 0 8px rgba(255, 41, 66, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid var(--primary-red);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    background: var(--primary-black);
    padding: 25px 60px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-light-gray);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-red);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    padding: 40px;
    border-radius: 4px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 41, 66, 0.3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 41, 66, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-content p {
    font-size: 15px;
    color: var(--text-gray);
}

.contact-form-card {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    padding: 40px;
    border-radius: 4px;
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 41, 66, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--tertiary-black);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 41, 66, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border: none;
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    box-shadow: 0 5px 25px var(--glow-red);
    transform: translateY(-2px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 41, 66, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px var(--glow-red);
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-red);
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-red);
}

.thank-you-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.back-link {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.back-link:hover {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 0 25px var(--glow-red);
}

.policy-header {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--tertiary-black) 100%);
    padding: 60px;
    border-bottom: 1px solid var(--border-gray);
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.15),
        0 0 25px var(--glow-red);
}

.policy-meta {
    font-size: 14px;
    color: var(--text-light-gray);
}

.policy-content {
    padding: 60px;
    max-width: 900px;
}

.policy-contact-box {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    border-left: 3px solid var(--primary-red);
    padding: 25px 30px;
    margin-bottom: 40px;
}

.policy-contact-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-contact-box p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
    text-shadow: 0 0 10px rgba(255, 41, 66, 0.3);
}

.policy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 25px 0 15px;
}

.policy-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-section ul {
    list-style: none;
    margin: 15px 0;
}

.policy-section ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.policy-footer-note {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gray);
    padding: 25px 30px;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-light-gray);
    font-style: italic;
}

.disclaimer-box {
    background: rgba(255, 41, 66, 0.05);
    border: 1px solid var(--border-red);
    padding: 20px 25px;
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-gray);
}

.intro-banner {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--tertiary-black) 100%);
    padding: 50px 60px;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
}

.intro-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 150px;
    height: 3px;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--glow-red);
}

.intro-banner h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.15),
        0 0 25px var(--glow-red);
}

.intro-banner p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
}

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sidebar-header {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .sidebar-header::before {
        display: none;
    }

    .logo-section {
        border-bottom: none;
        padding: 0;
        flex: 0 0 auto;
    }

    .nav-section {
        flex: 1;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .nav-label {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-menu li {
        margin: 0 5px;
    }

    .nav-menu a {
        padding: 8px 15px;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        border-left: none;
        border-bottom-color: var(--primary-red);
    }

    .nav-menu a.active::after {
        display: none;
    }

    .sidebar-footer {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-content {
        padding: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-title span {
        font-size: 32px;
    }

    .section {
        padding: 60px 40px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reversed {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title span {
        font-size: 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .promo-strip {
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .intro-banner {
        padding: 40px 20px;
    }

    .intro-banner h1 {
        font-size: 32px;
    }

    .policy-header,
    .policy-content {
        padding: 40px 20px;
    }

    .policy-title {
        font-size: 32px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        justify-content: center;
        width: 100%;
        margin-top: 15px;
    }

    .nav-menu a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-title span {
        font-size: 20px;
    }

    .stat-value,
    .stat-card-value {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
}

.icon-svg-white {
    fill: var(--text-white);
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--primary-red);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}
.mobile-topbar {
    display: none;
}
.mobile-menu-overlay {
    display: none;
}
.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 10px 8px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #ff3b3b;
}
.mobile-menu-toggle span + span {
    margin-top: 6px;
}
.mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}
.mobile-logo-image {
    width: 40px;
    height: auto;
    display: block;
}
.mobile-logo-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-content {
        padding: 12px 20px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title span {
        font-size: 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .promo-strip {
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .intro-banner {
        padding: 40px 20px;
    }

    .intro-banner h1 {
        font-size: 32px;
    }

    .policy-header,
    .policy-content {
        padding: 40px 20px;
    }

    .policy-title {
        font-size: 32px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .mobile-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: #090909;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 10001;
    }

    .sidebar-header {
        position: static;
    }

    .sidebar-inner {
        position: fixed;
        top: 72px;
        left: 0;
        width: 300px;
        max-width: 86%;
        height: calc(100vh - 72px);
        background: linear-gradient(180deg, #0b0b0b 0%, #160909 100%);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 10002;
        box-shadow: 12px 0 32px rgba(0,0,0,0.4);
    }

    .sidebar-header.mobile-open .sidebar-inner {
        transform: translateX(0);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 72px 0 0 0;
        display: block;
        background: rgba(0,0,0,0.6);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.3s ease;
        z-index: 10000;
    }

    .sidebar-header.mobile-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .logo-section {
        padding-top: 24px;
    }

    .page-wrapper,
    .main-content,
    main {
        padding-top: 72px;
    }
}

#cookieBanner.cookie-panel-left{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:360px;
  max-width:calc(100vw - 32px);
  padding:14px 14px 12px;
  box-sizing:border-box !important;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(16,16,20,0.92), rgba(16,16,20,0.72));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 24px 80px rgba(0,0,0,0.55);
  color:#f5f6fb;
  opacity:0;
  transform:translateX(-18px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}

#cookieBanner.cookie-panel-left.show{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.cookie-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.cookie-chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}

.cookie-chip-img{
  width:16px;
  height:16px;
  display:block;
}

.cookie-chip-text{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.2px;
  color:rgba(125,211,255,0.95);
}

.cookie-panel-title{
  margin:0;
  font-size:13px;
  font-weight:950;
  letter-spacing:0.2px;
  color:rgba(245,246,251,0.92);
}

.cookie-panel-text{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:rgba(245,246,251,0.84);
  overflow-wrap:anywhere;
  word-break:break-word;
}

.cookie-panel-links{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.cookie-panel-link{
  font-size:12.5px;
  color:rgba(125,211,255,0.95);
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.26);
}

.cookie-panel-link:hover{
  border-bottom-color:rgba(125,211,255,0.75);
}

.cookie-panel-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}

.cookie-panel-btn{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  font-weight:950;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}

.cookie-panel-btn:active{
  transform:scale(0.99);
}

.cookie-panel-btn-solid{
  background:linear-gradient(135deg, rgba(125,211,255,0.95), rgba(99,102,241,0.95));
  color:#0b0b10;
  border-color:rgba(255,255,255,0.10);
}

.cookie-panel-btn-ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.14);
}

.cookie-panel-btn-solid:hover{
  filter:brightness(1.05);
}

.cookie-panel-btn-ghost:hover{
  background:rgba(255,255,255,0.10);
}

@media (max-width:520px){
  #cookieBanner.cookie-panel-left{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(16px);
    border-radius:18px;
  }
  #cookieBanner.cookie-panel-left.show{
    transform:translateY(0);
  }
  .cookie-panel-actions{
    flex-direction:column;
  }
}

html,body{
  max-width:100%;
  overflow-x:hidden;
}
