/* CSS Variables based on image theme */
:root {
    --bg-beige: #faf9f6;
    --bg-white: #ffffff;
    --border-black: #000000;
    --text-black: #000000;
    --text-gray: #333333;
    --text-light-gray: #666666;
    --accent-pink: #e91e63;
    --accent-green: #4caf50;
    --accent-blue: #2196f3;
    --accent-purple: #9c27b0;
    --accent-orange: #ff9800;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
    --glow-pink: rgba(233, 30, 99, 0.3);
    --glow-green: rgba(76, 175, 80, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-beige);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: clip;
    position: relative;
    max-width: 100vw;
}

html {
    overflow-x: clip;
    max-width: 100%;
}

/* Global image fix for Chrome Mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}

/* Animated Background Gradient */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(233, 30, 99, 0.03) 0%,
            rgba(156, 39, 176, 0.03) 25%,
            rgba(33, 150, 243, 0.03) 50%,
            rgba(76, 175, 80, 0.03) 75%,
            rgba(255, 152, 0, 0.03) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: -2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--border-black);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--accent-pink),
            var(--accent-purple),
            var(--accent-blue),
            var(--accent-green),
            var(--accent-orange),
            var(--accent-pink));
    background-size: 200% 100%;
    animation: navbarGlow 4s linear infinite;
}

@keyframes navbarGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 1.8rem;
    display: inline-block;
}

.logo-img {
    height: 100px;
    width: 180px;
    max-width: 100%;
    object-fit: contain;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

@keyframes logoIconBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-5deg);
    }

    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.logo-text {
    background: linear-gradient(135deg,
            var(--text-black) 0%,
            var(--accent-pink) 50%,
            var(--accent-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoTextGradient 3s ease infinite;
}

@keyframes logoTextGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-icon {
    animation: logoIconSpin 0.6s ease;
}

@keyframes logoIconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-pink);
}

.nav-links .btn-download {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: var(--bg-white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    border: 2px solid var(--border-black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-links .btn-download::after {
    display: none;
}

.nav-links .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: var(--bg-white) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: clip;
}

/* Hero Floating Decorations */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.12) 0%, rgba(233, 30, 99, 0) 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0) 70%);
    bottom: -50px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0) 70%);
    top: 40%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

