/* AdsPro - Premium Apple-Inspired Design */
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700;800;900&family=SF+Pro+Text:wght@300;400;500;600;700&display=swap');

/* CSS Variables for premium design */
:root {
    --primary-blue: #007AFF;
    --primary-blue-dark: #0051D5;
    --accent-purple: #5856D6;
    --accent-teal: #30D158;
    --accent-orange: #FF9500;
    --accent-red: #FF3B30;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --text-tertiary: #6E6E73;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F7;
    --bg-tertiary: #FBFBFD;
    --border-light: #D2D2D7;
    --border-lighter: #F5F5F7;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 16px 64px rgba(0, 0, 0, 0.12);
    --shadow-ultra: 0 32px 96px rgba(0, 0, 0, 0.16);
    --blur-light: blur(20px);
    --blur-heavy: blur(40px);
}

/* Typography System */
* {
    font-family: 'SF Pro Text', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 0;
    overflow-x: hidden;
}

/* Premium Navigation */
.navbar {
    background: rgba(251, 251, 253, 0.95);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border-bottom: 1px solid var(--border-lighter);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(251, 251, 253, 0.95);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    box-shadow: var(--shadow-light);
}

.brand-logo {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-primary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    border-radius: 12px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 100%);
    border-radius: 10px 10px 20px 20px;
}

.logo-icon i {
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced SVG Logo */
.logo-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-logo:hover .logo-svg {
    filter: drop-shadow(0 4px 16px rgba(0, 122, 255, 0.4));
    transform: scale(1.05);
}

.logo-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.nav-modern {
    color: var(--text-primary) !important;
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
    position: relative;
}

.nav-modern:hover {
    color: var(--primary-blue) !important;
    background: rgba(0, 122, 255, 0.1);
    transform: translateY(-1px);
}

.nav-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-modern:hover::after {
    width: 60%;
}

/* Premium Buttons */
.btn-modern {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white !important;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.6), 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 56px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-purple) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 122, 255, 0.6), 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-modern:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.85) !important;
    color: #1a1a1a !important;
    border: 2px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 14px;
    padding: 1rem 2rem;
    font-weight: 700 !important;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    text-align: center;
    min-height: 56px;
    text-shadow: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: #0066cc !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    text-shadow: none !important;
}

/* Hero Section - Apple Style */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Beautiful moving particles background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(88, 86, 214, 0.05) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(120deg);
    }

    66% {
        transform: translateY(8px) rotate(240deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
}

.trust-badge i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Value proposition cards */
.value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 140px;
}

.value-prop:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.2);
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.value-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-text strong {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.value-text span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Optimized buttons - reduced animation intensity */
.pulse-effect {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 122, 255, 0.6);
    }

    50% {
        box-shadow: 0 12px 48px rgba(0, 122, 255, 0.8);
    }
}

.btn-shimmer {
    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.8s;
}

.btn-modern:hover .btn-shimmer {
    left: 100%;
}

/* Social proof */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.stat-pulse {
    width: 8px;
    height: 8px;
    background: #30D158;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(48, 209, 88, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0);
    }
}

.live-stats span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(48, 209, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    word-break: break-word;
    hyphens: auto;
}

.gradient-text {
    background: linear-gradient(135deg,
            #007AFF 0%,
            #0051D5 25%,
            #5856D6 50%,
            #007AFF 75%,
            #0051D5 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientFlow 6s ease-in-out infinite;
    position: relative;
    filter: brightness(1.2) saturate(1.3) contrast(1.1);
    font-weight: 900;
    will-change: background-position;
}

@keyframes textGradientFlow {
    0% {
        background-position: 0% 50%;
        filter: brightness(1.4) saturate(1.6) contrast(1.2);
    }

    25% {
        background-position: 50% 0%;
        filter: brightness(1.6) saturate(1.8) contrast(1.3);
    }

    50% {
        background-position: 100% 50%;
        filter: brightness(1.5) saturate(1.7) contrast(1.25);
    }

    75% {
        background-position: 50% 100%;
        filter: brightness(1.7) saturate(1.9) contrast(1.35);
    }

    100% {
        background-position: 0% 50%;
        filter: brightness(1.4) saturate(1.6) contrast(1.2);
    }
}

.hero-subtitle {
    font-family: 'SF Pro Text', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

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

.stat-item h3 {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-item small {
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Hero Visual - Floating Platforms */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.platform-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
}

.platform-card-floating {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    /* Removed heavy floating animation for performance */
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-card-floating:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-ultra);
}

.platform-card-floating.google {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.platform-card-floating.facebook {
    top: 65%;
    right: 15%;
    animation-delay: 2s;
}

.platform-card-floating.tiktok {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.platform-card-floating.taboola {
    top: 35%;
    right: 5%;
    animation-delay: 6s;
}

.platform-card-floating i {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.platform-card-floating.google i {
    color: #EA4335;
}

.platform-card-floating.facebook i {
    color: #1877F2;
}

.platform-card-floating.tiktok i {
    color: #000000;
}

.platform-card-floating.taboola i {
    color: var(--accent-orange);
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-family: 'SF Pro Text', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Premium Cards */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-lighter);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

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

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--border-light);
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.feature-card h4 {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Platform Cards */
.platform-showcase-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    display: block;
}

.platform-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-ultra);
    text-decoration: none;
    color: inherit;
}

.platform-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.platform-showcase-card:hover .platform-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.platform-google {
    background: linear-gradient(135deg, #EA4335 0%, #FBBC04 100%);
}

.platform-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.platform-tiktok {
    background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
}

.platform-taboola {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
}

.platform-showcase-card h5 {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
}

.platform-showcase-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bg-success {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #34D399 100%) !important;
    color: white;
}

/* Vertical Highlight */
.vertical-highlight {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-medium);
}

.vertical-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.vertical-item:hover {
    transform: translateY(-4px);
}

.vertical-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.vertical-item h6 {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.vertical-item small {
    color: var(--text-tertiary);
    font-size: 0.975rem;
}

/* Pricing */
.pricing-card {
    text-align: center;
    background: var(--bg-primary);
    border: 2px solid var(--border-lighter);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-ultra);
    border-color: var(--primary-blue);
}

.pricing-header h3 {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0.75rem 0;
}

.pricing-feature i {
    margin-right: 1rem;
    font-size: 1.25rem;
}

.pricing-feature span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(88, 86, 214, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-lighter);
    padding: 4rem 0;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.footer p {
    color: var(--text-tertiary);
    margin: 0;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optimized float animation - simplified for performance */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .platform-card-floating {
        position: static;
        margin-bottom: 1.5rem;
        animation: none;
        transform: none !important;
    }

    .hero-visual {
        height: auto;
        margin-top: 3rem;
    }

    .platform-showcase {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .card {
        padding: 2rem;
    }

    .pricing-card {
        padding: 2.5rem;
    }

    .vertical-highlight {
        padding: 2.5rem;
    }
}

/* Simplified Login Page */
.login-page {
    min-height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.login-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.login-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: block;
}

.login-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 400;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 122, 255, 0.05) 100%);
    pointer-events: none;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.auth-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 100%);
}

