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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes animatedBlob {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 30px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1.5rem;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding: 1rem 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    text-shadow: none;
    color: rgba(255, 255, 255, 0.9);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a855f7;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 250px;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(12px);
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        animation: slideIn 0.3s ease-out;
        z-index: 999;
    }

    .nav-menu.mobile-open li {
        margin-bottom: 1rem;
    }

    .nav-menu.mobile-open a {
        font-size: 1.125rem;
        padding: 0.5rem 0;
        display: block;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.85) 0%, rgba(126, 34, 206, 0.8) 50%, rgba(67, 56, 202, 0.85) 100%);
}

.hero-animated-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    opacity: 0.3;
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    transform: translateY(-60px);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-wrap: balance;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: #e9d5ff;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    min-width: 240px;
    box-sizing: border-box;
    height: 60px;
}

.btn span {
    display: inline-block;
}

.btn svg {
    width: 24px;
    height: 24px;
}

.btn-primary {
    background: white;
    color: #7e22ce;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f3e8ff, #fce7f3);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
}

.btn-primary svg,
.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    transform: scale(1.05) translateY(-2px);
}

.btn-secondary svg,
.btn-secondary span {
    position: relative;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: multiply;
    opacity: 0.2;
    animation: blob 7s infinite;
}

.blob-1 {
    top: 5rem;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #ddd6fe;
}

.blob-2 {
    top: 10rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: #fbcfe8;
    animation-delay: 2s;
}

.blob-3 {
    bottom: -5rem;
    left: 10rem;
    width: 24rem;
    height: 24rem;
    background: #c7d2fe;
    animation-delay: 4s;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111827;
}

/* Specific spacing adjustments per section */
.about-section .section-title {
    margin-bottom: 3rem;
}

.how-it-works-section .section-title {
    margin-bottom: 1rem;
}

.what-you-learn-section .section-title {
    margin-bottom: 1.5rem;
    color: white;
}

.what-you-learn-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-section .section-title {
    margin-bottom: 3rem;
}

.section-title svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    color: #9333ea;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, #faf5ff 0%, white 50%, #fce7f3 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9d5ff;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.about-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    opacity: 0.05;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.text-primary {
    color: #9333ea;
}

.about-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, #c084fc, #ec4899);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.about-image img {
    position: relative;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, rgba(250, 245, 255, 0.5), white);
    position: relative;
    overflow: hidden;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #faf5ff 0%, white 50%, #fce7f3 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9d5ff;
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mission-box h2,
.vision-box h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #7e22ce;
    margin-bottom: 1rem;
}

.mission-box p,
.vision-box p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

.values-section {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9d5ff;
    text-align: center;
}

.values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.4);
}

.values-tagline {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.values-cta-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, rgba(250, 245, 255, 0.3), white);
    position: relative;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background: linear-gradient(135deg, #faf5ff 0%, white 50%, #fce7f3 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9d5ff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.card h3 svg {
    color: #9333ea;
}

.card p {
    color: #374151;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.card ul li {
    color: #374151;
    line-height: 1.75;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9333ea;
    font-weight: bold;
}

.card-image {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e9d5ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.how-it-works-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #faf5ff 0%, white 50%, #fce7f3 100%);
    border-radius: 1rem;
    border: 1px solid #e9d5ff;
}

.how-it-works-summary p {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.summary-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.badge {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(147, 51, 234, 0.3);
    display: inline-block;
}

/* What You Learn Section */
.what-you-learn-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #7e22ce 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.abstract-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave-1 {
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;
}

.wave-2 {
    opacity: 0;
    animation: fadeInUp 2s ease-out 0.2s forwards;
}

.wave-3 {
    opacity: 0;
    animation: fadeInUp 2s ease-out 0.4s forwards;
}

.hexagon-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: overlay;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #ec4899;
}

.orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #6366f1;
    animation-delay: 1s;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02) translateY(-5px);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

.result-box {
    background: white;
    color: #111827;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.result-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to bottom left, #ddd6fe, #fbcfe8, transparent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.result-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.25;
    object-fit: cover;
}

