/* Premium SaaS Landing Page Styles */
.landing-wrapper {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 50px;
    width: 100%;
}

/* Gradients & Text */
.text-gradient {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Backgrounds */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite alternate;
}
.hero-glow-1 {
    top: -100px;
    left: -100px;
    background: #4facfe;
}
.hero-glow-2 {
    top: 20%;
    right: -200px;
    background: #00f2fe;
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.1); }
}

/* Typography */
.hero-section {
    position: relative;
    padding: 120px 20px 60px;
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-premium {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    color: #a0aec0;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-glow {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Mockup Showcase */
.hero-mockup-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.hero-mockup {
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-mockup-container:hover .hero-mockup {
    transform: rotateX(0deg) scale(1);
}

.mockup-header {
    background: #1a1a24;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}
.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-img {
    width: 100%;
    display: block;
    opacity: 0.8;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.fc-1 {
    top: 20%;
    left: -5%;
}

.fc-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: -3s;
}

.text-green { color: #27c93f; }
.text-blue { color: #4facfe; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Social Proof */
.social-proof {
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0,0,0,0.2);
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    color: #a0aec0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-header p {
    font-size: 1.15rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features-section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4facfe;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.pro-card {
    background: linear-gradient(180deg, rgba(79, 172, 254, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(79, 172, 254, 0.3);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79, 172, 254, 0.1) inset;
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 242, 254, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.pricing-card .period {
    font-size: 1rem;
    color: #a0aec0;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
}

.pricing-features li i {
    color: #4facfe;
}

.pricing-features li.disabled {
    color: #4a5568;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: #4a5568;
}

.w-100 { width: 100%; box-sizing: border-box; }
.mt-4 { margin-top: 30px; }

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.05) 100%);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.lp-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.lp-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.lp-brand span {
    color: #4facfe;
}

.lp-footer p {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Animations Logic */
.reveal-fade, .reveal-up {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-section { padding: 80px 15px 40px; }
    .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-ctas { flex-direction: column; gap: 15px; }
    .btn-glow, .btn-outline { width: 100%; }
    .floating-card { display: none; }
    .social-proof { padding: 40px 15px; }
    .stat-number { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
    .features-section, .pricing-section { padding: 60px 15px; }
    .pro-card { transform: scale(1); margin-top: 20px; margin-bottom: 20px; }
    .cta-box { padding: 40px 20px; }
    .cta-title { font-size: 2rem; }
    .hero-glow { width: 300px; height: 300px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .badge-premium { font-size: 0.75rem; padding: 6px 12px; }
    .stat-number { font-size: 1.5rem; }
    .section-header h2 { font-size: 1.8rem; }
}
