/**
 * CoralBold Theme - Modern Glassmorphism Design
 * Colors: Coral (#FF6B4A), Charcoal (#1A1A2E), Cream (#FFF8F5)
 */

/* =====================================================
   Font Display - Ensure text visible during font load
   ===================================================== */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

/* =====================================================
   CSS Variables & Root
   ===================================================== */
:root {
    /* Primary Colors */
    --coral: #FF6B4A;
    --coral-light: #FF8A70;
    --coral-dark: #E55A3A;
    --coral-glow: rgba(255, 107, 74, 0.4);
    
    /* Secondary Colors */
    --charcoal: #1A1A2E;
    --charcoal-light: #2D2D44;
    --charcoal-dark: #12121F;
    
    /* Neutral Colors */
    --cream: #FFF8F5;
    --cream-dark: #F5EDE8;
    --white: #FFFFFF;
    --gray-100: #F7F7F9;
    --gray-200: #E9E9ED;
    --gray-300: #D1D1D9;
    --gray-400: #9E9EAD;
    --gray-500: #6B6B7B;
    --gray-600: #4A4A5A;
    
    /* Accent Colors */
    --peach: #FFB199;
    --mint: #7FDBCA;
    --lavender: #B8A9FF;
    --gold: #FFD93D;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(26, 26, 46, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(26, 26, 46, 0.1);
    
    /* Typography */
    --font-display: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables */
[data-scheme="dark"] {
    --cream: #1A1A2E;
    --cream-dark: #12121F;
    --white: #2D2D44;
    --gray-100: #2D2D44;
    --gray-200: #3D3D54;
    --gray-400: #B8B8C8;
    --gray-500: #C5C5D5;
    --gray-600: #E5E5ED;
    --charcoal: #1A1A2E;
    --glass-bg: rgba(45, 45, 68, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Dark Mode - Global Text Colors */
[data-scheme="dark"] h1,
[data-scheme="dark"] h2,
[data-scheme="dark"] h3,
[data-scheme="dark"] h4,
[data-scheme="dark"] h5,
[data-scheme="dark"] h6 {
    color: #FFFFFF !important;
}

[data-scheme="dark"] p,
[data-scheme="dark"] span,
[data-scheme="dark"] li {
    color: #C5C5D5;
}

[data-scheme="dark"] .text-muted {
    color: #9E9EAD !important;
}

/* =====================================================
   Google Font Import
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Cabinet Grotesk Fallback (using Inter with adjusted weights) */
@font-face {
    font-family: 'Cabinet Grotesk';
    src: local('Inter');
    font-weight: 100 900;
    font-display: swap;
}

/* =====================================================
   Base Styles
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[data-scheme="dark"] body {
    background-color: var(--charcoal);
    color: #E5E5ED;
}

/* Dark Mode - Hero Section */
[data-scheme="dark"] .hero-coral {
    background: linear-gradient(180deg, #1A1A2E 0%, #12121F 100%);
}

[data-scheme="dark"] .hero-title {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .hero-subtitle {
    color: #C5C5D5 !important;
}

[data-scheme="dark"] .hero-badge {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    color: #FFFFFF;
}

[data-scheme="dark"] .hero-badge span {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .hero-badge strong {
    color: #FF8A70 !important;
}

[data-scheme="dark"] .floating-card {
    background: rgba(45, 45, 68, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-scheme="dark"] .floating-card .card-label {
    color: #9E9EAD;
}

[data-scheme="dark"] .floating-card .card-value {
    color: #FFFFFF !important;
}

/* Dark Mode - Section Headers */
[data-scheme="dark"] .section-title {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .section-subtitle {
    color: #B8B8C8 !important;
}

[data-scheme="dark"] .section-label {
    color: var(--coral);
}

/* Dark Mode - Feature Cards */
[data-scheme="dark"] .feature-card {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .feature-card h3,
[data-scheme="dark"] .feature-card-title {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .feature-card p,
[data-scheme="dark"] .feature-card-desc {
    color: #B8B8C8 !important;
}

[data-scheme="dark"] .feature-list li {
    color: #C5C5D5 !important;
}

[data-scheme="dark"] .feature-list li i {
    color: var(--coral);
}

/* Dark Mode - Stats Section */
[data-scheme="dark"] .social-proof-section {
    background: linear-gradient(180deg, #12121F 0%, #1A1A2E 100%);
}

[data-scheme="dark"] .social-proof-header h3 {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .social-proof-header .highlight {
    color: var(--coral) !important;
}

[data-scheme="dark"] .stat-number {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .stat-label {
    color: #9E9EAD !important;
}

/* Dark Mode - How It Works */
[data-scheme="dark"] .step-title {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .step-description {
    color: #B8B8C8 !important;
}

[data-scheme="dark"] .step-icon {
    background: rgba(255, 107, 74, 0.15);
}

/* Dark Mode - FAQ Section */
[data-scheme="dark"] .faq-question,
[data-scheme="dark"] .faq-question span {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .faq-answer {
    color: #C5C5D5 !important;
}

/* Dark Mode - CTA Section */
[data-scheme="dark"] .cta-section h2 {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .cta-section p {
    color: #C5C5D5 !important;
}

/* Dark Mode - Footer */
[data-scheme="dark"] .footer-coral {
    background: #12121F;
}

[data-scheme="dark"] .footer-description {
    color: #9E9EAD !important;
}

[data-scheme="dark"] .footer-title {
    color: #FFFFFF !important;
}

[data-scheme="dark"] .footer-links a {
    color: #B8B8C8;
}

[data-scheme="dark"] .footer-links a:hover {
    color: var(--coral);
}

[data-scheme="dark"] .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
    color: #9E9EAD;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.display-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.03em;
}

.display-lg {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
}

.display-md {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 50%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-coral { color: var(--coral) !important; }
.text-charcoal { color: var(--charcoal) !important; }
.text-muted { color: var(--gray-500) !important; }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px var(--coral-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--coral-glow);
    color: white;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--charcoal);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

[data-scheme="dark"] .btn-secondary {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--coral);
    color: var(--coral);
}

[data-scheme="dark"] .btn-secondary:hover {
    background: #FFFFFF;
    color: var(--coral);
}

.btn-outline {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}

.btn-outline:hover {
    background: var(--coral);
    color: white;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar-coral {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar-coral.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    padding: 12px 0;
}

[data-scheme="dark"] .navbar-coral.scrolled {
    background: var(--glass-bg-dark);
}

.navbar-coral .navbar-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--charcoal);
    text-decoration: none;
}

[data-scheme="dark"] .navbar-coral .navbar-brand {
    color: #FFFFFF;
}

.navbar-coral .navbar-brand img {
    height: 36px;
    width: auto;
}

/* Logo switching for dark/light mode */
.navbar-coral .navbar-brand .logo-light {
    display: none;
}

.navbar-coral .navbar-brand .logo-dark {
    display: inline-block;
}

[data-scheme="light"] .navbar-coral .navbar-brand .logo-dark {
    display: none;
}

[data-scheme="light"] .navbar-coral .navbar-brand .logo-light {
    display: inline-block;
}

.navbar-coral .nav-link {
    color: var(--gray-600);
    font-weight: 500;
    padding: 8px 16px;
    transition: color var(--transition-fast);
}

[data-scheme="dark"] .navbar-coral .nav-link {
    color: #C5C5D5;
}

.navbar-coral .nav-link:hover {
    color: var(--coral);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dark-mode-toggle .dark-icon,
.dark-mode-toggle .light-icon {
    position: absolute;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Light mode: show moon, hide sun */
[data-scheme="light"] .dark-mode-toggle .dark-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-scheme="light"] .dark-mode-toggle .light-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Dark mode: show sun, hide moon */
[data-scheme="dark"] .dark-mode-toggle .dark-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-scheme="dark"] .dark-mode-toggle .light-icon {
    opacity: 1;
    transform: rotate(0deg);
    color: var(--gold);
}

.dark-mode-toggle:hover .dark-icon,
.dark-mode-toggle:hover .light-icon {
    color: var(--coral);
}

.navbar-coral .dropdown-menu {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    padding: 12px;
    margin-top: 8px;
}

[data-scheme="dark"] .navbar-coral .dropdown-menu {
    background: var(--glass-bg-dark);
}

.navbar-coral .dropdown-item {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    color: var(--gray-600);
}

[data-scheme="dark"] .navbar-coral .dropdown-item {
    color: #C5C5D5;
}

.navbar-coral .dropdown-item:hover {
    background: rgba(255, 107, 74, 0.1);
    color: var(--coral);
}

.navbar-coral .dropdown-item .dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    flex-shrink: 0;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    position: relative;
    display: block;
}

[data-scheme="dark"] .navbar-toggler-icon {
    background: var(--white);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: inherit;
    left: 0;
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { bottom: -7px; }

/* =====================================================
   Hero Section
   ===================================================== */
.hero-coral {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Animated Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--mint) 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--gold) 100%);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    opacity: 0.1;
}

.geo-shape-1 {
    width: 200px;
    height: 200px;
    border: 3px solid var(--coral);
    border-radius: var(--radius-lg);
    top: 20%;
    right: 10%;
    transform: rotate(45deg);
    animation: spin-slow 30s linear infinite;
}

.geo-shape-2 {
    width: 100px;
    height: 100px;
    background: var(--coral);
    border-radius: var(--radius-md);
    bottom: 20%;
    left: 5%;
    animation: bounce-slow 4s ease-in-out infinite;
}

.geo-shape-3 {
    width: 60px;
    height: 60px;
    border: 3px solid var(--mint);
    border-radius: 50%;
    top: 40%;
    left: 15%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes spin-slow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.25);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 24px;
}

.hero-badge span {
    color: #1A1A2E;
}

.hero-badge strong {
    color: #9A3412;
    font-weight: 700;
}

.hero-badge i {
    color: #C54B2A;
}

.quick-link {
    color: #C54B2A;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.quick-link:hover {
    color: #A33D20;
    text-decoration: underline !important;
}

[data-scheme="dark"] .quick-link {
    color: #FF8A70;
}

[data-scheme="dark"] .quick-link:hover {
    color: #FFB199;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray-500);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* URL Shortener Form */
.shortener-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: var(--glass-shadow);
    max-width: 600px;
}

.shortener-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.shortener-form .form-control {
    flex: 1;
    min-width: 200px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

[data-scheme="dark"] .shortener-form .form-control {
    background: var(--charcoal-light);
    color: #FFFFFF;
}

.shortener-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--coral-glow);
}

.shortener-form .btn-primary {
    white-space: nowrap;
}

/* Result Card */
.result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 16px;
    border: 2px solid var(--mint);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card .result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mint);
    font-weight: 600;
    margin-bottom: 12px;
}

.short-url-display {
    display: flex;
    gap: 8px;
}

.short-url-display input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    font-size: 14px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.phone-frame {
    background: var(--charcoal);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(26, 26, 46, 0.25),
        inset 0 0 0 2px var(--charcoal-light);
}

.phone-screen {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-notch {
    width: 120px;
    height: 30px;
    background: var(--charcoal);
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
}

.phone-content {
    padding: 20px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--glass-shadow);
    animation: float-card 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -2s;
}

.floating-card-3 {
    top: 50%;
    right: -40px;
    animation-delay: -4s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.floating-card .card-icon.coral { background: linear-gradient(135deg, var(--coral), var(--peach)); color: white; }
.floating-card .card-icon.mint { background: linear-gradient(135deg, var(--mint), #5BC4B1); color: white; }
.floating-card .card-icon.lavender { background: linear-gradient(135deg, var(--lavender), #9B8AE8); color: white; }

.floating-card .card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}

.floating-card .card-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--charcoal);
}

[data-scheme="dark"] .floating-card .card-value {
    color: #FFFFFF !important;
}

/* =====================================================
   Features Section
   ===================================================== */
.features-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF !important;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Feature Cards - 3D Effect */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

[data-scheme="dark"] .feature-card {
    background: var(--charcoal-light);
    border-color: var(--charcoal);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--peach));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
}

.feature-icon.coral {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.15), rgba(255, 177, 153, 0.15));
    color: var(--coral);
}

.feature-icon.mint {
    background: linear-gradient(135deg, rgba(127, 219, 202, 0.15), rgba(91, 196, 177, 0.15));
    color: var(--mint);
}

.feature-icon.lavender {
    background: linear-gradient(135deg, rgba(184, 169, 255, 0.15), rgba(155, 138, 232, 0.15));
    color: var(--lavender);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

[data-scheme="dark"] .feature-title {
    color: #FFFFFF !important;
}

.feature-description {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

[data-scheme="dark"] .feature-description {
    color: #B8B8C8 !important;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 15px;
}

[data-scheme="dark"] .feature-list li {
    color: #C5C5D5 !important;
}

.feature-list li i {
    color: var(--coral);
    font-size: 14px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.feature-link:hover {
    gap: 12px;
    color: var(--coral-dark);
}

/* =====================================================
   Social Proof / Marquee Section
   ===================================================== */
.social-proof-section {
    padding: 60px 0;
    background: var(--charcoal);
    overflow: hidden;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-proof-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

.social-proof-header .highlight {
    color: var(--coral);
    font-weight: 700;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 8px;
}

/* Logo Marquee */
.marquee-container {
    position: relative;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.marquee-item:hover {
    color: #FFFFFF;
}

.marquee-item img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) brightness(2);
}

.marquee-item i {
    font-size: 24px;
}

/* =====================================================
   How It Works Section
   ===================================================== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--cream-dark);
}

[data-scheme="dark"] .how-it-works-section {
    background: var(--charcoal-dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

@media (max-width: 991px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Connection Line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), var(--peach), var(--coral));
    opacity: 0.3;
}

@media (max-width: 991px) {
    .steps-container::before {
        display: none;
    }
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px var(--coral-glow);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--coral);
    margin: 0 auto 24px;
    box-shadow: var(--glass-shadow);
}

[data-scheme="dark"] .step-icon {
    background: var(--charcoal-light);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-toggle .toggle-wrapper {
    display: inline-flex;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-full);
}

[data-scheme="dark"] .pricing-toggle .toggle-wrapper {
    background: var(--charcoal-light);
}

.pricing-toggle button {
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--gray-500);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pricing-toggle button.active {
    background: var(--coral);
    color: white;
}

.pricing-toggle .save-badge {
    background: var(--mint);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    height: 100%;
    position: relative;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

[data-scheme="dark"] .pricing-card {
    background: var(--charcoal-light);
    border-color: var(--charcoal);
}

/* 4-column pricing responsive */
@media (min-width: 1200px) {
    .pricing-card {
        padding: 20px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .pricing-card {
        padding: 24px;
    }
}

.pricing-card.featured {
    border-color: var(--coral);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 74, 0.2);
}

.pricing-card:hover:not(.featured) {
    border-color: var(--coral);
    transform: translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--coral);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-500);
}

.plan-price .amount,
.plan-price .price-value {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    color: var(--charcoal);
}

[data-scheme="dark"] .plan-price .amount,
[data-scheme="dark"] .plan-price .price-value {
    color: #FFFFFF !important;
}

.plan-price .period,
.plan-price .price-term {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.plan-description {
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.plan-features {
    margin-bottom: 24px;
    flex-grow: 1;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--coral) var(--gray-200);
}

.plan-features::-webkit-scrollbar {
    width: 4px;
}

.plan-features::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.plan-features::-webkit-scrollbar-thumb {
    background: var(--coral);
    border-radius: 4px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 13px;
}

[data-scheme="dark"] .plan-features li {
    border-color: var(--charcoal);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--coral);
    font-size: 12px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.plan-features li i.fa-infinity {
    color: var(--mint);
}

.plan-features li span {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.3;
}

.plan-features li span strong {
    color: var(--charcoal);
    font-weight: 700;
}

.plan-features li span strong i {
    color: var(--mint);
    font-size: 11px;
}

[data-scheme="dark"] .plan-features li span {
    color: #B8B8C8;
}

[data-scheme="dark"] .plan-features li span strong {
    color: #FFFFFF !important;
}

/* Disabled features */
.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled i {
    color: var(--gray-400);
}

.plan-features li.disabled span {
    text-decoration: line-through;
    color: var(--gray-400);
}

.plan-action {
    text-align: center;
}

.plan-action .btn {
    width: 100%;
}

/* =====================================================
   Tools Showcase Section - Bento Grid Design
   ===================================================== */
.tools-showcase-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF8F5 0%, #FFFFFF 100%);
}

[data-scheme="dark"] .tools-showcase-section {
    background: linear-gradient(180deg, #1A1A2E 0%, #12121F 100%);
}

/* Bento Grid Layout */
.tools-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Bento Card Base */
.bento-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.05);
    transition: all 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.12);
}

[data-scheme="dark"] .bento-card {
    background: #2D2D44;
    border-color: rgba(255, 255, 255, 0.08);
}

/* Card Sizes */
.bento-large {
    grid-column: span 6;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 4;
}

.bento-wide {
    grid-column: span 12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Card Colors */
.bento-coral {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8A70 100%);
    color: white;
}

.bento-coral h3,
.bento-coral p,
.bento-coral li {
    color: white !important;
}

.bento-coral .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
}

.bento-purple h3,
.bento-purple p,
.bento-purple li {
    color: white !important;
}

.bento-purple .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: white;
}

.bento-gold h3,
.bento-gold p,
.bento-gold li {
    color: white !important;
}

.bento-gold .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-mint {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
}

.bento-mint h3,
.bento-mint p,
.bento-mint li {
    color: white !important;
}

.bento-mint .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    color: white;
}

