:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

.primary-text { color: var(--primary-color) !important; }
.primary-bg { background-color: var(--primary-color) !important; }
.font-weight-800 { font-weight: 800; }
.border-round { border-radius: 12px !important; }
.full-width { width: 100%; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.ml-2 { margin-left: 1rem; }

nav .brand-logo {
    font-size: 1.8rem;
}

nav .brand-logo span {
    color: var(--secondary-color);
}

.hero-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-anim {
    animation: floating 3s ease-in-out infinite;
}

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

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
}

.feature-card {
    padding: 40px 20px !important;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.pricing-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.featured-pricing {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.05);
}

.price {
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 10px;
}

@media only screen and (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .featured-pricing { transform: scale(1); margin: 20px 0; }
}