/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-soft: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition-base);
    letter-spacing: -0.5px;
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Tagline Section */
.tagline-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.tagline {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 400;
}

.tagline-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    transition: var(--transition-base);
}

.feature:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* For Bookers/Buddies Sections - Now using reusable components */
.for-bookers-section,
.for-buddies-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.for-bookers-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.for-bookers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.for-buddies-section {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.for-buddies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.for-bookers-section .container,
.for-buddies-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.for-bookers-section .section-title,
.for-buddies-section .section-title {
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 1rem auto 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.for-bookers-section .two-column,
.for-buddies-section .two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.for-bookers-section .column,
.for-buddies-section .column {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.for-bookers-section .column:hover,
.for-buddies-section .column:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgba(243, 147, 251, 0.3);
}

.for-buddies-section .column h3 {
    border-bottom: 3px solid rgba(250, 112, 154, 0.3);
}

.use-cases,
.offer-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.use-cases li,
.offer-list li,
.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-size: 1rem;
    line-height: 1.6;
}

.use-cases li:hover,
.offer-list li:hover,
.benefits-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.use-cases li:before,
.offer-list li:before,
.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(243, 147, 251, 0.4);
}

.for-buddies-section .use-cases li:before,
.for-buddies-section .offer-list li:before,
.for-buddies-section .benefits-list li:before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 12px rgba(250, 112, 154, 0.4);
}

.steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3.5rem;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-size: 1rem;
    line-height: 1.6;
}

.steps li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(243, 147, 251, 0.4);
    transition: var(--transition-base);
}

.for-buddies-section .steps li:before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.4);
}

