@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium Dark Theme */
    --primary: #8338ec;
    --primary-light: #9b5de5;
    --primary-dark: #6e25d0;
    --secondary: #3a86ff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-hover: linear-gradient(135deg, var(--primary-light), var(--secondary));

    --bg-deep: #0a0a0f;
    --bg-dark: #12121c;
    --bg-card: #1a1a2e;
    --bg-accent: #252545;

    --text-main: #ffffff;
    --text-muted: #a0a0ca;
    --text-dim: #707090;

    --success: #06d6a0;
    --warning: #ffd166;
    --danger: #ef476f;

    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 20px rgba(131, 56, 236, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font-family: inherit;
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.flex {
    display: flex;
    gap: 20px;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

/* Components */

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-links li {
    display: inline-flex;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
}

.nav-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-btn,
.nav-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-btn {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-accent);
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: var(--gradient-hover);
    box-shadow: 0 5px 25px rgba(131, 56, 236, 0.5);
    color: white;
}

.nav-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.nav-btn-whatsapp:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #26e670, #159e8c);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 56, 236, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--border);
    border-color: var(--primary-light);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* Hero Section Split Layout & App Mockup */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* Hero Left Column */
.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(131, 56, 236, 0.12);
    border: 1px solid rgba(131, 56, 236, 0.4);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

/* Metrics Row */
.hero-stats-row {
    display: flex;
    gap: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 6px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Right Column Mockup Window */
.hero-right-mockup {
    position: relative;
}

.mockup-wrapper {
    position: relative;
    padding: 20px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(20, 20, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-top-left {
    top: -10px;
    left: -15px;
}

.badge-top-right {
    top: 25px;
    right: -10px;
}

.badge-mid-right {
    top: 52%;
    right: -25px;
    animation-delay: 1.5s;
}

.badge-bottom-left {
    bottom: -10px;
    left: 20px;
    animation-delay: 2.5s;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4757;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* Mockup Window Styling */
.mockup-window {
    background: linear-gradient(180deg, rgba(28, 28, 50, 0.95) 0%, rgba(14, 14, 28, 0.95) 100%);
    border: 2px solid rgba(131, 56, 236, 0.35);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(131, 56, 236, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.mockup-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(131, 56, 236, 0.35);
}

.mockup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.mockup-header-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-card {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.25) 0%, rgba(58, 134, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.mockup-card:hover {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.45) 0%, rgba(58, 134, 255, 0.3) 100%);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.mockup-icon {
    font-size: 1.4rem;
    color: var(--primary-light);
}

.mockup-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mockup-player-bar {
    background: rgba(10, 10, 20, 0.8);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.player-play-btn {
    background: var(--gradient);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(131, 56, 236, 0.5);
}

/* Cards & High-End Pricing Layout */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pricing-card {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(16, 16, 28, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: 35px 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(131, 56, 236, 0.2);
}

.pricing-card-featured {
    border: 2px solid var(--primary) !important;
    background: linear-gradient(180deg, rgba(37, 37, 69, 0.95) 0%, rgba(18, 18, 35, 0.95) 100%);
    box-shadow: 0 0 35px rgba(131, 56, 236, 0.35);
}

.pricing-card-featured:hover {
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 50px rgba(131, 56, 236, 0.5);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(131, 56, 236, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}

.pricing-plan-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pricing-card-featured .pricing-plan-title {
    color: var(--primary-light);
}

/* Interactive Device Switcher */
.device-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 4px;
    margin: 12px 0 20px;
    gap: 4px;
    justify-content: space-between;
}

.device-btn {
    flex: 1;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 8px 6px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    font-family: inherit;
}

.device-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.device-btn.active {
    background: var(--gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(131, 56, 236, 0.4);
    font-weight: 700;
}

.pricing-plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 25px;
}

.pricing-plan-currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-light);
    vertical-align: super;
    margin-right: 2px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

.pricing-features-list .check-icon {
    color: var(--primary-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-card-featured .pricing-features-list .check-icon {
    color: var(--success);
}

/* Free Trial Banner Section (Matching image_8.png layout in brand theme) */
.trial-banner-container,
.free-trial-banner {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 15px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(18, 18, 28, 0.95) 100%);
    border: 1px solid rgba(131, 56, 236, 0.35);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(131, 56, 236, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trial-banner-container:hover {
    border-color: rgba(131, 56, 236, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 35px rgba(131, 56, 236, 0.25);
}

.trial-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.trial-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(131, 56, 236, 0.15);
    border: 1px solid rgba(131, 56, 236, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--warning);
    flex-shrink: 0;
}

.trial-banner-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1.2;
}

.trial-banner-subheading {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.5;
}

.trial-banner-action {
    flex-shrink: 0;
}

.btn-trial-banner {
    background: var(--gradient);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(131, 56, 236, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-trial-banner:hover {
    transform: translateY(-2px);
    background: var(--gradient-hover);
    box-shadow: 0 8px 30px rgba(131, 56, 236, 0.6);
    color: #ffffff;
}

/* Device Compatibility Section */
.compatibility-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(131, 56, 236, 0.4);
    background: rgba(131, 56, 236, 0.1);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.compatibility-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.compatibility-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 35px rgba(131, 56, 236, 0.35);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(37, 37, 69, 0.98) 100%);
}

.compatibility-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 18px;
    transition: var(--transition);
}

.compatibility-card:hover .compatibility-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.compatibility-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.compatibility-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Trust & Authority Section */
.trust-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(131, 56, 236, 0.4);
    background: rgba(131, 56, 236, 0.1);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 35px rgba(131, 56, 236, 0.35);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(37, 37, 69, 0.98) 100%);
}

.trust-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(6, 214, 160, 0.4);
    background: rgba(6, 214, 160, 0.1);
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(131, 56, 236, 0.12);
    border: 1px solid rgba(131, 56, 236, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 18px;
    transition: var(--transition);
}

.trust-card:hover .trust-icon-box {
    transform: scale(1.08);
    border-color: var(--primary-light);
    color: var(--secondary);
}

.trust-platform-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.trust-stars {
    color: var(--warning);
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
    margin-bottom: 22px;
}

.trust-quote-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 20px 18px;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: auto;
    width: 100%;
    transition: var(--transition);
}

.trust-card:hover .trust-quote-box {
    border-color: rgba(131, 56, 236, 0.3);
    background: rgba(131, 56, 236, 0.05);
}

/* User Reviews / Testimonials Section */
.reviews-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(131, 56, 236, 0.4);
    background: rgba(131, 56, 236, 0.1);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 35px rgba(131, 56, 236, 0.35);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(37, 37, 69, 0.98) 100%);
}

.review-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.review-quote-icon {
    font-size: 3rem;
    line-height: 0.8;
    font-family: Georgia, serif;
    color: var(--primary-light);
    opacity: 0.6;
    font-weight: 700;
}

.review-stars {
    color: var(--warning);
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.review-body {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 26px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(131, 56, 236, 0.35);
    flex-shrink: 0;
}

.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.review-user-location {
    font-size: 0.82rem;
    color: var(--text-dim);
    display: block;
    margin-top: 2px;
}

/* FAQ Accordion Section */
.faq-accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(37, 37, 69, 0.98) 100%);
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.25);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 15px;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--primary-light);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

/* Technology / Service Explained Section */
.tech-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(58, 134, 255, 0.4);
    background: rgba(58, 134, 255, 0.1);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 38px 28px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.tech-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: 0 12px 35px rgba(58, 134, 255, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(30, 40, 75, 0.98) 100%);
}