.bento-blue h3,
.bento-blue p,
.bento-blue li {
    color: white !important;
}

.bento-blue .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-dark {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    color: white;
}

.bento-dark h3,
.bento-dark p,
.bento-dark li {
    color: white !important;
}

.bento-dark .bento-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.bento-gradient {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 50%, #FF6B4A 100%);
    color: white;
}

.bento-gradient h3,
.bento-gradient p {
    color: white !important;
}

.bento-gradient .bento-icon {
    background: rgba(255, 107, 74, 0.3);
    color: white;
}

/* Bento Icon */
.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.15), rgba(255, 107, 74, 0.05));
    color: #FF6B4A;
}

/* Bento Content */
.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1A1A2E;
}

[data-scheme="dark"] .bento-card h3 {
    color: #FFFFFF;
}

.bento-card > p {
    font-size: 14px;
    color: #6B6B7B;
    line-height: 1.6;
    margin-bottom: 20px;
}

[data-scheme="dark"] .bento-card > p {
    color: #9E9EAD;
}

/* Bento Features List */
.bento-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #4A4A5A;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-features li:last-child {
    border-bottom: none;
}

[data-scheme="dark"] .bento-features li {
    color: #D1D1D9;
    border-color: rgba(255, 255, 255, 0.05);
}

.bento-features li i {
    font-size: 13px;
    opacity: 0.8;
}

.bento-features.compact li {
    padding: 6px 0;
    font-size: 13px;
}

/* Link Animation */
.bento-decoration {
    margin-top: auto;
    padding-top: 24px;
}

.link-animation {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
}

.link-animation .long-url {
    opacity: 0.7;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-animation .short-url {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 6px;
}

.link-animation i {
    opacity: 0.6;
}

/* QR Preview */
.qr-preview {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
}

.qr-mock {
    width: 80px;
    height: 80px;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 8px,
            transparent 8px,
            transparent 16px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 8px,
            transparent 8px,
            transparent 16px
        );
    border-radius: 8px;
}

/* Bio Mock */
.bio-mock {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.bio-mock-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.bio-mock-btn {
    width: 70px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 7px;
}

/* API Card Content */
.bento-api-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bento-api-content .bento-icon {
    margin-bottom: 0;
}

.bento-api-content h3 {
    margin-bottom: 4px;
}

.bento-api-content p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
}

.api-code-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    flex-shrink: 0;
}

.api-code-block code {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Responsive Bento Grid */
@media (max-width: 1199px) {
    .bento-large {
        grid-column: span 6;
    }
    .bento-medium {
        grid-column: span 6;
    }
    .bento-small {
        grid-column: span 4;
    }
}

@media (max-width: 991px) {
    .bento-large {
        grid-column: span 12;
        grid-row: span 1;
    }
    .bento-medium {
        grid-column: span 6;
        grid-row: span 1;
    }
    .bento-small {
        grid-column: span 6;
    }
    .bento-wide {
        flex-direction: column;
        text-align: center;
    }
    .bento-api-content {
        flex-direction: column;
    }
    .api-code-block {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .tools-showcase-section {
        padding: 60px 0;
    }
    .tools-bento-grid {
        gap: 16px;
    }
    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-wide {
        grid-column: span 12;
    }
    .bento-card {
        padding: 24px;
    }
    .qr-preview,
    .bio-mock {
        display: none;
    }
    .link-animation {
        flex-wrap: wrap;
        justify-content: center;
    }
    .link-animation .long-url {
        display: none;
    }
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--cream-dark);
}

[data-scheme="dark"] .faq-section {
    background: var(--charcoal-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

[data-scheme="dark"] .faq-item {
    background: var(--charcoal-light);
    border-color: var(--charcoal);
}

.faq-item:hover {
    border-color: var(--coral);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2D2D3A;
}

.faq-question span {
    color: #2D2D3A;
}

.faq-question i {
    color: var(--coral);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #4A4A5A;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form .form-control {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form .form-control::placeholder {
    color: var(--gray-400);
}

.cta-form .form-control:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.15);
}

/* =====================================================
   Footer
   ===================================================== */
.footer-coral {
    background: var(--charcoal-dark);
    color: var(--gray-400);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--coral);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 8px;
}

.footer-badges .badge {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.badge-success { background: #059669; color: white; }
.badge-info { background: #6366F1; color: white; }
.badge-warning { background: #D97706; color: white; }

/* =====================================================
   Auth Pages
   ===================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.auth-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

[data-scheme="dark"] .auth-background {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
}

.auth-background .auth-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.auth-background .auth-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--coral);
    top: -200px;
    right: -100px;
}

.auth-background .auth-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--lavender);
    bottom: -100px;
    left: -100px;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
    box-shadow: var(--glass-shadow);
}

[data-scheme="dark"] .auth-card {
    background: var(--glass-bg-dark);
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo img {
    height: 48px;
}

.auth-logo h2 {
    font-size: 1.75rem;
    font-weight: 800;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.auth-form .form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.auth-form .form-control {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: all var(--transition-fast);
}

[data-scheme="dark"] .auth-form .form-control {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #FFFFFF;
}

.auth-form .form-control:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px var(--coral-glow);
}

.auth-form .input-group-text {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-right: none;
    color: var(--gray-500);
}

[data-scheme="dark"] .auth-form .input-group-text {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.social-login {
    margin-bottom: 24px;
}

.social-login-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-fast);
}

.social-btn-facebook { background: #1877F2; color: white; }
.social-btn-google { background: white; color: #4285F4; border: 1px solid var(--gray-200); }
.social-btn-twitter { background: #1DA1F2; color: white; }

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-400);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

[data-scheme="dark"] .auth-divider::before,
[data-scheme="dark"] .auth-divider::after {
    background: var(--charcoal);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-500);
    font-size: 14px;
}

.auth-footer a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* =====================================================
   Loading Screen
   ===================================================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

[data-scheme="dark"] .loading-screen {
    background: var(--charcoal);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    box-shadow: 0 4px 20px var(--coral-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--coral-glow);
}

/* =====================================================
   Utility Classes
   ===================================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08); }
.shadow-md { box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12); }
.shadow-lg { box-shadow: 0 16px 48px rgba(26, 26, 46, 0.16); }

/* =====================================================
   Page Headers
   ===================================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

[data-scheme="dark"] .page-header {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    opacity: 0.05;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--glass-shadow);
}

[data-scheme="dark"] .contact-form-card {
    background: var(--charcoal-light);
}

.contact-info-card {
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: white;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-content p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
}

/* =====================================================
   Error Page
   ===================================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: clamp(8rem, 20vw, 12rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.error-description {
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   Responsive Adjustments
   ===================================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px;
    }
    
    .hero-coral {
        padding: 100px 0 60px;
    }
    
    .phone-mockup {
        margin-top: 60px;
    }
    
    .floating-card {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .navbar-coral .collapse {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid var(--glass-border);
    }
    
    [data-scheme="dark"] .navbar-coral .collapse {
        background: var(--glass-bg-dark);
    }
}

@media (max-width: 767px) {
    .stats-row {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .auth-card {
        padding: 32px 24px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 32px;
    }
}

/* =====================================================
   Animations & Scroll Effects
   ===================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =====================================================
   Blog Section - Modern Magazine Style
   ===================================================== */

/* Blog Header */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
}

[data-scheme="dark"] .blog-header {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
}

.blog-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--charcoal);
}

[data-scheme="dark"] .blog-title {
    color: #FFFFFF;
}

.blog-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

[data-scheme="dark"] .blog-subtitle {
    color: #B8B8C8;
}

/* Blog Navigation */
.blog-nav-section {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

[data-scheme="dark"] .blog-nav-section {
    background: var(--charcoal);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Category Pills */
.blog-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

[data-scheme="dark"] .blog-category-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #C5C5D5;
}

.blog-category-pill:hover,
.blog-category-pill.active {
    background: var(--coral);
    color: white;
}

.blog-category-pill i {
    font-size: 12px;
}

.blog-category-dropdown {
    position: relative;
}

.blog-category-dropdown .dropdown-menu {
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
}

[data-scheme="dark"] .blog-category-dropdown .dropdown-menu {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-category-dropdown .dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

/* Blog Search */
.blog-search-form {
    display: flex;
    gap: 8px;
    min-width: 300px;
}

.blog-search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    font-size: 14px;
}

.blog-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: all var(--transition-fast);
    background: var(--white);
}

[data-scheme="dark"] .blog-search-input {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--coral);
}

.blog-search-btn {
    padding: 12px 24px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.blog-search-btn:hover {
    background: var(--coral-dark);
}

/* Blog Content Section */
.blog-content-section {
    padding: 60px 0 100px;
    background: var(--cream);
}

[data-scheme="dark"] .blog-content-section {
    background: var(--charcoal-dark);
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}

.blog-main {
    min-width: 0;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

[data-scheme="dark"] .blog-card {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
}

[data-scheme="dark"] .blog-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.6) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

/* Blog Card Content */
.blog-card-content {
    padding: 28px;
}

/* Category Badge */
.blog-category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    transition: all var(--transition-fast);
}

.blog-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--coral-glow);
    color: white;
}

.blog-category-badge.small {
    padding: 4px 10px;
    font-size: 10px;
    margin-bottom: 12px;
}

/* Blog Card Title */
.blog-card-title {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

[data-scheme="dark"] .blog-card-title a {
    color: #FFFFFF;
}

.blog-card-title a:hover {
    color: var(--coral);
}

/* Blog Card Excerpt */
.blog-card-excerpt {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[data-scheme="dark"] .blog-card-excerpt {
    color: #9E9EAD;
}

/* Blog Card Meta */
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

[data-scheme="dark"] .blog-card-meta {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Blog Author */
.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-avatar.small {
    width: 32px;
    height: 32px;
}

.blog-author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.blog-author-initial.small {
    font-size: 12px;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
}

.blog-author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
}

[data-scheme="dark"] .blog-author-name {
    color: #FFFFFF;
}

.blog-post-date {
    font-size: 13px;
    color: var(--gray-400);
}

/* Blog Read More */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--coral-dark);
}

