:root {
    --primary-color: #0070f3;
    --secondary-color: #7928ca;
    --accent-color: #ff4d4d;
    --background-color: #fafafa;
    --foreground-color: #000000;
    --gray-100: #f5f5f5;
    --gray-200: #eaeaea;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.2s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--foreground-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    padding: 3rem 0;
    position: relative;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    height: auto;
    margin-bottom: 1rem;
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.avatar-stack {
    display: flex;
    margin-right: 0.5rem;
}

.avatar-stack img {
    border: 2px solid white;
    margin-right: -0.75rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0060df;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground-color);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--gray-600);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Stats Section */
.stats-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 3rem 0;
}

.stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Step Cards */
.step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--gray-300);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.testimonial-author-title {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Pricing Card */
.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.pricing-title {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.pricing-price {
    margin-bottom: 1.25rem;
}

.price {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    background-color: white;
    border: none;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--box-shadow);
    margin: 3rem 0;
}

.cta-content {
    padding: 2.5rem 2rem;
}

.cta-title {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin-top: 2rem;
    }
    
    .feature-card, .step-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .stat-item {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}