.tech-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background: rgba(58, 134, 255, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(58, 134, 255, 0.2);
}

.tech-card:hover .tech-icon-circle {
    transform: scale(1.1);
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(58, 134, 255, 0.5);
}

.tech-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
}

.tech-card-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.tech-cta-btn {
    margin-top: 24px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    padding: 14px 20px;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--secondary), #2563eb);
    border: none;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.tech-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.5);
    color: #ffffff;
}

/* Hot Player Showcase Section */
.hotplayer-section {
    position: relative;
    padding: 90px 0;
    background: rgba(18, 18, 28, 0.6);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hotplayer-badge-top {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(131, 56, 236, 0.4);
    background: rgba(131, 56, 236, 0.1);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hotplayer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 45px;
}

/* Left side preview & floating badge */
.hotplayer-preview-container {
    position: relative;
    width: 100%;
}

.hotplayer-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: var(--transition);
}

.hotplayer-preview-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow: 0 25px 60px rgba(131, 56, 236, 0.25);
}

.hotplayer-preview-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    object-fit: cover;
}

/* Overlapping Floating Badge */
.hotplayer-badge {
    position: absolute;
    bottom: -25px;
    right: -15px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.96) 0%, rgba(37, 37, 69, 0.96) 100%);
    border: 1px solid rgba(131, 56, 236, 0.4);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(131, 56, 236, 0.2);
    z-index: 5;
    max-width: 320px;
}