.auth-logo i {
    position: relative;
    z-index: 2;
}

.auth-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: rgba(255, 255, 255, 1) !important;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.form-premium {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    color: #1a1a1a !important;
    font-weight: 500 !important;
}

.form-premium:focus {
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    background: rgba(255, 255, 255, 1) !important;
    color: #1a1a1a !important;
}

.auth-page .form-label {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.auth-page .form-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.auth-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.auth-footer p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.auth-link {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600 !important;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.auth-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: underline;
}

.auth-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Captcha styling */
.captcha-container {
    padding: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.captcha-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Removed heavy auth background for performance */

/* Duplicate gradientFlow animation removed */

/* Optimized Icons - Static for performance */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
    /* Removed heavy animation for performance */
    opacity: 0.3;
}

.floating-icon:nth-child(1) {
    left: 10%;
}

.floating-icon:nth-child(2) {
    left: 20%;
}

.floating-icon:nth-child(3) {
    left: 30%;
}

.floating-icon:nth-child(4) {
    left: 40%;
}

.floating-icon:nth-child(5) {
    left: 50%;
}

.floating-icon:nth-child(6) {
    left: 60%;
}

.floating-icon:nth-child(7) {
    left: 70%;
}

.floating-icon:nth-child(8) {
    left: 80%;
}

.floating-icon:nth-child(9) {
    left: 90%;
}

.floating-icon:nth-child(10) {
    left: 15%;
}

/* Beautiful Gradient Orbs with gentle movement */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: orb-float 25s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    bottom: -20%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Premium Register Card */
.premium-register-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.premium-register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #007AFF 50%, transparent 100%);
    border-radius: 20px 20px 0 0;
}

/* Enhanced Auth Elements */
.auth-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-title {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.premium-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* This section removed - consolidated above */

/* Enhanced Captcha Container */
.captcha-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    overflow: visible;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.captcha-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.3), transparent);
}

/* Enhanced Button */
.btn-modern {
    background: linear-gradient(135deg, #007AFF, #5856D6) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #0099FF, #6666FF) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .auth-page {
        padding: 0;
        min-height: 100vh;
    }

    .auth-page .container {
        padding: 1rem;
        max-width: 100%;
    }

    .auth-page .row {
        margin: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .auth-page .col-md-6 {
        padding: 0;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .premium-register-card {
        margin: 1rem 0.5rem;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        width: calc(100% - 1rem);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    .captcha-container {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .alert {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        margin-top: 0.75rem;
        border-radius: 8px;
        line-height: 1.4;
    }

    .alert-danger {
        background-color: rgba(248, 215, 218, 0.95);
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: #721c24;
        backdrop-filter: blur(10px);
    }

    .form-premium {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .form-premium:focus {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    }

    .premium-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .premium-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .auth-logo {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .floating-icon {
        font-size: 1.2rem;
    }

    .btn-modern {
        padding: 16px 24px;
        font-size: 1.1rem;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        backdrop-filter: blur(20px);
    }

    .btn-modern:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .form-label {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .form-text {
        color: rgba(255, 255, 255, 0.7);
    }

    .captcha-text {
        color: rgba(255, 255, 255, 0.9);
    }

    .captcha-container {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }
}

/* Global Form Label Styles for Auth Pages */
.auth-page .form-label {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.auth-page .form-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.auth-page .captcha-text {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.auth-page .btn-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(20px);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
}

.auth-page .btn-modern:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 576px) {

    .btn-modern,
    .btn-outline-light {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 56px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .hero-section {
        padding: 6rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 7vw, 4rem);
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .auth-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .auth-title {
        font-size: 1.75rem;
    }

    /* Mobile optimizations for wow effect */
    .trust-badges {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .trust-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .value-props {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .value-prop {
        min-width: 200px;
        justify-content: center;
        text-align: center;
    }

    .value-text {
        align-items: center;
    }

    .social-proof {
        margin-top: 2rem;
    }

    .live-stats {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .platform-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .platform-card-floating {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(251, 251, 253, 0.95);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    box-shadow: var(--shadow-light);
}