/* Modern Global Reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Outfit:wght@500;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-alt: #f1f5f9;
    --bg-glow: #eff6ff;
    --bg-reviews: #f5f3ff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --secondary-gradient: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    --gradient-vibrant: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.06);
    --card-hover: rgba(0, 0, 0, 0.02);
    --accent-color: #ec4899;
    --accent-vibrant: #f43f5e;
    --accent-vibrant-2: #8b5cf6;
    --accent-vibrant-3: #06b6d4;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.glass-card, .glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Noise */
.bg-noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Background Globs */
.background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.25;
    animation: float 20s infinite ease-in-out;
}
.orb-1 { width: 600px; height: 600px; background: #6366f1; top: -150px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: #ec4899; bottom: -100px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: #06b6d4; top: 30%; left: 60%; animation-delay: -8s; }
.orb-4 { width: 350px; height: 350px; background: #fb923c; bottom: 20%; left: 10%; animation-delay: -12s; opacity: 0.15; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 1.5rem; font-weight: 800; font-family: 'Outfit'; color: var(--text-primary); }
.logo .highlight { color: #6366f1; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-primary); }
.btn-nav {
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    background: rgba(0,0,0,0.03);
}
.btn-nav:hover { background: rgba(0,0,0,0.06); border-color: #6366f1; color: #6366f1 !important; }

/* Wrapper */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.badge-pill {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-vibrant);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 500px; }

/* Stats Row */
.stats-row {
    display: flex; gap: 3rem; margin-top: 3rem; border-top: 1px solid var(--glass-border); padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.stat-label { font-size: 0.875rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Visual Card */
.card-tilt {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}
.card-tilt:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.window-header { background: rgba(0,0,0,0.03); padding: 10px; display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.red { background: #ef4444; } .yellow { background: #f59e0b; } .green { background: #10b981; }

.data-preview-table { font-family: monospace; font-size: 0.85rem; padding: 20px; color: #475569; }
.tbl-row { display: grid; grid-template-columns: 1fr 1fr 0.8fr 1.2fr; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.head { color: #94a3b8; font-weight: bold; text-transform: uppercase; font-size: 0.75rem; }
.blur-row { filter: blur(4px); user-select: none; opacity: 0.4; }
.floating-badge {
    position: absolute; top: 60%; left: 50%; transform: translate(-50%, -50%);
    background: #10b981; color: white; padding: 10px 20px; border-radius: 8px; font-weight: 600;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Buttons */
.btn-primary {
    background: var(--primary-gradient);
    color: white; padding: 1rem 2rem; border-radius: 8px;
    border: none; font-size: 1.05rem; font-weight: 600; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3); }
.arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(5px); }
.guarantee { margin-top: 1rem; font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }

/* Logo Strip */
.logo-strip { text-align: center; padding: 4rem 0; background: var(--bg-subtle); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.logo-strip p { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--text-secondary); font-weight: 600; }
.logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; font-weight: 700; color: #94a3b8; font-size: 1.1rem; }

/* Sections */
/* Sections */
.section-dark { padding: 8rem 0; background: var(--bg-alt); position: relative; border-bottom: 1px solid rgba(0,0,0,0.03); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.section-header h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.subtitle { color: var(--text-secondary); font-size: 1.25rem; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.feature-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 3rem; border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: #6366f1; }
.icon-box { 
    font-size: 2.5rem; 
    margin-bottom: 2rem; 
    width: 76px; 
    height: 76px; 
    background: white;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 18px; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}
.icon-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--primary-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}
.feature-card:hover .icon-box::before { opacity: 0.3; }

/* Showcase */
/* Showcase */
.section-glow { padding: 8rem 0; position: relative; background: var(--bg-glow); border-bottom: 1px solid rgba(0,0,0,0.03); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.check-list { list-style: none; display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.check-list li { display: flex; gap: 1rem; font-size: 1.15rem; align-items: center; color: var(--text-secondary); background: white; padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.02); }
.check-list li span { color: #10b981; font-weight: bold; }
.folder-stack { position: relative; height: 300px; padding-left: 2rem; }
.folder {
    position: absolute; width: 280px; height: 180px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-weight: 600; color: #64748b;
    transition: transform 0.4s;
}
.f-1 { top: 0; left: 0; z-index: 1; transform: rotate(-5deg); }
.f-2 { top: 40px; left: 40px; z-index: 2; transform: rotate(2deg); background: #f8fafc; color: var(--text-primary); border-color: rgba(99, 102, 241, 0.1); }
.f-3 { top: 80px; left: 80px; z-index: 3; transform: rotate(-3deg); }
.folder-stack:hover .f-1 { transform: rotate(-15deg) translate(-20px, -20px); }
.folder-stack:hover .f-2 { transform: rotate(0deg); }
.folder-stack:hover .f-3 { transform: rotate(15deg) translate(20px, 20px); }

/* Data Attribute Enhancements */
.attribute-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.attr-tag { 
    display: flex; align-items: center; gap: 10px; background: #ffffff; 
    padding: 12px 16px; border-radius: 12px; border: 1px solid #e2e8f0; 
    font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
    box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.attr-tag i { color: #6366f1; font-size: 1.1rem; }
.attr-tag:hover { transform: translateX(5px); border-color: #6366f1; box-shadow: var(--shadow-md); }

.record-preview-card {
    background: #ffffff; padding: 2rem; border-radius: 24px; 
    border: 1px solid var(--glass-border); box-shadow: var(--shadow-xl);
    max-width: 400px; position: relative; overflow: hidden;
}
.record-preview-card::after {
    content: 'SAMPLE RECORD'; position: absolute; top: 12px; right: -30px; 
    background: #6366f1; color: white; padding: 4px 40px; font-size: 0.7rem;
    font-weight: 800; transform: rotate(45deg);
}
.record-header { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; }
.record-avatar { width: 50px; height: 50px; border-radius: 12px; background: var(--primary-gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; }
.record-info h4 { font-size: 1.1rem; margin: 0; }
.record-info p { font-size: 0.85rem; color: #6366f1; margin: 0; font-weight: 600; }
.record-details { display: grid; gap: 12px; }
.detail-item { display: flex; justify-content: space-between; border-bottom: 1px solid #f1f5f9; padding-bottom: 8px; font-size: 0.9rem; }
.detail-item span:first-child { color: var(--text-secondary); font-weight: 500; }
.detail-item span:last-child { color: var(--text-primary); font-weight: 600; }
.detail-item.verified span:last-child { color: #059669; display: flex; align-items: center; gap: 4px; }
.detail-item.verified span:last-child::after { content: '✓'; font-weight: bold; }

/* Categories Grid */
.section-categories { padding: 8rem 0; background: #ffffff; position: relative; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.cat-item { background: #f8fafc; padding: 1rem; border-radius: 8px; border: 1px solid #e2e8f0; font-size: 0.9rem; font-weight: 600; color: var(--text-primary); transition: all 0.3s ease; }
.cat-item:hover { transform: translateY(-3px); border-color: #6366f1; box-shadow: var(--shadow-md); background: #ffffff; }

#preview, #features, #pricing, #reviews { scroll-margin-top: 100px; }

/* Reviews */
/* Reviews */
.section-reviews { padding: 8rem 0; background: var(--bg-reviews); border-bottom: 1px solid rgba(0,0,0,0.03); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
.review-card {
    background: #ffffff; padding: 2.5rem; border-radius: 20px; border: 1px solid var(--glass-border); font-style: italic; box-shadow: var(--shadow-lg); transition: transform 0.3s;
}
.review-card:hover { transform: scale(1.02); }
.author { display: flex; flex-direction: column; margin-top: 1.5rem; font-style: normal; font-size: 0.9rem; }
.author strong { color: var(--text-primary); }
.author span { color: var(--text-secondary); font-size: 0.8rem; }
.stars { color: #f59e0b; margin-bottom: 1rem; font-size: 0.8rem; }

/* Pricing */
.pricing-section { padding: 5rem 0; background: var(--bg-light); }
.pricing-card {
    max-width: 500px; margin: 0 auto; text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05); border-radius: 20px; padding: 3rem;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-premium);
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--primary-gradient);
}
.popular-tag {
    background: #fdf2f8; color: #db2777; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 2rem; display: inline-block;
}
.price-box { margin: 2rem 0; display: inline-flex; align-items: baseline; gap: 5px; }
.currency { font-size: 2rem; color: var(--text-secondary); }
.amount { font-size: 4.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.original { text-decoration: line-through; color: #94a3b8; font-size: 1.5rem; margin-left: 10px; }
.period { color: var(--text-secondary); margin-bottom: 2rem; display: block; }
.pulse-btn { width: 100%; justify-content: center; font-size: 1.2rem; padding: 1.2rem; }
.secure-icons { margin-top: 1rem; font-size: 0.8rem; color: #10b981; font-weight: 600; }

/* FAQ Accordion */
.faq-accordion { margin-top: 3rem; text-align: left; }
.faq-accordion details { background: #f8fafc; margin-bottom: 0.5rem; border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.faq-accordion summary { padding: 1rem; cursor: pointer; font-weight: 600; list-style: none; position: relative; color: var(--text-primary); }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after { content: '+'; position: absolute; right: 1rem; }
.faq-accordion details[open] summary::after { content: '-'; }
.faq-accordion p { padding: 1rem; padding-top: 0; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }

/* Footer */
footer { border-top: 1px solid var(--glass-border); padding: 4rem 0; margin-top: 3rem; color: var(--text-secondary); font-size: 0.95rem; background: #ffffff; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; }
footer h4 { margin-bottom: 1rem; color: var(--text-primary); font-size: 1.25rem; }
.legal-links { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.legal-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.legal-links a:hover { color: #6366f1; }
.footer-disclaimer { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; font-size: 0.8rem; line-height: 1.6; color: #94a3b8; }

/* Sticky Mobile Bar */
.sticky-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 15px; z-index: 999;
    display: none;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    animation: slideUp 0.5s ease-out;
}
.bar-content { display: flex; justify-content: space-between; align-items: center; max-width: 600px; margin: 0 auto; }
.timer { color: var(--text-primary); font-weight: 600; font-variant-numeric: tabular-nums; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; border-radius: 6px; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 100px; padding-bottom: 60px; }
    .hero h1 { font-size: 2.75rem; line-height: 1.1; }
    .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-text { margin: 0 auto; }
    .hero p { margin: 0 auto 2.5rem; font-size: 1.1rem; }
    .cta-group { justify-content: center; flex-direction: column; align-items: center; }
    .stats-row { justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
    .stat-num { font-size: 1.25rem; }
    
    .section-dark, .section-glow, .section-reviews { padding: 5rem 0; }
    .section-header h2 { font-size: 2.25rem; }
    
    .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
    .feature-card { padding: 2rem; }
    
    .sticky-bar { display: block; }
    .showcase-grid { grid-template-columns: 1fr; gap: 3rem; }
    .check-list li { font-size: 1rem; }
    .folder-stack { margin: 0 auto; width: 100%; max-width: 300px; height: 250px; }
    
    .footer-content { flex-direction: column; gap: 2.5rem; text-align: center; align-items: center; }
    .legal-links { justify-content: center; flex-wrap: wrap; }
    .footer-disclaimer { text-align: center; }

    .pricing-card { padding: 2rem 1.5rem; }
    .amount { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.25rem; }
    .stat { width: 45%; }
    .stats-row { gap: 1rem; }
    .logo { font-size: 1.25rem; }
}
