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

:root {
    /* Colors - HSL */
    --background: hsl(220, 26%, 6%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(220, 20%, 10%);
    --card-foreground: hsl(0, 0%, 98%);
    --primary: hsl(280, 80%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(320, 85%, 65%);
    --secondary: hsl(200, 95%, 55%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(220, 15%, 20%);
    --muted-foreground: hsl(220, 10%, 60%);
    --accent: hsl(320, 85%, 65%);
    --border: hsl(220, 15%, 20%);

    /* Shadows */
    --shadow-glow: 0 0 60px hsl(280 80% 60% / 0.3);
    --shadow-card: 0 10px 40px hsl(220 26% 6% / 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(280 80% 60%) 0%, hsl(320 85% 65%) 50%, hsl(200 95% 55%) 100%);
    opacity: 0.2;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    max-width: 56rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(280 80% 60%), hsl(320 85% 65%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
    background: linear-gradient(135deg, hsl(320 85% 65%), hsl(200 95% 55%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--muted-foreground);
    max-width: 42rem;
}

.hero-cta {
    padding-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero {
    background: linear-gradient(135deg, hsl(280 80% 60%), hsl(320 85% 65%));
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 80px hsl(280 80% 60% / 0.5);
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(4px);
}

.decorative-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.decorative-blur-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: hsl(280 80% 60% / 0.2);
}

.decorative-blur-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsl(320 85% 65% / 0.2);
}

/* Section Styles */
.section-padding {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(280 80% 60%), hsl(320 85% 65%));
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.approach-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.objectives-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.objectives-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.objective-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--primary);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
}

.process-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(280 80% 60%), hsl(320 85% 65%));
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.process-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.process-description {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* CTA Section */
.cta-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, hsl(280 80% 60%) 0%, hsl(320 85% 65%) 50%, hsl(200 95% 55%) 100%);
    padding: 2px;
}

.cta-content {
    background: hsl(220 26% 6% / 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.cta-button-wrapper {
    padding-top: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(280 80% 60%), hsl(320 85% 65%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-copyright {
    color: var(--muted-foreground);
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-glow);
    text-decoration: underline;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

/* Responsive */
@media (min-width: 640px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 1rem;
    }

    .cta-content {
        padding: 3rem 1.5rem;
    }

    .decorative-blur-1,
    .decorative-blur-2 {
        width: 12rem;
        height: 12rem;
    }
}
