/* Modern CSS with variables for easy theming - Completely different style from previous site */
:root {
    --primary-color: #8a2be2; /* Purple instead of pink */
    --secondary-color: #20b2aa; /* Teal instead of blue */
    --dark-color: #222040; /* Dark purple instead of dark blue */
    --light-color: #f4f0ff; /* Light purple tint instead of white */
    --accent-color: #ff9e3d; /* Orange accent instead of blue */
    --text-color: #333333;
    --text-light: #ffffff;
    --font-main: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif; /* Different font */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Different animation curve */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--accent-color);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Main layout */
main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

section {
    padding: 5rem 1.5rem;
}

section:nth-child(even) {
    background-color: #ffffff;
}

/* Hero Section - Horizontally aligned unlike previous site */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 90vh;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, #3d3a6e 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding: 2rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* CTA Button - Orange with different shape */
.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 158, 61, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #ff8c1a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 158, 61, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 158, 61, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 158, 61, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 158, 61, 0.4);
    }
}

/* Benefits section - Card layout unlike previous grid */
.benefits {
    background-color: var(--light-color);
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* How it works - Horizontal steps flow */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials section - Vertical cards */
.testimonials {
    padding: 5rem 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rating {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.user-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    align-self: flex-end;
}

/* FAQ section - Vertical accordion style */
.faq {
    background-color: var(--light-color);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.faq-item h3::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Final CTA section */
.final-cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, #3d3a6e 100%);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 1.5rem;
}

.final-cta h2 {
    color: white;
}

.final-cta h2::after {
    background: var(--accent-color);
}

.final-cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 3rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-logo svg {
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 1.5rem 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation for better UX */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.benefit-card, .testimonial-card, .faq-item, .step {
    animation: fadeIn 0.6s ease-out forwards;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.4s;
}