.hotplayer-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06d6a0, #11998e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(6, 214, 160, 0.4);
}

.hotplayer-badge-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.hotplayer-badge-info p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 3px;
}

.hotplayer-badge-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
}

/* Right side content & 2x2 grid */
.hotplayer-content-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

.hotplayer-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.hotplayer-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.hotplayer-feature-card:hover {
    border-color: rgba(58, 134, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.15);
}

.hotplayer-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(58, 134, 255, 0.12);
    border: 1px solid rgba(58, 134, 255, 0.25);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hotplayer-feature-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.hotplayer-feature-info p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0;
}

/* Action buttons */
.hotplayer-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-hotplayer-primary {
    background: linear-gradient(135deg, #06d6a0, #00bbf9);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.35);
}

.btn-hotplayer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.5);
    color: #ffffff;
}

.btn-hotplayer-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-hotplayer-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Installation Guide Page Styles */
.guide-notice-banner {
    background: rgba(131, 56, 236, 0.08);
    border: 1px solid rgba(131, 56, 236, 0.25);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.guide-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.guide-notice-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(131, 56, 236, 0.2);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.guide-notice-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.guide-notice-body {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

/* Device Grid (5 columns x 2 rows = 10 cards) */
.guide-device-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.guide-device-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 20px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-device-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 35px rgba(131, 56, 236, 0.35);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(37, 37, 69, 0.98) 100%);
}

.guide-device-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(131, 56, 236, 0.12);
    border: 1px solid rgba(131, 56, 236, 0.25);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.guide-device-card:hover .guide-device-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(131, 56, 236, 0.5);
}

.guide-device-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.guide-device-subtext {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Troubleshooting Tips Section */
.troubleshoot-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.troubleshoot-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.troubleshoot-item:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateX(4px);
}

.troubleshoot-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(131, 56, 236, 0.12);
    border: 1px solid rgba(131, 56, 236, 0.3);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.troubleshoot-content {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.troubleshoot-content strong {
    color: var(--text-main);
}

/* 2-Column FAQ Grid for Quick Answers */
.guide-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Interactive Tutorial Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 16, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 650px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

/* Tooltips & Glass */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 14px;
}

/* Mobile Nav Toggle (Hidden by default) */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Utilities */
/* Category Sliders & Carousels */
.slider-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.slider-section .container {
    overflow: hidden;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.slider-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-nav-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(131, 56, 236, 0.5);
}

/* Continuous Linear Marquee Animation Setup & Physics */
@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* GPU Acceleration & Performance Optimization for Marquees */
.carousel-track,
.carousel-card,
.slider-container,
.content-card {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slider-container,
.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 26s linear infinite;
    padding: 15px 5px 30px;
    cursor: pointer;
}

/* Hover Behavior: Pause Marquee Smoothly on Hover */
.slider-container:hover,
.carousel-track:hover,
.slider-container.paused,
.carousel-track.paused {
    animation-play-state: paused;
}