/* Featured Blog Card */
.blog-card-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 48px;
}

.blog-card-featured .blog-card-image {
    aspect-ratio: auto;
    min-height: 400px;
}

.blog-card-featured .blog-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-featured .blog-card-title {
    font-size: 1.75rem;
}

.blog-card-featured .blog-card-excerpt {
    -webkit-line-clamp: 4;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.blog-pagination-list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination-list .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

[data-scheme="dark"] .blog-pagination-list .page-item .page-link {
    background: var(--charcoal-light);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-pagination-list .page-item .page-link:hover,
.blog-pagination-list .page-item.active .page-link {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gray-200);
}

[data-scheme="dark"] .blog-empty {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-empty i {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.blog-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

[data-scheme="dark"] .blog-empty h3 {
    color: #FFFFFF;
}

.blog-empty p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* Search Results Count */
.search-results-count {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

[data-scheme="dark"] .search-results-count {
    background: var(--charcoal-light);
    color: #C5C5D5;
    border-color: rgba(255, 255, 255, 0.1);
}

.search-results-count i {
    color: var(--coral);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

/* Sidebar Widget */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
}

[data-scheme="dark"] .sidebar-widget {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--charcoal);
}

[data-scheme="dark"] .sidebar-title {
    color: #FFFFFF;
}

.sidebar-title i {
    color: var(--coral);
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-post-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    padding: 12px;
    margin: -12px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.popular-post-item:hover {
    background: var(--gray-100);
}

[data-scheme="dark"] .popular-post-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.popular-post-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-300);
    min-width: 40px;
    transition: color var(--transition-fast);
}

.popular-post-item:hover .popular-post-number {
    color: var(--coral);
}

.popular-post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.5;
}

[data-scheme="dark"] .popular-post-title {
    color: #C5C5D5;
}

.popular-post-item:hover .popular-post-title {
    color: var(--coral);
}

/* Newsletter Widget */
.sidebar-newsletter {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
    color: white;
    text-align: center;
    border: none;
}

.sidebar-newsletter .newsletter-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-newsletter .newsletter-icon i {
    font-size: 24px;
    color: white;
}

.sidebar-newsletter .sidebar-title {
    color: white;
    justify-content: center;
    margin-bottom: 12px;
}

.sidebar-newsletter p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* =====================================================
   Single Post Styles
   ===================================================== */

/* Post Header */
.post-header {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

[data-scheme="dark"] .post-header {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Breadcrumb */
.post-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.post-breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.post-breadcrumb a:hover {
    color: var(--coral);
}

.post-breadcrumb .separator {
    color: var(--gray-300);
    font-size: 10px;
}

/* Post Category Badge */
.post-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Post Title */
.post-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--charcoal);
}

[data-scheme="dark"] .post-title {
    color: #FFFFFF;
}

/* Post Meta */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.post-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.post-author-info > div {
    text-align: left;
}

.post-author-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
}

[data-scheme="dark"] .post-author-name {
    color: #FFFFFF;
}

.post-date {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
}

/* Share Buttons */
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

[data-scheme="dark"] .share-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #C5C5D5;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.share-btn.copy-link:hover {
    background: var(--coral);
    color: white;
}

/* Featured Image */
.post-featured-image {
    padding: 0 0 40px;
    background: var(--white);
}

[data-scheme="dark"] .post-featured-image {
    background: var(--charcoal-dark);
}

.post-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
}

[data-scheme="dark"] .post-image-wrapper {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.post-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content Section */
.post-content-section {
    padding: 60px 0 100px;
    background: var(--cream);
}

[data-scheme="dark"] .post-content-section {
    background: var(--charcoal-dark);
}

/* Post Layout */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Post Content */
.post-content {
    min-width: 0;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-600);
}

[data-scheme="dark"] .post-content {
    color: #C5C5D5;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--charcoal);
    margin-top: 2em;
    margin-bottom: 0.75em;
    font-weight: 700;
}

[data-scheme="dark"] .post-content h1,
[data-scheme="dark"] .post-content h2,
[data-scheme="dark"] .post-content h3,
[data-scheme="dark"] .post-content h4,
[data-scheme="dark"] .post-content h5,
[data-scheme="dark"] .post-content h6 {
    color: #FFFFFF;
}

.post-content h2 { font-size: 1.75rem; }
.post-content h3 { font-size: 1.375rem; }
.post-content h4 { font-size: 1.125rem; }

.post-content p {
    margin-bottom: 1.5em;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2em 0;
}

.post-content a {
    color: var(--coral);
    text-decoration: underline;
}

.post-content blockquote {
    border-left: 4px solid var(--coral);
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    color: var(--gray-500);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content code {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

[data-scheme="dark"] .post-content code {
    background: rgba(255, 255, 255, 0.1);
}

.post-content pre {
    background: var(--charcoal);
    color: white;
    padding: 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 2em 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

/* Post Sidebar */
.post-sidebar {
    position: relative;
}

.post-sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Quick Actions */
.post-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.quick-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

[data-scheme="dark"] .quick-action-btn {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.1);
    color: #C5C5D5;
}

.quick-action-btn:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

/* Author Card */
.author-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

[data-scheme="dark"] .author-card {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

.author-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-card-avatar.author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-card-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}

[data-scheme="dark"] .author-card-name {
    color: #FFFFFF;
}

.author-card-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* Related Posts */
.related-posts-section {
    padding: 80px 0;
    background: var(--white);
}

[data-scheme="dark"] .related-posts-section {
    background: var(--charcoal);
}

.related-posts-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.related-posts-section .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.related-posts-section .section-subtitle {
    color: var(--gray-500);
    margin-bottom: 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Blog Infinite Scroll Loader */
.blog-infinite-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 24px;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
}

[data-scheme="dark"] .blog-infinite-loader {
    color: #9E9EAD;
}

.loader-spinner {
    position: relative;
    width: 48px;
    height: 48px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gray-200);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

[data-scheme="dark"] .spinner-ring {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--coral);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* End of Posts Message */
.blog-end-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 24px;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
}

[data-scheme="dark"] .blog-end-message {
    color: #7E7E8E;
}

.blog-end-message i {
    font-size: 32px;
    color: var(--mint);
}

/* Blog Responsive */
@media (max-width: 1199px) {
    .blog-layout {
        grid-template-columns: 1fr 280px;
    }
    
    .blog-card-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card-featured .blog-card-image {
        min-height: 300px;
    }
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-nav-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-search-form {
        min-width: 100%;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        display: none;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-header {
        padding: 100px 0 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-category-pill {
        flex-shrink: 0;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-section .section-header {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   Bio Page Styles - Modern Link in Bio Landing Page
   ===================================================== */

/* Bio Hero Section */
.bio-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--charcoal);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.bio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bio-hero-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.bio-hero-bg .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    top: -200px;
    right: -100px;
}

.bio-hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--mint), #00D9FF);
    bottom: -100px;
    left: -100px;
}

.bio-hero-bg .orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bio-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--coral);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 12px;
}

.bio-hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.bio-hero-title .gradient-text {
    background: linear-gradient(135deg, var(--coral), var(--peach), var(--mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Claim Username Form */
.claim-username-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.claim-username-form .input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0 16px;
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
}

.claim-username-form .input-wrapper:focus-within {
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.15);
}

.claim-username-form .url-prefix {
    color: var(--gray-400);
    font-size: 15px;
    white-space: nowrap;
}

.claim-username-form .claim-input {
    background: transparent;
    border: none;
    padding: 16px 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    outline: none;
}

.claim-username-form .claim-input::placeholder {
    color: var(--gray-500);
}

.btn-claim {
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.alias-status {
    font-size: 14px;
    margin-bottom: 20px;
}

.alias-status .status-available {
    color: var(--mint);
}

.alias-status .status-taken {
    color: #EF4444;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 14px;
}

.trust-item i {
    color: var(--mint);
}

/* Bio Hero Visual - Phone Mockup */
.bio-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1A1A2E;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 
                0 30px 60px -30px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #2A2A3E;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1A1A2E;
    border-radius: 20px;
    margin: 0 auto 16px;
}

.phone-screen {
    height: calc(100% - 44px);
    background: linear-gradient(180deg, #1E1E30 0%, #16162A 100%);
    border-radius: 28px;
    overflow: hidden;
}

.bio-preview {
    padding: 24px 16px;
    text-align: center;
}

.bio-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}

.bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--coral);
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    border: 2px solid #1E1E30;
}

