/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --red: #c0392b;
    --red-dark: #a93226;
    --red-deeper: #922b21;
    --red-light: #fadbd8;
    --red-50: #fdedec;
    --red-glow: rgba(192,57,43,0.12);
    --accent-gradient: linear-gradient(135deg, #c0392b, #922b21);
    --accent-gradient-hover: linear-gradient(135deg, #e74c3c, #c0392b);
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-dark: #0c0c0e;
    --bg-dark-card: #141418;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #555770;
    --text-muted: #8e90a6;
    --text-white: #ffffff;
    --border: #e8e9ed;
    --border-light: #f0f1f5;
    --success: #27ae60;
    --danger: #c0392b;
    --warning: #f39c12;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    --shadow-red: 0 8px 32px rgba(192,57,43,0.2);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
img { max-width: 100%; display: block; }
::selection { background: rgba(192,57,43,0.15); color: var(--text-primary); }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ========== TRUST TOP BAR ========== */
.trust-topbar {
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0;
    font-size: 12px;
    height: 36px;
    display: flex;
    align-items: center;
}
.trust-topbar-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.trust-badge-top {
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    font-size: 11.5px;
}
.trust-badge-top:first-child { color: rgba(255,255,255,0.55); font-weight: 600; }

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(12,12,14,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.navbar .logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar .logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: white;
    font-weight: 800;
}
.navbar .logo span { color: var(--red); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: #fff; background: rgba(192,57,43,0.9); }
.nav-cta {
    background: var(--accent-gradient) !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}
.nav-cta:hover { opacity: 0.9; }

/* Mobile menu */
.mobile-toggle { display: none; background: none; border: none; color: rgba(255,255,255,0.8); font-size: 22px; cursor: pointer; padding: 8px; border-radius: 8px; transition: all var(--transition); }
.mobile-toggle:hover { background: rgba(255,255,255,0.08); }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(170deg, #0c0c0e 0%, #111115 35%, #1a0a0a 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,57,43,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-slide { transition: opacity 0.4s ease; }
#socialProof { transition: opacity 0.3s ease; }
.hero-content { max-width: 660px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(192,57,43,0.1);
    border: 1px solid rgba(192,57,43,0.2);
    border-radius: 50px;
    color: #e8a09a;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    color: white;
    letter-spacing: -1.5px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats-bar {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.hero-stat {
    padding: 26px 24px;
    background: rgba(255,255,255,0.02);
    text-align: center;
    transition: background var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,0.04); }
.hero-stat h3 {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.hero-stat h3 .red { color: var(--red); }
.hero-stat p {
    color: rgba(255,255,255,0.4);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(192,57,43,0.2);
}
.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192,57,43,0.3);
    color: white;
}
.btn-white {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text-primary); }
.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: white; }
.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }

/* ========== SECTIONS ========== */
.section { padding: 88px 0; }
.section-dark { background: var(--bg-dark); color: white; }
.section-gray { background: var(--bg-secondary); }
.section-red { background: var(--red); color: white; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--red-50);
    color: var(--red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    border: 1px solid var(--red-light);
}
.section-dark .section-header .tag {
    background: rgba(192,57,43,0.12);
    color: #e8a09a;
    border-color: rgba(192,57,43,0.2);
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    line-height: 1.15;
}
.section-dark .section-header h2 { color: white; }
.section-header p { color: var(--text-secondary); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.45); }

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--red-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--red);
    border: 1px solid var(--red-light);
}
.section-dark .feature-card {
    background: var(--bg-dark-card);
    border-color: rgba(255,255,255,0.06);
}
.section-dark .feature-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(192,57,43,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.section-dark .feature-card h3 { color: white; }
.section-dark .feature-card p { color: rgba(255,255,255,0.5); }
.section-dark .feature-icon { background: rgba(192,57,43,0.1); color: #e8a09a; border-color: rgba(192,57,43,0.15); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; letter-spacing: -0.2px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ========== STATE GRID ========== */
.state-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
}
.state-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.state-card:hover {
    border-color: rgba(192,57,43,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(192,57,43,0.1);
    color: var(--text-primary);
}
.state-card:hover::before { transform: scaleX(1); }
.state-card:hover .buy-label { background: var(--accent-gradient); color: white; border-color: transparent; }
.state-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); letter-spacing: -0.2px; }
.state-card .records { color: var(--text-muted); font-size: 13px; font-weight: 500; }
.state-card .records strong { color: var(--red); font-weight: 700; }
.state-card .price {
    margin-top: 14px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.state-card .quarter-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
    background: var(--red-50);
    color: var(--red);
    font-size: 10.5px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--red-light);
}
.state-card .buy-label {
    display: block;
    margin-top: 14px;
    padding: 8px 0;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
}

