@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #2b0a7d;
    --primary-rgb: 43, 10, 125;
    --accent: #d28501;
    --accent-hover: #b57200;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 25px 50px rgba(43, 10, 125, 0.15);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; padding: 0; margin: 0; }

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

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(210, 133, 1, 0.1);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-headline {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-padding {
    padding: 80px 0;
}

/* CTA Button */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary:hover {
    background: #1e0758;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 10, 125, 0.3);
    color: white;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Fade animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Transition box / CTA between sections */
.transition-box {
    background: linear-gradient(135deg, rgba(43, 10, 125, 0.05), rgba(210, 133, 1, 0.05));
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    border: 1px dashed rgba(43, 10, 125, 0.2);
}

.transition-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 14px;
    }

    .section-padding {
        padding: 48px 0;
    }

    .section-subtext {
        font-size: 0.86rem;
        margin-bottom: 28px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}