.bio-username {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bio-bio {
    color: var(--gray-400);
    font-size: 12px;
    margin-bottom: 20px;
}

.bio-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bio-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bio-link-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.bio-link-item i:first-child {
    font-size: 16px;
    width: 20px;
}

.bio-link-item span {
    flex: 1;
    text-align: left;
}

.bio-link-item i:last-child {
    font-size: 10px;
    opacity: 0.5;
}

.bio-link-item.featured {
    background: linear-gradient(135deg, var(--coral), var(--peach));
}

.bio-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.bio-social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bio-social-icons a:hover {
    background: var(--coral);
    transform: scale(1.1);
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: #FFFFFF !important;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-stat.stat-views {
    top: 60px;
    right: -20px;
    animation-delay: 0s;
}

.floating-stat.stat-clicks {
    bottom: 100px;
    left: -20px;
    animation-delay: 3s;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.floating-stat .stat-content {
    display: flex;
    flex-direction: column;
}

.floating-stat .stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e !important;
    line-height: 1.2;
}

.floating-stat .stat-label {
    font-size: 13px;
    color: #666666 !important;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Social Proof Section */
.bio-social-proof {
    background: var(--charcoal-light);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof-content {
    text-align: center;
}

.proof-label {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 15px;
    font-weight: 500;
}

.platform-logo i {
    font-size: 20px;
    color: var(--gray-500);
}

/* Bio Features Section */
.bio-features {
    padding: 100px 0;
    background: var(--charcoal);
}

.bio-features .section-header {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bio-features .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.bio-features .feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
}

.bio-features .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 158, 128, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bio-features .feature-icon i {
    font-size: 24px;
    color: var(--coral);
}

.bio-features .feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.bio-features .feature-desc {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Use Cases Section */
.bio-use-cases {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

html[data-scheme="light"] .use-case-card {
    background: #FFFFFF !important;
    border-color: #E5E5E7 !important;
}

.use-case-card.original-cont {
    overflow: hidden;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 107, 0.3);
}

.use-case-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-image.creators-bg {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.use-case-image.business-bg {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.use-case-image.artists-bg {
    background: linear-gradient(135deg, #3ECF8E, #10B981);
}

.use-case-emoji {
    font-size: 56px;
}

.use-case-content {
    padding: 28px;
}

.use-case-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

html[data-scheme="light"] .use-case-content h3 {
    color: #1A1A2E !important;
}

.use-case-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

html[data-scheme="light"] .use-case-content p {
    color: #6B7280 !important;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 14px;
    padding: 8px 0;
}

.use-case-features li i {
    color: var(--mint);
    font-size: 12px;
}

/* Widgets Showcase Section */
.bio-widgets-showcase {
    padding: 100px 0;
    background: var(--charcoal);
}

.widgets-content .section-title {
    margin-bottom: 16px;
}

.widgets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.widget-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: 50px;
    color: var(--gray-300);
    font-size: 14px;
    transition: all 0.3s ease;
}

.widget-tag:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    color: var(--coral);
}

.widget-tag i {
    font-size: 16px;
}

/* Widgets Visual */
.widgets-visual {
    position: relative;
}

.widget-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.widget-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.widget-preview:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
}

.widget-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 13px;
}

.widget-preview-header i {
    color: #1DB954;
}

/* Music Widget */
.music-widget .widget-preview-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.music-widget .album-art {
    width: 50px;
    height: 50px;
    background: url('/static/images/spotify.jpg') center/cover no-repeat;
    border-radius: 8px;
}

.music-widget .track-info {
    flex: 1;
}

.music-widget .track-name {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.music-widget .artist-name {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
}

.music-widget .play-btn {
    width: 36px;
    height: 36px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* Video Widget */
.video-widget .video-thumbnail {
    height: 100px;
    background: url('/static/images/youtube.jpg') center/cover no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.video-widget .play-overlay {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    font-size: 16px;
}

.video-widget .video-info {
    display: flex;
    flex-direction: column;
}

.video-widget .video-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.video-widget .video-views {
    color: var(--gray-500);
    font-size: 12px;
}

/* Product Widget */
.product-widget .product-image {
    height: 80px;
    background: url('/static/images/shop.jpg') center/cover no-repeat;
    border-radius: 10px;
    margin-bottom: 12px;
}

.product-widget .product-info {
    margin-bottom: 12px;
}

.product-widget .product-name {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.product-widget .product-price {
    color: var(--coral);
    font-size: 16px;
    font-weight: 700;
}

.product-widget .btn-shop {
    width: 100%;
    padding: 10px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-widget .btn-shop:hover {
    background: #E55A5A;
}

/* Newsletter Widget */
.newsletter-widget {
    text-align: center;
}

.newsletter-widget .newsletter-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 12px;
}

.newsletter-widget .newsletter-title {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.newsletter-widget .newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: var(--gray-500);
    font-size: 13px;
}

/* Bio Stats Section */
.bio-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral), var(--peach));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

/* Testimonials Section */
.bio-testimonials {
    padding: 100px 0;
    background: var(--charcoal);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* Final CTA Section */
.bio-final-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    position: relative;
    overflow: hidden;
}

.bio-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.cta-claim-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-claim-form .input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0 16px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.cta-claim-form .input-wrapper:focus-within {
    border-color: var(--coral);
}

.cta-claim-form .url-prefix {
    color: var(--gray-400);
    font-size: 15px;
}

.cta-claim-form .claim-input {
    background: transparent;
    border: none;
    padding: 16px 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    width: 150px;
    outline: none;
}

.cta-note {
    color: var(--gray-500);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--mint);
}

/* Bio Page Responsive */
@media (max-width: 991px) {
    .bio-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .bio-hero-title {
        font-size: 36px;
    }
    
    .bio-hero-visual {
        margin-top: 60px;
        padding: 20px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .floating-stat.stat-views {
        top: 20px;
        right: 0;
    }
    
    .floating-stat.stat-clicks {
        bottom: 60px;
        left: 0;
    }
    
    .features-grid,
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .widget-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .widgets-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .widgets-list {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .bio-hero-title {
        font-size: 32px;
    }
    
    .claim-username-form {
        flex-direction: column;
    }
    
    .claim-username-form .input-wrapper {
        min-width: 100%;
    }
    
    .btn-claim {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .platform-logos {
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-claim-form {
        flex-direction: column;
    }
    
    .cta-claim-form .input-wrapper {
        min-width: 100%;
    }
    
    .cta-claim-form .btn-claim {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   Bio Page Light Mode
   ===================================================== */
[data-scheme="light"] .bio-hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

[data-scheme="light"] .bio-hero-title {
    color: var(--charcoal);
}

[data-scheme="light"] .bio-hero-subtitle {
    color: var(--gray-600);
}

[data-scheme="light"] .claim-username-form .input-wrapper {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .claim-username-form .input-wrapper:focus-within {
    background: var(--white);
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.15);
}

[data-scheme="light"] .claim-username-form .url-prefix {
    color: var(--gray-500);
}

[data-scheme="light"] .claim-username-form .claim-input {
    color: var(--charcoal);
}

[data-scheme="light"] .hero-trust-badges .trust-item {
    color: var(--gray-600);
}

[data-scheme="light"] .bio-social-proof {
    background: var(--cream-dark);
    border-color: var(--gray-200);
}

[data-scheme="light"] .proof-label {
    color: var(--gray-600);
}

[data-scheme="light"] .platform-logo {
    color: var(--gray-600);
}

[data-scheme="light"] .platform-logo i {
    color: var(--gray-500);
}

[data-scheme="light"] .bio-features {
    background: var(--cream);
}

[data-scheme="light"] .bio-features .feature-card {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .bio-features .feature-card:hover {
    background: var(--white);
    border-color: var(--coral);
}

[data-scheme="light"] .bio-features .feature-title {
    color: var(--charcoal);
}

[data-scheme="light"] .bio-features .feature-desc {
    color: var(--gray-600);
}

html[data-scheme="light"] .bio-use-cases,
[data-scheme="light"] .bio-use-cases {
    background: linear-gradient(180deg, #F5EDE8 0%, #FFF8F5 100%) !important;
}

[data-scheme="light"] .use-case-card {
    background: #FFFFFF !important;
    border-color: #E5E5E7 !important;
}

[data-scheme="light"] .use-case-card:hover {
    border-color: var(--coral);
}

[data-scheme="light"] .use-case-title,
[data-scheme="light"] .use-case-content h3 {
    color: #1A1A2E !important;
}

[data-scheme="light"] .use-case-desc,
[data-scheme="light"] .use-case-content p {
    color: #6B7280 !important;
}

[data-scheme="light"] .use-case-features li {
    color: #374151 !important;
}

[data-scheme="light"] .use-case-features li i {
    color: #059669 !important;
}

[data-scheme="light"] .bio-use-cases .section-header .section-title {
    color: #1A1A2E !important;
}

[data-scheme="light"] .bio-use-cases .section-header .section-subtitle {
    color: #6B7280 !important;
}

[data-scheme="light"] .bio-widgets,
[data-scheme="light"] .bio-widgets-showcase {
    background: var(--cream);
}

[data-scheme="light"] .bio-widgets-showcase .section-title,
[data-scheme="light"] .bio-widgets-showcase h2 {
    color: var(--charcoal);
}

[data-scheme="light"] .bio-widgets-showcase .section-subtitle,
[data-scheme="light"] .bio-widgets-showcase p {
    color: var(--gray-600);
}

[data-scheme="light"] .widget-tag {
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--gray-700);
}

[data-scheme="light"] .widget-tag:hover {
    background: rgba(255, 107, 107, 0.08);
    border-color: var(--coral);
    color: var(--coral);
}

[data-scheme="light"] .widget-preview {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .widget-preview:hover {
    border-color: var(--coral);
}

[data-scheme="light"] .widget-title {
    color: var(--charcoal);
}

[data-scheme="light"] .widget-desc {
    color: var(--gray-600);
}

/* Widget preview text colors in light mode */
[data-scheme="light"] .widget-preview-header {
    color: var(--gray-600);
}

[data-scheme="light"] .music-widget .track-name {
    color: var(--charcoal);
}

[data-scheme="light"] .music-widget .artist-name {
    color: var(--gray-600);
}

[data-scheme="light"] .video-widget .video-title {
    color: var(--charcoal);
}

[data-scheme="light"] .video-widget .video-views {
    color: var(--gray-600);
}

[data-scheme="light"] .product-widget .product-name {
    color: var(--charcoal);
}

[data-scheme="light"] .newsletter-widget .newsletter-title {
    color: var(--charcoal);
}

[data-scheme="light"] .newsletter-widget .newsletter-input {
    background: var(--cream);
    border-color: var(--gray-200);
    color: var(--charcoal);
}

[data-scheme="light"] .bio-stats {
    background: var(--cream-dark);
}

[data-scheme="light"] .stat-number {
    color: var(--charcoal);
}

[data-scheme="light"] .stat-label {
    color: var(--gray-600);
}

/* Keep stats white inside dark social-proof section */
[data-scheme="light"] .social-proof-section .stat-number {
    color: #FFFFFF !important;
}

[data-scheme="light"] .social-proof-section .stat-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-scheme="light"] .social-proof-section .social-proof-header h3 {
    color: #FFFFFF !important;
}

[data-scheme="light"] .social-proof-section .highlight {
    color: var(--coral, #FF6B6B) !important;
}

[data-scheme="light"] .bio-testimonials {
    background: var(--cream);
}

[data-scheme="light"] .testimonial-card {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .testimonial-text {
    color: var(--gray-600);
}

[data-scheme="light"] .testimonial-author {
    color: var(--charcoal);
}

[data-scheme="light"] .bio-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
}

[data-scheme="light"] .section-header .section-title {
    color: var(--charcoal);
}

[data-scheme="light"] .section-header .section-subtitle {
    color: var(--gray-600);
}

/* =====================================================
   QR Codes Page Styles
   ===================================================== */

/* QR Hero Section */
.qr-hero {
    padding: 120px 0 80px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.qr-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.qr-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.qr-hero .orb-1 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    top: -100px;
    right: 10%;
}

.qr-hero .orb-2 {
    width: 300px;
    height: 300px;
    background: var(--peach);
    bottom: 0;
    left: 5%;
}

.qr-hero .orb-3 {
    width: 200px;
    height: 200px;
    background: #6366F1;
    top: 50%;
    right: 30%;
}

.qr-hero-header {
    margin-bottom: 50px;
}

.qr-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.qr-hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* QR Generator Card */
.qr-generator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

/* QR Type Toggle */
.qr-type-toggle {
    display: inline-flex;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 30px;
}

.qr-type-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.qr-type-btn.active {
    background: white;
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-type-btn.locked {
    background: transparent;
    color: white;
}

.qr-type-btn.locked i {
    font-size: 12px;
}

/* QR Tabs */
.qr-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.qr-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.qr-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.qr-tab.active,
.qr-tab.border-success {
    background: rgba(255, 107, 107, 0.15);
    border-color: var(--coral);
    color: var(--coral);
}

.qr-tab i {
    font-size: 16px;
}

/* QR Form Panels */
.qr-form-panels {
    margin-bottom: 24px;
}

.qr-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.qr-panel .form-label {
    color: var(--gray-300);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.qr-panel .form-control,
.qr-panel .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
}

.qr-panel .form-control::placeholder {
    color: var(--gray-500);
}

.qr-panel .form-control:focus,
.qr-panel .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
    color: white;
}

.vcard-expandable {
    margin-top: 16px;
}

.btn-outline-coral {
    border: 1px solid var(--coral);
    color: var(--coral);
    background: transparent;
}

.btn-outline-coral:hover {
    background: var(--coral);
    color: white;
}

/* QR Customization */
.qr-customization {
    margin-bottom: 24px;
}

.qr-customize-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-customize-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.qr-customize-toggle .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.qr-customize-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.qr-customize-content {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

/* Color Mode Toggle */
.color-mode-toggle {
    display: flex;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 50px;
    padding: 4px;
}

.color-mode-btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.color-mode-btn.active {
    background: white;
    color: var(--charcoal);
}

.color-mode-btn.locked {
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Color Input */
.color-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-input {
    width: 50px;
    height: 42px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
}

.color-text {
    flex: 1;
}

/* Locked Features */
.qr-feature-locked .form-label {
    color: var(--gray-300);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.locked-feature-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.locked-feature-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--coral);
    color: var(--coral);
}

.lock-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.locked-design-options {
    display: flex;
    gap: 10px;
}

.design-option-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.design-option-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.design-option-btn .lock-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    color: var(--coral);
}

/* Generate Button */
.btn-generate {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
}

/* QR Preview Card */
.qr-preview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

[data-scheme="dark"] .qr-preview-card {
    background: var(--charcoal-light) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-preview-image {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

[data-scheme="dark"] .qr-preview-image {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-preview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.qr-download-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.qr-download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #F8F5F2 !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 10px;
    color: #1a1a2e !important;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-scheme="dark"] .qr-download-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

.qr-download-btn:hover,
[data-scheme="dark"] .qr-download-btn:hover {
    background: var(--coral) !important;
    border-color: var(--coral) !important;
    color: white !important;
}

.qr-pro-cta {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 159, 128, 0.1));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

[data-scheme="dark"] .qr-pro-cta {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 159, 128, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-pro-cta p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

[data-scheme="dark"] .qr-pro-cta p {
    color: #C5C5D5;
}

/* QR CTA Card (non-public mode) */
.qr-cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
}

.qr-cta-card h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.qr-cta-card p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.qr-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.qr-demo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
}

.qr-demo-card.primary {
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border: none;
}

.qr-demo-card i {
    font-size: 32px;
    color: white;
    margin-bottom: 12px;
    display: block;
}

.qr-demo-card span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* QR Features Section */
.qr-features {
    padding: 100px 0;
    background: var(--charcoal-light);
}

.qr-features-content {
    padding-left: 40px;
}

.qr-feature-list {
    margin-top: 40px;
}

.qr-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.qr-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.qr-feature-item .feature-content h4 {
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.qr-feature-item .feature-content p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
}

/* QR Features Visual */
.qr-features-visual {
    position: relative;
}

.qr-mockup-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.qr-mockup-card img {
    width: 100%;
    border-radius: 16px;
}

.qr-samples {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.qr-sample {
    text-align: center;
}

.qr-sample-code {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect fill='%23000' x='10' y='10' width='30' height='30'/%3E%3Crect fill='%23000' x='60' y='10' width='30' height='30'/%3E%3Crect fill='%23000' x='10' y='60' width='30' height='30'/%3E%3Crect fill='%23000' x='45' y='45' width='10' height='10'/%3E%3Crect fill='%23000' x='60' y='60' width='10' height='10'/%3E%3Crect fill='%23000' x='75' y='75' width='15' height='15'/%3E%3C/svg%3E");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.qr-sample-code.colored {
    background-color: #E8F5E9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect fill='%234CAF50' x='10' y='10' width='30' height='30'/%3E%3Crect fill='%234CAF50' x='60' y='10' width='30' height='30'/%3E%3Crect fill='%234CAF50' x='10' y='60' width='30' height='30'/%3E%3Crect fill='%234CAF50' x='45' y='45' width='10' height='10'/%3E%3Crect fill='%234CAF50' x='60' y='60' width='10' height='10'/%3E%3Crect fill='%234CAF50' x='75' y='75' width='15' height='15'/%3E%3C/svg%3E");
}

.qr-sample-code.gradient {
    background: linear-gradient(135deg, #FFE0B2, #FFCC80);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect fill='%23FF6B6B' x='10' y='10' width='30' height='30'/%3E%3Crect fill='%23FF6B6B' x='60' y='10' width='30' height='30'/%3E%3Crect fill='%23FF6B6B' x='10' y='60' width='30' height='30'/%3E%3Crect fill='%23FF6B6B' x='45' y='45' width='10' height='10'/%3E%3Crect fill='%23FF6B6B' x='60' y='60' width='10' height='10'/%3E%3Crect fill='%23FF6B6B' x='75' y='75' width='15' height='15'/%3E%3C/svg%3E");
}

.qr-sample span {
    color: var(--gray-400);
    font-size: 13px;
    font-weight: 500;
}

/* QR Tracking Section */
.qr-tracking {
    padding: 100px 0;
    background: var(--charcoal);
}

.qr-tracking-content {
    padding-right: 40px;
}

.tracking-stats {
    margin-top: 30px;
}

.tracking-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tracking-stat:last-child {
    border-bottom: none;
}

.tracking-stat .stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.tracking-stat .stat-info {
    display: flex;
    flex-direction: column;
}

.tracking-stat .stat-label {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.tracking-stat .stat-desc {
    color: var(--gray-500);
    font-size: 14px;
}

/* Tracking Map Card */
.tracking-map-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-title {
    color: white;
    font-weight: 600;
}

.map-badge {
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-preview {
    height: 220px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.map-preview .map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--coral);
    animation: pulse 2s infinite;
}

.map-dot.dot-1 { top: 30%; left: 20%; }
.map-dot.dot-2 { top: 50%; left: 60%; animation-delay: 0.5s; }
.map-dot.dot-3 { top: 20%; left: 75%; animation-delay: 1s; }
.map-dot.dot-4 { top: 70%; left: 40%; animation-delay: 1.5s; }
.map-dot.dot-5 { top: 40%; left: 85%; animation-delay: 2s; }

.map-stats {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.map-stat {
    flex: 1;
    text-align: center;
}

.map-stat .value {
    display: block;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.map-stat .label {
    color: var(--gray-500);
    font-size: 13px;
}

/* QR CTA Section */
.qr-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral), var(--peach));
}

.qr-cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.qr-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.qr-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.qr-cta .btn-primary {
    background: white;
    color: var(--coral);
}

.qr-cta .btn-primary:hover {
    background: var(--charcoal);
    color: white;
}

.qr-cta .btn-outline {
    border-color: white;
    color: white;
}

.qr-cta .btn-outline:hover {
    background: white;
    color: var(--coral);
}

.qr-cta .cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.qr-cta .cta-note i {
    color: white;
    margin-right: 6px;
}

/* QR Page Responsive */
@media (max-width: 991px) {
    .qr-generator-card {
        padding: 24px;
    }
    
    .qr-features-content,
    .qr-tracking-content {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .qr-preview-card {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .qr-cta-card {
        padding: 40px 24px;
    }
    
    .qr-cta-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .qr-hero {
        padding: 100px 0 60px;
    }
    
    .qr-tabs {
        gap: 6px;
    }
    
    .qr-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .qr-tab span {
        display: none;
    }
    
    .qr-type-toggle {
        width: 100%;
    }
    
    .qr-type-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .locked-design-options {
        flex-direction: column;
    }
    
    .qr-samples {
        gap: 15px;
    }
    
    .qr-sample-code {
        width: 60px;
        height: 60px;
    }
    
    .map-stats {
        flex-wrap: wrap;
    }
    
    .map-stat {
        min-width: calc(50% - 10px);
    }
}

/* =====================================================
   HELP CENTER STYLES
   ===================================================== */

/* Help Hero Section */
.help-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    overflow: hidden;
}

.help-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.help-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--coral);
    margin-bottom: 24px;
}

.help-badge i {
    font-size: 16px;
}

.help-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.help-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Help Search */
.help-search-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
}

.help-search-form {
    width: 100%;
}

.help-search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    transition: all 0.3s ease;
}

.help-search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--coral);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.2);
}

.help-search-input-wrapper .search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    margin-right: 12px;
}

.help-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    padding: 12px 0;
    outline: none;
}

.help-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.help-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-search-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Quick Links - Help Center */
.help-quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-links-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.help-quick-links .quick-link {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.help-quick-links .quick-link:hover {
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral);
    border-color: rgba(255, 107, 107, 0.3);
}

/* Help Hero Background */
.help-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.help-hero-bg .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.help-hero-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.help-hero-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--peach);
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
}

.help-hero-bg .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

/* Help Topics Section */
.help-topics-section {
    padding: 80px 0;
    background: var(--charcoal);
}

.help-topics-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.help-topics-section .section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.help-topics-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.help-topics-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.topic-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topic-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 128, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topic-icon i {
    font-size: 24px;
    color: var(--coral);
}

.topic-emoji {
    font-size: 28px;
}

.topic-content {
    flex: 1;
}

.topic-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.topic-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    line-height: 1.5;
}

.topic-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--coral);
}

.topic-count i {
    font-size: 12px;
}

.topic-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.topic-arrow i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.topic-card:hover .topic-arrow {
    background: var(--coral);
}

.topic-card:hover .topic-arrow i {
    color: #FFFFFF;
    transform: translateX(2px);
}

/* Help FAQ Section */
.help-faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, #1a1a2e 100%);
}

.help-faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.help-faq-section .section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.help-faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.help-faq-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    color: #FFFFFF;
    font-size: 16px;
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.4;
}

