/* =================================
   Trust & Safety Color Scheme
   ================================= */
:root {
    /* Primary Blues - Trust & Safety */
    --primary-blue: #1a73e8;
    --primary-blue-dark: #1557b0;
    --primary-blue-light: #4285f4;
    --accent-blue: #00bcd4;
    
    /* Supporting Colors */
    --success-green: #34a853;
    --warning-orange: #fbbc04;
    --danger-red: #ea4335;
    --info-blue: #4285f4;
    
    /* Neutrals */
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e8eaed;
    --gray-300: #dadce0;
    --gray-700: #5f6368;
    --gray-900: #202124;
    
    /* Text */
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-light: #80868b;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Borders */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-md: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --shadow-lg: 0 2px 6px 2px rgba(60, 64, 67, 0.15), 0 8px 16px 4px rgba(60, 64, 67, 0.15);
}

/* =================================
   Global Styles
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

a {
    transition: all 0.3s ease;
}

/* =================================
   Navigation
   ================================= */
.navbar {
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
}

.navbar-brand i {
    color: var(--accent-blue);
}

.bg-primary-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .btn-light {
    background: white !important;
    color: var(--primary-blue) !important;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar-nav .btn-light:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* =================================
   Hero Section V2 - New Design
   ================================= */
.hero-section-v2 {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation: rotate-slow 30s linear infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -150px;
    animation: rotate-slow 25s linear infinite reverse;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 30%;
    animation: pulse-scale 15s ease-in-out infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    animation: twinkle-rotate 4s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 60%; right: 20%; animation-delay: 1s; }
.sparkle-3 { bottom: 25%; left: 25%; animation-delay: 2s; }
.sparkle-4 { top: 35%; right: 35%; animation-delay: 3s; }

@keyframes twinkle-rotate {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Trust Badge */
.trust-badge-hero {
    display: inline-block;
}

.badge-inner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3); }
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Stats Grid */
.stats-grid-hero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-item-v2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Hero Image Card */
.hero-image-card {
    position: relative;
}

.image-container-v2 {
    position: relative;
    border-radius: 24px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.3), transparent 70%);
    border-radius: 24px;
    animation: glow-expand 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-expand {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Feature Pills */
.feature-pills {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.feature-pill {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float-smooth 3s ease-in-out infinite;
}

.pill-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.pill-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.pill-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float-smooth {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid-hero {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stats-grid-hero {
        gap: 0.75rem;
    }
    
    .stat-item-v2 {
        padding: 1rem 0.75rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-pill {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
    }
    
    .feature-pills {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Old Hero Section Styles - Keep for compatibility */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Hero Background Animations */
.hero-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: 10%;
    animation: float-diagonal 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation: float-diagonal 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation: float-vertical 12s infinite ease-in-out;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: 30%;
    animation: float-horizontal 18s infinite ease-in-out;
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 15%;
    animation: float-spin 10s infinite linear;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle-1 { top: 20%; left: 10%; animation: twinkle 3s infinite ease-in-out; }
.particle-2 { top: 60%; left: 25%; animation: twinkle 4s infinite ease-in-out 0.5s; }
.particle-3 { top: 40%; right: 15%; animation: twinkle 3.5s infinite ease-in-out 1s; }
.particle-4 { bottom: 30%; right: 30%; animation: twinkle 4.5s infinite ease-in-out 1.5s; }
.particle-5 { bottom: 50%; left: 35%; animation: twinkle 3.8s infinite ease-in-out 2s; }
.particle-6 { top: 70%; right: 40%; animation: twinkle 4.2s infinite ease-in-out 2.5s; }

@keyframes float-diagonal {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, -100px); }
}

@keyframes float-vertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-80px); }
}

@keyframes float-horizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-100px); }
}

@keyframes float-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Scale Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Float Animation for badges */
@keyframes float-smooth {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float-smooth 3s ease-in-out infinite;
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.5),
                 0 0 40px rgba(0, 188, 212, 0.3),
                 0 0 60px rgba(0, 188, 212, 0.2);
}

