/* Modern Premium PartyMaker Styles */

/* Privacy Policy Styles */
.privacy-policy {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F8F9FA 100%);
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.privacy-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.privacy-section {
    background: var(--pure-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
}

.privacy-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.privacy-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.privacy-list li:before {
    content: "•";
    color: var(--accent-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: var(--accent-coral);
}

.privacy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.privacy-note {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.back-to-home {
    display: inline-block;
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid var(--accent-purple);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-to-home:hover {
    background: var(--accent-purple);
    color: var(--pure-white);
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 120px 0 60px;
    }

    .privacy-content h1 {
        font-size: 36px;
    }

    .privacy-section {
        padding: 24px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }
}

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

:root {
    /* Premium Color Palette */
    --primary-white: #FAFAFA;
    --pure-white: #FFFFFF;
    --accent-purple: #6366F1;
    --accent-coral: #FF6B6B;
    --rich-black: #0A0A0A;
    --soft-gray: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    --border-subtle: #E5E7EB;

    /* Typography */
    --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 32px 80px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #FAFAFA 0%, #F8F9FA 100%);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka', var(--font-display);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    background: linear-gradient(135deg, #ff6b9d 0%, #667eea 50%, #ff6b9d 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGradientShift 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo::after {
    content: '🎈';
    position: absolute;
    top: -8px;
    right: -20px;
    font-size: 18px;
    animation: logoFloatBounce 2.5s ease-in-out infinite;
}

@keyframes logoGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes logoFloatBounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(5deg);
    }
    75% {
        transform: translateY(-1px) rotate(-3deg);
    }
}

.nav-cta {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #c44569, #ff6b9d);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-dark);
}

/* Modern Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--soft-gray) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    position: relative;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-purple) 30%, var(--accent-coral) 70%, var(--text-dark) 100%);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInWithGradient 1.2s ease-out 0.3s forwards, heroGradientShift 6s ease-in-out 1.5s infinite;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInWithGradient {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Add sparkle effect for extra party magic */
.hero h1::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 32px;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

.hero .subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-cta {
    background: var(--accent-purple);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    letter-spacing: -0.01em;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    background: var(--accent-coral);
}

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

.hero-cta:hover svg {
    transform: translate(2px, -2px);
}

/* Floating Preview Cards */
.hero-preview-cards {
    position: relative;
    height: 500px;
}

.preview-card {
    position: absolute;
    width: 280px;
    height: 180px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-subtle);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: var(--soft-gray);
}

.preview-card:hover img {
    transform: scale(1.05);
}

.card-label {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    background: white;
}

/* Card Positioning & Animations */
.card-1 {
    top: 20px;
    right: 100px;
    transform: rotate(-8deg);
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    top: 160px;
    right: 200px;
    transform: rotate(5deg);
    animation: float-2 6s ease-in-out infinite 1s;
}

.card-3 {
    top: 300px;
    right: 50px;
    transform: rotate(-3deg);
    animation: float-3 6s ease-in-out infinite 2s;
}

.preview-card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-strong);
    z-index: 10;
}

/* Floating Animations */
@keyframes float-1 {
    0%, 100% { transform: rotate(-8deg) translateY(0px); }
    50% { transform: rotate(-8deg) translateY(-10px); }
}

@keyframes float-2 {
    0%, 100% { transform: rotate(5deg) translateY(0px); }
    50% { transform: rotate(5deg) translateY(-15px); }
}

@keyframes float-3 {
    0%, 100% { transform: rotate(-3deg) translateY(0px); }
    50% { transform: rotate(-3deg) translateY(-8px); }
}