[data-scheme="light"] .faq-card .faq-question {
    color: var(--charcoal);
}

.faq-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.5;
}

[data-scheme="light"] .faq-card .faq-excerpt {
    color: var(--gray-600);
}

.faq-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

[data-scheme="light"] .faq-card .faq-meta {
    color: var(--gray-500);
}

.faq-meta i {
    font-size: 11px;
}

.faq-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-arrow i {
    color: var(--coral);
    font-size: 14px;
}

.faq-card:hover .faq-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Help CTA Section */
.help-cta-section {
    padding: 80px 0;
    background: var(--charcoal);
}

.help-cta-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 159, 128, 0.05) 100%);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.help-cta-card .cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.help-cta-card .cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-cta-card .cta-icon i {
    font-size: 30px;
    color: #FFFFFF;
}

.help-cta-card .cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.help-cta-card .cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.help-cta-card .cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-help-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-help-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    color: #FFFFFF;
}

.btn-help-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-help-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

/* Help Breadcrumb */
.help-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    padding: 16px 0;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--coral);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.breadcrumb-current {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

/* Help Category Section */
.help-category-section {
    padding: 140px 0 80px;
    background: var(--charcoal);
    min-height: 60vh;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 128, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon-wrapper i {
    font-size: 32px;
    color: var(--coral);
}

.category-emoji {
    font-size: 36px;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.category-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateX(4px);
}

.article-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 128, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-icon i {
    font-size: 18px;
    color: var(--coral);
}

.article-content {
    flex: 1;
}

.article-category-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.article-meta .meta-item i {
    font-size: 12px;
}

.article-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: center;
}

.article-arrow i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-card:hover .article-arrow {
    background: var(--coral);
}

.article-card:hover .article-arrow i {
    color: #FFFFFF;
    transform: translateX(2px);
}

/* No Articles/Results */
.no-articles,
.no-results {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.no-articles-icon,
.no-results-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.no-articles-icon i,
.no-results-icon i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
}

.no-articles h3,
.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.no-articles p,
.no-results p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.no-results-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* Help Pagination */
.help-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.help-pagination .pagination {
    display: flex;
    gap: 8px;
}

.help-pagination .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-pagination .page-link:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    color: var(--coral);
}

.help-pagination .page-item.active .page-link {
    background: var(--coral);
    border-color: var(--coral);
    color: #FFFFFF;
}

/* Help Back Section */
.help-back-section {
    padding: 40px 0 80px;
    background: var(--charcoal);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--coral);
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-4px);
}

/* Help Search Section */
.help-search-section {
    padding: 140px 0 80px;
    background: var(--charcoal);
    min-height: 60vh;
}

.search-header {
    margin-bottom: 40px;
}

.search-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.search-query {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-query strong {
    color: var(--coral);
}

.search-results-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Help Article Section */
.help-article-section {
    padding: 140px 0 40px;
    background: var(--charcoal);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Article Main Content */
.article-main {
    min-width: 0;
}

.article-content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.article-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.article-category-tag i {
    font-size: 14px;
}

.article-content-card .article-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 24px;
}

.article-meta-bar .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.article-meta-bar .meta-item i {
    font-size: 13px;
}

/* Article Body */
.article-body {
    padding: 40px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: #FFFFFF;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body h2 {
    font-size: 1.5rem;
}

.article-body h3 {
    font-size: 1.3rem;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: var(--coral);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--peach);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.article-body code {
    background: rgba(255, 255, 255, 0.1);
    color: var(--coral);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
}

.article-body pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-body pre code {
    background: transparent;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

.article-body blockquote {
    border-left: 4px solid var(--coral);
    padding-left: 20px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-body th,
.article-body td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    text-align: left;
}

.article-body th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: #FFFFFF;
}

/* Article Footer */
.article-footer {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.article-feedback {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feedback-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.feedback-buttons {
    display: flex;
    gap: 10px;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feedback-yes.active {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
    color: #4CAF50;
}

.feedback-no.active {
    background: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.4);
    color: #F44336;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.share-twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.4);
    color: #1DA1F2;
}

.share-facebook:hover {
    background: rgba(66, 103, 178, 0.2);
    border-color: rgba(66, 103, 178, 0.4);
    color: #4267B2;
}

.share-linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
    color: #0077B5;
}

/* Article Contact Card */
.article-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
}

.article-contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 128, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-contact-card .contact-icon i {
    font-size: 22px;
    color: var(--coral);
}

.article-contact-card .contact-content {
    flex: 1;
}

.article-contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.article-contact-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-title i {
    color: var(--coral);
    font-size: 16px;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-article {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--coral);
}

.related-article i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.related-article:hover i {
    color: var(--coral);
}

/* Category Link */
.category-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.3);
}

.category-link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 128, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-link-icon i {
    font-size: 18px;
    color: var(--coral);
}

.category-link-info {
    flex: 1;
}

.category-link-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.category-link-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--coral);
}

.category-link-action i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.category-link:hover .category-link-action i {
    transform: translateX(4px);
}

/* Help Center Responsive */
@media (max-width: 1199px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .topics-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .help-title {
        font-size: 2.5rem;
    }
    
    .help-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .help-cta-card .cta-content {
        flex-direction: column;
    }
    
    .help-cta-card .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .help-cta-card .cta-actions a {
        justify-content: center;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .help-hero {
        padding: 120px 0 60px;
    }
    
    .help-title {
        font-size: 2rem;
    }
    
    .help-subtitle {
        font-size: 1rem;
    }
    
    .help-search-input-wrapper {
        flex-direction: column;
        padding: 16px;
        border-radius: 16px;
        gap: 12px;
    }
    
    .help-search-input-wrapper .search-icon {
        display: none;
    }
    
    .help-search-input {
        width: 100%;
        text-align: center;
    }
    
    .help-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .help-quick-links {
        display: none;
    }
    
    .help-topics-section,
    .help-faq-section,
    .help-cta-section {
        padding: 60px 0;
    }
    
    .help-topics-section .section-title,
    .help-faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .topic-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .topic-arrow {
        display: none;
    }
    
    .article-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .article-arrow {
        display: none;
    }
    
    .article-header,
    .article-body,
    .article-footer {
        padding: 24px;
    }
    
    .article-content-card .article-title {
        font-size: 1.4rem;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-feedback {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .feedback-buttons {
        width: 100%;
    }
    
    .feedback-btn {
        flex: 1;
        justify-content: center;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .help-category-section,
    .help-search-section,
    .help-article-section {
        padding: 120px 0 60px;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .search-title {
        font-size: 1.5rem;
    }
}

/* =====================================================
   REPORT PAGE STYLES
   ===================================================== */

/* Report Hero */
.report-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    overflow: hidden;
}

.report-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.report-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--coral);
    margin-bottom: 24px;
}

.report-badge i {
    font-size: 16px;
}

.report-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.report-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Report Hero Background */
.report-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.report-hero-bg .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.report-hero-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.report-hero-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--peach);
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
}

.report-hero-bg .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

/* Report Form Section */
.report-form-section {
    padding: 80px 0;
    background: var(--charcoal);
}

.report-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Report Form Card */
.report-form-wrapper {
    min-width: 0;
}

.report-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-header-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.form-header-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.form-header-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Report Form */
.report-form {
    padding: 30px;
}

.report-form .form-group {
    margin-bottom: 24px;
}

.report-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.report-form .form-label i {
    color: var(--coral);
    font-size: 14px;
}

.report-form .form-label .required {
    color: var(--coral);
}

.report-form .form-input,
.report-form .form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.report-form .form-input:focus,
.report-form .form-select:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.15);
}

.report-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.report-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.report-form .form-select option {
    background: #1a1a2e;
    color: #FFFFFF;
    padding: 10px;
}

.report-form .input-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.report-form .captcha-group {
    margin-top: 30px;
}

.report-form .form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-report-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-report-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-report-submit i {
    font-size: 16px;
}

/* Report Sidebar */
.report-sidebar {
    position: sticky;
    top: 100px;
}

.report-sidebar .sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.report-sidebar .sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.report-sidebar .sidebar-title i {
    color: var(--coral);
    font-size: 16px;
}

.report-sidebar .sidebar-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Report Reasons List */
.report-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-reasons-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.report-reasons-list li:last-child {
    border-bottom: none;
}

.report-reasons-list li i {
    color: var(--coral);
    font-size: 14px;
}

.report-reasons-list li span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.process-step .step-number {
    width: 32px;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.process-step .step-content {
    flex: 1;
}

.process-step .step-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.process-step .step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Sidebar Highlight Card */
.sidebar-card-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 159, 128, 0.05) 100%) !important;
    border-color: rgba(255, 107, 107, 0.2) !important;
    text-align: center;
}

.sidebar-card-highlight .highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-card-highlight .highlight-icon i {
    font-size: 26px;
    color: #FFFFFF;
}

.sidebar-card-highlight .sidebar-title {
    justify-content: center;
}

.sidebar-card-highlight .sidebar-text {
    text-align: center;
}

.btn-sidebar-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sidebar-action:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: #FFFFFF;
}