.hero-decoration-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.1) 0%, rgba(156, 39, 176, 0) 70%);
    top: 20%;
    right: 20%;
    animation: float 9s ease-in-out infinite reverse;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,
            var(--text-black) 0%,
            var(--accent-pink) 25%,
            var(--accent-purple) 50%,
            var(--accent-blue) 75%,
            var(--text-black) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 8s ease infinite;
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Removed ::first-line rule that was causing duplicate text */

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-offer {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-pink);
    background: rgba(233, 30, 99, 0.08);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-black);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    color: var(--bg-white);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(233, 30, 99, 0);
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(233, 30, 99, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px 5px rgba(233, 30, 99, 0);
    }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(233, 30, 99, 0.3);
    animation: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    color: var(--text-black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-screen {
    background-color: var(--bg-beige);
    border: 3px solid var(--border-black);
    border-radius: 30px;
    padding: 8px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 10px 40px var(--shadow);
    transform: rotateY(-5deg);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.phone-screen:hover {
    transform: rotateY(0deg);
}

.app-screenshot {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    display: block;
}

/* Multi-Phone Showcase */
.phones-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    perspective: 1500px;
}

.phones-showcase .phone-mockup {
    position: absolute;
    transition: all 0.4s ease;
}

.phones-showcase .phone-screen {
    max-width: 220px;
    transform: none;
}

.phones-showcase .phone-screen:hover {
    transform: none;
}

/* Phone positions */
.phone-back-left {
    left: 0;
    top: 50px;
    z-index: 1;
    transform: rotateY(15deg) rotateZ(-5deg);
    opacity: 0.85;
}

.phone-back-left:hover {
    transform: rotateY(10deg) rotateZ(-3deg) scale(1.05);
    opacity: 1;
    z-index: 10;
}

.phone-center {
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-center:hover {
    transform: translateX(-50%) scale(1.05);
}

.phone-back-right {
    right: 0;
    top: 50px;
    z-index: 2;
    transform: rotateY(-15deg) rotateZ(5deg);
    opacity: 0.85;
}

.phone-back-right:hover {
    transform: rotateY(-10deg) rotateZ(3deg) scale(1.05);
    opacity: 1;
    z-index: 10;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .phones-showcase {
        height: auto;
        flex-direction: column;
        gap: 20px;
        perspective: none;
        padding: 30px 0;
        width: 100%;
        max-width: 100%;
    }

    .phones-showcase .phone-mockup {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .phones-showcase .phone-screen {
        max-width: 200px;
        width: 200px;
        margin: 0 auto;
    }

    .phone-back-left,
    .phone-back-right {
        display: none;
    }

    /* Chrome Mobile image fix */
    .app-screenshot {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* Fix for Chrome mobile viewport issues */
    .logo-img,
    .footer-logo-img {
        max-width: 100%;
        height: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.mockup-content {
    background-color: var(--bg-white);
    border: 2px solid var(--border-black);
    border-radius: 20px;
    padding: 1.5rem;
    min-height: 400px;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-black);
}

.mockup-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-pink);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.mockup-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.mockup-subtitle {
    font-size: 0.9rem;
    color: var(--text-light-gray);
}

.mockup-quiz {
    margin-top: 1.5rem;
}

.mockup-question {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.mockup-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-option {
    padding: 0.75rem;
    border: 2px solid var(--border-black);
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: var(--bg-white);
}

.mockup-option.active {
    background-color: var(--accent-green);
    color: var(--bg-white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-black);
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light-gray);
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(250, 249, 246, 0.5) 100%);
    position: relative;
    overflow: clip;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 3px solid var(--border-black);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.feature-icon {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid var(--border-black);
    border-radius: 50%;
    transition: all 0.4s ease;
    color: var(--text-black);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.feature-card:hover h3 {
    color: var(--text-black);
}

.feature-card p {
    color: var(--text-light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-black);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-black);
}

.step-card p {
    color: var(--text-light-gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-black);
    text-align: center;
    display: none;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(233, 30, 99, 0.08) 50%, rgba(255, 255, 255, 0.6) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-black);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light-gray);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 246, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid var(--border-black);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple), var(--accent-blue), var(--accent-green));
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-color: var(--border-black);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

.premium {
    padding: 5rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-black);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card-highlight {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
    border: 3px solid var(--border-black);
    transform: scale(1.05);
}

.pricing-card-highlight:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--text-black) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-light-gray);
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(250, 249, 246, 0.5) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-black);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-pink);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3::before {
    content: '💡';
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light-gray);
    line-height: 1.6;
}

.contact {
    padding: 5rem 0;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 246, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid var(--border-black);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-black);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
}

.contact-details {
    margin-top: 1.5rem;
    color: var(--text-light-gray);
    font-size: 0.95rem;
    text-align: center;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--border-black);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--accent-pink),
            var(--accent-purple),
            var(--accent-blue),
            var(--accent-green),
            var(--accent-orange),
            var(--accent-pink));
    background-size: 200% 100%;
    animation: footerGlow 4s linear infinite;
}

@keyframes footerGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo-icon {
    font-size: 2rem;
    display: inline-block;
    animation: logoIconBounce 2s ease-in-out infinite;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 100%;
    display: inline-block;
    animation: logoIconBounce 2s ease-in-out infinite;
}

.footer-logo-text {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--text-light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 2px solid var(--border-black);
    border-radius: 12px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-black);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-pink);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-black);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.footer-made {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

/* Visitor Counter */
.visitor-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-black);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-pink);
}

.visitor-icon {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.visitor-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
}

.visitor-count {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-mockup {
        order: -1;
    }

    .step-arrow {
        display: block;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step-arrow:last-of-type {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        padding-top: 1rem;
        border-bottom: 2px solid var(--border-black);
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        gap: 0.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .logo-img {
        height: 70px;
        width: 140px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 2rem 0 3rem;
        min-height: auto;
    }

    .hero-decoration {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .phone-screen {
        max-width: 300px;
        transform: rotateY(0deg) !important;
    }

    .mockup-content {
        min-height: 380px;
        padding: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-card,
    .step-card,
    .stat-card {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }

    .phone-screen {
        max-width: 280px;
        padding: 15px;
    }

    .mockup-content {
        padding: 1rem;
        min-height: 320px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step-card,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   PRE-LAUNCH POPUP STYLES
   ======================================== */

/* Confetti Canvas */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
}

/* Overlay */
.prelaunch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.prelaunch-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.prelaunch-popup {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #faf9f6 100%);
    border: 3px solid var(--border-black);
    border-radius: 24px;
    padding: 2rem 2rem;
    max-width: 480px;
    width: 100%;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(0.8) translateY(40px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.prelaunch-overlay.active .prelaunch-popup {
    transform: scale(1) translateY(0);
}

/* Decorative Elements */
.popup-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.popup-decoration-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(233, 30, 99, 0.05) 100%);
    top: -80px;
    right: -60px;
    animation: float 6s ease-in-out infinite;
}

.popup-decoration-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    bottom: -40px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

.popup-decoration-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 100%);
    top: 40%;
    left: -20px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -10px) rotate(5deg);
    }

    66% {
        transform: translate(-5px, 5px) rotate(-3deg);
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 2px solid var(--border-black);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-black);
}

.popup-close:hover {
    background: var(--text-black);
    color: var(--bg-white);
    transform: rotate(90deg);
}

/* Popup Content */
.popup-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* Badge */
.popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
    }
}

