/* ============================================
   CUSTOM VARIABLES & ROOT STYLES
   ============================================ */
:root {
    --primary-color: #0066ff;
    --secondary-color: #1a1f36;
    --accent-color: #00d4ff;
    --light-bg: #f8f9fa;
    --dark-text: #1a1f36;
    --muted-text: #6c757d;
    --border-color: #e0e0e0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #0066ff;
    --secondary-color: #0f1419;
    --accent-color: #00d4ff;
    --light-bg: #1a1f36;
    --dark-text: #ffffff;
    --muted-text: #a0aec0;
    --border-color: #2d3748;
}

/* ============================================
   GENERAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

body.dark-mode {
    background-color: var(--secondary-color);
    color: var(--dark-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0052cc;
    border-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================================
   NAVIGATION BAR — matches tokenpocket.pro
   ============================================ */
.tp-navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center;
    z-index: 1050;
    transition: box-shadow 0.2s ease;
}

body.dark-mode .tp-navbar {
    background: #0f1419 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand */
.tp-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    padding: 0 !important;
}

.tp-logo-nav {
    width: 38px;
    height: 38px;
    background: #1169f4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: white;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.tp-brand-name {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111827;
    text-transform: uppercase;
    line-height: 1;
}

body.dark-mode .tp-brand-name {
    color: #f1f5f9;
}

/* Nav Links */
.tp-nav-link {
    color: #374151 !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.15s ease;
    white-space: nowrap;
}

body.dark-mode .tp-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.tp-nav-link:hover,
.tp-nav-link:focus {
    color: #1169f4 !important;
}

.tp-nav-link.dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: 0.15em;
    opacity: 0.55;
    border-top-color: currentColor;
}

/* Dropdown */
.tp-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    padding: 6px;
    min-width: 200px;
    margin-top: 6px !important;
    background: #ffffff;
    animation: dropdownFade 0.15s ease;
}

body.dark-mode .tp-dropdown {
    background: #1a2039;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tp-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.15s ease;
}

body.dark-mode .tp-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
}

.tp-dropdown .dropdown-item:hover {
    background: rgba(17, 105, 244, 0.07);
    color: #1169f4;
}

body.dark-mode .tp-dropdown .dropdown-item:hover {
    background: rgba(17, 105, 244, 0.15);
    color: #60a5fa;
}

.tp-dropdown .dropdown-item i {
    width: 16px;
    opacity: 0.55;
    font-size: 0.82rem;
}

.tp-dropdown .dropdown-divider {
    margin: 4px 8px;
    border-color: rgba(0, 0, 0, 0.06);
}

body.dark-mode .tp-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.07);
}

/* Right side controls */
.tp-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

body.dark-mode .tp-icon-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.tp-icon-btn:hover {
    background: rgba(17, 105, 244, 0.07);
    border-color: #1169f4;
    color: #1169f4;
}

.tp-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

body.dark-mode .tp-lang-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.tp-lang-btn:hover {
    background: rgba(17, 105, 244, 0.07);
    border-color: #1169f4;
    color: #1169f4;
}

body.dark-mode .navbar {
    background: #0f1419 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Scrolled state */
.tp-navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

    text-decoration: none;
    padding: 0 !important;
}

/* ============================================
   HERO SECTION — matches tokenpocket.pro
   ============================================ */
.hero-section {
    background: #f7f9ff;
    position: relative;
    overflow: hidden;
    padding: 0;
}

body.dark-mode .hero-section {
    background: #0f1419;
}