/* Mobile-specific hover effects */
@media (max-width: 768px) {
    .card-1:hover {
        transform: translateX(-65%) rotate(0deg) translateY(-10px) scale(1.05);
    }

    .card-2:hover {
        transform: translateX(-35%) rotate(0deg) translateY(-10px) scale(1.05);
    }

    .card-3:hover {
        transform: translateX(-50%) rotate(0deg) translateY(-10px) scale(1.05);
    }

    /* Override floating animations for mobile to work with scattered positioning */
    @keyframes float-1 {
        0%, 100% { transform: translateX(-65%) rotate(-8deg) translateY(0px); }
        50% { transform: translateX(-65%) rotate(-8deg) translateY(-10px); }
    }

    @keyframes float-2 {
        0%, 100% { transform: translateX(-35%) rotate(6deg) translateY(0px); }
        50% { transform: translateX(-35%) rotate(6deg) translateY(-12px); }
    }

    @keyframes float-3 {
        0%, 100% { transform: translateX(-50%) rotate(-4deg) translateY(0px); }
        50% { transform: translateX(-50%) rotate(-4deg) translateY(-8px); }
    }
}

@media (max-width: 480px) {
    .card-1:hover {
        transform: translateX(-60%) rotate(0deg) translateY(-8px) scale(1.05);
    }

    .card-2:hover {
        transform: translateX(-40%) rotate(0deg) translateY(-8px) scale(1.05);
    }

    .card-3:hover {
        transform: translateX(-50%) rotate(0deg) translateY(-8px) scale(1.05);
    }

    @keyframes float-1 {
        0%, 100% { transform: translateX(-60%) rotate(-6deg) translateY(0px); }
        50% { transform: translateX(-60%) rotate(-6deg) translateY(-8px); }
    }

    @keyframes float-2 {
        0%, 100% { transform: translateX(-40%) rotate(5deg) translateY(0px); }
        50% { transform: translateX(-40%) rotate(5deg) translateY(-10px); }
    }

    @keyframes float-3 {
        0%, 100% { transform: translateX(-50%) rotate(-3deg) translateY(0px); }
        50% { transform: translateX(-50%) rotate(-3deg) translateY(-6px); }
    }
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Special party-themed text effects */
.section-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-purple) 50%, var(--accent-coral) 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
    background: var(--pure-white);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-coral));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.4);
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-coral));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    margin: 0 auto 32px;
    box-shadow: var(--shadow-soft);
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

/* Mockups Section */
.mockups {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.mockups-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 80px;
    font-weight: 500;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-item {
    background: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

/* Disable hover effects on touch devices to prevent flickering */
@media (hover: hover) {
    .mockup-item:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-strong);
    }
}

.mockup-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-gray);
}

.mockup-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Next image preview - subtle foreshadowing */
.mockup-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

@media (hover: hover) {
    .mockup-item:hover .mockup-image::after {
        opacity: 1;
    }

    .mockup-item:hover .mockup-image img {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* Mobile slider indicators */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Show indicators on mobile only */
@media (max-width: 768px) {
    .slider-indicators {
        opacity: 1;
    }

    /* Add subtle hint animation for first visit */
    .mockup-item:first-child .slider-indicators {
        animation: pulseHint 2s ease-in-out 1s infinite;
    }
}

@keyframes pulseHint {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.mockup-content {
    padding: 40px 32px;
}

.mockup-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mockup-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

.mockup-cta {
    text-align: center;
    background: var(--pure-white);
    padding: 64px 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-subtle);
    max-width: 600px;
    margin: 0 auto;
}

.mockup-cta p {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.mockup-button {
    background: var(--accent-coral);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    letter-spacing: -0.01em;
}

.mockup-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    background: var(--accent-purple);
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background: var(--pure-white);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.review-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-purple);
}

.review-content {
    padding: 0;
}

.reviewer-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.reviewer-info p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Waitlist Section */
.waitlist {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-coral) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.waitlist h2 {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.waitlist-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.waitlist-form {
    margin-bottom: 60px;
}

.form-row {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.form-row input {
    flex: 1;
    padding: 20px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.3s ease;
}

.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-row input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.waitlist-button {
    background: white;
    color: var(--accent-purple);
    padding: 20px 32px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.form-note {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.social-proof-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: inline-block;
    box-shadow: var(--shadow-soft);
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.counter-text {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.pricing-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 80px;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--pure-white);
    border: 2px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-coral));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover::before {
    opacity: 0.05;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-purple);
}

.price-card.featured {
    border-color: var(--accent-purple);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-coral));
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
}

