/**
 * ODS CRM Marketing Landing Page - Premium Styles
 */

:root {
    --mkt-bg: #050505;
    --mkt-text: #ffffff;
    --mkt-text-muted: #94a3b8;
    --mkt-primary: #3b82f6;
    --mkt-primary-glow: rgba(59, 130, 246, 0.5);
    --mkt-accent: #8b5cf6;
    --mkt-glass: rgba(255, 255, 255, 0.03);
    --mkt-border: rgba(255, 255, 255, 0.08);
    --mkt-radius: 24px;
}

.crm-mkt-body {
    background-color: var(--mkt-bg);
    color: var(--mkt-text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.mkt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.mkt-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.mkt-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: var(--mkt-primary-glow);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.mkt-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.mkt-hero p {
    font-size: 1.25rem;
    color: var(--mkt-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.mkt-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mkt-btn {
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mkt-primary {
    background: var(--mkt-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-mkt-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}

.btn-mkt-outline {
    background: var(--mkt-glass);
    color: white;
    border: 1px solid var(--mkt-border);
}

.btn-mkt-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Preview Image */
.mkt-preview {
    margin-top: 5rem;
    perspective: 1000px;
}

.preview-frame {
    background: #0f0f0f;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 0.5rem;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.preview-frame:hover {
    transform: rotateX(0deg);
}

.preview-frame img {
    width: 100%;
    border-radius: calc(var(--mkt-radius) - 8px);
    display: block;
}

/* Features Section */
.mkt-features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--mkt-glass);
    border: 1px solid var(--mkt-border);
    padding: 2.5rem;
    border-radius: var(--mkt-radius);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--mkt-primary);
    transform: translateY(-10px);
}

.feature-card i {
    width: 48px;
    height: 48px;
    color: var(--mkt-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--mkt-text-muted);
    font-size: 0.9375rem;
}

/* CTA Footer */
.mkt-footer-cta {
    padding: 8rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem;
    border-radius: var(--mkt-radius);
    border: 1px solid var(--mkt-border);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--mkt-primary);
    filter: blur(100px);
    opacity: 0.2;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mkt-hero h1 { font-size: 2.5rem; }
    .mkt-cta-group { flex-direction: column; }
    .cta-box { padding: 2.5rem 1.5rem; }
}
