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

:root {
    --primary: #D4427D;
    --primary-light: #FCE7F0;
    --primary-dark: #A62D5D;
    --secondary: #1A1A1A;
    --accent: #D4AF37;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --bg-light: #FDFDFD;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--primary-light);
}

.text-muted { color: var(--text-muted); }
.text-xs { font-size: 12px; }
.text-primary { color: var(--primary); }
.icon-primary { color: var(--primary); }
.icon-success { color: #2ecc71; }
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.logo span {
    color: var(--secondary);
    font-weight: 400;
    font-size: 0.7em;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 24px;
    z-index: 1001;
}

.cta-header {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 66, 125, 0.2);
    white-space: nowrap;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 66, 125, 0.3);
}

.cta-header.login {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.cta-header.login:hover {
    background: var(--primary-light);
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.pb-0 { padding-bottom: 0; }
.overflow-hidden { overflow: hidden; }

.section-title { font-size: 36px; margin-bottom: 16px; }
.section-title-alt { font-size: 40px; margin-bottom: 24px; }
.overline { 
    color: var(--primary); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 12px; 
}

.img-border { border: 8px solid white; }

.btn-full { width: 100%; text-align: center; }

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, var(--primary-light), transparent 40%),
                radial-gradient(circle at bottom left, #fff1f5, transparent 30%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-cta-wrapper {
    text-align: left;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.price-hint {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    display: block;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Stats */
.floating-card {
    position: absolute;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 20%; left: -10%; animation-delay: 0s; }
.card-2 { bottom: 15%; right: -5%; animation-delay: 2s; }

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

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Pricing */
.pricing {
    background: #f8f9fa;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    z-index: 2;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 24px 0;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* Testimonials */
.testimonial-card {
    padding: 30px !important;
}

.rating {
    display: flex;
    gap: 4px;
    color: #f1c40f;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-info {
    font-size: 14px;
    color: var(--text-muted);
}

.social-proof-text {
    font-size: 20px;
    font-weight: 500;
}

/* Integrations */
.integrations-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.integrations-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.integrations-track {
    display: inline-flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    color: white !important;
    margin-bottom: 24px;
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    font-size: 14px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-title {
    margin-bottom: 20px;
    color: white;
}

.footer-group {
    list-style: none;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 40px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-title {
    margin-bottom: 16px;
    font-size: 24px;
}

.modal-description {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-cancel {
    width: 100%;
    margin-top: 12px;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

/* Responsive */
@media (max-width: 1100px) {
    .container { padding: 0 40px; }
    .hero-content h1 { font-size: 42px; }
    .hero-grid { gap: 40px; }
    
    .menu-toggle { display: block; }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 24px;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 40px;
        gap: 16px;
    }

    .cta-header {
        width: 100%;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content p { margin: 0 auto 40px; }
    .hero-ctas { justify-content: center; }
    .hero-cta-wrapper { text-align: center; }

    .dashboard-grid {
        flex-direction: column-reverse;
        display: flex;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin: 0 auto;
        gap: 40px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .card-1, .card-2 { display: none; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links-grid {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero-content h1 { font-size: 36px; }
    .section-title { font-size: 28px; }
    .section-title-alt { font-size: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 16px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .btn-primary { width: 100%; text-align: center; padding: 15px 30px; font-size: 16px; }
    
    .logo { font-size: 20px; }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card { padding: 30px 20px; }
    .price { font-size: 36px; }
}
