@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --lp-primary: #4f46e5;
    --lp-primary-dark: #3730a3;
    --lp-primary-soft: rgba(79, 70, 229, 0.08);
    --lp-secondary: #7c3aed;
    --lp-accent: #0ea5e9;
    --lp-dark: #0f172a;
    --lp-text: #334155;
    --lp-text-heading: #0f172a;
    --lp-bg: #ffffff;
    --lp-bg-alt: #f8fafc;
    --lp-border: #e2e8f0;
    --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --lp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --lp-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --lp-radius: 16px;
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-primary { color: var(--lp-primary) !important; }
.bg-primary { background-color: var(--lp-primary) !important; }
.border-primary { border-color: var(--lp-primary) !important; }
.text-secondary { color: var(--lp-secondary) !important; }
.bg-secondary { background-color: var(--lp-secondary) !important; }

html,
body.lp-body {
    font-family: 'Inter', sans-serif;
    color: var(--lp-text);
    background-color: var(--lp-bg);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, .lp-font-poppins {
    font-family: 'Poppins', sans-serif;
    color: var(--lp-text-heading);
    font-weight: 800;
}

h1 { letter-spacing: -0.04em; }
h2 { letter-spacing: -0.02em; font-weight: 700; }

.lp-section { padding: 80px 0; }
.lp-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 16px 0;
    transition: var(--lp-transition);
    background: #ffffff;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.lp-nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.lp-nav-content { display: flex; justify-content: space-between; align-items: center; }
.lp-logo { font-size: 24px; font-weight: 800; color: var(--lp-dark); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.lp-logo span { color: var(--lp-primary); }

.lp-nav-links { display: flex; gap: 32px; align-items: center; }
.lp-nav-links a { text-decoration: none; color: var(--lp-text); font-weight: 500; font-size: 15px; transition: var(--lp-transition); }
.lp-nav-links a:hover { color: var(--lp-primary); }

.lp-nav-links .lp-btn-primary { color: #fff !important; }
.lp-nav-links .lp-btn-outline { color: var(--lp-text-heading) !important; }
.lp-nav-links .lp-btn-outline:hover { color: var(--lp-primary) !important; }

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--lp-transition);
    cursor: pointer;
    border: none;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

.lp-btn-primary:hover {
    background: var(--lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.lp-btn-outline {
    background: #fff;
    border: 1px solid var(--lp-border);
    color: var(--lp-text-heading);
}

.lp-btn-outline:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
}

/* Premium Eye-Catching Button */
.lp-btn-premium {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    background-size: 200% auto;
    color: #fff !important;
    border: none;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
}

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

.lp-btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5);
    color: #fff !important;
}

.lp-btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.15);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.lp-btn-premium:hover::after {
    left: 120%;
}

/* Hero */
.lp-hero {
    padding: 160px 0 100px;
    background: var(--lp-bg-alt);
    background-image: 
        radial-gradient(circle at 70% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 40%);
}

.lp-hero-grid { display: grid; grid-template-columns: 1.2fr 1.5fr; gap: 60px; align-items: center; }
.lp-hero-badge {
    background: var(--lp-primary-soft);
    color: var(--lp-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
}

.lp-hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1.5px; }
.lp-hero p { font-size: 1.15rem; margin-bottom: 40px; line-height: 1.7; max-width: 540px; }

.lp-hero-visual { position: relative; }
.lp-hero-mockup {
    width: 110%;
    margin-left: -5%;
    border-radius: 24px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.15);
    border: 8px solid #fff;
}

.lp-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: lp-float 4s ease-in-out infinite;
}

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pricing Card Special State */
.lp-pricing-featured {
    transform: scale(1.1);
    z-index: 2;
}

/* Feature Cards */
.lp-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.lp-feature-card {
    background: #fff;
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid var(--lp-border);
    transition: var(--lp-transition);
}

.lp-feature-card:hover { border-color: var(--lp-primary); transform: translateY(-10px); box-shadow: var(--lp-shadow-lg); }
.lp-feature-icon {
    width: 64px; height: 64px; background: var(--lp-primary-soft); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--lp-primary); margin-bottom: 32px;
}
.lp-feature-card h4 { font-weight: 600; font-size: 1.25rem; margin-bottom: 12px; }
.lp-feature-card p { font-weight: 500; font-size: 0.95rem; line-height: 1.6; }

/* Problem/Solution */
.lp-problem-box { background: #f1f5f9; border-radius: 32px; padding: 80px; text-align: center; }

/* Partners - Modern SaaS Band */
.lp-partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text);
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    white-space: nowrap;
    cursor: default;
}

.lp-partner-logo i { font-size: 28px; }

.lp-partner-logo:hover { 
    opacity: 1; 
    filter: grayscale(0%);
    transform: translateY(-2px);
    color: var(--lp-dark); 
}

/* Specific Brand Colors on Hover */
.lp-partner-logo:hover .bi-meta { color: #0668E1; }
.lp-partner-logo:hover .bi-facebook { color: #1877F2; }
.lp-partner-logo:hover .bi-instagram { color: #E4405F; }
.lp-partner-logo:hover .bi-google { color: #EA4335; }
.lp-partner-logo:hover .bi-linkedin { color: #0A66C2; }

/* Legal Pages */
.lp-legal-header {
    padding: 120px 0 60px;
    background: var(--lp-bg-alt);
    text-align: center;
}

.lp-legal-content {
    max-width: 800px;
    margin: 60px auto;
    line-height: 1.8;
}

.lp-legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.lp-legal-content ul {
    margin-bottom: 24px;
}

.lp-legal-content li {
    margin-bottom: 12px;
}

.lp-step-box {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 4px solid var(--lp-primary);
}
@media (max-width: 1024px) {
    .lp-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .lp-hero h1 { font-size: 3rem; }
    .lp-hero p { margin-left: auto; margin-right: auto; }
    .lp-hero-mockup { width: 100%; margin-left: 0; }
    .lp-pricing-featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .lp-section { padding: 60px 0; }
    .lp-hero { padding: 120px 0 60px; }
    .lp-hero h1 { font-size: 2.25rem; letter-spacing: -1px; }
    .lp-hero p { font-size: 1rem; }
    .lp-nav { padding: 12px 0; }
    .lp-logo { font-size: 20px; }
    .lp-feature-card { padding: 32px 24px; }
    .lp-problem-box { padding: 40px 24px; border-radius: 24px; }
    .display-4 { font-size: 2rem !important; }
    .display-5 { font-size: 1.75rem !important; }
    .lp-floating-card { display: none !important; }
}

@media (max-width: 480px) {
    .lp-section { padding: 40px 0; }
    .lp-container { padding: 0 20px; }
    .lp-btn { width: 100%; justify-content: center; }
}