/* Pulse Badge */
.pulse-badge {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(26, 115, 232, 0); }
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Button Hover Fill */
.btn-hover-fill {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-hover-fill:hover::before {
    width: 100%;
}

.btn-hover-fill:hover {
    color: var(--primary-blue) !important;
    border-color: white;
}

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.2), transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Counter Number Animation */
.counter-number {
    display: inline-block;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, #0d47a1 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge .badge {
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-section h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-accent {
    color: var(--accent-blue);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-box small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.hero-image-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Hero image placeholder styles - NOT USED when actual image is present */
.hero-image-placeholder {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, 
        rgba(26, 115, 232, 0.2) 0%, 
        rgba(0, 188, 212, 0.2) 50%,
        rgba(26, 115, 232, 0.2) 100%);
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero-image-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.hero-image-placeholder .placeholder-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
}

.hero-image-placeholder .placeholder-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
}

.hero-image-container img {
    border: 4px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.875rem;
    animation: fadeInUp 0.6s ease-out;
    z-index: 10;
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0.2s;
}

.badge-2 {
    top: 40%;
    right: -5%;
    animation-delay: 0.4s;
}

.badge-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   Trust Indicators
   ================================= */
.trust-section {
    border-bottom: 3px solid var(--primary-blue);
}

.trust-section i {
    display: block;
}

/* =================================
   Purple Cow Section
   ================================= */