.steps li:hover:before {
    transform: scale(1.1) rotate(360deg);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.for-bookers-section .btn,
.for-buddies-section .btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.for-bookers-section .btn:hover,
.for-buddies-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive for bookers/buddies sections */
@media (max-width: 768px) {
    .for-bookers-section,
    .for-buddies-section {
        padding: 3rem 0;
    }
    
    .for-bookers-section .two-column,
    .for-buddies-section .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .for-bookers-section .column,
    .for-buddies-section .column {
        padding: 2rem;
    }
    
    .column h3 {
        font-size: 1.3rem;
    }
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.safety-section .section-title {
    color: white;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.safety-item {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.safety-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.safety-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.boundaries {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.boundaries h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.boundaries-list {
    list-style: none;
    padding: 0;
}

.boundaries-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.boundaries-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Sessions Section */
.sessions-section {
    padding: 80px 0;
    background: white;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.session-type {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.session-type:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.session-type h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.session-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.sessions-tagline {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.pricing-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.pricing-item:hover::before {
    transform: scaleY(1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.disclaimer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* Shimmer effect for emphasis text */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.tagline-emphasis::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

/* Coming Soon Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   REUSABLE COMPONENT STYLES
   ============================================
   
   These reusable classes can be used throughout
   the site to maintain consistent styling.
   
   USAGE EXAMPLES:
   
   1. Gradient Section with Cards:
      <section class="gradient-section gradient-purple">
          <div class="container">
              <h2 class="section-title">Title</h2>
              <div class="card-grid">
                  <div class="glass-card">
                      <h3>Card Title</h3>
                      <p>Description</p>
                      <ul class="enhanced-list">
                          <li>Item 1</li>
                          <li>Item 2</li>
                      </ul>
                  </div>
              </div>
          </div>
      </section>
   
   2. Numbered Steps:
      <ol class="numbered-steps steps-pink">
          <li>First step</li>
          <li>Second step</li>
      </ol>
   
   3. Enhanced Lists with variants:
      <ul class="enhanced-list list-purple">...</ul>
      <ul class="enhanced-list list-pink">...</ul>
      <ul class="enhanced-list list-warm">...</ul>
   
   GRADIENT VARIANTS:
   - .gradient-purple (default purple gradient)
   - .gradient-pink (pink-to-red gradient)
   - .gradient-warm (pink-to-yellow gradient)
   
   LIST VARIANTS:
   - Default: purple gradient bullets
   - .list-pink: pink gradient bullets
   - .list-warm: warm gradient bullets
   
   STEP VARIANTS:
   - Default: purple gradient numbers
   - .steps-pink: pink gradient numbers
   - .steps-warm: warm gradient numbers
   
   ============================================ */

/* Gradient Section Base */
.gradient-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gradient-section .container {
    position: relative;
    z-index: 1;
}

/* Gradient variants */
.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-warm {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Section Title - Light */
.gradient-section .section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

/* Card Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.glass-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.glass-card > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* Enhanced List */
.enhanced-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.enhanced-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.enhanced-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.enhanced-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* List color variants */
.enhanced-list.list-pink li::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 12px rgba(243, 147, 251, 0.4);
}

.enhanced-list.list-warm li::before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 12px rgba(250, 112, 154, 0.4);
}

/* Numbered Steps List */
.numbered-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 1.5rem 0;
}

.numbered-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3.5rem;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-size: 1rem;
    line-height: 1.6;
}

.numbered-steps li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.numbered-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: var(--transition-base);
}

.numbered-steps li:hover::before {
    transform: scale(1.1) rotate(360deg);
}

/* Numbered steps color variants */
.numbered-steps.steps-pink li::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 6px 20px rgba(243, 147, 251, 0.4);
}

.numbered-steps.steps-warm li::before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.4);
}

/* Card Tagline */
.card-tagline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    font-style: italic;
    text-align: center;
}

.card-tagline.tagline-pink {
    border-top-color: rgba(243, 147, 251, 0.3);
}

.card-tagline.tagline-warm {
    border-top-color: rgba(250, 112, 154, 0.3);
}

/* Section Label Badge */
.section-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Section Description */
.section-desc-light {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 1rem auto 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    text-align: center;
}

/* Card Divider */
.card-divider {
    padding-bottom: 1rem;
    border-bottom: 3px solid rgba(102, 126, 234, 0.3);
}

.card-divider.divider-pink {
    border-bottom-color: rgba(243, 147, 251, 0.3);
}

.card-divider.divider-warm {
    border-bottom-color: rgba(250, 112, 154, 0.3);
}

/* Enhanced Button in Gradient Sections */
.gradient-section .btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.gradient-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive for Reusable Components */
@media (max-width: 768px) {
    .gradient-section {
        padding: 3rem 0;
    }
    
    .gradient-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .glass-card h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   SPECIFIC SECTION IMPLEMENTATIONS
   ============================================ */

/* What You Can Do Section */
.what-you-can-do-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.what-you-can-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.what-you-can-do-section .container {
    position: relative;
    z-index: 1;
}

.what-you-can-do-section .section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.what-you-can-do-section .two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.feature-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.feature-tagline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .what-you-can-do-section {
        padding: 3rem 0;
    }
    
    .what-you-can-do-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .what-you-can-do-section .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   END REUSABLE COMPONENTS
   ============================================ */

/* Sign In Button */
.btn-signin {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Auth Modal Styles */
#authModal .modal-content {
    max-width: 480px;
}

.auth-container {
    padding: 40px;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition-base);
}

.auth-tab.active {
    color: var(--primary-color);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Auth Forms */
.auth-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition-base);
    background-color: var(--bg-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

.password-strength {
    height: 4px;
    margin-top: 8px;
    border-radius: 2px;
    background-color: var(--border-color);
    overflow: hidden;
}

.password-strength::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    transition: var(--transition-base);
}

.password-strength.weak::after {
    width: 33%;
    background-color: #ef4444;
}

.password-strength.medium::after {
    width: 66%;
    background-color: #f59e0b;
}

.password-strength.strong::after {
    width: 100%;
    background-color: #10b981;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: 15px;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-auth:active {
    transform: translateY(0);
}

.auth-divider {
    text-align: center;
    color: var(--text-light);
    margin: 20px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.btn-social {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-social:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.4s ease;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Responsive Design for Auth Modal */
@media (max-width: 768px) {
    #authModal .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .auth-container {
        padding: 30px 20px;
    }
    
    .auth-form h2 {
        font-size: 24px;
    }
}