/* Report Page Responsive */
@media (max-width: 1199px) {
    .report-layout {
        grid-template-columns: 1fr;
    }
    
    .report-sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .report-sidebar .sidebar-card {
        margin-bottom: 0;
    }
    
    .sidebar-card-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .report-hero {
        padding: 120px 0 60px;
    }
    
    .report-title {
        font-size: 2rem;
    }
    
    .report-subtitle {
        font-size: 1rem;
    }
    
    .report-form-section {
        padding: 60px 0;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .report-form {
        padding: 24px;
    }
    
    .report-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card-highlight {
        grid-column: span 1;
    }
}

/* =====================================================
   Legal/Static Page Styles
   ===================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--charcoal);
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.page-badge i {
    font-size: 16px;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background: var(--charcoal);
    min-height: 400px;
}

/* Ensure page content is always visible - override fade-up for legal pages */
.page-hero .fade-up,
.page-content-section .fade-up {
    opacity: 1;
    transform: translateY(0);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.page-content-wrapper {
    width: 100%;
    min-height: 300px;
}

.page-content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.page-meta-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-meta-header .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-meta-header .meta-item i {
    color: var(--coral);
}

.page-content {
    padding: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

/* Override Google Docs and other external content styles */
.page-content *,
.page-content p,
.page-content span,
.page-content div,
.page-content li,
.page-content td,
.page-content th {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-content a {
    color: var(--coral) !important;
}

.page-content a:hover {
    color: var(--peach) !important;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #FFFFFF;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
    line-height: 1.3;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0;
}

.page-content h2 {
    font-size: 1.75rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content h3 {
    font-size: 1.4rem;
}

.page-content h4 {
    font-size: 1.2rem;
}

.page-content p {
    margin-bottom: 1.5em;
}

.page-content a {
    color: var(--coral);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: var(--peach);
    text-decoration: underline;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.page-content li {
    margin-bottom: 0.75em;
}

.page-content blockquote {
    background: rgba(255, 107, 107, 0.08);
    border-left: 4px solid var(--coral);
    padding: 20px 24px;
    margin: 1.5em 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.page-content th,
.page-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-content th {
    background: rgba(255, 255, 255, 0.03);
    color: #FFFFFF;
    font-weight: 600;
}

.page-content code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
}

.page-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.page-content pre code {
    background: none;
    padding: 0;
}

/* Page Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.page-sidebar .sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.page-sidebar .sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-sidebar .sidebar-title i {
    color: var(--coral);
    font-size: 16px;
}

/* Page Navigation */
.page-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.page-nav .nav-link i {
    font-size: 10px;
    color: var(--coral);
    opacity: 0;
    transition: all 0.3s ease;
}

.page-nav .nav-link:hover i {
    opacity: 1;
}

.page-nav .nav-link-sub {
    padding-left: 28px;
    font-size: 13px;
}

/* Related Links */
.related-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
    color: #FFFFFF;
}

.related-link i {
    color: var(--coral);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Page Back Section */
.page-back-section {
    padding: 40px 0 80px;
    background: var(--charcoal);
}

.page-back-section .back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-back-section .back-link:hover {
    color: var(--coral);
}

.page-back-section .back-link i {
    font-size: 14px;
}

/* Page Sidebar Highlight */
.page-sidebar .sidebar-card-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 159, 128, 0.05) 100%) !important;
    border-color: rgba(255, 107, 107, 0.2) !important;
    text-align: center;
}

.page-sidebar .sidebar-card-highlight .highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.page-sidebar .sidebar-card-highlight .highlight-icon i {
    font-size: 26px;
    color: #FFFFFF;
}

.page-sidebar .sidebar-card-highlight .sidebar-title {
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 12px;
}

.page-sidebar .sidebar-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Legal Page Responsive */
@media (max-width: 1199px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .page-sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .page-sidebar .sidebar-card {
        margin-bottom: 0;
    }
    
    .page-sidebar .sidebar-card-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 120px 0 50px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .page-content-section {
        padding: 50px 0;
    }
    
    .page-content {
        padding: 24px;
        font-size: 15px;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.25rem;
    }
    
    .page-sidebar {
        grid-template-columns: 1fr;
    }
    
    .page-sidebar .sidebar-card-highlight {
        grid-column: span 1;
    }
    
    .page-back-section {
        padding: 30px 0 60px;
    }
}

/* =====================================================
   18Plus Tools Page Styles
   ===================================================== */
.hero-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    max-width: 450px;
}

.hero-form .input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-form .input-prefix {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding-left: 12px;
    white-space: nowrap;
}

.hero-form .form-control {
    background: transparent;
    border: none;
    color: #FFFFFF;
    padding: 12px 8px;
    font-size: 16px;
    flex: 1;
    min-width: 0;
}

.hero-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-form .btn {
    padding: 12px 24px;
    border-radius: 10px;
    white-space: nowrap;
}

.hero-preview {
    position: relative;
}

.preview-card {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.3);
}

.preview-browser-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--charcoal);
}

.preview-browser-bar .gradient-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.preview-content {
    padding: 40px;
    text-align: center;
}

.preview-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.preview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-name {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.preview-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.preview-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: all 0.3s ease;
}

.preview-social a:hover {
    color: #FFFFFF;
    transform: scale(1.1);
}

.preview-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-link {
    display: block;
    background: #FFFFFF;
    color: var(--coral);
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.preview-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: var(--coral);
}

/* Creator Cards */
.creator-cards {
    position: relative;
    min-height: 500px;
    display: none;
}

@media (min-width: 768px) {
    .creator-cards {
        display: block;
    }
}

.creator-card {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: absolute;
    width: 45%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.creator-card.card-1 {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    left: 0;
    top: 50px;
    z-index: 1;
}

.creator-card.card-2 {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    right: 0;
    top: 0;
    z-index: 2;
}

.creator-card.card-3 {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    left: 50%;
    transform: translateX(-50%);
    top: 150px;
    z-index: 3;
    width: 50%;
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-card h4 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.card-link {
    display: block;
    background: #FFFFFF;
    color: var(--charcoal);
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: scale(1.02);
    color: var(--charcoal);
}

.card-link i {
    margin-right: 8px;
}

/* Widgets Section */
.widgets-section {
    padding: 80px 0;
}

.widgets-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 159, 128, 0.1) 100%);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 24px;
    padding: 60px;
}

.widgets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.widget-item {
    text-align: center;
}

.widget-icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Map Visual */
.map-visual img {
    filter: brightness(0.9);
    opacity: 0.9;
}

/* =====================================================
   API Documentation Page Styles
   ===================================================== */
.api-docs-section {
    padding: 0;
    padding-top: 80px;
    min-height: 100vh;
    background: var(--charcoal);
}

.api-sidebar {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
}

/* Override Bootstrap collapse for desktop */
@media (min-width: 992px) {
    .api-sidebar.collapse {
        display: block !important;
    }
}

.api-sidebar .sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.api-sidebar .sidebar-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.api-sidebar .sidebar-nav {
    padding: 20px 0;
}

.api-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    gap: 10px;
}

.api-sidebar .nav-link:hover {
    color: var(--coral);
    background: rgba(255, 107, 107, 0.1);
}

.api-sidebar .nav-link i {
    width: 18px;
    text-align: center;
    font-size: 12px;
}

.api-sidebar .nav-link .badge {
    font-size: 10px;
    padding: 3px 6px;
    margin-left: auto;
}

.api-sidebar .nav-group {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding-top: 10px;
}

.api-sidebar .nav-group-toggle {
    font-weight: 600;
}

.api-sidebar .nav-sub {
    padding-left: 40px;
    font-size: 13px;
}

.api-content {
    padding: 40px;
    max-width: 100%;
}

.api-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.api-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.api-block {
    margin-bottom: 30px;
}

.api-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.api-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.api-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.api-block ul, .api-block ol {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    margin-bottom: 20px;
}

.api-block li {
    margin-bottom: 8px;
}

.api-block code {
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.api-block .alert {
    border-radius: 12px;
    padding: 16px 20px;
    border: none;
}

.api-block .alert-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.api-block .alert-info {
    background: rgba(13, 202, 240, 0.15);
    color: #0dcaf0;
}

.code-inline {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
    overflow-x: auto;
    white-space: pre;
}

/* API Key Card */
.api-key-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
}

.api-key-card h6 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.api-key-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
}

.api-key-display code {
    background: none;
    color: var(--coral);
    font-size: 14px;
    word-break: break-all;
}

.btn-outline-coral {
    border: 1px solid var(--coral);
    color: var(--coral);
    background: transparent;
}

.btn-outline-coral:hover {
    background: var(--coral);
    color: #FFFFFF;
}

/* Code Card */
.code-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.code-tabs,
.code-lang {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
    flex-wrap: wrap;
}

.code-tab,
.code-lang a {
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.code-tab:hover, .code-tab.active,
.code-lang a:hover, .code-lang a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
}

.btn-copy {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    color: var(--coral);
}

.code-card pre {
    margin: 0;
    padding: 20px;
    background: transparent;
    overflow-x: auto;
}

.code-card code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: none;
}

.code-selector {
    display: none;
}

.code-selector:first-of-type,
.code-selector.active {
    display: block;
}

/* Endpoint Styles */
.endpoint-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.endpoint-category-title a {
    color: var(--coral);
    text-decoration: none;
}

