/* ============================================
   LANDING PAGE PREMIUM - TRANSPORT PRO
   Design B2B SaaS Ultra-Moderne
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    
    --brand-primary: #3b82f6;
    --brand-primary-glow: rgba(59, 130, 246, 0.5);
    --brand-secondary: #8b5cf6;
    --brand-accent: #10b981;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

body.landing-page {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Utilities */
.text-secondary {
    color: var(--text-secondary) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-success {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.section-padding {
    padding: 100px 0;
}

/* Premium Buttons */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #fff;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 10px 25px -5px var(--brand-primary-glow);
}

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

.btn-premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px -5px var(--brand-primary-glow);
    color: #fff;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Header Overrides */
.landing-header {
    background: rgba(9, 9, 11, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0 !important;
}

.landing-nav a {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
    font-weight: 500;
}
.landing-nav a:hover {
    color: var(--text-primary) !important;
}

.landing-header .landing-logo span {
    color: var(--text-primary) !important;
}

/* Hero Section */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Dashboard Abstract Mockup */
.hero-mockup-container {
    margin-top: 5rem;
    perspective: 1000px;
    position: relative;
    z-index: 5;
    padding: 0 1rem;
}

.hero-mockup {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 100px rgba(59, 130, 246, 0.15);
    overflow: hidden;
    transform: rotateX(15deg) scale(0.95);
    transform-origin: top center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-mockup:hover {
    transform: rotateX(5deg) scale(1);
}

.mockup-header {
    height: 48px;
    background: #1e293b;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 8px;
}

.mockup-dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    height: 500px;
}

.mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-line {
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    width: 100%;
}

.mockup-line.short { width: 60%; }

.mockup-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mockup-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mockup-widget {
    height: 120px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.mockup-chart {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.1));
}

/* Companies Logos */
.trust-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.01);
}

.trust-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
}

.trust-logos i {
    font-size: 2.5rem;
    color: #fff;
}

/* Bento Grid Features */
.bento-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(300px, auto);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

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

.bento-item-large { grid-column: span 8; }
.bento-item-small { grid-column: span 4; }

@media (max-width: 991px) {
    .bento-item-large, .bento-item-small {
        grid-column: span 12;
    }
}

.bento-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(59,130,246,0.1);
    color: var(--brand-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.bento-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bento-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-visual {
    margin-top: 2rem;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.pricing-card-popular {
    background: linear-gradient(180deg, rgba(30,58,138,0.4) 0%, var(--bg-card) 100%);
    border-color: var(--brand-primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0; margin: 2.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-features i {
    color: var(--brand-accent);
}

.pricing-features .disabled {
    color: var(--text-muted);
}
.pricing-features .disabled i {
    color: var(--text-muted);
}

.pricing-action {
    width: 100%;
    display: block;
    text-align: center;
}

.pricing-action.btn-premium {
    padding: 1.25rem;
}

/* Action CTA Bottom */
.cta-bottom-section {
    margin: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 40px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-box .btn {
    background: #fff;
    color: var(--brand-primary);
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.cta-box .btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-card-popular {
        transform: scale(1);
    }
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.premium-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

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

.footer-brand-col .footer-desc {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 0.75rem;
}

.footer-links-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--brand-primary);
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--brand-accent);
    font-size: 1.25rem;
}

.premium-footer .footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-trust-badges {
        gap: 1.5rem;
    }
}