/* Title */
.popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Subtitle */
.popup-subtitle {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Benefits List */
.popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Form Styles */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.form-group {
    position: relative;
}

.popup-form input {
    width: 100%;
    padding: 14px 18px;
    padding-left: 46px;
    border: 2px solid var(--border-black);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.popup-form input::placeholder {
    color: #999;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}

/* Submit Button */
.popup-submit {
    position: relative;
    width: 100%;
    padding: 14px 22px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border: 2px solid var(--border-black);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.popup-submit:active {
    transform: translateY(0);
}

.popup-submit.loading .btn-text {
    opacity: 0;
}

.popup-submit.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Privacy Text */
.popup-privacy {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 1rem;
}

/* Counter */
.popup-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-light-gray);
}

/* Success State */
.popup-success {
    display: none;
    text-align: center;
    position: relative;
    z-index: 5;
}

.popup-success.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.popup-content.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 0.75rem;
}

.success-message {
    font-size: 1rem;
    color: var(--text-light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.08) 100%);
    border: 2px solid var(--accent-green);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--accent-green);
}

.success-badge span:first-child {
    font-size: 1.2rem;
}

/* Responsive Popup */
@media (max-width: 520px) {
    .prelaunch-popup {
        padding: 2rem 1.5rem;
        margin: 10px;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-subtitle {
        font-size: 0.9rem;
    }

    .popup-benefits {
        padding: 0.75rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .popup-form input {
        padding: 14px 16px;
        padding-left: 45px;
    }

    .popup-submit {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }

    .counter-number {
        font-size: 1.2rem;
    }
}

/* ========================================
   LEGAL PAGES STYLES (Privacy & Terms)
   ======================================== */

.legal-page {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-black) 0%, var(--accent-pink) 50%, var(--accent-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 8s ease infinite;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light-gray);
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-black);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-card:hover::before {
    opacity: 1;
}

.legal-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-black);
    margin: 1.5rem 0 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-pink);
}

.legal-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 1rem 0 0.5rem;
}

.legal-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-card ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.legal-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.legal-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-card a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-card a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.legal-subsection {
    background: rgba(250, 249, 246, 0.8);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(156, 39, 176, 0.08) 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
}

.legal-highlight.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.legal-highlight p {
    margin: 0;
    font-weight: 500;
}

.legal-highlight ul {
    margin: 0.5rem 0 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-black);
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-table th {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    font-weight: 600;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:nth-child(even) {
    background: rgba(250, 249, 246, 0.8);
}

.legal-table tr:hover {
    background: rgba(233, 30, 99, 0.05);
}

.legal-contact {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.legal-contact p {
    margin-bottom: 0.5rem;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.legal-footer-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 2px solid var(--accent-green);
    border-radius: 16px;
}

.legal-footer-note p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 0;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 5rem 0 3rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .legal-card h2 {
        font-size: 1.25rem;
    }

    .legal-card h3 {
        font-size: 1.1rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .legal-card:hover {
        transform: none;
    }

    .legal-subsection {
        padding: 0.75rem 1rem;
    }
}

/* ========================================
   CONTACT FORM SUCCESS TOAST
   ======================================== */
.contact-success-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 3px solid var(--accent-green);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.3);
    z-index: 10000;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-success-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast-icon {
    font-size: 2.5rem;
    animation: toastBounce 0.6s ease-out;
}

@keyframes toastBounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.toast-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.toast-text p {
    font-size: 0.9rem;
    color: var(--text-light-gray);
    margin: 0;
}

@media (max-width: 480px) {
    .contact-success-toast {
        right: 10px;
        left: 10px;
        top: 80px;
        padding: 1rem 1.25rem;
    }

    .toast-icon {
        font-size: 2rem;
    }
}