/* ============================================
   PayStream Pro Landing Page Styles
   Enhanced for SEO & Visual Impact
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-sky: #0ea5e9;
    --accent-cyan: #06b6d4;
    --accent-amber: #f59e0b;
    --accent-orange: #f97316;
    --accent-emerald: #10b981;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glow-sky: rgba(14, 165, 233, 0.4);
    --glow-amber: rgba(245, 158, 11, 0.4);
    --glow-emerald: rgba(16, 185, 129, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection styling */
::selection {
    background: var(--accent-sky);
    color: white;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
}

.bg-blob-1 {
    top: -10%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    opacity: 0.2;
    animation-delay: 0s;
}

.bg-blob-2 {
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    opacity: 0.15;
    animation-delay: -5s;
}

.bg-blob-3 {
    top: 40%;
    left: 60%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
    opacity: 0.1;
    animation-delay: -10s;
}

@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, 10px) rotate(3deg); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 { top: 15%; left: 10%; animation-delay: 0s; }
.shape-2 { top: 25%; right: 15%; animation-delay: -3s; }
.shape-3 { bottom: 30%; left: 8%; animation-delay: -6s; }
.shape-4 { top: 60%; right: 10%; animation-delay: -9s; }
.shape-5 { bottom: 15%; right: 25%; animation-delay: -12s; }

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.25; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 1.5rem;
    background: rgba(10, 15, 26, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px var(--glow-sky);
    transition: all 0.3s ease;
}

.logo-icon.glow-effect {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px var(--glow-sky); }
    50% { box-shadow: 0 4px 35px var(--glow-sky), 0 0 60px rgba(14, 165, 233, 0.2); }
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan)) !important;
    color: white !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan), var(--accent-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

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

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hover & Animation Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

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

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
}

.hero-content {
    max-width: 1100px;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-emerald);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
}

.badge-dot.pulse {
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent-emerald); }
    50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 20px var(--accent-emerald); }
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.75rem;
}

.hero-title .line-1 {
    display: block;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

/* Audience Strip */
.audience-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.audience-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.audience-tag:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(14, 165, 233, 0.4);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Social Proof Strip */
.social-proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.integration-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.integration-badge {
    padding: 0.4rem 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Plan Cards */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.plan-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.basic-glow {
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-cyan));
}

.premium-glow {
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-orange));
}

.plan-card:hover .plan-glow {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.25);
}

.plan-card.basic:hover {
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.2), 0 0 0 1px rgba(14, 165, 233, 0.1);
}

.plan-card.premium:hover, .plan-card.featured:hover {
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.25), 0 0 0 1px rgba(245, 158, 11, 0.2);
}

.plan-card.premium, .plan-card.featured {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), transparent);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.plan-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.bounce {
    animation: bounce 2s ease infinite;
}

.bounce-delayed {
    animation: bounce 2s ease infinite 0.5s;
}

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

.plan-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.free-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.trial-badge {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-sky);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.plan-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.plan-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    color: var(--accent-emerald);
    font-weight: 700;
}

.feature-check.gold {
    color: var(--accent-amber);
}

.plan-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    transition: all 0.3s;
}

.basic .plan-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--accent-sky);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.basic:hover .plan-cta {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.premium .plan-cta, .premium-cta {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.premium:hover .plan-cta, .premium:hover .premium-cta {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.cta-arrow {
    transition: transform 0.3s;
}

.plan-card:hover .cta-arrow {
    transform: translateX(6px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.3s;
}

.trust-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(16, 185, 129, 0.3);
}

.check {
    color: var(--accent-emerald);
    font-weight: bold;
}

.pulse-check {
    animation: check-pulse 2s infinite;
}

@keyframes check-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Features Section */
.features {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
}

.section-header h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.feature-icon.purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.feature-icon.green { background: linear-gradient(135deg, #10b981, #14b8a6); }
.feature-icon.orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.feature-icon.indigo { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.feature-icon.pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.glow-blue { box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3); }
.glow-purple { box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3); }
.glow-green { box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3); }
.glow-orange { box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3); }
.glow-indigo { box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3); }
.glow-pink { box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.feature-highlight {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-sky);
}

/* Stats Section */
.stats {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.5rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.stat-subtext {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.featured-testimonial {
    border-color: rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), transparent);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Plans CTA Section */
.plans-section {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
}

.plans-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.plans-guarantee {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-cyan));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.pulse-btn {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.5); }
}

/* Contact Section */
.contact {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.contact-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(14, 165, 233, 0.3);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    z-index: 1;
    padding: 4rem 0 6rem;
}

.cta-banner {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(14, 165, 233, 0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.contact-value {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, transparent, rgba(10, 15, 26, 0.5));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.footer-col a {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: all 0.2s;
    position: relative;
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-sky);
    transition: width 0.3s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-col a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-legal-links a:hover {
    color: var(--accent-sky);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.98);
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.mobile-open a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.mobile-open .nav-cta,
    .nav-links.mobile-open .nav-login {
        text-align: center;
        border-bottom: none;
    }

    .modal-content {
        padding: 1.75rem;
        max-width: 100%;
        margin: 0.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .audience-strip {
        gap: 0.5rem;
    }

    .audience-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .social-proof-strip {
        flex-direction: column;
        gap: 1rem;
    }

    .plan-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .plan-card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 1rem 3rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .integration-badges {
        flex-direction: column;
    }

    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Login Button in Nav */
.nav-login {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.nav-login:hover {
    color: var(--accent-sky) !important;
}

/* Plans Page */
.plans-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
}

.plans-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.plans-page-cards {
    max-width: 900px;
    margin: 3rem auto;
}

.plans-page .trust-badges {
    justify-content: center;
}

.already-have-account {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.already-have-account a {
    color: var(--accent-sky);
    text-decoration: none;
    font-weight: 500;
}

.already-have-account a:hover {
    color: var(--accent-cyan);
}

.plans-footer {
    padding: 1.5rem 0;
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--glass-bg);
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--glass-bg-hover);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.modal-logo .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-sky);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.password-toggle:hover {
    opacity: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-sky);
}

.forgot-password {
    color: var(--accent-sky);
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: var(--accent-cyan);
}

.login-error {
    padding: 0.875rem 1rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #f87171;
    font-size: 0.9rem;
    text-align: center;
}

.login-submit {
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.modal-footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.modal-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.modal-footer a {
    color: var(--accent-sky);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.modal-footer a:hover {
    color: var(--accent-cyan);
}

/* Print styles */
@media print {
    .bg-effects,
    .floating-shapes,
    .navbar,
    .modal-overlay {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

