/* Global Styles */
:root {
    --primary: #4a26ab;
    --primary-light: #6939d4;
    --primary-dark: #371c80;
    --secondary: #ff7e5f;
    --accent: #ff4081;
    --background: #f8f9fa;
    --dark-bg: #201335;
    --text: #333;
    --light-text: #fafafa;
    --card-bg: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(74, 38, 171, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    font-weight: 600;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f8f0ff 0%, #e1d0ff 100%);
    border-bottom-left-radius: 30% 5%;
    border-bottom-right-radius: 30% 5%;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content {
    flex: 1 1 600px;
    padding-right: 2rem;
}

.hero-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 38, 171, 0.3);
    text-align: center;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 38, 171, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.cta-button.secondary:hover {
    background: linear-gradient(to right, darken(var(--secondary), 10%), darken(var(--accent), 10%));
}

.cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

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

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(74, 38, 171, 0.25);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background-color: #f0e6ff;
}

.experience-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.text-column {
    flex: 1 1 500px;
}

.visual-column {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.benefits-list {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.benefit-card:hover {
    transform: scale(1.03);
}

.cta-container {
    text-align: center;
    padding: 3rem;
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    color: var(--light-text);
    margin-top: 4rem;
}

.cta-container h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1 1 300px;
    margin-bottom: 2rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #aaa;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content, .hero-visual {
        flex: 1 1 100%;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        justify-content: space-between;
        gap: 2rem;
    }
    
    .cta-container h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 1rem;
    }
    
    .feature-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