.slider-container::-webkit-scrollbar,
.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Base Poster Card (2:3 Aspect Ratio for Movies & Series) */
.content-card,
.carousel-card {
    min-width: 270px;
    width: 270px;
    height: 405px; /* Sleek 2:3 Aspect Ratio */
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 37, 69, 0.95) 0%, rgba(18, 18, 35, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 700ms cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

/* Sports Poster Card (16:9 Aspect Ratio) */
.card-sports {
    min-width: 360px;
    width: 360px;
    height: 202px; /* Sleek 16:9 Aspect Ratio */
}

.content-card:hover,
.carousel-card:hover {
    transform: translateY(-8px) scale(1.02) translateZ(0);
    border-color: var(--primary-light);
    box-shadow: 0 18px 45px rgba(131, 56, 236, 0.45);
}

.content-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.content-card:hover img {
    transform: scale(1.08);
}

/* Bottom Overlay & Typography (No Top Icons!) */
.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 18px 20px;
    background: linear-gradient(to top, rgba(8, 8, 16, 0.96) 0%, rgba(8, 8, 16, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
    z-index: 2;
    opacity: 1 !important;
}

.content-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.content-meta {
    font-size: 0.82rem;
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
    .compatibility-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .guide-device-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .trust-grid,
    .reviews-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .guide-device-grid,
    .guide-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hotplayer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hotplayer-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin: -20px auto 0;
        max-width: 100%;
    }
    .hero {
        padding: 110px 0 60px;
        min-height: auto;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .hero-left-content {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 868px) {
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trial-banner-container,
    .free-trial-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        gap: 20px;
    }

    .trial-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .trial-banner-action {
        width: 100%;
    }

    .btn-trial-banner {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Header Navigation Bar Mobile Alignment */
    header .container {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }

    nav {
        gap: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.1rem;
        gap: 6px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-btn-wrapper {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
    }

    .nav-btn,
    .nav-btn-whatsapp {
        padding: 8px 12px;
        font-size: 0.82rem;
        border-radius: var(--radius-full);
    }

    .mobile-toggle {
        display: block;
        flex-shrink: 0;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Section Vertical Stacking & Layout Fixes */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
        display: block;
        overflow-x: hidden;
    }

    .hero-split-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
        width: 100%;
    }

    .hero-left-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Top Tag Badge Pill Optimization */
    .hero-tag-badge {
        max-width: 100%;
        width: fit-content;
        box-sizing: border-box;
        font-size: 0.78rem;
        padding: 6px 14px;
        line-height: 1.4;
        white-space: normal;
        word-break: break-word;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.75rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 25px;
        max-width: 100%;
    }

    /* CTA Buttons Full Width Vertical Stacking */
    .hero-cta-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch;
        margin-bottom: 35px;
    }

    .hero-cta-group .hero-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    /* Metrics Row Grid Stacking */
    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        padding-top: 25px;
        width: 100%;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Mock-up Player Card Container & Floating Badges */
    .hero-right-mockup {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 10px;
    }

    .mockup-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px 0;
    }

    .mockup-window {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        transform: none !important;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .mockup-window:hover {
        transform: none !important;
    }

    /* Floating Badges Repositioning & Scaling for Mobile */
    .floating-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
        gap: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        max-width: calc(100% - 20px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .badge-top-left {
        top: -10px;
        left: 5px;
        right: auto;
    }

    .badge-top-right {
        top: -10px;
        right: 5px;
        left: auto;
    }

    .badge-mid-right {
        display: none; /* Hide non-essential decorative badge on mobile */
    }

    .badge-bottom-left {
        bottom: -10px;
        left: 10px;
        right: auto;
    }
}

@media (max-width: 600px) {
    .trust-grid,
    .reviews-grid,
    .tech-grid,
    .guide-device-grid,
    .guide-faq-grid,
    .hotplayer-features-grid {
        grid-template-columns: 1fr;
    }
    .hotplayer-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-hotplayer-primary,
    .btn-hotplayer-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 0 10px;
    }

    nav {
        gap: 6px;
    }

    .logo {
        font-size: 1rem;
        gap: 4px;
    }

    .nav-btn-wrapper {
        gap: 4px;
    }

    .nav-btn,
    .nav-btn-whatsapp {
        padding: 6px 9px;
        font-size: 0.75rem;
    }

    .floating-badge {
        font-size: 0.68rem;
        padding: 4px 8px;
    }

    .badge-top-left {
        top: -12px;
        left: 2px;
    }

    .badge-top-right {
        top: -12px;
        right: 2px;
    }

    .badge-bottom-left {
        bottom: -12px;
        left: 5px;
    }
}

/* Global Ambient Starfield & Tech Grid Canvas */
#global-ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.65;
    background: transparent;
}

/* Floating Currency Switcher Widget */
#currency-switcher {
    position: fixed;
    right: 0;
    top: 180px; /* Sits cleanly below the top navigation bar */
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: inherit;
}

#currency-switcher .currency-trigger {
    background: #0d1117;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-right: none;
    border-radius: 20px 0 0 20px;
    padding: 6px 14px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: -2px 4px 12px rgba(0,0,0,0.5);
    outline: none;
    transition: all 0.2s ease;
}