.endpoint-category-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.endpoint-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.endpoint-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.endpoint-method {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.method-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.method-get { background: #28a745; color: #fff; }
.method-post { background: #007bff; color: #fff; }
.method-put { background: #ffc107; color: #000; }
.method-delete { background: #dc3545; color: #fff; }
.method-patch { background: #17a2b8; color: #fff; }

.endpoint-method code {
    background: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.endpoint-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.parameters-table {
    margin-top: 25px;
}

.parameters-table .table {
    background: transparent;
    margin-bottom: 0;
}

.parameters-table th {
    background: rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.parameters-table td {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.parameters-table code {
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral);
}

.response-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.response-card {
    background: rgba(0, 0, 0, 0.3);
}

/* API Mobile Toggle */
.api-mobile-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.api-mobile-toggle:hover {
    background: var(--peach);
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    padding: 100px 0 60px;
    min-height: calc(100vh - 200px);
}

/* API Page Responsive */
@media (max-width: 991.98px) {
    .api-sidebar {
        position: fixed;
        top: 70px;
        left: 0;
        width: 280px;
        height: calc(100vh - 70px);
        z-index: 1040;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .api-sidebar.show {
        transform: translateX(0);
    }
    
    .api-content {
        padding: 30px 20px;
    }
    
    .endpoint-block {
        padding: 20px;
    }
    
    .code-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767.98px) {
    .api-title {
        font-size: 1.5rem;
    }
    
    .api-block h2 {
        font-size: 1.25rem;
    }
    
    .endpoint-category-title {
        font-size: 1.4rem;
    }
    
    .widgets-card {
        padding: 30px 20px;
    }
    
    .preview-content {
        padding: 30px 20px;
    }
}

/* =====================================================
   Affiliate Page Styles
   ===================================================== */
.affiliate-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.affiliate-hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.affiliate-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.affiliate-title .gradient-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.affiliate-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.affiliate-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.affiliate-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.affiliate-how-section {
    padding: 80px 0;
    background: var(--charcoal);
}

.how-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
}

.how-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
}

.how-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 159, 128, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.how-icon i {
    font-size: 28px;
    color: var(--coral);
}

.how-card h4 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

.affiliate-faq-section {
    padding: 80px 0;
    background: var(--deep-charcoal);
}

.affiliate-faq-section .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.affiliate-faq-section .faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.affiliate-faq-section .faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.affiliate-faq-section .faq-question h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.affiliate-faq-section .faq-question i {
    color: var(--coral);
    transition: transform 0.3s ease;
}

.affiliate-faq-section .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.affiliate-faq-section .faq-answer {
    padding: 0 24px 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.btn-outline-coral {
    border: 2px solid var(--coral);
    color: var(--coral);
    background: transparent;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-coral:hover {
    background: var(--coral);
    color: #FFFFFF;
}

/* =====================================================
   Consent Page Styles
   ===================================================== */
.consent-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.consent-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.consent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 159, 128, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.consent-icon i {
    font-size: 36px;
    color: var(--coral);
}

.consent-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.consent-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.consent-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.consent-actions .btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.consent-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.consent-link {
    color: var(--coral);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.consent-link:hover {
    color: var(--peach);
}

.consent-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 767.98px) {
    .affiliate-hero-card {
        padding: 40px 24px;
    }
    
    .affiliate-title {
        font-size: 1.75rem;
    }
    
    .consent-card {
        padding: 40px 24px;
    }
    
    .consent-title {
        font-size: 1.5rem;
    }
}

/* =====================================================
   QR Page Light Mode
   ===================================================== */
[data-scheme="light"] .qr-hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

[data-scheme="light"] .qr-hero-title {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-hero-subtitle {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-generator-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .qr-tabs {
    background: var(--cream);
    border-radius: 12px;
    padding: 8px;
}

[data-scheme="light"] .qr-tab {
    background: transparent;
    color: var(--gray-600);
    border-color: transparent;
}

[data-scheme="light"] .qr-tab:hover {
    background: var(--white);
    color: var(--charcoal);
}

[data-scheme="light"] .qr-tab.active,
[data-scheme="light"] .qr-tab.border-success {
    background: var(--white);
    border-color: var(--coral);
    color: var(--coral);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .qr-panel {
    background: var(--cream);
    border-color: var(--gray-200);
}

[data-scheme="light"] .qr-panel .form-label {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-panel .form-control,
[data-scheme="light"] .qr-panel .form-select {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--charcoal);
}

[data-scheme="light"] .qr-panel .form-control::placeholder {
    color: var(--gray-500);
}

[data-scheme="light"] .qr-panel .form-control:focus,
[data-scheme="light"] .qr-panel .form-select:focus {
    background: var(--white);
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.15);
}

[data-scheme="light"] .qr-customize-toggle {
    background: var(--cream);
    color: var(--charcoal);
    border-color: var(--gray-200);
}

[data-scheme="light"] .qr-customize-toggle:hover {
    background: var(--gray-100);
}

[data-scheme="light"] .qr-customize-content {
    background: var(--cream);
    border-color: var(--gray-200);
}

[data-scheme="light"] .qr-customize-content .form-label {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-customize-content .form-control {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--charcoal);
}

[data-scheme="light"] .qr-customize-content .form-control::placeholder {
    color: var(--gray-500);
}

[data-scheme="light"] .design-option-btn {
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--charcoal);
}

[data-scheme="light"] .design-option-btn:hover {
    background: var(--gray-100);
    color: var(--coral);
    border-color: var(--coral);
}

[data-scheme="light"] .design-option-btn .lock-icon {
    color: var(--coral);
}

[data-scheme="light"] .locked-feature-btn {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--charcoal);
}

[data-scheme="light"] .locked-feature-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

[data-scheme="light"] .qr-feature-locked .form-label {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-cta-card {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .qr-cta-card h2 {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-cta-card p {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-feature-locked .form-label {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-pro-cta {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 159, 128, 0.08));
}

[data-scheme="light"] .qr-pro-cta p {
    color: var(--gray-600);
}

/* QR Features Section Light Mode */
[data-scheme="light"] .qr-features {
    background: var(--cream);
}

[data-scheme="light"] .qr-features .section-title,
[data-scheme="light"] .qr-features-content h2 {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-features .section-subtitle,
[data-scheme="light"] .qr-features-content p {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-feature-item h4,
[data-scheme="light"] .qr-feature-item .feature-content h4,
[data-scheme="light"] .qr-features .feature-title {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-feature-item p,
[data-scheme="light"] .qr-feature-item .feature-content p,
[data-scheme="light"] .qr-features .feature-desc {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-features-visual {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .qr-type-card {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .qr-type-card h5 {
    color: var(--charcoal);
}

/* QR Tracking Section Light Mode */
[data-scheme="light"] .qr-tracking {
    background: var(--cream-dark);
}

[data-scheme="light"] .qr-tracking-content h2 {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-tracking-content p {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-tracking .analytics-item h4 {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-tracking .analytics-item p {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-tracking .tracking-stat .stat-label {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-tracking .tracking-stat .stat-desc {
    color: var(--gray-600);
}

[data-scheme="light"] .qr-tracking .section-title {
    color: var(--charcoal);
}

[data-scheme="light"] .qr-tracking .section-subtitle {
    color: var(--gray-600);
}

[data-scheme="light"] .tracking-map-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .map-header {
    border-bottom-color: var(--gray-200);
}

[data-scheme="light"] .map-title {
    color: var(--charcoal);
}

[data-scheme="light"] .map-stat .value {
    color: var(--charcoal);
}

[data-scheme="light"] .map-stat .label {
    color: var(--gray-600);
}

/* =====================================================
   Help Center Light Mode
   ===================================================== */
[data-scheme="light"] .help-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
}

[data-scheme="light"] .help-title {
    color: var(--charcoal);
}

[data-scheme="light"] .help-subtitle {
    color: var(--gray-600);
}

[data-scheme="light"] .help-badge {
    background: rgba(255, 107, 107, 0.1);
    color: var(--coral);
}

[data-scheme="light"] .help-search-input-wrapper {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .help-search-input-wrapper:focus-within {
    background: var(--white);
    border-color: var(--coral);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.15);
}

[data-scheme="light"] .help-search-input-wrapper .search-icon {
    color: var(--gray-500);
}

[data-scheme="light"] .help-search-input {
    color: var(--charcoal);
}

[data-scheme="light"] .help-search-input::placeholder {
    color: var(--gray-500);
}

[data-scheme="light"] .help-quick-links .quick-link {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

[data-scheme="light"] .help-quick-links .quick-link:hover {
    background: rgba(255, 107, 107, 0.08);
    color: var(--coral);
    border-color: var(--coral);
}

/* Help Topics Section Light Mode */
[data-scheme="light"] .help-topics-section {
    background: var(--cream);
}

[data-scheme="light"] .help-topics-section .section-title {
    color: var(--charcoal);
}

[data-scheme="light"] .help-topics-section .section-description {
    color: var(--gray-600);
}

[data-scheme="light"] .topic-card {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .topic-card:hover {
    border-color: var(--coral);
}

[data-scheme="light"] .topic-card .topic-title {
    color: var(--charcoal);
}

[data-scheme="light"] .topic-card .topic-description {
    color: var(--gray-600);
}

[data-scheme="light"] .topic-card .topic-count {
    color: var(--coral);
}

/* Help FAQ Section Light Mode */
[data-scheme="light"] .help-faq-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

[data-scheme="light"] .help-faq-section .section-title {
    color: var(--charcoal);
}

[data-scheme="light"] .help-faq-section .section-description {
    color: var(--gray-600);
}

[data-scheme="light"] .help-faq-section .faq-card {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .help-faq-section .faq-card:hover {
    background: var(--white);
    border-color: var(--coral);
}

[data-scheme="light"] .help-faq-section .faq-card .faq-title,
[data-scheme="light"] .help-faq-section .faq-card .faq-question,
[data-scheme="light"] .help-faq-section .faq-card h4 {
    color: var(--charcoal);
}

[data-scheme="light"] .help-faq-section .faq-card .faq-excerpt,
[data-scheme="light"] .help-faq-section .faq-card .faq-content,
[data-scheme="light"] .help-faq-section .faq-card p {
    color: var(--gray-600);
}

[data-scheme="light"] .help-faq-section .faq-card .faq-meta,
[data-scheme="light"] .help-faq-section .faq-card small {
    color: var(--gray-500);
}

/* Help CTA Section Light Mode */
[data-scheme="light"] .help-cta-section {
    background: var(--cream);
}

[data-scheme="light"] .help-cta-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 159, 128, 0.04) 100%);
    border-color: rgba(255, 107, 107, 0.15);
}

[data-scheme="light"] .help-cta-card .cta-title {
    color: var(--charcoal);
}

[data-scheme="light"] .help-cta-card .cta-text {
    color: var(--gray-600);
}

/* Help Category Section Light Mode */
[data-scheme="light"] .help-category-section {
    background: var(--cream);
}

[data-scheme="light"] .help-category-section .category-title {
    color: var(--charcoal);
}

[data-scheme="light"] .help-category-section .category-description {
    color: var(--gray-600);
}

/* Help Search Section Light Mode */
[data-scheme="light"] .help-search-section {
    background: var(--cream);
}

/* Help Article Section Light Mode */
[data-scheme="light"] .help-article-section {
    background: var(--cream);
}

/* Help Back Section Light Mode */
[data-scheme="light"] .help-back-section {
    background: var(--cream);
}

/* Help Breadcrumb Light Mode */
[data-scheme="light"] .help-breadcrumb a {
    color: var(--gray-600);
}

[data-scheme="light"] .help-breadcrumb a:hover {
    color: var(--coral);
}

[data-scheme="light"] .help-breadcrumb .separator {
    color: var(--gray-400);
}

[data-scheme="light"] .help-breadcrumb .current {
    color: var(--charcoal);
}

/* Help Pagination Light Mode */
[data-scheme="light"] .help-pagination .page-link {
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--gray-700);
}

[data-scheme="light"] .help-pagination .page-link:hover {
    background: rgba(255, 107, 107, 0.08);
    border-color: var(--coral);
    color: var(--coral);
}

[data-scheme="light"] .help-pagination .page-item.active .page-link {
    background: var(--coral);
    border-color: var(--coral);
    color: #FFFFFF;
}

/* QR CTA Section Light Mode */
[data-scheme="light"] .qr-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
}

/* =====================================================
   Report Page Light Mode
   ===================================================== */
[data-scheme="light"] .report-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
}

[data-scheme="light"] .report-title {
    color: var(--charcoal);
}

[data-scheme="light"] .report-subtitle {
    color: var(--gray-600);
}

[data-scheme="light"] .report-badge {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
    color: var(--coral);
}

[data-scheme="light"] .report-badge span {
    color: var(--charcoal);
}

[data-scheme="light"] .report-hero-bg .hero-shape {
    opacity: 0.3;
}

[data-scheme="light"] .report-form-section {
    background: var(--cream);
}

[data-scheme="light"] .report-form-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .report-form-card .form-header-text h2 {
    color: var(--charcoal);
}

[data-scheme="light"] .report-form-card .form-header-text p {
    color: var(--gray-600);
}

[data-scheme="light"] .report-form .form-label {
    color: var(--charcoal);
}

[data-scheme="light"] .report-form .form-input,
[data-scheme="light"] .report-form .form-select {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--charcoal);
}

[data-scheme="light"] .report-form .form-input:focus,
[data-scheme="light"] .report-form .form-select:focus {
    border-color: var(--coral);
    background: var(--white);
}

[data-scheme="light"] .report-form .form-input::placeholder {
    color: var(--gray-500);
}

[data-scheme="light"] .report-form .form-select option {
    background: var(--white);
    color: var(--charcoal);
}

[data-scheme="light"] .report-form .input-hint {
    color: var(--gray-500);
}

[data-scheme="light"] .report-sidebar .sidebar-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .report-sidebar .sidebar-title {
    color: var(--charcoal);
}

[data-scheme="light"] .report-sidebar .sidebar-text {
    color: var(--gray-600);
}

[data-scheme="light"] .report-reasons-list li {
    color: var(--gray-700);
    border-color: var(--gray-200);
}

[data-scheme="light"] .report-reasons-list li i {
    color: var(--coral);
}

[data-scheme="light"] .report-reasons-list li span {
    color: var(--gray-700);
}

[data-scheme="light"] .process-step .step-number {
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: #FFFFFF;
}

[data-scheme="light"] .process-step .step-content h4 {
    color: var(--charcoal);
}

[data-scheme="light"] .process-step .step-content p {
    color: var(--gray-600);
}

[data-scheme="light"] .sidebar-card-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 159, 128, 0.04) 100%) !important;
    border-color: rgba(255, 107, 107, 0.2) !important;
}

[data-scheme="light"] .sidebar-card-highlight .sidebar-title {
    color: var(--charcoal);
}

[data-scheme="light"] .sidebar-card-highlight .sidebar-text {
    color: var(--gray-600);
}

/* =====================================================
   Legal/Policy Pages Light Mode
   ===================================================== */
[data-scheme="light"] .page-hero {
    background: var(--cream);
}

[data-scheme="light"] .page-hero-title {
    color: var(--charcoal);
}

[data-scheme="light"] .page-hero-subtitle {
    color: var(--gray-600);
}

[data-scheme="light"] .page-badge {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
}

[data-scheme="light"] .page-badge span {
    color: var(--coral);
}

[data-scheme="light"] .page-hero-bg .hero-shape {
    opacity: 0.3;
}

[data-scheme="light"] .page-back-section {
    background: var(--cream);
}

[data-scheme="light"] .page-back-section .back-link {
    color: var(--gray-600);
}

[data-scheme="light"] .page-back-section .back-link:hover {
    color: var(--coral);
}

[data-scheme="light"] .page-content-section {
    background: var(--cream);
}

[data-scheme="light"] .page-content-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .page-meta-header {
    background: var(--cream);
    border-color: var(--gray-200);
}

[data-scheme="light"] .page-meta-header .meta-item {
    color: var(--gray-600);
}

[data-scheme="light"] .page-content {
    color: var(--gray-700);
}

[data-scheme="light"] .page-content *,
[data-scheme="light"] .page-content p,
[data-scheme="light"] .page-content span,
[data-scheme="light"] .page-content div,
[data-scheme="light"] .page-content li,
[data-scheme="light"] .page-content td,
[data-scheme="light"] .page-content th {
    color: var(--gray-700) !important;
}

[data-scheme="light"] .page-content h1,
[data-scheme="light"] .page-content h2,
[data-scheme="light"] .page-content h3,
[data-scheme="light"] .page-content h4,
[data-scheme="light"] .page-content h5,
[data-scheme="light"] .page-content h6 {
    color: var(--charcoal) !important;
}

[data-scheme="light"] .page-content h2 {
    border-color: var(--gray-200);
}

[data-scheme="light"] .page-content a {
    color: var(--coral) !important;
}

[data-scheme="light"] .page-content a:hover {
    color: var(--coral-dark) !important;
}

[data-scheme="light"] .page-content ul li::before,
[data-scheme="light"] .page-content ol li::marker {
    color: var(--coral);
}

[data-scheme="light"] .page-content blockquote {
    background: var(--cream);
    border-color: var(--coral);
}

[data-scheme="light"] .page-content pre,
[data-scheme="light"] .page-content code {
    background: var(--gray-100);
    color: var(--charcoal) !important;
}

[data-scheme="light"] .page-content table {
    border-color: var(--gray-200);
}

[data-scheme="light"] .page-content th {
    background: var(--cream);
    border-color: var(--gray-200);
}

[data-scheme="light"] .page-content td {
    border-color: var(--gray-200);
}

/* Page Sidebar Light Mode */
[data-scheme="light"] .page-sidebar .sidebar-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .page-sidebar .sidebar-title {
    color: var(--charcoal);
    border-color: var(--gray-200);
}

[data-scheme="light"] .page-nav .nav-link {
    color: var(--gray-600);
}

[data-scheme="light"] .page-nav .nav-link:hover {
    background: rgba(255, 107, 107, 0.08);
    color: var(--charcoal);
}

[data-scheme="light"] .page-nav .nav-link-sub {
    color: var(--gray-500);
}

[data-scheme="light"] .page-sidebar .related-link {
    background: var(--gray-100);
    color: var(--gray-700);
}

[data-scheme="light"] .page-sidebar .related-link:hover {
    background: rgba(255, 107, 107, 0.1);
    color: var(--coral);
}

[data-scheme="light"] .page-sidebar .related-link i {
    color: var(--coral);
}

[data-scheme="light"] .page-sidebar .sidebar-card-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 159, 128, 0.04) 100%) !important;
    border-color: rgba(255, 107, 107, 0.15) !important;
}

[data-scheme="light"] .page-sidebar .sidebar-card-highlight .sidebar-title {
    color: var(--charcoal);
}

[data-scheme="light"] .page-sidebar .sidebar-card-highlight .sidebar-text {
    color: var(--gray-600);
}

[data-scheme="light"] .btn-sidebar-action {
    background: var(--coral);
    border-color: var(--coral);
    color: #FFFFFF;
}

[data-scheme="light"] .btn-sidebar-action:hover {
    background: var(--coral-dark, #E55A5A);
    border-color: var(--coral-dark, #E55A5A);
    color: #FFFFFF;
}

/* =====================================================
   Blog Sidebar Light Mode
   ===================================================== */
[data-scheme="light"] .sidebar-widget {
    background: var(--white);
    border-color: var(--gray-200);
}

[data-scheme="light"] .sidebar-widget .sidebar-title {
    color: var(--charcoal);
    border-color: var(--gray-200);
}

[data-scheme="light"] .popular-post-number {
    color: var(--gray-300);
}

[data-scheme="light"] .popular-post-title {
    color: var(--charcoal);
}

[data-scheme="light"] .popular-post-item:hover {
    background: var(--gray-100);
}

/* Newsletter Widget Light Mode */
[data-scheme="light"] .sidebar-newsletter {
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
}

[data-scheme="light"] .sidebar-newsletter .sidebar-title {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
}

[data-scheme="light"] .sidebar-newsletter p {
    color: rgba(255, 255, 255, 0.9);
}

[data-scheme="light"] .sidebar-newsletter .newsletter-icon {
    background: rgba(255, 255, 255, 0.2);
}

[data-scheme="light"] .sidebar-newsletter .btn {
    background: #FFFFFF;
    color: var(--coral);
    border-color: #FFFFFF;
}

[data-scheme="light"] .sidebar-newsletter .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--coral);
}

/* =====================================================
   API Documentation Page Light Mode
   ===================================================== */
[data-scheme="light"] .api-docs-section {
    background: var(--cream);
}

[data-scheme="light"] .api-title {
    color: var(--charcoal);
}

[data-scheme="light"] .api-content {
    background: var(--cream);
}

[data-scheme="light"] .api-sidebar {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

[data-scheme="light"] .api-sidebar .sidebar-header {
    border-color: var(--gray-200);
}

[data-scheme="light"] .api-sidebar .sidebar-header h5 {
    color: var(--charcoal);
}

[data-scheme="light"] .api-sidebar .nav-link {
    color: var(--gray-600);
}

[data-scheme="light"] .api-sidebar .nav-link:hover {
    color: var(--coral);
    background: rgba(255, 107, 107, 0.08);
}

[data-scheme="light"] .api-sidebar .nav-group {
    border-color: var(--gray-200);
}

[data-scheme="light"] .api-section {
    border-color: var(--gray-200);
}

[data-scheme="light"] .api-block h2 {
    color: var(--charcoal);
}

[data-scheme="light"] .api-block h4 {
    color: var(--charcoal);
}

[data-scheme="light"] .api-block p {
    color: var(--gray-700);
}

[data-scheme="light"] .api-block ul,
[data-scheme="light"] .api-block ol {
    color: var(--gray-700);
}

[data-scheme="light"] .api-block code {
    background: rgba(255, 107, 107, 0.1);
}

[data-scheme="light"] .api-block .alert-warning {
    background: rgba(255, 193, 7, 0.12);
    color: #B45309;
}

[data-scheme="light"] .api-block .alert-info {
    background: rgba(13, 202, 240, 0.12);
    color: #0369A1;
}

[data-scheme="light"] .code-inline {
    background: var(--gray-100);
    color: var(--charcoal);
}

[data-scheme="light"] .api-key-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .api-key-card h6 {
    color: var(--gray-600);
}

[data-scheme="light"] .api-key-display {
    background: var(--gray-100);
}

[data-scheme="light"] .code-card {
    background: var(--charcoal);
}

[data-scheme="light"] .code-tabs,
[data-scheme="light"] .code-lang {
    background: rgba(0, 0, 0, 0.2);
}

[data-scheme="light"] .endpoint-category-title {
    color: var(--charcoal);
}

[data-scheme="light"] .endpoint-category-desc {
    color: var(--gray-600);
}

[data-scheme="light"] .endpoint-block {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .endpoint-header h5 {
    color: var(--charcoal);
}

[data-scheme="light"] .endpoint-desc {
    color: var(--gray-600);
}

[data-scheme="light"] .params-table th {
    background: var(--cream);
    color: var(--charcoal);
    border-color: var(--gray-200);
}

[data-scheme="light"] .params-table td {
    color: var(--gray-700);
    border-color: var(--gray-200);
}

[data-scheme="light"] .param-name {
    color: var(--charcoal);
}

[data-scheme="light"] .param-type {
    color: var(--gray-500);
}

[data-scheme="light"] .response-title {
    color: var(--charcoal);
}

[data-scheme="light"] .page-sidebar .sidebar-card-highlight .sidebar-text {
    color: var(--gray-600);
}

/* =====================================================
   Contact Page Light Mode
   ===================================================== */
[data-scheme="light"] .contact-section {
    background: var(--cream);
}

[data-scheme="light"] .contact-form-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .contact-form-card h3 {
    color: var(--charcoal);
}

[data-scheme="light"] .contact-form-card .form-label {
    color: var(--charcoal);
}

[data-scheme="light"] .contact-form-card .form-control {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--charcoal);
}

[data-scheme="light"] .contact-form-card .form-control:focus {
    border-color: var(--coral);
    background: var(--white);
}

[data-scheme="light"] .contact-form-card .form-control::placeholder {
    color: var(--gray-500);
}

[data-scheme="light"] .contact-info-card {
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-scheme="light"] .contact-info-card h3,
[data-scheme="light"] .contact-info-card h5 {
    color: var(--charcoal);
}

[data-scheme="light"] .contact-info-card p {
    color: var(--gray-600);
}

[data-scheme="light"] .contact-info-icon {
    background: rgba(255, 107, 107, 0.1);
}

[data-scheme="light"] .contact-info-card .footer-social a {
    background: var(--gray-100);
    color: var(--gray-600);
}

[data-scheme="light"] .contact-info-card .footer-social a:hover {
    background: var(--coral);
    color: #FFFFFF;
}

[data-scheme="light"] .contact-info-card [style*="border-top"] {
    border-color: var(--gray-200) !important;
}

/* =====================================================
   Marketing Tools Page
   ===================================================== */

/* Hero */
.marketing-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.marketing-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.marketing-hero-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.marketing-hero-bg .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--coral);
    top: -100px;
    right: -100px;
}

.marketing-hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--lavender);
    bottom: -50px;
    left: -100px;
}

.marketing-hero-bg .orb-3 {
    width: 300px;
    height: 300px;
    background: var(--mint);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marketing-hero .container {
    position: relative;
    z-index: 1;
}

.marketing-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.marketing-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-trust-badges span i {
    color: var(--coral);
    margin-right: 4px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dashboard-header {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.dashboard-dots span:first-child { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:last-child { background: #28c840; }

.dashboard-title {
    margin-left: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-body {
    padding: 24px;
}

.dashboard-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    text-align: center;
    padding: 16px 12px;
    border-radius: 12px;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.06);
}

.dash-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.dash-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.dash-stat-change {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 4px;
}

.dash-stat-change.positive {
    color: #28c840;
}

.dashboard-chart {
    margin-bottom: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.chart-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s;
    min-height: 10px;
    background: rgba(255, 107, 74, 0.35);
}

.chart-bar:nth-child(1) { background: linear-gradient(180deg, #ff8a60 0%, #ff6b4a 100%); opacity: 0.55; }
.chart-bar:nth-child(2) { background: linear-gradient(180deg, #ff9a76 0%, #ff7b5a 100%); opacity: 0.65; }
.chart-bar:nth-child(3) { background: linear-gradient(180deg, #ff8a60 0%, #ff6b4a 100%); opacity: 0.60; }
.chart-bar:nth-child(4) { background: linear-gradient(180deg, #ffb199 0%, #ff9a76 100%); opacity: 0.70; }
.chart-bar:nth-child(5) { background: linear-gradient(180deg, #ff9a76 0%, #ff7b5a 100%); opacity: 0.65; }
.chart-bar:nth-child(7) { background: linear-gradient(180deg, #ffb199 0%, #ff9a76 100%); opacity: 0.60; }

.chart-bar.active {
    background: linear-gradient(180deg, #ff8a60 0%, #e85a3a 100%);
    opacity: 1;
    box-shadow: 0 0 16px rgba(255, 107, 74, 0.5);
}

.chart-bar:hover {
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(255, 107, 74, 0.35);
}

.dashboard-utm-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.utm-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 107, 74, 0.12);
    color: var(--coral);
}

/* Marketing Tools Section */
.marketing-tools-section {
    padding: 100px 0;
}

.marketing-tool-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.marketing-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.marketing-tool-card .tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.marketing-tool-card .tool-icon.coral { background: rgba(var(--coral-rgb, 255, 107, 107), 0.12); color: var(--coral); }
.marketing-tool-card .tool-icon.mint { background: rgba(75, 192, 192, 0.12); color: #4bc0c0; }
.marketing-tool-card .tool-icon.lavender { background: rgba(153, 102, 255, 0.12); color: #9966ff; }
.marketing-tool-card .tool-icon.gold { background: rgba(255, 183, 77, 0.12); color: #ffb74d; }
.marketing-tool-card .tool-icon.blue { background: rgba(66, 133, 244, 0.12); color: #4285f4; }
.marketing-tool-card .tool-icon.dark { background: rgba(0, 0, 0, 0.08); color: var(--text-primary); }

.marketing-tool-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.marketing-tool-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-features li {
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tool-features li i {
    color: var(--coral);
    margin-right: 8px;
    font-size: 0.75rem;
}

/* Analytics Section */
.marketing-analytics-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.marketing-analytics-content .section-title {
    text-align: left;
}

.marketing-analytics-content .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.analytics-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.analytics-feature-item .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 1rem;
    flex-shrink: 0;
}

.analytics-feature-item .feature-info {
    display: flex;
    flex-direction: column;
}

.analytics-feature-item .feature-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.analytics-feature-item .feature-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Analytics Card Visual */
.analytics-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.analytics-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.analytics-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.analytics-card-badge {
    background: rgba(40, 200, 64, 0.12);
    color: #28c840;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.analytics-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.mini-stat {
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.06);
}

.mini-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.mini-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.analytics-geo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.geo-item {
    display: grid;
    grid-template-columns: 28px 100px 1fr 40px;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.geo-flag {
    font-size: 1.1rem;
}

.geo-country {
    font-weight: 500;
    color: var(--text-primary);
}

.geo-bar {
    height: 6px;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.geo-bar-fill {
    height: 100%;
    background: var(--coral);
    border-radius: 3px;
    transition: width 1s ease;
}

.geo-pct {
    text-align: right;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Integrations Section */
.marketing-integrations-section {
    padding: 100px 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.integration-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--coral);
}

.integration-item i {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.integration-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Advanced Features Section */
.marketing-advanced-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.advanced-feature-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.advanced-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.advanced-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.advanced-feature-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.advanced-feature-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.08);
    color: var(--coral);
}

/* Use Cases Section */
.marketing-usecases-section {
    padding: 100px 0;
}

.usecase-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.usecase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--coral-rgb, 255, 107, 107), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--coral);
    font-size: 1.4rem;
}

.usecase-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.usecase-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* API Section */
.marketing-api-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.api-content .section-title {
    text-align: left;
}

.api-content .section-subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
}

.api-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.api-feature-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.api-feature-list li i {
    color: var(--coral);
    margin-right: 10px;
}

/* Code Block */
.code-block {
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.code-header {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dots span:first-child { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:last-child { background: #28c840; }

.code-filename {
    margin-left: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
}

.code-content {
    padding: 24px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #cdd6f4;
    overflow-x: auto;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.code-comment { color: #6c7086; }
.code-keyword { color: #89b4fa; }
.code-string { color: #a6e3a1; }

/* Marketing FAQ Section */
.marketing-faq-section {
    padding: 100px 0;
}

/* Marketing CTA Section */
.marketing-cta-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.marketing-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.marketing-cta-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.marketing-cta-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.marketing-cta-content .cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.marketing-cta-content .cta-note i {
    color: var(--coral);
}

/* Dark mode adjustments */
[data-scheme="dark"] .dashboard-mockup {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-scheme="dark"] .dashboard-header {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .dash-stat {
    background: rgba(255, 255, 255, 0.05);
}

[data-scheme="dark"] .chart-bar {
    background: rgba(255, 107, 74, 0.35);
}

[data-scheme="dark"] .utm-tag {
    background: rgba(255, 107, 107, 0.15);
}

[data-scheme="dark"] .marketing-tool-card {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .analytics-card {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .mini-stat {
    background: rgba(255, 255, 255, 0.05);
}

[data-scheme="dark"] .integration-item {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .integration-item i {
    color: #ffffff;
}

[data-scheme="dark"] .advanced-feature-card {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .usecase-card {
    background: var(--charcoal-light);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-scheme="dark"] .code-block {
    background: #11111b;
}

/* Light mode specific */
[data-scheme="light"] .marketing-hero-title {
    color: #1a1a2e;
}

[data-scheme="light"] .marketing-tool-card h3,
[data-scheme="light"] .advanced-feature-content h3,
[data-scheme="light"] .usecase-card h4 {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 991.98px) {
    .marketing-hero {
        padding: 120px 0 60px;
    }
    
    .marketing-hero-title {
        font-size: 2.5rem;
    }
    
    .marketing-hero-visual {
        margin-top: 3rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advanced-feature-card {
        flex-direction: column;
    }
    
    .geo-item {
        grid-template-columns: 28px 80px 1fr 36px;
    }
}

@media (max-width: 575.98px) {
    .marketing-hero-title {
        font-size: 2rem;
    }
    
    .marketing-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-stat-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .analytics-mini-stats {
        grid-template-columns: 1fr;
    }
    
    .marketing-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .geo-item {
        grid-template-columns: 24px 70px 1fr 32px;
        gap: 6px;
        font-size: 0.8rem;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .navbar-coral,
    .back-to-top,
    .loading-screen,
    .blog-sidebar,
    .post-sidebar,
    .post-share,
    .related-posts-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .post-content {
        max-width: 100%;
    }
}