/* ========== PRODUCT DETAIL ========== */
.product-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.product-detail h1 { font-size: 28px; margin-bottom: 14px; font-weight: 800; letter-spacing: -0.5px; }
.product-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
.product-meta .meta-item {
    padding: 14px 16px;
    background: var(--red-50);
    border-radius: var(--radius);
    border: 1px solid var(--red-light);
    min-width: 0;
    overflow: hidden;
}
.product-meta .meta-item .label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.product-meta .meta-item .value { font-size: 17px; font-weight: 800; color: var(--red); margin-top: 4px; word-break: break-word; overflow-wrap: break-word; }

.quarter-selector { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.quarter-btn {
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    font-family: inherit;
}
.quarter-btn:hover, .quarter-btn.active {
    border-color: var(--red);
    background: var(--red-50);
    color: var(--red);
}

/* ========== CHECKOUT ========== */
.checkout-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: sticky;
    top: 92px;
    box-shadow: var(--shadow);
}
.checkout-box h2 { font-size: 22px; margin-bottom: 22px; font-weight: 800; letter-spacing: -0.3px; }
.checkout-summary {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 22px;
    border: 1px solid var(--border-light);
}
.checkout-summary .item { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }
.checkout-summary .item:last-child { border-bottom: none; font-weight: 800; font-size: 20px; color: var(--text-primary); padding-top: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; color: var(--text-secondary); margin-bottom: 7px; font-weight: 600; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
    background: white;
}

/* ========== DATA TABLES ========== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.data-table th {
    background: var(--bg-dark);
    color: white;
    padding: 13px 18px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.data-table th:first-child { border-radius: 10px 0 0 0; }
.data-table th:last-child { border-radius: 0 10px 0 0; }
.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}
.data-table tr:hover td { background: var(--red-50); }
.data-table .code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: var(--red);
    background: var(--red-50);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ========== DOWNLOAD PAGE ========== */
.download-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
    max-width: 560px;
    margin: 60px auto;
    box-shadow: var(--shadow);
}
.download-icon { font-size: 56px; margin-bottom: 20px; }
.download-box h2 { font-size: 26px; margin-bottom: 10px; font-weight: 800; letter-spacing: -0.3px; }
.download-box .info { color: var(--text-secondary); margin-bottom: 28px; }

/* ========== SECURITY STRIP ========== */
.security-strip {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.security-strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.security-seal {
    display: flex;
    align-items: center;
    gap: 10px;
}
.seal-icon {
    font-size: 20px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    color: var(--text-muted);
}
.seal-title { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.seal-sub { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ========== TRUST SECTION ========== */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 28px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}
.trust-item .icon { color: var(--red); font-size: 18px; }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #c0392b 0%, #922b21 60%, #7b241c 100%);
    border-radius: var(--radius-lg);
    padding: 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(192,57,43,0.2);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-banner h2 { font-size: 32px; font-weight: 800; color: white; margin-bottom: 12px; position: relative; z-index: 1; letter-spacing: -0.5px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 28px; position: relative; z-index: 1; }

/* ========== TESTIMONIAL ========== */
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.testimonial-card .stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card .quote { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.testimonial-card .role { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

/* ========== CRYPTO BADGES ========== */
.crypto-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 18px 0; }
.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-secondary);
    letter-spacing: 0.5px;
}

/* ========== SEARCH ========== */
.search-box {
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
}
.search-box input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition);
}
.search-box input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
.search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 17px;
}