.price-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.price {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.early-bird-label {
    font-size: 14px;
    color: var(--accent-coral);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding-left: 32px;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--soft-gray);
    margin: 0 -24px;
    padding: 32px 24px;
    border-radius: 16px;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.faq-question span {
    font-size: 24px;
    color: var(--accent-purple);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    margin-top: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    display: none;
    font-size: 16px;
}

/* Footer */
.footer-cta {
    background: var(--rich-black);
    color: white;
    padding: var(--section-padding);
    text-align: center;
    position: relative;
}

.footer-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.footer-cta-button {
    background: var(--accent-purple);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    letter-spacing: -0.01em;
}

.footer-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    background: var(--accent-coral);
}

.footer-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal-content {
    background: var(--pure-white);
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.modal-close {
    background: var(--soft-gray);
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--border-subtle);
}

.modal-body {
    position: relative;
    background: var(--soft-gray);
}

.modal-image {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.modal-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    pointer-events: none;
}

.modal-btn {
    pointer-events: auto;
    background: var(--pure-white);
    border: 1px solid var(--border-subtle);
    color: var(--text-dark);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    font-size: 20px;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--accent-purple);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 20px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: 90vh;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 24px;
    }

    .hero .subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-preview-cards {
        position: relative;
        height: 550px;
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preview-card {
        position: absolute;
        width: 280px;
        height: 170px;
    }

    /* Mobile-optimized positioning - scattered but centered as a group */
    .card-1 {
        top: 40px;
        left: 50%;
        transform: translateX(-65%) rotate(-8deg);
        animation: float-1 6s ease-in-out infinite;
        z-index: 3;
    }

    .card-2 {
        top: 190px;
        left: 50%;
        transform: translateX(-35%) rotate(6deg);
        animation: float-2 6s ease-in-out infinite 1s;
        z-index: 2;
    }

    .card-3 {
        top: 340px;
        left: 50%;
        transform: translateX(-50%) rotate(-4deg);
        animation: float-3 6s ease-in-out infinite 2s;
        z-index: 1;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mockup-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 48px);
        margin-bottom: 60px;
    }

    .price-card {
        padding: 32px 24px;
    }

    .modal-content {
        margin: 20px;
    }

    .modal-image {
        height: 50vh;
        min-height: 300px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .logo {
        font-size: 28px;
    }

    .logo::after {
        font-size: 16px;
        right: -18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
        min-height: 80vh;
    }

    .hero-preview-cards {
        position: relative;
        height: 500px;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preview-card {
        position: absolute;
        width: 260px;
        height: 160px;
    }

    .card-label {
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Smaller mobile - scattered positioning */
    .card-1 {
        top: 30px;
        left: 50%;
        transform: translateX(-60%) rotate(-6deg);
        animation: float-1 6s ease-in-out infinite;
        z-index: 3;
    }

    .card-2 {
        top: 170px;
        left: 50%;
        transform: translateX(-40%) rotate(5deg);
        animation: float-2 6s ease-in-out infinite 1s;
        z-index: 2;
    }

    .card-3 {
        top: 310px;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
        animation: float-3 6s ease-in-out infinite 2s;
        z-index: 1;
    }

    .step {
        padding: 32px 24px;
    }

    .mockup-cta {
        padding: 40px 24px;
    }

    .waitlist-content {
        padding: 0 20px;
    }

    .social-proof-counter {
        padding: 32px 24px;
    }
}

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

/* Add entrance animations */
.step, .mockup-item, .review-item, .price-card {
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

/* Smooth slide effects for sliders */
.slide-enter {
    transform: translate(-50%, -50%) translateX(100%);
}

.slide-enter-active {
    transform: translate(-50%, -50%) translateX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide-exit {
    transform: translate(-50%, -50%) translateX(0);
}

.slide-exit-active {
    transform: translate(-50%, -50%) translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}