/* assets/css/landing.css - Ultra Premium Indigo SaaS Edition */

:root {
    --bg-dark: #07080C;
    --card-bg: rgba(21, 25, 34, 0.6);
    --primary: #6366f1;
    --secondary: #a78bfa;
    --text-muted: #94a3b8;
    --radius: 30px;
}

body.landing-body {
    background-color: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Arka Plan Işık Küreleri (Blurry Blobs) */
.blob-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
}

.blob-1 { top: -100px; left: -100px; animation: float 20s infinite alternate; }
.blob-2 { bottom: -100px; right: -100px; animation: float 25s infinite alternate-reverse; }

@keyframes float {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(100px, 100px) rotate(360deg); }
}

/* Navbar Premium */
.landing-nav {
    padding: 20px 0;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 12, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
}

.nav-logo-icon {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
    animation: orbit-rotate 10s linear infinite;
}

.nav-logo-text {
    height: 24px;
    width: auto;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0 auto;
}

.nav-link-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s ease;
}

.nav-link-item:hover {
    color: #fff;
}

.nav-link-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s;
}

.login-link:hover { color: var(--primary); }

.btn-premium-sm {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    transition: all 0.3s;
}

.btn-premium-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    color: #fff;
}

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

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.hero-badge::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%; }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -4px;
    margin-bottom: 30px;
    color: #fff;
}

.hero-title span {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.2));
}

.hero-description {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; letter-spacing: -2px; }
    .hero-description { font-size: 1.1rem; }
}

.hero-btns .btn-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Dashboard Mockup */
.hero-mockup {
    margin-top: 80px;
    position: relative;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateX(5deg);
}

.hero-mockup img {
    width: 100%;
    border-radius: 30px;
}

/* Features Grid */
.features-section { padding: 100px 0; }

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--radius);
    transition: all 0.4s;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-icon {
    width: 60px; height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin-bottom: 25px;
}

.feature-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
.feature-text { color: var(--text-muted); line-height: 1.6; }

/* Stats Section Premium */
.stats-section {
    padding: 80px 0;
    position: relative;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s;
}

.stat-glass-card:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: scale(1.02);
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: inset 0 0 15px rgba(99, 102, 241, 0.1);
}

.active-stat {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    border-color: rgba(99, 102, 241, 0.2);
}

.active-stat .stat-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    animation: iconPulse 2s infinite alternate;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin: 5px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .stat-glass-card { padding: 20px; gap: 15px; }
    .stat-number { font-size: 2.2rem; }
}

/* Features Section Premium */
.features-section { padding: 100px 0; position: relative; }