/* ========== ALERTS ========== */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; font-weight: 500; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* ========== BADGE ========== */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; }
.badge-success { background: #ecfdf5; color: #059669; }
.badge-warning { background: #fffbeb; color: #d97706; }
.badge-danger { background: #fef2f2; color: #dc2626; }
.badge-info { background: #eff6ff; color: #2563eb; }

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer h4 { color: rgba(255,255,255,0.9); margin-bottom: 18px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.4); }
.footer a { color: rgba(255,255,255,0.4); font-size: 13.5px; transition: color var(--transition); }
.footer a:hover { color: rgba(255,255,255,0.8); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer-logo { font-size: 20px; font-weight: 800; color: white; margin-bottom: 14px; display: block; letter-spacing: -0.3px; }
.footer-logo span { color: var(--red); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 12.5px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ========== LEGAL PAGES ========== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.legal-content .updated { color: var(--text-muted); font-size: 13px; margin-bottom: 32px; }
.legal-content h2 { font-size: 21px; font-weight: 700; margin-top: 36px; margin-bottom: 12px; color: var(--text-primary); letter-spacing: -0.2px; }
.legal-content h3 { font-size: 17px; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.legal-content p { color: var(--text-secondary); margin-bottom: 14px; font-size: 14.5px; line-height: 1.75; }
.legal-content ul { color: var(--text-secondary); padding-left: 24px; margin-bottom: 14px; font-size: 14.5px; }
.legal-content ul li { margin-bottom: 6px; line-height: 1.7; }

/* ========== PAGINATION ========== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span { padding: 9px 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--text-secondary); font-size: 14px; transition: all var(--transition); }
.pagination a:hover, .pagination .active { background: var(--red); color: white; border-color: var(--red); }

/* ========== ADMIN ========== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--bg-dark);
    padding: 24px;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
}
.admin-sidebar .logo { font-size: 20px; font-weight: 800; color: white; margin-bottom: 40px; display: block; letter-spacing: -0.3px; }
.admin-sidebar .logo span { color: var(--red); }
.admin-sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 13.5px;
    margin-bottom: 3px;
    transition: all var(--transition);
}
.admin-sidebar .nav-item:hover, .admin-sidebar .nav-item.active {
    background: rgba(192,57,43,0.12);
    color: #e8a09a;
}
.admin-content { flex: 1; margin-left: 260px; padding: 28px; background: var(--bg-secondary); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-header h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.3px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-sm); }
.stat-card .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 8px; }
.stat-card .value { font-size: 30px; font-weight: 800; color: var(--red); letter-spacing: -0.5px; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.admin-table th {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.9);
    padding: 13px 18px;
    text-align: left;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.admin-table td { padding: 13px 18px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.admin-table tr:hover td { background: var(--red-50); }

/* ========== LOADING ========== */
.loading {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ========== FAQ DETAILS ========== */
details {
    transition: all var(--transition);
}
details[open] summary span:last-child {
    transform: rotate(45deg);
}
details summary span:last-child {
    transition: transform var(--transition);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .product-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .trust-topbar { display: none; }
    .security-strip-inner { justify-content: center; gap: 12px; }
    .security-seal .seal-title { font-size: 12px; }
    .security-seal .seal-sub { display: none; }
    .hero { padding: 60px 0 70px; }
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    .hero p { font-size: 15px; }
    .hero-stats-bar { grid-template-columns: 1fr 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-detail, .checkout-box { padding: 24px; }
    .product-meta { grid-template-columns: repeat(2, 1fr); }
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .section-header h2 { font-size: 28px; }
    .trust-bar { gap: 20px; }
    .cta-banner { padding: 36px 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .checkout-summary .item { font-size: 13px; }
    .checkout-summary .item:last-child { font-size: 18px; }
    .container { padding: 0 20px; }
}
@media (max-width: 480px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .hero { padding: 44px 0 52px; }
    .hero h1 { font-size: 26px; letter-spacing: -0.8px; }
    .hero-actions { flex-direction: column; }
    .product-meta { grid-template-columns: 1fr 1fr; }
    .cta-banner { display: block !important; text-align: center !important; }
    .cta-banner > div { margin: 16px 0 !important; }
    .section { padding: 44px 0; }
    .section-header h2 { font-size: 24px; }
}

/* ========== MOBILE NAV OPEN ========== */
@media (max-width: 768px) {
    .nav-links[style*="flex"] {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(12,12,14,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 12px 20px 16px;
        border-top: 1px solid rgba(255,255,255,0.06);
        gap: 2px;
        z-index: 999;
    }
    .nav-links[style*="flex"] a { padding: 12px 16px; border-radius: 8px; }
}

/* ========== BLOG ========== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}
.blog-card-body { padding: 24px; }
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; line-height: 1.4; }
.blog-card h3 a { color: var(--text-primary); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.blog-card .meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; }

/* Blog Post Content */
.article-content { max-width: 780px; margin: 0 auto; }
.article-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 14px; letter-spacing: -0.3px; color: var(--text-primary); }
.article-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.article-content p { font-size: 15px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 16px; }
.article-content ul, .article-content ol { font-size: 15px; color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; line-height: 1.85; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--text-primary); }
.article-content a { color: var(--red); font-weight: 500; }
.article-content blockquote { border-left: 3px solid var(--red); padding: 16px 20px; background: var(--red-50); border-radius: 0 10px 10px 0; margin: 20px 0; font-style: italic; color: var(--text-secondary); }

/* ========== INDUSTRY ========== */
.industry-highlight {
    background: var(--red-50);
    border: 1px solid var(--red-light);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}
.industry-highlight .label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }
.industry-highlight .value { font-size: 18px; font-weight: 800; color: var(--red); margin-top: 3px; }