/* Floating decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 18px;
    pointer-events: none;
    z-index: 0;
}

.hero-shape-1 {
    width: 220px;
    height: 130px;
    background: linear-gradient(135deg, rgba(110, 185, 255, 0.25), rgba(80, 160, 255, 0.15));
    top: 8%;
    right: 7%;
    transform: rotate(-8deg);
    animation: floatShape 9s ease-in-out infinite;
}

.hero-shape-2 {
    width: 140px;
    height: 95px;
    background: linear-gradient(135deg, rgba(130, 200, 255, 0.2), rgba(100, 220, 240, 0.12));
    top: 36%;
    right: 12%;
    transform: rotate(6deg);
    animation: floatShape 12s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 100px;
    height: 65px;
    background: linear-gradient(135deg, rgba(80, 160, 255, 0.15), rgba(120, 210, 255, 0.1));
    bottom: 15%;
    left: 4%;
    transform: rotate(-4deg);
    animation: floatShape 10s ease-in-out infinite;
}

.hero-shape-4 {
    width: 75px;
    height: 50px;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.18), rgba(60, 140, 255, 0.1));
    top: 60%;
    right: 4%;
    transform: rotate(12deg);
    animation: floatShape 14s ease-in-out infinite reverse;
}

body.dark-mode .hero-shape {
    opacity: 0.4;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(var(--r, -8deg)); }
    50%       { transform: translateY(-18px) rotate(var(--r, -8deg)); }
}

.hero-inner {
    min-height: calc(100vh - 64px);
    position: relative;
    z-index: 1;
}

/* Hero Content positioning */
.hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Hero Title — dark bold, no gradient */
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: #111827;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

body.dark-mode .hero-title {
    color: #f1f5f9;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #6b7280;
    max-width: 520px;
}

body.dark-mode .hero-subtitle {
    color: #94a3b8;
}

/* Hero Buttons — pill style matching original */
.hero-btns {
    margin-bottom: 0;
}

.hero-btn-primary {
    background-color: #1169f4;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(17, 105, 244, 0.35);
}

.hero-btn-primary:hover {
    background-color: #0d5dd4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 105, 244, 0.45);
}

.hero-btn-secondary {
    background-color: #ffffff;
    color: #111827;
    border: 1.5px solid #d1d5db;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-secondary:hover {
    border-color: #1169f4;
    color: #1169f4;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

body.dark-mode .hero-btn-secondary {
    background-color: transparent;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.2);
}

body.dark-mode .hero-btn-secondary:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

/* Laptop image */
.laptop-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
    animation: slideInRight 0.8s ease-out;
    display: block;
    margin: 0 auto;
}

/* ============================================
   TRUST & CONVERSION SECTION
   ============================================ */
.conversion-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

body.dark-mode .conversion-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2039 100%);
}

.conversion-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 220px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.04));
    border-radius: 15px;
    animation: float 9s ease-in-out infinite;
    z-index: 0;
}

.conversion-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.09), rgba(100, 200, 255, 0.04));
    border-radius: 12px;
    animation: float 11s ease-in-out infinite reverse;
    z-index: 0;
}