.tool-card {
    background: rgba(21, 25, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    background: rgba(21, 25, 34, 0.8);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.1);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

.tool-icon-wrap {
    width: 55px; height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.4s;
}

.tool-card:hover .tool-icon-wrap {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.tool-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.tool-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-footer span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    opacity: 0.8;
}

.tool-footer i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.tool-card:hover .tool-footer i {
    transform: translateX(5px);
    color: var(--primary);
}

/* Featured Tool (Highlighted) */
.featured-tool {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
}

.featured-tool::after {
    content: 'POPÜLER';
    position: absolute;
    top: 20px; right: -30px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .tool-card { padding: 30px 20px; }
}

/* Product Showcase Premium */
.product-showcase-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.mockup-browser {
    background: #151922;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dots { display: flex; gap: 8px; }
.mockup-header .dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.mockup-header .dots span:nth-child(1) { background: #ff5f56; }
.mockup-header .dots span:nth-child(2) { background: #ffbd2e; }
.mockup-header .dots span:nth-child(3) { background: #27c93f; }

.address-bar {
    margin-left: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 20px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-grow: 0.5;
    text-align: left;
}

.mockup-content {
    position: relative;
    padding: 0;
    min-height: 400px;
    background: #07080C;
}

.mockup-content img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.5s, transform 0.5s;
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #07080C);
    pointer-events: none;
}

/* Feature Selectors */
.showcase-selectors {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.selector-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    color: var(--text-muted);
}

.selector-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    color: #fff;
}

.selector-card.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.sel-icon { font-size: 1.1rem; color: var(--primary); }
.sel-text { font-size: 0.9rem; font-weight: 700; white-space: nowrap; }

@media (max-width: 768px) {
    .showcase-selectors { gap: 10px; }
    .selector-card { padding: 10px 15px; width: calc(50% - 10px); }
}

/* Pricing Section Premium */
.pricing-section {
    position: relative;
    z-index: 2;
}

.pricing-glass-card {
    background: rgba(21, 25, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(21, 25, 34, 0.6);
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-specs {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
}

.spec-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.75rem;
}

.btn-plan-outline {
    padding: 12px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-plan-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

/* Featured Plan (Professional) */
.featured-plan {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.1);
    position: relative;
    transform: scale(1.05);
}

.featured-plan:hover { transform: scale(1.05) translateY(-10px); }

.plan-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.featured-plan .plan-name { color: var(--primary); }

.btn-plan-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    transition: all 0.3s;
}

.btn-plan-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    color: #fff;
}

@media (max-width: 1200px) {
    .featured-plan { transform: none; }
    .featured-plan:hover { transform: translateY(-10px); }
}

/* CTA Section Premium */
.cta-section {
    padding: 100px 0;
}

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    border-radius: 40px;
    padding: 80px 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    pointer-events: none;
    z-index: -1;
}

.cta-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ctaOrbit 20s linear infinite;
}

.cta-ring-2 {
    inset: 50px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes ctaOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.btn-cta-primary {
    background: #fff;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 45px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-trust {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-title { font-size: 2.5rem; }
    .cta-btns { flex-direction: column; gap: 15px; }
    .btn-cta-primary, .btn-cta-outline { width: 100%; }
}

/* Global Footer */
.landing-footer {
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* How It Works Premium Styling */
.how-it-works-section {
    position: relative;
    overflow: hidden;
}

.process-wrapper {
    position: relative;
    padding-top: 40px;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    z-index: 1;
}

.process-card {
    position: relative;
    z-index: 2;
    background: rgba(21, 25, 34, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-15px);
    background: rgba(21, 25, 34, 0.7);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.2);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.05);
    line-height: 1;
    z-index: -1;
    font-family: 'Inter', sans-serif;
}

.process-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.4s;
}

.process-card:hover .process-icon-wrap {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
}

.icon-glow {
    animation: iconPulse 2s infinite alternate;
}

@keyframes iconPulse {
    from { box-shadow: 0 0 15px rgba(99, 102, 241, 0.4); }
    to { box-shadow: 0 0 35px rgba(99, 102, 241, 0.7); }
}

@media (max-width: 768px) {
    .process-line { display: none; }
    .process-card { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .hero-description { font-size: 1.1rem; }
}

/* Footer Premium */
.landing-footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.02));
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon { width: 40px; height: auto; }
.footer-logo-text { height: 20px; width: auto; }

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none !important;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}

.footer-title {
    color: #fff; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 25px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
    color: var(--text-muted); text-decoration: none !important;
    font-size: 0.95rem; transition: all 0.3s;
}

.footer-links li a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.footer-email-btn {
    display: inline-flex; align-items: center; padding: 12px 20px;
    background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px; color: var(--primary); font-weight: 700;
    text-decoration: none !important; transition: all 0.3s;
}

.footer-email-btn:hover { background: var(--primary); color: #fff; box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }

.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.copyright-text, .made-with { color: rgba(255, 255, 255, 0.3); font-size: 0.85rem; margin: 0; }

@media (max-width: 991px) {
    .footer-brand { justify-content: center; }
    .footer-tagline { max-width: 100%; margin: 0 auto; }
    .footer-social { justify-content: center; }
}


/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Lists/Grids */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