.purple-cow-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-highlight {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

/* =================================
   Features Section
   ================================= */
.features-section {
    background: white;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.signal-types {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.signal-badge {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.signal-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.signal-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.long-signal i { color: var(--success-green); }
.short-signal i { color: var(--danger-red); }
.spot-signal i { color: var(--info-blue); }

.signal-badge span {
    font-weight: 700;
    font-size: 0.875rem;
}

.feature-specs ul li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.alert-type-card {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
}

.alert-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon i {
    font-size: 1.5rem;
    color: white;
}

.entry-icon { background: var(--info-blue); }
.tp-icon { background: var(--success-green); }
.sl-icon { background: var(--danger-red); }
.status-icon { background: var(--primary-blue); }

.dashboard-features i {
    flex-shrink: 0;
}

/* =================================
   Reports Section (MVP)
   ================================= */
.report-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 100%;
}

.report-header {
    padding: 2rem;
    text-align: center;
}

.report-header i {
    display: block;
}

.report-body {
    padding: 2rem;
}

.pdf-embed-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.csv-preview {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    overflow-x: auto;
}

.csv-preview .table {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* =================================
   How It Works
   ================================= */
.how-it-works-section {
    background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

/* =================================
   Documentation Commands
   ================================= */
.documentation-section {
    background: white;
}

.command-group {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.command-card {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.command-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.command-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.command-header code {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: white;
}

.command-body {
    padding: 1.5rem;
}

.channel-command .command-header {
    background: linear-gradient(135deg, var(--success-green), #2d8a47);
}

.signal-examples {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.example-card {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.example-header {
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
}

.example-code {
    margin: 0;
    padding: 1.5rem;
    background: var(--gray-900);
    color: var(--gray-100);
    border-radius: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.example-code code {
    color: var(--gray-100);
}

/* =================================
   Pricing
   ================================= */
.pricing-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.popular-card {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.popular-card:hover {
    transform: scale(1.1) translateY(-10px);
}

.best-value-card {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.05), rgba(26, 115, 232, 0.05));
}

.best-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(52, 168, 83, 0.3);
}

.best-value-card .pricing-badge {
    background: linear-gradient(135deg, var(--success-green), #2d8a47);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.trial-card .pricing-badge {
    background: linear-gradient(135deg, var(--success-green), #2d8a47);
}

.pricing-header {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1rem 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin: 0 0.25rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features ul {
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* =================================
   FAQ Section
   ================================= */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

/* =================================
   Technical Specs
   ================================= */
.tech-specs-section {
    background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tech-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    border-left: 4px solid var(--primary-blue);
}

/* =================================
   CTA Section
   ================================= */
.cta-section {
    padding: 5rem 0;
}

.cta-buttons .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge-item {
    text-align: center;
}

.trust-badge-item i {
    display: block;
}

/* =================================
   Footer
   ================================= */
.footer {
    background: var(--gray-900);
}

.footer h5, .footer h6 {
    color: white;
}

.footer .social-links a:hover {
    color: var(--primary-blue-light) !important;
}

/* =================================
   Buttons
   ================================= */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), #0d47a1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-green);
    border: none;
}

.btn-success:hover {
    background: #2d8a47;
}

.btn-danger {
    background: var(--danger-red);
    border: none;
}

.btn-danger:hover {
    background: #c5221f;
}

/* =================================
   Badges
   ================================= */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.bg-primary {
    background: var(--primary-blue) !important;
}

.bg-success {
    background: var(--success-green) !important;
}

.bg-danger {
    background: var(--danger-red) !important;
}

.bg-warning {
    background: var(--warning-orange) !important;
}

.bg-info {
    background: var(--info-blue) !important;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.text-success {
    color: var(--success-green) !important;
}

.text-danger {
    color: var(--danger-red) !important;
}

/* =================================
   Alerts
   ================================= */
.alert {
    border-radius: var(--border-radius-md);
    border: none;
    box-shadow: var(--shadow-sm);
}

.alert-info {
    background: rgba(66, 133, 244, 0.1);
    color: var(--primary-blue-dark);
}

.alert-success {
    background: rgba(52, 168, 83, 0.1);
    color: #1e7e34;
}

.alert-warning {
    background: rgba(251, 188, 4, 0.1);
    color: #856404;
}

/* =================================
   CTA Section - Gorgeous Animations
   ================================= */
.cta-section {
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: rotate-circle 25s linear infinite;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: rotate-circle 20s linear infinite reverse;
}

.cta-circle-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-circle 15s ease-in-out infinite;
}

@keyframes rotate-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-circle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.cta-wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent);
}

.cta-wave-1 {
    top: 20%;
    left: -100%;
    animation: wave-move 15s linear infinite;
}

.cta-wave-2 {
    bottom: 20%;
    left: -100%;
    animation: wave-move 20s linear infinite;
    animation-delay: -7.5s;
}

@keyframes wave-move {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

.cta-sparkle {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    animation: sparkle-twinkle 3s ease-in-out infinite;
}

.cta-sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.cta-sparkle-2 { top: 70%; right: 15%; animation-delay: 0.75s; }
.cta-sparkle-3 { bottom: 20%; left: 20%; animation-delay: 1.5s; }
.cta-sparkle-4 { top: 40%; right: 25%; animation-delay: 2.25s; }

@keyframes sparkle-twinkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-mini-icon {
    font-size: 1.5rem;
}

.stat-mini-text {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
}

.btn-cta-primary {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-cta-primary:hover {
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-cta-secondary {
    position: relative;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-blue) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.trust-badge-item-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.trust-badge-item-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trust-badge-item-cta i {
    display: block;
    transition: transform 0.3s ease;
}

.trust-badge-item-cta:hover i {
    transform: scale(1.2);
}

.cta-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-footer .bi-star-fill {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    animation: star-pulse 2s ease-in-out infinite;
}

.cta-footer .bi-star-fill:nth-child(2) { animation-delay: 0.2s; }
.cta-footer .bi-star-fill:nth-child(3) { animation-delay: 0.4s; }
.cta-footer .bi-star-fill:nth-child(4) { animation-delay: 0.6s; }
.cta-footer .bi-star-fill:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* =================================
   Feature Image Placeholders
   ================================= */
.feature-image-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, 
        rgba(26, 115, 232, 0.08) 0%, 
        rgba(0, 188, 212, 0.08) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(26, 115, 232, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

.feature-image-placeholder:hover {
    background: linear-gradient(135deg, 
        rgba(26, 115, 232, 0.12) 0%, 
        rgba(0, 188, 212, 0.12) 100%);
    border-color: rgba(26, 115, 232, 0.5);
}

.feature-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.feature-image-placeholder .placeholder-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-image-placeholder .placeholder-subtext {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* =================================
   Responsive
   ================================= */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .popular-card {
        transform: scale(1);
    }
    
    .floating-badge {
        position: static;
        display: inline-block;
        margin: 0.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .stat-box h3 {
        font-size: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
}

/* =================================
   Utilities
   ================================= */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.rounded-3 { border-radius: var(--border-radius-lg) !important; }

.border-bottom { border-color: var(--gray-200) !important; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-blue-light);
    color: white;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-blue-light);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}