#currency-switcher .currency-trigger:hover,
#currency-switcher .currency-trigger:focus-visible {
    border-color: rgba(0, 212, 255, 0.6);
    background: #121824;
}

#currency-switcher .currency-trigger .curr-prefix {
    opacity: 0.6;
}

#currency-switcher .currency-trigger .curr-symbol {
    color: #00d4ff;
}

#currency-switcher .currency-trigger .curr-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
}

#currency-switcher.open .currency-trigger .curr-arrow {
    transform: rotate(180deg);
}

#currency-switcher .currency-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 8px;
    width: 170px;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#currency-switcher .currency-dropdown[hidden] {
    display: none !important;
}

#currency-switcher .currency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #a0aec0;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
}

#currency-switcher .currency-option .option-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

#currency-switcher .currency-option .curr-prefix {
    opacity: 0.6;
}

#currency-switcher .currency-option .curr-symbol {
    color: #00d4ff;
}

#currency-switcher .currency-option .curr-check {
    color: #00d4ff;
    font-weight: bold;
    visibility: hidden;
}

#currency-switcher .currency-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

#currency-switcher .currency-option.active {
    background: rgba(0, 212, 255, 0.1);
    color: #fff;
}

#currency-switcher .currency-option.active .curr-check {
    visibility: visible;
}

.slider-category-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Structured Section Showcase Banners */
.showcase-banner {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.showcase-banner .showcase-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2.5rem; /* Exact 2.5rem size matching all main section headings */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.25;
}

.showcase-banner .showcase-body {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

.showcase-banner .brand-name {
    color: #ffffff;
    font-weight: 600;
}

.showcase-banner .brand-service,
.showcase-banner .brand-quality,
.showcase-banner .brand-provider {
    color: #cbd5e1;
}

/* Redesigned Glassmorphism Bottom CTA Section */
.bottom-cta-section {
    padding: 80px 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.bottom-cta-card {
    background: linear-gradient(180deg, #18182a, #0e0e18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(131, 56, 236, 0.35);
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.bottom-cta-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.4), rgba(58, 134, 255, 0.2), transparent);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.75;
}

.bottom-cta-card:hover {
    border-color: rgba(131, 56, 236, 0.6);
    box-shadow: 0 25px 70px rgba(131, 56, 236, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

/* Top Pill Badge */
.bottom-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 18px;
    background: rgba(131, 56, 236, 0.15);
    border: 1px solid rgba(131, 56, 236, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00f0ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.bottom-cta-badge .badge-icon {
    color: #ffd166;
}

/* Main Heading */
.bottom-cta-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

.bottom-cta-title .brand-name {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Body Copy */
.bottom-cta-body {
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 32px auto;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 400;
    text-align: center;
}

.bottom-cta-body .brand-name {
    color: #ffffff;
    font-weight: 600;
}

.bottom-cta-body .brand-keyword,
.bottom-cta-body .brand-quality {
    color: #cbd5e1;
    font-weight: 500;
}

/* Action Button */
.bottom-cta-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.bottom-cta-btn {
    padding: 16px 44px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bottom-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(131, 56, 236, 0.6);
}

/* Microcopy Trust Badges */
.bottom-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.9rem;
    color: #a0a0ca;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.bottom-cta-trust .trust-dot {
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .bottom-cta-card {
        padding: 40px 20px;
    }
    .bottom-cta-trust {
        flex-direction: column;
        gap: 6px;
    }
    .bottom-cta-trust .trust-dot {
        display: none;
    }
}

/* 6-Card Features Grid (2 Rows of 3 Cards) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-card .feature-icon {
    font-size: 38px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.feature-card .brand-name {
    color: var(--text-main);
    font-weight: 600;
}

.feature-card .brand-keyword,
.feature-card .brand-quality {
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Ambient Background Light Aura */
#ambient-light-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.04;
    will-change: transform;
    pointer-events: none;
}

.ambient-orb.orb-1 {
    width: 60vw;
    height: 60vh;
    top: -20vh;
    left: -20vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(131, 56, 236, 0.04) 60%, transparent 100%);
    animation: ambientFloatOne 40s ease-in-out infinite alternate;
}

.ambient-orb.orb-2 {
    width: 65vw;
    height: 65vh;
    bottom: -25vh;
    right: -25vw;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(58, 134, 255, 0.04) 60%, transparent 100%);
    animation: ambientFloatTwo 45s ease-in-out infinite alternate;
}

@keyframes ambientFloatOne {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(25vw, 25vh, 0) scale(1.15);
    }
    100% {
        transform: translate3d(35vw, 10vh, 0) scale(0.95);
    }
}

