* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff4d94;
    --dark-bg: #0a0a0a;
    --off-white: #fafafa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-light: #e5e5e5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section with Enhanced Gradient */
.hero-wrapper {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a1a2a 70%, #ff4d94 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Enhanced floating elements */
.float-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 148, 0.15), transparent);
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
}

.float-element:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -100px;
    animation-delay: 8s;
}

.float-element:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 15%;
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    33% { transform: translate(50px, -50px) scale(1.2); opacity: 0.25; }
    66% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.2; }
}

/* Modern Header - Glass Effect */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
    padding: 18px 6%;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Enhanced Logo */
.logo {
    font-size: 32px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::before {
    content: '◆';
    color: var(--primary-pink);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.logo .white-text {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo .pink-text {
    background: linear-gradient(135deg, var(--primary-pink), #ff8fb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Enhanced Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 16px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    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 > span {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), #ff6ba3);
    color: white;
    font-weight: 700;
    border: 1px solid transparent;
    box-shadow: 0 6px 24px rgba(255, 77, 148, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 77, 148, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Hero Content */
.hero-content {
    padding: 180px 6% 140px;
    max-width: 1400px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero-title strong {
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-pink) 50%, #ffb3d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 56px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: 16px;
    font-weight: 600;
}

.btn-hero-primary {
    background: white;
    color: var(--text-dark);
    border: none;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-4px);
}

/* Enhanced Stats */
.stats-container {
    display: flex;
    gap: 80px;
    margin-top: 100px;
}

.stat {
    text-align: left;
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-pink), transparent);
    border-radius: 3px;
}

.stat-number {
    font-size: 56px;
    font-weight: 200;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: var(--off-white);
    padding: 120px 6%;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    color: var(--primary-pink);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-title strong {
    font-weight: 800;
    color: var(--primary-pink);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.about-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 77, 148, 0.03), rgba(255, 77, 148, 0.01));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 77, 148, 0.3);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #ff8fb3 50%, #ffb3d1 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    box-shadow: 0 12px 40px rgba(255, 77, 148, 0.3);
    transition: all 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 20px 48px rgba(255, 77, 148, 0.4);
}

.icon-premium {
    position: relative;
}

.icon-premium::before {
    content: '';
    width: 36px;
    height: 42px;
    background: white;
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
    position: relative;
}

.icon-premium::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-pink);
    font-size: 20px;
    font-weight: bold;
}

.icon-cities {
    position: relative;
}

.icon-cities::before {
    content: '';
    width: 40px;
    height: 32px;
    background: white;
    border-radius: 20px 20px 0 20px;
    position: relative;
}

.icon-cities::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 29px;
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    border-radius: 50%;
    box-shadow:
        -14px -5px 0 -2px var(--primary-pink),
        -24px 10px 0 -2px var(--primary-pink),
        5px 8px 0 -2px var(--primary-pink);
}

.about-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-card-text {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 80px 6%;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.footer-logo .white {
    color: white;
}

.footer-logo .pink {
    background: linear-gradient(135deg, var(--primary-pink), #ff8fb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        padding: 20px 5%;
    }

    .hero-content {
        padding: 160px 5% 100px;
    }

    .stats-container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    .logo {
        font-size: 26px;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .auth-buttons.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 20px;
        gap: 12px;
        margin-top: 12px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        animation: slideDown 0.3s ease;
        z-index: 999;
    }

    .auth-buttons.mobile-open .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-content {
        padding: 140px 20px 80px;
        text-align: center;
    }

    .hero-title {
        margin-top: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .stats-container {
        display: none;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 60px 20px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