.conversion-section {
    background-image: 
        radial-gradient(circle at 80% 70%, rgba(100, 200, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 40%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
    background-blend-mode: screen;
}

.trust-announcement {
    position: relative;
    z-index: 1;
}

.badge-upgrade {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.conversion-headline {
    color: var(--dark-text);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conversion-subheadline {
    color: var(--muted-text);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem !important;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

body.dark-mode .benefit-item {
    background: rgba(0, 102, 255, 0.08);
}

.benefit-item:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

.benefit-item h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--muted-text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Download Buttons in Conversion */
.download-buttons-conversion .btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Trust Reassurance */
.trust-reassurance {
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    margin-top: 30px;
}

body.dark-mode .trust-reassurance {
    background: rgba(16, 185, 129, 0.08);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.trust-badge i {
    font-size: 1.3rem;
}

.trust-text {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Comparison Card - Sticky */
.comparison-card-sticky {
    position: sticky;
    top: 80px;
}

/* Comparison Card */
.comparison-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark-mode .comparison-card {
    background: #1a2039;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card h4 {
    color: var(--dark-text);
    font-weight: 700;
    font-size: 1.4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    color: var(--dark-text);
    font-weight: 700;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
}

body.dark-mode .comparison-table th {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.08));
}

.comparison-table td {
    color: var(--muted-text);
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table i.fa-check {
    color: var(--success);
    font-weight: 700;
}

.comparison-table i.fa-times {
    color: #ef4444;
    opacity: 0.5;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

body.dark-mode .features-section {
    background-color: var(--secondary-color);
}

.features-section h2 {
    color: var(--dark-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.feature-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

body.dark-mode .feature-card {
    background-color: #1a2039;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--dark-text);
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 80px 0;
    background: #ffffff;
}

body.dark-mode .products-section {
    background-color: var(--secondary-color);
}

.products-section h2 {
    color: var(--dark-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.product-card {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

body.dark-mode .product-card {
    background-color: #1a2039;
}

.product-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.product-card h4 {
    color: var(--dark-text);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

body.dark-mode .download-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2039 100%);
}

.download-section h2 {
    color: var(--dark-text);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.download-section p {
    color: var(--muted-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.download-section .btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-section .text-decoration-none {
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.download-section .text-decoration-none:hover {
    transform: translateX(10px);
}

.download-screen-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.screen-frame {
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #1a1f36 0%, #0f1419 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.screen-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #0f0f1a;
    border-radius: 0 0 30px 30px;
    z-index: 10;
}

.screen-display {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f36 100%);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unlock-interface {
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.tp-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 auto 30px;
}

.unlock-interface h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.unlock-interface .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.unlock-interface .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.unlock-interface .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 60px 0;
    background: var(--light-bg);
}

body.dark-mode .stats-section {
    background-color: #1a2039;
}

.stats-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-section p {
    color: var(--muted-text);
    font-weight: 500;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f36 100%);
    color: #a0aec0;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-top: 5px;
}

.footer-brand h5 {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* Social Icons Grid */
.social-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}

.social-footer-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #a0aec0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-footer-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 1rem;
}

/* Footer Sections */
.footer-section-title {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.footer-meta {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

.footer-meta strong {
    color: white;
}

.footer-secondary-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-secondary-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-secondary-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: #4c5a6f;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0052cc;
}

body.dark-mode ::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .laptop-image {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .product-card.featured {
        transform: scale(1);
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .conversion-section {
        padding: 60px 0;
    }

    .comparison-card-sticky {
        position: static;
    }

    .hero-section .row {
        gap: 30px;
    }

    .hero-inner {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .d-flex.gap-3 {
        gap: 1rem !important;
    }

    .laptop-image {
        max-width: 500px;
        margin-top: 30px;
    }

    .features-section,
    .products-section,
    .download-section {
        padding: 60px 0;
        margin-top: 20px;
    }

    .features-section h2,
    .products-section h2,
    .download-section h2 {
        font-size: 1.75rem;
    }

    .feature-card,
    .product-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .download-screen-mockup {
        transform: scale(0.85);
    }

    .stats-section .display-5 {
        font-size: 2rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-brand h5 {
        font-size: 1.2rem;
    }

    .social-footer-grid {
        justify-content: center;
        margin-bottom: 40px;
    }

    .footer-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-section-title {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 30px 0 50px;
        margin-bottom: 20px;
    }

    .conversion-section {
        padding: 50px 0 45px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .hero-section .px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .d-flex.gap-3 {
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem !important;
        width: 100%;
    }

    .laptop-image {
        display: none;
    }

    .conversion-section {
        padding: 50px 0 40px;
        margin-top: 30px;
        margin-bottom: 25px;
    }

    .conversion-headline {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .conversion-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
    }

    .benefit-item {
        padding: 12px;
        gap: 12px;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .benefit-item h5 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    .download-buttons-conversion .btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem !important;
        width: 100%;
    }

    .comparison-card {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .comparison-card h4 {
        font-size: 1.2rem;
    }

    .download-screen-mockup {
        display: none;
    }

    .feature-card,
    .product-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .feature-icon,
    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-card h4,
    .product-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p,
    .product-card p {
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-section .display-5 {
        font-size: 1.5rem;
    }

    .stats-section p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-brand h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .social-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .social-footer-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-secondary-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-secondary-links a {
        font-size: 0.8rem;
    }

    .social-footer {
        margin-top: 10px;
        gap: 10px;
    }

    .download-section h2 {
        font-size: 1.5rem;
    }

    .download-section p {
        font-size: 0.95rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feature-card,
.product-card {
    animation: slideInUp 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg-custom {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.transition-all {
    transition: all 0.3s ease;
}