.result-box h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #7e22ce;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.result-highlight {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.result-highlight svg {
    color: #9333ea;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.result-box p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
    position: relative;
}

.result-box p:last-child {
    margin-bottom: 0;
}

.result-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
}

.result-box ul li {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.75;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.result-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9333ea;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, rgba(250, 245, 255, 0.5), white);
    position: relative;
    overflow: hidden;
}

.animated-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
    opacity: 0.2;
}

.blob-left {
    top: 5rem;
    left: -5rem;
    width: 16rem;
    height: 16rem;
    background: #ddd6fe;
    animation: animatedBlob 8s ease-in-out infinite;
}

.blob-right {
    bottom: 5rem;
    right: -5rem;
    width: 20rem;
    height: 20rem;
    background: #fbcfe8;
    animation: animatedBlob 10s ease-in-out infinite;
}

.contact-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.contact-form-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    background: linear-gradient(135deg, #faf5ff 0%, white 50%, #fce7f3 100%);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9d5ff;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(to bottom left, #ddd6fe, transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(to top right, #fbcfe8, transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    background: white;
}

.form-group textarea {
    resize: none;
    font-family: inherit;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    font-weight: 600;
}

.checkbox-label a:hover {
    color: #7e22ce;
}

/* intl-tel-input custom styling */
.iti {
    width: 100%;
    display: block;
}

.iti__input {
    width: 100% !important;
    padding: 0.75rem 1rem 0.75rem 3.5rem !important;
    border-radius: 0.5rem !important;
    border: 1px solid #d1d5db !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(4px);
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.iti__input:hover {
    background: white !important;
}

.iti__input:focus {
    outline: none !important;
    border-color: #a855f7 !important;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
    background: white !important;
}

.iti__flag-container {
    padding: 0 !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
}

.iti__selected-flag {
    padding: 0 0.75rem !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

/* Dropdown appears as a modal overlay */
.iti--container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
}

.iti__dropdown-content {
    position: relative !important;
    max-width: 400px !important;
    width: 100% !important;
    max-height: 400px !important;
    background: white !important;
    border: 1px solid #e9d5ff !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    overflow-y: auto !important;
}

.iti__country {
    padding: 0.75rem 1rem !important;
}

.iti__country:hover {
    background-color: #faf5ff !important;
}

.iti__country.iti__highlight {
    background-color: #f3e8ff !important;
}

.iti__search-input {
    padding: 0.75rem 1rem !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    margin: 0.75rem !important;
    width: calc(100% - 1.5rem) !important;
}

.iti__search-input:focus {
    outline: none !important;
    border-color: #a855f7 !important;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #9333ea, #7c3aed);
    color: white;
    border: 1px solid #7c3aed;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0.5rem;
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit:hover {
    transform: scale(1.02) translateY(-2px);
}

.btn-submit svg,
.btn-submit span {
    position: relative;
    z-index: 1;
}

/* Investor Quiz Landing Page */
body.quiz-page {
    background: #0b1021;
    color: #0f172a;
}

.quiz-navbar {
    background: rgba(12, 10, 26, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quiz-navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
}

.quiz-navbar .nav-logo-img {
    filter: brightness(1.2);
}

.quiz-hero-section {
    position: relative;
    padding: 9rem 0 5rem;
    background: radial-gradient(circle at 15% 20%, rgba(147, 51, 234, 0.25), transparent 35%), radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.2), transparent 30%), linear-gradient(135deg, #0b1021 0%, #111827 50%, #0f172a 100%);
    color: white;
    overflow: hidden;
}

.quiz-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.08), transparent 45%);
    pointer-events: none;
}

