:root {
    --primary: #7A489D;
    --primary-light: #9B62C4;
    --primary-dark: #583173;
    --secondary: #F3EEF9; /* Very light purple for backgrounds */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 25px -5px rgba(122, 72, 157, 0.4);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & BaseStyles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(122, 72, 157, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--border-color);
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

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

.nav-actions {
    display: flex;
    gap: 16px;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

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

.hero-text .badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.no-cc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dot {
    color: #D1D5DB;
}

/* Hero Mockup (Abstract CSS Art) */
.hero-image {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    background: var(--bg-light);
    padding: 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.mockup-body {
    display: flex;
    height: 350px;
}

.mockup-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mockup-body .sidebar {
    width: 25%;
    border-right: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar .item {
    height: 16px;
    border-radius: 4px;
    background: var(--bg-light);
}
.sidebar .item.active {
    background: var(--secondary);
}

.mockup-body .main-content {
    flex: 1;
    padding: 24px;
    background: #FAFAFB;
}

.card {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.card .line {
    height: 10px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 10px;
}
.card .line.title {
    height: 14px;
    width: 60%;
    background: var(--border-color);
}
.card .line.short { width: 40%; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-box {
    background: var(--bg-white);
    height: 80px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.float-card {
    position: absolute;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

.float-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.fd1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.fd2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 3s;
}

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

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

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122,72,157,0.05) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--bg-white);
    transform: rotate(5deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--secondary);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 24px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.step:hover .step-number {
    background: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px -5px rgba(122, 72, 157, 0.4);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
}

/* Dashboard Mockup Section */
.dashboard-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.dashboard-preview p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.dashboard-large-mockup {
    max-width: 900px;
    margin: 40px auto 0;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 16px 16px 0 0;
}

.dash-window {
    background: var(--bg-white);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    height: 400px;
}

.dash-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.dash-nav {
    background: #111827;
    color: white;
    padding: 12px 24px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
}

.dash-content {
    display: flex;
    height: 100%;
}

.dash-sidebar {
    width: 200px;
    background: var(--bg-light);
    border-right: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ds-item {
    height: 32px;
    background: #E5E7EB;
    border-radius: 6px;
}
.ds-item.active {
    background: var(--secondary);
}

.dash-main {
    flex: 1;
    padding: 32px;
    background: var(--bg-white);
}

.dm-header {
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 24px;
}

.dm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dm-card {
    height: 120px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}
.dm-card.wide {
    grid-column: span 2;
    height: 80px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--secondary);
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-header {
    padding: 30px 40px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
}

.pricing-card.popular .price-header {
    background: rgba(122, 72, 157, 0.03);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.price-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.price-body {
    padding: 40px;
    text-align: left;
}

.price-body ul {
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
}

.price-body li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Footer */
.footer {
    background: #111827;
    color: #F9FAFB;
    padding: 80px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #9CA3AF;
    margin-top: 16px;
    max-width: 300px;
}
.footer-brand .logo {
    color: var(--bg-white);
}

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

.footer-links a {
    color: #9CA3AF;
}

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

.footer-bottom {
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
    padding-top: 24px;
    border-top: 1px solid #374151;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    /* Responsive image containers */
    .mockup-body, .dash-window {
        height: auto !important;
    }
    .mockup-img-wrapper img, .dash-img-wrapper img {
        height: auto;
    }
    .dashboard-large-mockup {
        padding: 4px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* Scroll Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