@keyframes ambientFloatTwo {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-25vw, -20vh, 0) scale(1.2);
    }
    100% {
        transform: translate3d(-15vw, -35vh, 0) scale(1);
    }
}

/* ==========================================================================
   Reseller Program Banner Section
   ========================================================================== */
.reseller-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 210, 255, 0.35);
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(0, 210, 255, 0.15));
    color: #00d2ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
    margin-bottom: 15px;
}

.reseller-card-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(131, 56, 236, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Background gradient glow accent */
.reseller-card-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.15) 0%, rgba(0, 210, 255, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.reseller-left-col,
.reseller-right-col {
    position: relative;
    z-index: 1;
}

.reseller-headline {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 60%, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reseller-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 30px;
}

.reseller-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reseller-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
}

.reseller-check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(0, 210, 255, 0.3));
    border: 1px solid rgba(0, 210, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d2ff;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

/* Right Column Action Box */
.reseller-action-box {
    background: rgba(18, 18, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reseller-action-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.reseller-action-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Primary Action Button */
.btn-reseller-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #00d2ff 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    box-shadow: 0 0 25px rgba(131, 56, 236, 0.4), 0 0 15px rgba(0, 210, 255, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-reseller-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(131, 56, 236, 0.6), 0 0 20px rgba(0, 210, 255, 0.5);
    color: #ffffff;
}

/* Divider Line */
.reseller-divider {
    display: flex;
    align-items: center;
    margin: 22px 0;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.reseller-divider::before,
.reseller-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.reseller-divider span {
    padding: 0 14px;
}

/* Contact Buttons Container */
.reseller-contact-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.btn-reseller-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-reseller-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.reseller-microcopy {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Media Queries for Reseller Section */
@media (max-width: 992px) {
    .reseller-card-container {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 36px;
    }

    .reseller-headline {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .reseller-card-container {
        padding: 28px 18px;
    }

    .reseller-action-box {
        padding: 24px 16px;
    }

    .reseller-contact-buttons {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Redesigned Distinct Reseller Page Architectural Styles (reseller.html)
   ========================================================================== */
body.reseller-page-body {
    background-color: var(--bg-deep);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 50px 50px;
}

.section-tag-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: #00d2ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* 1. Asymmetric Hero Section */
.reseller-hero-asymmetric {
    padding-top: 170px;
    padding-bottom: 100px;
}

.asymmetric-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.enterprise-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(0, 210, 255, 0.15));
    border: 1px solid rgba(0, 210, 255, 0.4);
    border-radius: var(--radius-full);
    color: #00d2ff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
    margin-bottom: 25px;
}

.hero-headline-left {
    font-size: 3.3rem;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}

.hero-subheadline-left {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: left;
}

.key-metrics-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(13, 18, 30, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 16px;
    margin-bottom: 35px;
}

.metric-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.metric-badge i {
    color: #00d2ff;
}

.metric-badge strong {
    color: #ffffff;
}

.metric-separator {
    color: rgba(255, 255, 255, 0.2);
}

.hero-action-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-claim-access {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #00d2ff 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    box-shadow: 0 0 30px rgba(131, 56, 236, 0.5), 0 0 15px rgba(0, 210, 255, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.btn-claim-access:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(131, 56, 236, 0.7), 0 0 25px rgba(0, 210, 255, 0.5);
    color: #ffffff;
}

.btn-download-docs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d2ff;
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 210, 255, 0.4);
    padding-bottom: 4px;
}

.btn-download-docs:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* Floating Portal Preview Card */
.floating-portal-card {
    background: rgba(13, 18, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 210, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.floating-portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8338ec, #00d2ff);
}

.portal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #06d6a0;
    box-shadow: 0 0 12px #06d6a0;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #e2e8f0;
}

.portal-version {
    font-size: 0.75rem;
    background: rgba(131, 56, 236, 0.2);
    color: #9b5de5;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.portal-dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 20px;
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.m-title {
    font-size: 0.82rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.m-icon {
    color: #00d2ff;
    font-size: 0.9rem;
}

.metric-value {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.metric-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 4px;
}

.dashboard-action-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.quick-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 210, 255, 0.05);
    border: 1px dashed rgba(0, 210, 255, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.badge-action {
    background: rgba(131, 56, 236, 0.3);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.badge-active {
    background: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.portal-card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
}

/* 2. Vertical Staggered Timeline Roadmap */
.staggered-timeline-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(131, 56, 236, 0.6) 0%, rgba(0, 210, 255, 0.6) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left {
    justify-content: flex-start;
}

.timeline-right {
    justify-content: flex-end;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #090d16;
    border: 2px solid #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #ffffff;
    z-index: 2;
}

.timeline-content-card {
    width: 44%;
    background: rgba(13, 18, 30, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.timeline-content-card:hover {
    border-color: rgba(131, 56, 236, 0.6);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(131, 56, 236, 0.2);
    transform: translateY(-4px);
}

.phase-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #00d2ff;
    margin-bottom: 10px;
}

.phase-heading {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.phase-description {
    color: #94a3b8;
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.phase-perk {
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phase-perk i {
    color: #06d6a0;
}

/* 3. Distinct Pricing Cards Grid & Elevated Apex Card */
.distinct-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.distinct-tier-card {
    background: rgba(13, 18, 30, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.distinct-tier-card:hover {
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 210, 255, 0.15);
}

.apex-featured-card {
    background: rgba(16, 20, 36, 0.9);
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(16, 20, 36, 0.95), rgba(16, 20, 36, 0.95)), linear-gradient(135deg, #8338ec, #00d2ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(131, 56, 236, 0.35);
    z-index: 2;
}

.apex-recommended-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #00d2ff 100%);
    color: #ffffff;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    white-space: nowrap;
}

.distinct-tier-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.distinct-tier-subtitle {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 24px;
    min-height: 42px;
}

.distinct-price-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.d-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d2ff;
    vertical-align: top;
    margin-right: 2px;
}

.d-amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    line-height: 1;
}

.d-unit {
    display: inline-block;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 6px;
}

.distinct-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
    text-align: left;
}

.distinct-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.94rem;
}

.distinct-feature-list li i {
    color: #00d2ff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.btn-tier-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-vanguard, .btn-titan {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.35);
    color: #ffffff;
}

.btn-vanguard:hover, .btn-titan:hover {
    background: rgba(0, 210, 255, 0.15);
    border-color: #00d2ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-apex {
    background: linear-gradient(135deg, var(--primary) 0%, #00d2ff 100%);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(131, 56, 236, 0.4), 0 0 15px rgba(0, 210, 255, 0.3);
}

.btn-apex:hover {
    box-shadow: 0 0 35px rgba(131, 56, 236, 0.6), 0 0 25px rgba(0, 210, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* 4. 2-Column FAQ Grid Layout */
.faq-two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-grid-card {
    background: rgba(13, 18, 30, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.faq-grid-card:hover {
    border-color: rgba(131, 56, 236, 0.5);
    transform: translateY(-3px);
}

.faq-card-full-span {
    grid-column: span 2;
}

.faq-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.faq-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(0, 210, 255, 0.2));
    border: 1px solid rgba(0, 210, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d2ff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.faq-card-body p {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Media Queries for Redesigned Reseller Page */
@media (max-width: 992px) {
    .asymmetric-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-headline-left {
        font-size: 2.5rem;
    }

    .timeline-center-line {
        left: 24px;
    }

    .timeline-node {
        left: 24px;
    }

    .timeline-item {
        justify-content: flex-end;
    }

    .timeline-content-card {
        width: calc(100% - 65px);
    }

    .distinct-pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apex-featured-card {
        transform: none;
    }

    .faq-two-column-grid {
        grid-template-columns: 1fr;
    }

    .faq-card-full-span {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .hero-headline-left {
        font-size: 2rem;
    }

    .key-metrics-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .metric-separator {
        display: none;
    }

    .hero-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-claim-access {
        width: 100%;
        justify-content: center;
    }
}