.floating-pill {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.quiz-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quiz-hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.quiz-hero-text .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.hero-meta {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.social-proof div {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.social-proof strong {
    display: block;
    font-size: 1.25rem;
    color: white;
}

.social-proof span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.quiz-hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(14px);
}

.quiz-hero-card .card-header {
    margin-bottom: 1.5rem;
}

.quiz-hero-card .card-header p {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.quiz-hero-card .card-header span {
    color: rgba(255, 255, 255, 0.7);
}

.card-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: flex-start;
}

.card-list .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    margin-top: 0.35rem;
}

.card-list strong {
    color: white;
}

.card-list p {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.2rem;
}

.quiz-benefits {
    padding: 4.5rem 0;
    background: linear-gradient(to bottom, #0f172a, #0b1021);
    color: white;
}

.benefits-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.benefits-header p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card h3 {
    color: white;
    margin-bottom: 0.4rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.quiz-section {
    padding: 5rem 0;
    background: white;
}

.quiz-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.quiz-header h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.quiz-header p {
    color: #4b5563;
}

.quiz-progress {
    width: 100%;
    height: 10px;
    background: #f3f4f6;
    border-radius: 999px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 999px;
    transition: width 0.3s ease;
}

.quiz-form {
    display: grid;
    gap: 1.75rem;
}

.question-block {
    background: linear-gradient(135deg, #faf5ff 0%, white 50%, #fce7f3 100%);
    border: 1px solid #e9d5ff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.question-title {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.pill {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.answers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.answer-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    padding: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    height: 100%;
}

.answer-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.answer-card:hover {
    border-color: #c4b5fd;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.12);
}

.answer-card.selected {
    border-color: #a855f7;
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.18);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, white 80%);
}

.answer-content strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #111827;
}

.answer-content p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 0.5rem;
}

.contact-intro h3 {
    margin: 0.3rem 0 0.6rem;
}

.quiz-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    background: #0f172a;
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
}

.quiz-contact-grid .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.quiz-contact-grid .form-group input {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.quiz-contact-grid .form-group input:focus {
    border-color: #c084fc;
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.25);
}

.privacy-note {
    text-align: center;
    color: #6b7280;
    margin-top: -0.25rem;
}

.quiz-result {
    margin-top: 2rem;
    background: linear-gradient(135deg, #0f172a, #0b1021);
    color: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quiz-result.hidden {
    display: none;
}

.result-header h3 {
    font-size: 1.8rem;
}

.result-header p {
    color: rgba(255, 255, 255, 0.7);
}

.result-body {
    margin: 1.25rem 0;
}

.result-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.result-pills span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-weight: 600;
    color: white;
}

.result-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.result-list li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.result-list li::before {
    content: '•';
    position: absolute;
    left: 0.3rem;
    color: #c084fc;
    font-size: 1.4rem;
    line-height: 1;
}

.result-next h4 {
    margin-bottom: 0.35rem;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.next-steps span {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-cta {
    background: linear-gradient(135deg, #111827, #0b1021);
    color: white;
    padding: 4rem 0;
}

.quiz-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.cta-points {
    display: grid;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-point {
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer */
.footer {
    padding: 3rem 1.5rem 2rem;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    opacity: 0.9;
}

.footer-disclaimer {
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-container {
        padding: 1.5rem 1.5rem;
    }

    .navbar.scrolled .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .nav-logo-img {
        height: 35px;
    }

    .navbar.scrolled .nav-logo-img {
        height: 32px;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-content {
        transform: translateY(-40px);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .footer-logo {
        width: 60px;
    }

    .about-content,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .result-box {
        padding: 2rem;
    }

    .result-box h3 {
        font-size: 1.5rem;
    }

    .result-highlight {
        font-size: 1.125rem;
    }

    .how-it-works-summary .btn {
        white-space: normal;
        max-width: 100%;
    }

    .quiz-hero-grid {
        grid-template-columns: 1fr;
    }

    .quiz-hero-section {
        padding-top: 7rem;
    }

    .floating-pill {
        position: relative;
        left: 0;
        transform: none;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .social-proof {
        grid-template-columns: 1fr;
    }

    .quiz-cta-grid {
        grid-template-columns: 1fr;
    }

    .quiz-contact-grid {
        grid-template-columns: 1fr;
    }

    .answers-grid {
        grid-template-columns: 1fr;
    }
}
