/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto Condensed', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: #fff; text-decoration: none; transition: color 0.3s; }
a:hover { color: #DD0000; }
img { max-width: 100%; height: auto; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BACKGROUND TEXTURE ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(221,0,0,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(221,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(221,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
#site-header { position: relative; z-index: 9999; }

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #0a0a0a, #111, #0a0a0a);
    border-bottom: 1px solid #1a1a1a;
    padding: 10px 0;
}
.top-bar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-social a {
    font-size: 20px;
    margin-right: 12px;
    color: #aaa;
    transition: color 0.3s, transform 0.3s;
}
.top-bar-social a:hover { color: #DD0000; transform: scale(1.2); }
.top-bar-phone a { font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.top-bar-phone .label { color: #888; font-weight: 400; margin-right: 5px; }
.top-bar-phone .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 6px;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40,167,69,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(40,167,69,0); }
}

/* ===== NAVBAR ===== */
/* Logo bar */
.logo-bar {
    background: #050505;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
}
.logo-bar img {
    height: 100px;
    transition: transform 0.3s;
}
.logo-bar img:hover { transform: scale(1.03); }

/* Navbar */
.navbar {
    background: #050505;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #DD0000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: visible;
}
.navbar .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}
.logo { display: none; }
.nav-links { display: flex; list-style: none; gap: 0; overflow: visible; }
.nav-links li { position: relative; overflow: visible; }
.nav-links li a {
    display: block;
    padding: 24px 18px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #DD0000;
    transition: width 0.3s, left 0.3s;
}
.nav-links li a:hover::after,
.nav-links li a.active::after { width: 100%; left: 0; }
.nav-links li a:hover,
.nav-links li a.active { background: #111; color: #DD0000; }
/* Pay Now button special style */
.nav-links li:last-child a {
    background: #DD0000;
    color: #fff;
    margin-left: 5px;
}
.nav-links li:last-child a:hover { background: #b30000; color: #fff; }
.nav-links li:last-child a::after { display: none; }

.nav-links li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 220px;
    list-style: none;
    border-top: 2px solid #DD0000;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-links li:hover > .sub-menu,
.nav-links li.submenu-open > .sub-menu {
    display: block;
}
.nav-links li .sub-menu li a {
    padding: 12px 18px;
    font-size: 13px;
    border-bottom: 1px solid #1a1a1a;
}
.nav-links li .sub-menu li a::after { display: none; }
.nav-links li .sub-menu li a:hover { background: #DD0000; color: #fff; }
.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 20px;
    color: #fff;
    background: none;
    border: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a0000 0%, #000 40%, #0a0a0a 100%);
    border-bottom: 4px solid #DD0000;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 50%, rgba(221,0,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(221,0,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(221,0,0,0.05) 0%, transparent 40%);
    animation: pulse 8s ease-in-out infinite;
}
/* Diagonal line pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(221,0,0,0.02) 40px,
        rgba(221,0,0,0.02) 41px
    );
    pointer-events: none;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}
.hero-content { position: relative; z-index: 2; padding: 40px; }
.hero h1 {
    font-family: 'Abel', sans-serif;
    font-size: 78px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 40px rgba(221,0,0,0.3), 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 10px;
    letter-spacing: 5px;
    line-height: 1.1;
}
.hero h1 span { color: #DD0000; }
.hero .tagline {
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 35px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-badge i { color: #DD0000; font-size: 20px; }

/* Page hero (smaller) */
.page-hero {
    min-height: 300px;
    padding: 80px 0;
}
.page-hero h1 { font-size: 56px; }
.page-hero .tagline { font-size: 16px; letter-spacing: 3px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    background: #DD0000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    border: 2px solid #DD0000;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn:hover { background: transparent; color: #DD0000; }
.btn-outline { background: transparent; border-color: #fff; }
.btn-outline:hover { background: #DD0000; border-color: #DD0000; color: #fff; }
.btn-sm { padding: 10px 25px; font-size: 13px; }
.btn-dark { background: #111; border-color: #222; }
.btn-dark:hover { background: #DD0000; border-color: #DD0000; color: #fff; }
.btn-white { background: #fff; border-color: #fff; color: #000; }
.btn-white:hover { background: transparent; color: #fff; }

/* ===== SECTION DEFAULTS ===== */
.section { padding: 90px 0; }
.section-dark { background: #050505; }
.section-darker { background: #000; }
.section-red { background: #DD0000; }
.section-gradient { background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%); }
.section-title {
    font-family: 'Abel', sans-serif;
    font-size: 44px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    color: #DD0000;
    letter-spacing: 3px;
}
.section-red .section-title { color: #fff; }
.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.section-red .section-subtitle { color: rgba(255,255,255,0.85); }
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DD0000, transparent);
    margin: 15px auto 25px;
}
.section-red .section-divider { background: linear-gradient(90deg, transparent, #fff, transparent); }

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #DD0000, #b30000);
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.05) 20px,
        rgba(0,0,0,0.05) 21px
    );
}
.stat-item {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-number {
    font-family: 'Abel', sans-serif;
    font-size: 52px;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.stat-item .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.8);
}

/* ===== CARDS ===== */
.card {
    background: linear-gradient(180deg, #141414, #111);
    border: 1px solid #1a1a1a;
    padding: 35px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #DD0000;
    transform: scaleX(0);
    transition: transform 0.4s;
}
.card:hover { transform: translateY(-8px); border-color: #DD0000; box-shadow: 0 15px 40px rgba(221,0,0,0.15); }
.card:hover::before { transform: scaleX(1); }
.card-red {
    background: linear-gradient(135deg, #DD0000, #b30000);
    border-color: #DD0000;
}
.card-red::before { background: #fff; }
.card-red:hover { box-shadow: 0 15px 40px rgba(221,0,0,0.4); }
.card .card-icon {
    font-size: 48px;
    color: #DD0000;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.card:hover .card-icon { transform: scale(1.15); }
.card-red .card-icon { color: #fff; }
.card h3 {
    font-family: 'Abel', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}
.card p { color: #bbb; line-height: 1.7; }
.card-red p { color: rgba(255,255,255,0.9); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== CONTENT BLOCK ===== */
.content-block {
    padding: 40px;
    border: 1px solid #1a1a1a;
    background: linear-gradient(135deg, #0f0f0f, #0a0a0a);
    position: relative;
}
.content-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #DD0000, #880000);
}
.content-block h2 {
    font-family: 'Abel', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    color: #DD0000;
    margin-bottom: 15px;
}
.content-block p, .content-block li { color: #ccc; line-height: 1.8; }
.content-block ul { list-style: none; }
.content-block ul li { padding: 8px 0; padding-left: 25px; position: relative; }
.content-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 12px;
    color: #DD0000;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    background: linear-gradient(135deg, #111, #0a0a0a);
    border: 1px solid #1a1a1a;
    padding: 40px;
    position: relative;
    text-align: center;
}
.testimonial::before {
    content: '\201C';
    font-size: 80px;
    color: #DD0000;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 25px;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial .author {
    color: #DD0000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}
.testimonial .stars {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 18px;
}

/* ===== DOWNLOAD CARD ===== */
.download-card {
    background: linear-gradient(135deg, #141414, #0f0f0f);
    border: 1px solid #1a1a1a;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s;
    text-decoration: none;
}
.download-card:hover {
    border-color: #DD0000;
    transform: translateX(5px);
    box-shadow: -4px 0 0 #DD0000;
}
.download-card .dl-icon {
    font-size: 40px;
    color: #DD0000;
    min-width: 50px;
    text-align: center;
}
.download-card .dl-info h3 {
    font-family: 'Abel', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}
.download-card .dl-info p { color: #888; font-size: 13px; }
.download-card .dl-action {
    margin-left: auto;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #DD0000;
    font-weight: 700;
    white-space: nowrap;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 30px 15px;
    position: relative;
    counter-increment: step;
}
.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #DD0000;
    color: #fff;
    font-family: 'Abel', sans-serif;
    font-size: 28px;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 60%;
    width: calc(100% - 20px);
    height: 2px;
    background: #222;
}
.process-step:last-child::after { display: none; }
.process-step h4 {
    font-family: 'Abel', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.process-step p { color: #888; font-size: 13px; line-height: 1.5; }

/* ===== BIO SECTION ===== */
.bio-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.bio-card {
    background: linear-gradient(180deg, #141414, #0f0f0f);
    border: 1px solid #222;
    padding: 35px;
    text-align: center;
}
.bio-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #DD0000;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #222, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #DD0000;
    font-family: 'Abel', sans-serif;
    box-shadow: 0 0 30px rgba(221,0,0,0.15);
}
.bio-card h3 {
    font-family: 'Abel', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}
.bio-card .bio-title-line {
    color: #DD0000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.bio-card .bio-socials a {
    font-size: 20px;
    margin: 0 8px;
    color: #666;
}
.bio-card .bio-socials a:hover { color: #DD0000; }
.bio-text h3 {
    font-family: 'Abel', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    color: #DD0000;
    margin-bottom: 20px;
}
.bio-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}
.bio-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #DD0000, #b30000, #DD0000);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0,0,0,0.05) 30px,
        rgba(0,0,0,0.05) 31px
    );
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    font-family: 'Abel', sans-serif;
    font-size: 46px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}
.cta-banner .btn { background: #000; border-color: #000; }
.cta-banner .btn:hover { background: #fff; border-color: #fff; color: #000; }

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    padding: 70px 0 0;
    border-top: 3px solid #DD0000;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer h4 {
    font-family: 'Abel', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 12px;
    border-bottom: 1px dotted #DD0000;
    margin-bottom: 20px;
}
.footer-form input,
.footer-form textarea,
.footer-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}
.footer-form input:focus,
.footer-form textarea:focus { outline: none; border-color: #DD0000; }
.footer-form textarea { height: 100px; resize: vertical; }
.footer-form .email-opt {
    margin-bottom: 15px;
    color: #888;
    font-size: 13px;
}
.footer-form .email-opt label { margin-right: 15px; cursor: pointer; }
.footer-form .email-opt input[type="radio"] { width: auto; margin-right: 4px; }
.footer-nav ul { list-style: none; }
.footer-nav ul li { padding: 6px 0; border-bottom: 1px solid #111; }
.footer-nav ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
}
.footer-nav ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-right: 8px;
    color: #DD0000;
}
.footer-nav ul li a:hover { color: #DD0000; padding-left: 5px; }
.footer-info .info-item {
    padding: 10px 0;
    border-bottom: 1px solid #111;
    color: #ccc;
}
.footer-info .info-item .label {
    color: #DD0000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-info .info-item a { color: #fff; }
.footer-info .info-item a:hover { color: #DD0000; }
.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #111;
    border: 1px solid #222;
    font-size: 18px;
    color: #888;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #DD0000;
    border-color: #DD0000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(221,0,0,0.3);
}
.bottom-bar {
    background: #000;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #111;
    color: #666;
    font-size: 13px;
}
.bottom-bar a { color: #888; }
.bottom-bar a:hover { color: #DD0000; }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #DD0000;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: #DD0000;
    box-shadow: 0 0 0 3px rgba(221,0,0,0.1);
}
textarea.form-control { height: 150px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }

/* ===== FAQ ACCORDION ===== */
.accordion-item {
    border: 1px solid #1a1a1a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0f0f0f, #0a0a0a);
    transition: border-color 0.3s;
}
.accordion-item:hover { border-color: #333; }
.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Abel', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    transition: background 0.3s;
}
.accordion-header:hover { background: rgba(221,0,0,0.05); }
.accordion-header .icon {
    font-size: 14px;
    color: #DD0000;
    transition: transform 0.3s;
}
.accordion-item.open { border-color: #DD0000; }
.accordion-item.open .accordion-header { border-bottom: 1px solid #1a1a1a; color: #DD0000; }
.accordion-item.open .accordion-header .icon { transform: rotate(180deg); }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-body-inner { padding: 20px 25px; color: #ccc; line-height: 1.8; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    background: linear-gradient(135deg, #DD0000, #b30000);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-family: 'Abel', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}
.data-table td { padding: 14px 18px; border-bottom: 1px solid #1a1a1a; color: #ccc; }
.data-table tr:hover td { background: #111; }
.badge { display: inline-block; padding: 3px 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.badge-danger { background: #DD0000; color: #fff; }
.badge-warning { background: #c47f00; color: #fff; }
.badge-info { background: #0077b6; color: #fff; }
.badge-success { background: #28a745; color: #fff; }

/* ===== CALCULATOR ===== */
.calc-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f0f0f, #0a0a0a);
    border: 1px solid #1a1a1a;
    padding: 40px;
}
.calc-result {
    background: #111;
    border: 2px solid #DD0000;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}
.calc-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(221,0,0,0.05) 0%, transparent 70%);
}
.calc-result .amount {
    font-family: 'Abel', sans-serif;
    font-size: 56px;
    color: #DD0000;
    position: relative;
    text-shadow: 0 0 30px rgba(221,0,0,0.2);
}
.calc-result .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 5px;
    position: relative;
}
.range-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: #222;
    outline: none;
    margin: 15px 0;
    border-radius: 3px;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #DD0000;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(221,0,0,0.3);
}

/* ===== BLOG ===== */
.blog-card {
    background: linear-gradient(180deg, #141414, #0f0f0f);
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-8px); border-color: #DD0000; box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.blog-card .blog-header {
    background: linear-gradient(135deg, #DD0000, #b30000);
    padding: 15px 25px;
}
.blog-card .blog-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}
.blog-card .blog-body { padding: 25px; }
.blog-card h3 {
    font-family: 'Abel', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-card p { color: #999; font-size: 14px; line-height: 1.7; }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #DD0000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(221,0,0,0.3);
}
.scroll-top:hover { background: #fff; color: #DD0000; }
.scroll-top.visible { display: flex; }

/* ===== TOUCH DEVICE FIXES ===== */
@media (hover: none) {
    .card:hover { transform: none; box-shadow: none; }
    .card:hover::before { transform: scaleX(1); }
    .card:active { transform: scale(0.98); }
    .card-red:hover { box-shadow: none; }
    .btn:hover { background: #DD0000; color: #fff; }
    .btn:active { background: transparent; color: #DD0000; }
    .btn-outline:hover { background: transparent; border-color: #fff; color: #fff; }
    .btn-outline:active { background: #DD0000; border-color: #DD0000; color: #fff; }
    .btn-dark:hover { background: #111; border-color: #222; color: #fff; }
    .btn-dark:active { background: #DD0000; border-color: #DD0000; color: #fff; }
    .btn-white:hover { background: #fff; border-color: #fff; color: #000; }
    .footer-social a:hover { transform: none; }
    .blog-card:hover { transform: none; box-shadow: none; }
    .download-card:hover { transform: none; box-shadow: none; }
    .testimonial:hover { transform: none; }
}
* { -webkit-tap-highlight-color: transparent; }

/* ===== TABLE RESPONSIVE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== MOBILE SUBMENU ===== */
.nav-links .sub-menu {
    transition: max-height 0.3s ease;
}
.submenu-chevron {
    transition: transform 0.3s;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .hero h1 { font-size: 48px; }
    .page-hero h1 { font-size: 38px; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .bio-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item .stat-number { font-size: 42px; }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-step::after { display: none; }
    .cta-banner h2 { font-size: 36px; }
    .section-title { font-size: 34px; letter-spacing: 2px; }
    .content-block { padding: 30px; }
    .card { padding: 28px 22px; }
    .testimonial { padding: 30px; }
    .bio-text h3 { font-size: 28px; }
    .content-block h2 { font-size: 26px; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #050505;
        border-top: 2px solid #DD0000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-links li a { padding: 16px 20px; }
    .nav-links li a::after { display: none; }
    .nav-links li:last-child a { margin-left: 0; text-align: center; }
    /* Mobile submenu - hidden by default, toggled via JS */
    .nav-links li .sub-menu {
        position: static;
        border-top: none;
        box-shadow: none;
        display: none !important;
        background: #0a0a0a;
    }
    .nav-links li:hover > .sub-menu {
        display: none !important;
    }
    .nav-links li.submenu-open > .sub-menu {
        display: block !important;
        border-top: 1px solid #1a1a1a;
    }
    .nav-links li .sub-menu li a {
        padding-left: 35px;
        font-size: 14px;
    }
    .mobile-toggle { display: block; }
    .logo { display: block; }
    .logo img { height: 50px; }
    .logo-bar { display: none; }
    .navbar .wrap { justify-content: space-between; }

    /* Hero */
    .hero { min-height: 400px; }
    .hero-content { padding: 25px 15px; }
    .hero h1 { font-size: 36px; letter-spacing: 2px; }
    .page-hero { min-height: 220px; padding: 60px 0; }
    .page-hero h1 { font-size: 28px; }
    .hero .tagline { font-size: 13px; letter-spacing: 2px; margin-bottom: 25px; }
    .hero-badges { gap: 12px; }
    .hero-badge { font-size: 12px; gap: 6px; }
    .hero-badge i { font-size: 16px; }

    /* Sections */
    .section { padding: 50px 0; }
    .section-title { font-size: 28px; letter-spacing: 1px; }
    .section-subtitle { font-size: 15px; margin-bottom: 35px; }

    /* Top bar */
    .top-bar .wrap { justify-content: center; text-align: center; }
    .top-bar-social { margin-bottom: 5px; }

    /* Stats */
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; padding: 25px 15px; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item .stat-number { font-size: 36px; }
    .stat-item .stat-label { font-size: 11px; letter-spacing: 2px; }

    /* CTA */
    .cta-banner { padding: 50px 0; }
    .cta-banner h2 { font-size: 28px; }
    .cta-banner p { font-size: 15px; margin-bottom: 20px; }

    /* Cards & blocks */
    .card { padding: 25px 20px; }
    .card .card-icon { font-size: 36px; margin-bottom: 15px; }
    .content-block { padding: 25px 20px 25px 24px; }
    .content-block::before { width: 3px; }
    .content-block h2 { font-size: 22px; }
    .testimonial { padding: 25px 20px; }
    .testimonial::before { font-size: 50px; top: 5px; left: 15px; }
    .testimonial p { font-size: 15px; }

    /* Bio */
    .bio-text h3 { font-size: 24px; }
    .bio-avatar { width: 120px; height: 120px; font-size: 48px; }

    /* Process steps */
    .process-steps { grid-template-columns: 1fr; gap: 5px; }
    .process-step { padding: 20px 15px; display: flex; align-items: center; gap: 15px; text-align: left; }
    .process-step::before { margin: 0; min-width: 45px; width: 45px; height: 45px; font-size: 20px; }
    .process-step::after { display: none; }
    .process-step h4 { margin-bottom: 2px; }

    /* Grids */
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .grid-3 { gap: 20px; }
    .grid-2 { gap: 20px; }

    /* Calculator */
    .calc-container { padding: 25px 18px; }
    .calc-result .amount { font-size: 38px; }
    .calc-result { padding: 20px 15px; }

    /* Downloads */
    .download-card { flex-direction: row; gap: 15px; padding: 20px 15px; }
    .download-card .dl-icon { font-size: 28px; min-width: 35px; }
    .download-card .dl-info h3 { font-size: 16px; }
    .download-card .dl-info p { font-size: 12px; }
    .download-card .dl-action { font-size: 11px; }

    /* Buttons */
    .btn { padding: 12px 28px; font-size: 14px; letter-spacing: 1px; }
    .btn-sm { padding: 10px 20px; font-size: 12px; }

    /* Footer */
    .footer { padding: 50px 0 0; }
    .footer h4 { font-size: 22px; }
    .footer-grid { gap: 30px; }

    /* Accordion */
    .accordion-header { font-size: 17px; padding: 16px 18px; }
    .accordion-body-inner { padding: 16px 18px; font-size: 14px; }

    /* Blog */
    .blog-card .blog-body { padding: 20px; }
    .blog-card h3 { font-size: 18px; }

    /* Scroll top */
    .scroll-top { bottom: 20px; right: 15px; width: 44px; height: 44px; }

    /* Forms inline grids */
    .form-group label { font-size: 12px; }
    .form-control { padding: 12px 14px; font-size: 14px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; letter-spacing: 1px; }
    .page-hero h1 { font-size: 24px; }
    .hero .tagline { font-size: 11px; letter-spacing: 1px; }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; }
    .cta-banner h2 { font-size: 24px; }
    .cta-banner p { font-size: 14px; }
    .stat-item .stat-number { font-size: 30px; }
    .stat-item .stat-label { font-size: 10px; letter-spacing: 1px; }
    .grid-4 { grid-template-columns: 1fr; }
    .card { padding: 20px 16px; }
    .card h3 { font-size: 20px; }
    .card .card-icon { font-size: 32px; }
    .content-block { padding: 20px 16px 20px 20px; }
    .content-block h2 { font-size: 20px; }
    .bio-text h3 { font-size: 22px; }
    .bio-card { padding: 25px 15px; }
    .bio-avatar { width: 100px; height: 100px; font-size: 40px; }
    .bio-links { flex-direction: column; }
    .bio-links .btn { width: 100%; text-align: center; }
    .btn { padding: 12px 20px; font-size: 13px; width: 100%; text-align: center; }
    .hero .btn { width: auto; }
    .calc-result .amount { font-size: 32px; }
    .footer h4 { font-size: 20px; }
    .testimonial p { font-size: 14px; }
    .testimonial .author { font-size: 12px; }
    .accordion-header { font-size: 15px; padding: 14px 15px; }
    .download-card { flex-direction: column; text-align: center; gap: 10px; padding: 20px; }
    .download-card .dl-action { margin-left: 0; }
    .process-step::before { min-width: 40px; width: 40px; height: 40px; font-size: 18px; }
    .top-bar-social a { font-size: 18px; margin-right: 10px; }
    .logo img { height: 42px; }
    .nav-links li a { padding: 14px 18px; font-size: 13px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .slide-left, .slide-right { opacity: 1; transform: none; transition: none; }
    .hero::before { animation: none; }
    .pulse-dot { animation: none; }
}
