:root {
    /* Brand Colors */
    --primary: #FF4B7E;
    --primary-dark: #E63566;
    --secondary: #7C3AED;
    --accent: #F472B6;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #FF4B7E 0%, #7C3AED 100%);
    --gradient-hover: linear-gradient(135deg, #E63566 0%, #6D28D9 100%);
    --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Neutrals */
    --dark: #0F172A;
    --slate: #475569;
    --light: #F8FAFC;
    --white: #FFFFFF;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 75, 126, 0.3);

    /* Layout */
    --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 75, 126, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 75, 126, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-store {
    background: var(--dark);
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: left;
}

.btn-store i { font-size: 1.5rem; margin-right: 10px; }
.btn-store span { display: block; font-size: 0.75rem; opacity: 0.8; font-weight: 400; }
.btn-store strong { display: block; font-size: 1rem; }
.btn-store:hover { background: #1e293b; transform: translateY(-2px); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    transition: color 0.3s ease;
    z-index: 1001;
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: scale(1.1) rotate(5deg);
}

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

.nav-links a {
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-links a:hover {
    background: rgba(255, 107, 157, 0.1);
}

.nav-links a.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 75, 126, 0.3);
}

.nav-links a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 126, 0.4);
    background: var(--gradient-hover);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.navbar.scrolled .mobile-toggle {
    color: var(--dark);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.navbar.scrolled .mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark);
}

.mobile-toggle.active {
    background: var(--primary);
    color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 20px 0 0 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 20px 30px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--dark);
        font-size: 1.1rem;
    }

    .nav-links a:hover {
        background: rgba(255, 107, 157, 0.1);
        border-bottom-color: rgba(255, 107, 157, 0.2);
        transform: none;
    }

    .nav-links a.btn-primary {
        background: var(--gradient-main);
        color: white;
        margin-top: 20px;
        border-radius: 12px;
        margin: 20px 30px;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.3) 0%, transparent 50%);
    animation: hero-bg-shift 20s ease-in-out infinite;
}

@keyframes hero-bg-shift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-main);
    filter: blur(120px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}
.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: slide-in 1s ease-out 0.5s both;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fade-in-up 1s ease-out 0.8s both;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
}

#onlineCount {
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1em;
}

#onlineCount.counter-updating {
    color: #ff6b9d;
    text-shadow: 0 0 8px rgba(255, 107, 157, 0.4);
    transform: scale(1.05);
}

.online-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffd700;
}

.rating-stars i { font-size: 1.1rem; }

.rating-text {
    color: white;
    font-weight: 600;
    margin-left: 8px;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.store-buttons {
    display: flex;
    gap: 16px;
}

/* CSS Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: var(--dark);
    border-radius: 40px;
    border: 8px solid var(--dark);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    margin: 0 auto;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: var(--dark);
    border-radius: 15px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--dark);
    border-radius: 2px;
}

.floating-elements {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 5;
}

.floating-heart {
    position: absolute;
    font-size: 2rem;
    color: #ff6b9d;
    animation: float-hearts 4s ease-in-out infinite;
}

.floating-heart:nth-child(1) {
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.floating-heart:nth-child(2) {
    top: 60px;
    right: 10px;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.floating-heart:nth-child(3) {
    top: 100px;
    right: 40px;
    animation-delay: 2s;
    font-size: 1.8rem;
}

@keyframes float-hearts {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-card {
    position: relative;
    margin: 10px 15px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.match-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eee;
}

.match-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.action-btn.nope { color: #ef4444; }
.action-btn.like { color: #22c55e; font-size: 2rem; }
.action-btn:hover { transform: scale(1.1); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Stats Section */
.stats-bar {
    background: white;
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }
.stat-item p { font-weight: 600; color: var(--slate); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Features Section */
.features { padding: 100px 0; }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--slate); font-size: 1.1rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,75,126,0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 0 30px rgba(255,75,126,0.2);
    border-color: var(--primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,75,126,0.1), rgba(124,58,237,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255,75,126,0.2), rgba(124,58,237,0.2));
    box-shadow: 0 10px 20px rgba(255,75,126,0.3);
}

.feature-card h3 { margin-bottom: 15px; font-size: 1.25rem; }
.feature-card p { color: var(--slate); font-size: 0.95rem; }

/* Stories/Testimonials */
.stories {
    background: var(--dark);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stories::before {
    content:''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Enhanced Testimonial Showcase */
.testimonial-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-quote i.fa-quote-left {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
}

.testimonial-quote i.fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: -20px;
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
}

.testimonial-quote p {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    margin: 0;
    padding: 0 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255,107,157,0.3);
}

.author-info h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.author-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.couple-silhouette {
    font-size: 8rem;
    color: rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.couple-silhouette i {
    filter: drop-shadow(0 0 30px rgba(255,107,157,0.2));
}

.testimonial-visual .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.testimonial-visual .floating-elements i {
    position: absolute;
    color: rgba(255,107,157,0.3);
    font-size: 1.5rem;
    animation: floatHearts 6s ease-in-out infinite;
}

.testimonial-visual .floating-elements i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.testimonial-visual .floating-elements i:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.testimonial-visual .floating-elements i:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes floatHearts {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card.mini {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card.mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,157,0.05), rgba(124,58,237,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card.mini:hover::before {
    opacity: 1;
}

.testimonial-card.mini:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 10px 25px rgba(255,107,157,0.1);
    border-color: rgba(255,255,255,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.card-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-card.mini p {
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.testimonial-card.mini h5 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonial-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .testimonial-quote p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .testimonial-author {
        justify-content: center;
    }

    .testimonial-visual {
        min-height: 200px;
    }

    .couple-silhouette {
        font-size: 5rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card.mini {
        padding: 25px;
    }
}

.stories .section-header h2 { font-size: 2rem; margin-bottom: 6px; font-weight: 800; }
.stories .section-header p { margin-bottom: 22px; color: rgba(255,255,255,0.7); }

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
}

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

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

.subscribe-form input:focus {
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.subscribe-form .btn {
    padding: 15px 30px;
    border-radius: 50px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 6 Q10 3 12 3 Q14 3 14 6 Q14 8 10 12 Q6 8 6 6 Q6 3 8 3 Q10 3 10 6 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-feature i {
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 75, 126, 0.4);
}

.cta-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

.cta-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    font-weight: 700;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Footer */
footer {
    background: var(--light);
    padding: 60px 0 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 { margin-bottom: 20px; font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--slate); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary); }

.copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-links .social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-social-links .social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-links .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.footer-social-links .social-link.facebook {
    background: #1877F2;
}

.footer-social-links .social-link.youtube {
    background: #FF0000;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        padding-top: 100px;
    }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 40px; }
    .store-buttons { justify-content: center; }
    .stats-grid { flex-direction: column; gap: 30px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 3rem; }

    /* Testimonial carousel responsive */
    .testimonial-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 400px;
    }

    .carousel-nav {
        margin-top: 30px;
    }

    /* Newsletter responsive */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 15px;
    }

    .subscribe-form input {
        width: 100%;
    }
}

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-heart {
    font-size: 4rem;
    color: #ff6b9d;
    animation: heartPulse 1.5s ease-in-out infinite, heartGlow 2s ease-in-out infinite;
    position: relative;
}

.loading-heart::before {
    content: '💕';
    position: absolute;
    top: 0;
    left: 0;
    animation: heartFloat 3s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes heartGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255,107,157,0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255,107,157,0.8)); }
}

@keyframes heartFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-10px) rotate(5deg); opacity: 1; }
}

.loading-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 2rem auto;
}

.spinner-ring {
    position: absolute;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.2s;
    border-top-color: #ff6b9d;
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.4s;
    border-top-color: #7c3aed;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-bottom: 2rem;
}

.loading-text span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.loading-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 8px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: dots 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dots {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loading-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #7c3aed, #06ffa5);
    background-size: 200% 100%;
    animation: progress 2s ease-in-out, gradientShift 3s ease-in-out infinite;
    border-radius: 2px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressGlow 2s ease-in-out;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes progressGlow {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

/* Social Feed Section */
.social-feed {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.feed-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feed-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feed-header h2 i {
    color: #ff6b9d;
    animation: firePulse 2s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feed-header p {
    color: var(--slate);
    font-size: 1.1rem;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feed-post {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.feed-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,75,126,0.05), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.feed-post:hover::before {
    left: 100%;
}

.feed-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: rgba(255,75,126,0.2);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.75rem;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.post-time {
    font-size: 0.75rem;
    color: var(--slate);
}

.post-menu {
    margin-left: auto;
    color: var(--slate);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.post-menu:hover {
    background: #f1f5f9;
}

.post-content {
    padding: 1rem;
}

.post-content p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-image {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.05);
}

.post-actions {
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 1rem;
    border-top: 1px solid #f1f5f9;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.action-item:hover::before {
    width: 100%;
    height: 100%;
}

.action-item:hover {
    color: #ff6b9d;
    transform: scale(1.05);
}

.action-item:active {
    transform: scale(0.95);
}

.action-item i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.action-item:hover i {
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feed-header h2 {
        font-size: 2rem;
    }

    .feed-post {
        margin: 0 1rem;
    }
}



/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #7c3aed);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.floating-action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

.floating-action-btn.active {
    transform: rotate(45deg) scale(1.1);
}

.floating-action-btn.active::before {
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.floating-action-btn-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-action-btn-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-action-btn-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    color: var(--dark);
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
}

.floating-action-btn-menu.active .floating-action-btn-item {
    transform: translateY(0);
    opacity: 1;
}

.floating-action-btn-item:nth-child(1) { transition-delay: 0.1s; }
.floating-action-btn-item:nth-child(2) { transition-delay: 0.2s; }
.floating-action-btn-item:nth-child(3) { transition-delay: 0.3s; }

.floating-action-btn-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,157,0.1), transparent);
    transition: left 0.4s ease;
}

.floating-action-btn-item:hover::before {
    left: 100%;
}

.floating-action-btn-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.floating-action-btn-item:active {
    transform: translateY(0) scale(0.98);
}

.floating-action-btn-item i {
    font-size: 1.2rem;
    color: #ff6b9d;
    transition: transform 0.2s ease;
}

.floating-action-btn-item:hover i {
    transform: scale(1.1);
}

.floating-action-btn-item:first-child i {
    color: #007aff;
}

/* Mobile FAB */
@media (max-width: 768px) {
    .fab-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-action-btn {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .floating-action-btn-menu {
        bottom: 65px;
    }

    .floating-action-btn-item {
        padding: 0.6rem 0.8rem;
        min-width: 120px;
        font-size: 0.9rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 75, 126, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-card:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
}

.step-card:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.step-card:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #10b981, #06ffa5);
}

.step-card:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #f59e0b, #ffd700);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-visual {
    position: relative;
    z-index: 2;
}

/* Profile Preview */
.profile-preview {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.preview-avatar {
    font-size: 2.5rem;
    color: #667eea;
}

.preview-details {
    text-align: left;
}

.preview-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.preview-age, .preview-location {
    font-size: 0.85rem;
    color: var(--slate);
}

.preview-location i {
    margin-right: 0.25rem;
}

/* AI Matching Visual */
.ai-matching {
    position: relative;
    text-align: center;
}

.compatibility-meter {
    background: rgba(0,0,0,0.1);
    border-radius: 20px;
    height: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06ffa5);
    border-radius: 20px;
    transition: width 1s ease;
}

.meter-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

.matching-sparks {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.matching-sparks i {
    color: #ffd700;
    animation: spark-twinkle 1.5s ease-in-out infinite;
}

.matching-sparks i:nth-child(2) {
    animation-delay: 0.5s;
}

.matching-sparks i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes spark-twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Chat Preview */
.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 200px;
    margin: 0 auto;
}

.chat-bubble {
    padding: 0.5rem 0.75rem;
    border-radius: 18px;
    font-size: 0.8rem;
    line-height: 1.4;
    position: relative;
    animation: bubble-appear 0.5s ease-out;
}

.chat-bubble.user {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.match {
    background: #f1f5f9;
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble:nth-child(1) { animation-delay: 0s; }
.chat-bubble:nth-child(2) { animation-delay: 0.3s; }
.chat-bubble:nth-child(3) { animation-delay: 0.6s; }

@keyframes bubble-appear {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Love Visual */
.love-visual {
    text-align: center;
}

.couple-icons {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    animation: heart-beat 2s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.meeting-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    pointer-events: none;
}

.banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-visual {
    flex-shrink: 0;
    margin-left: 2rem;
    position: relative;
    z-index: 2;
}

.floating-hearts {
    display: flex;
    gap: 1rem;
}

.floating-hearts i {
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    animation: float-hearts 3s ease-in-out infinite;
}

.floating-hearts i:nth-child(2) {
    animation-delay: 1s;
}

.floating-hearts i:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float-hearts {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 1;
    }
}

/* Mobile How It Works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .banner-content h3 {
        font-size: 1.5rem;
    }

    .banner-visual {
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .floating-hearts {
        justify-content: center;
    }
}

/* ===========================================
   ADDITIONAL PAGES STYLES
   =========================================== */

/* About Page Styles */
.about-hero {
    background: var(--gradient-main);
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    min-width: 140px;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.mission-section {
    padding: 120px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mission-stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(102, 126, 234, 0.2);
    flex: 1;
    min-width: 120px;
}

.mission-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.mission-stat .stat-label {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 500;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mission-quote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 40px;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
}

.mission-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.mission-quote cite {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.value-item span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-highlight {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 75, 126, 0.3);
}

.feature-highlight h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: var(--slate);
    line-height: 1.6;
    font-size: 1rem;
}

.vision-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.vision-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 4rem;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 4rem;
}

.pillar {
    background: white;
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.pillar h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.pillar p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 1.1rem;
}

.founding-story-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.story-narrative h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: white;
}

.story-narrative p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.story-narrative strong {
    color: #ffd700;
    font-weight: 700;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
}

.story-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-quote cite {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
}

.stat-mini .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-mini .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--dark);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 75, 126, 0.3);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.why-card p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 1.1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--slate);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-item {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.difference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 75, 126, 0.3);
}

.difference-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.difference-item p {
    color: var(--slate);
    line-height: 1.6;
    font-size: 1rem;
}

.values-section {
    padding: 120px 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.value-card p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 1.1rem;
}

.team-section {
    padding: 100px 0;
    background: var(--light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-note {
    text-align: center;
    margin-top: 3rem;
    padding: 30px;
    background: rgba(255, 75, 126, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.team-note p {
    font-style: italic;
    color: var(--slate);
    font-size: 1.1rem;
    margin: 0;
}

/* Features Page Styles */
.features-hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.features-grid-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--slate);
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.how-it-works {
    padding: 100px 0;
    background: var(--light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

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

.step-item {
    text-align: center;
    padding: 60px 15px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-item p {
    color: var(--slate);
    line-height: 1.6;
}

.premium-features {
    padding: 100px 0;
    background: white;
}

.premium-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.premium-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.premium-content p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 3rem;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.premium-item {
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.premium-item:hover {
    transform: translateY(-3px);
}

.premium-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.premium-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.btn-premium {
    background: var(--gradient-main);
    color: white;
    padding: 15px 40px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
}

.contact-hero {
    background: var(--gradient-main);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    min-width: 120px;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2rem;
    color: var(--primary);
    min-width: 50px;
}

.method-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.method-content p {
    color: var(--slate);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-category {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category h4 i {
    color: var(--primary);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.faq-item p {
    color: var(--slate);
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--slate);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-element {
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--slate);
    font-style: italic;
}

/* Form Validation & Messages */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-error:before {
    content: '⚠';
    font-size: 0.75rem;
}

.message-container {
    margin-bottom: 2rem;
    animation: slideDown 0.3s ease-out;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.success i {
    color: #059669;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-message.error i {
    color: #dc2626;
}

.form-message i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Button Loading Animation */
.btn-primary:disabled,
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    position: relative;
}

.btn-primary.loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-actions .btn-primary {
        width: 100%;
        padding: 14px 20px;
    }
}

.map-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.map-section > p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.global-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.global-stat {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    min-width: 120px;
    border: 1px solid rgba(0,0,0,0.05);
}

.global-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.global-stat .stat-label {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
}

.map-placeholder {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 350px;
    background: white;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.7;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.map-placeholder p {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 400px;
}

.supported-regions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.region {
    background: var(--gradient-main);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 75, 126, 0.2);
}

/* Careers Page Styles */
.careers-hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.why-join-section {
    padding: 100px 0;
    background: white;
}

.why-join-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-item p {
    color: var(--slate);
    line-height: 1.6;
}

.positions-section {
    padding: 100px 0;
    background: var(--light);
}

.positions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.position-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.position-header {
    margin-bottom: 1.5rem;
}

.position-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.position-location {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.position-card > p {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.position-tags span {
    background: var(--light);
    color: var(--slate);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.no-positions-message {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0 20px;
}

.no-positions-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.no-positions-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.no-positions-message p {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.no-positions-message a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.no-positions-message a:hover {
    text-decoration: underline;
}

.culture-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.culture-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.culture-intro {
    margin-bottom: 4rem;
}

.culture-quote {
    margin-bottom: 2rem;
}

.culture-quote blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark);
    margin: 0;
    position: relative;
}

.culture-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    left: -30px;
    top: -10px;
}

.culture-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    right: -30px;
    bottom: -30px;
}

.culture-mission {
    max-width: 800px;
    margin: 0 auto;
}

.culture-mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--slate);
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.value-highlight {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 75, 126, 0.3);
}

.value-highlight h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-highlight p {
    color: var(--slate);
    line-height: 1.6;
    font-size: 0.95rem;
}

.culture-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.culture-stat {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.culture-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.culture-stat .stat-label {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
}

/* Privacy, Terms, Cookie Policy Pages */
.privacy-hero,
.terms-hero,
.cookie-hero,
.safety-hero,
.press-hero,
.blog-hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-content,
.terms-content,
.cookie-content,
.safety-content,
.press-content,
.blog-content {
    padding: 100px 0;
    background: white;
}

.privacy-text,
.terms-text,
.cookie-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-text h2,
.terms-text h2,
.cookie-text h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--dark);
}

.privacy-text h2:first-child,
.terms-text h2:first-child,
.cookie-text h2:first-child {
    margin-top: 0;
}

.privacy-text h3,
.terms-text h3,
.cookie-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--dark);
}

.privacy-text ul,
.terms-text ul,
.cookie-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-text li,
.terms-text li,
.cookie-text li {
    margin-bottom: 0.5rem;
    color: var(--slate);
}

.last-updated {
    color: var(--slate);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Safety Tips Page */
.safety-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.safety-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.safety-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.safety-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.safety-card ul {
    list-style: none;
    padding: 0;
}

.safety-card li {
    padding: 0.5rem 0;
    color: var(--slate);
    position: relative;
    padding-left: 20px;
}

.safety-card li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safety-resources {
    background: var(--light);
    padding: 60px 0;
    margin: 4rem 0;
}

.safety-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.resource-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.resource-item ul {
    list-style: none;
    padding: 0;
}

.resource-item li {
    padding: 0.5rem 0;
    color: var(--slate);
}

.resource-item li a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-item li a:hover {
    color: var(--primary-dark);
}

.safety-pledge {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.safety-pledge h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.safety-pledge p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Press Page Styles */
.press-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.press-main h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.press-release {
    margin-bottom: 3rem;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.press-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.press-release h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.press-release p {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.press-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.press-kit,
.contact-press,
.company-facts {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.press-kit h3,
.contact-press h3,
.company-facts h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.press-kit p {
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.company-facts ul {
    list-style: none;
    padding: 0;
}

.company-facts li {
    padding: 0.5rem 0;
    color: var(--slate);
    border-bottom: 1px solid #f1f5f9;
}

.company-facts li:last-child {
    border-bottom: none;
}

/* Enhanced Sidebar Cards */
.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.sidebar-card p {
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Press Kit */
.press-kit .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--secondary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.press-kit .btn-secondary:hover {
    background: #6D28D9;
    transform: translateY(-1px);
}

/* Contact Press */
.contact-info {
    margin-top: 15px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item strong {
    color: var(--dark);
    font-size: 1.1rem;
}

.contact-item span {
    color: var(--slate);
    font-size: 0.9rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Company Facts */
.facts-list {
    list-style: none;
    padding: 0;
}

.facts-list li {
    padding: 12px 0;
    color: var(--slate);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.facts-list li:last-child {
    border-bottom: none;
}

.facts-list strong {
    color: var(--dark);
    font-weight: 600;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.twitter { background: #1DA1F2; }
.social-link.linkedin { background: #0077B5; }
.social-link.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-link.facebook { background: #1877F2; }
.social-link.youtube { background: #FF0000; }

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Press Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 2px solid #f1f5f9;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form .btn-primary {
    padding: 12px 20px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-1px);
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-main .blog-post {
    margin-bottom: 4rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 4rem;
}

.blog-main .blog-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.post-image {
    position: relative;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--light);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--slate);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content > p {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-categories,
.blog-newsletter,
.popular-posts {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.blog-categories h3,
.blog-newsletter h3,
.popular-posts h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.blog-categories ul {
    list-style: none;
    padding: 0;
}

.blog-categories li {
    padding: 0.5rem 0;
}

.blog-categories a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-categories a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.popular-posts ul {
    list-style: none;
    padding: 0;
}

.popular-posts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-posts a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.popular-posts a:hover {
    color: var(--primary);
}

/* Cookie Table Styles */
.cookie-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 2rem 0;
}

.cookie-category {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.cookie-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cookie-category ul {
    list-style: none;
    padding: 0;
}

.cookie-category li {
    padding: 0.5rem 0;
    color: var(--slate);
    position: relative;
    padding-left: 20px;
}

.cookie-category li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-hero,
    .features-hero,
    .contact-hero,
    .careers-hero,
    .privacy-hero,
    .terms-hero,
    .cookie-hero,
    .safety-hero,
    .press-hero,
    .blog-hero {
        padding: 80px 0 60px;
    }

    .mission-grid,
    .contact-grid,
    .culture-content,
    .press-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-stats,
    .culture-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid,
    .benefits-grid,
    .safety-grid,
    .resources-grid,
    .positions-grid,
    .features-grid,
    .steps-grid,
    .premium-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-year {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .press-sidebar {
        gap: 30px;
    }

    .blog-sidebar {
        gap: 30px;
    }

    .cookie-table {
        gap: 20px;
    }

    .safety-intro,
    .safety-pledge {
        margin: 2rem auto;
        padding: 30px 20px;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: var(--gradient-main);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.faq-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.faq-hero .hero-stat {
    text-align: center;
}

.faq-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.faq-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section {
    padding: 80px 0;
    background: var(--light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

.faq-section .section-header a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.faq-section .section-header a:hover {
    text-decoration: underline;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-category {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-category .category-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-category .category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.faq-category p {
    color: var(--slate);
    font-size: 0.95rem;
}

.faq-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
}

.faq-accordion-toggle:hover {
    color: var(--primary);
}

.faq-accordion-toggle i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-accordion-item.active .faq-accordion-toggle i {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 20px;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
}

.faq-accordion-content p {
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

.faq-search {
    background: var(--dark);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.faq-search h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-search p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search .search-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-search .btn-primary,
.faq-search .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.faq-search .btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: var(--shadow-glow);
}

.faq-search .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(255, 75, 126, 0.4);
}

.faq-search .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-search .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 20px;
    }

    .faq-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .faq-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-hero .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-category {
        padding: 30px 20px;
    }

    .faq-category .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .faq-category h3 {
        font-size: 1.25rem;
    }

    .faq-search {
        padding: 60px 20px;
    }

    .faq-search h2 {
        font-size: 2rem;
    }

    .faq-search .search-actions {
        flex-direction: column;
        align-items: center;
    }

    .faq-search .btn-primary,
    .faq-search .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Legal Document Pages */
.privacy-hero,
.terms-hero,
.cookie-hero,
.refund-hero,
.community-hero {
    background: var(--gradient-main);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-hero .hero-content,
.terms-hero .hero-content,
.cookie-hero .hero-content,
.refund-hero .hero-content,
.community-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1,
.terms-hero h1,
.cookie-hero h1,
.refund-hero h1,
.community-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-hero .hero-subtitle,
.terms-hero .hero-subtitle,
.cookie-hero .hero-subtitle,
.refund-hero .hero-subtitle,
.community-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.version-info {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.privacy-content,
.terms-content,
.cookie-content,
.refund-content,
.community-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-content .container,
.terms-content .container,
.cookie-content .container,
.refund-content .container,
.community-content .container {
    max-width: 900px;
}

.privacy-text,
.terms-text,
.cookie-text,
.refund-text,
.community-text {
    line-height: 1.8;
    color: var(--dark);
}

.privacy-text h1,
.terms-text h1,
.cookie-text h1,
.refund-text h1,
.community-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

.privacy-text h2,
.terms-text h2,
.cookie-text h2,
.refund-text h2,
.community-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.privacy-text h3,
.terms-text h3,
.cookie-text h3,
.refund-text h3,
.community-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--slate);
}

.privacy-text p,
.terms-text p,
.cookie-text p,
.refund-text p,
.community-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.privacy-text ul,
.terms-text ul,
.cookie-text ul,
.refund-text ul,
.community-text ul {
    margin: 1rem 0 2rem 2rem;
}

.privacy-text li,
.terms-text li,
.cookie-text li,
.refund-text li,
.community-text li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.privacy-text strong,
.terms-text strong,
.cookie-text strong,
.refund-text strong,
.community-text strong {
    color: var(--primary);
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.contact-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .privacy-hero,
    .terms-hero,
    .cookie-hero,
    .refund-hero,
    .community-hero {
        padding: 100px 0 60px;
    }

    .privacy-hero h1,
    .terms-hero h1,
    .cookie-hero h1,
    .refund-hero h1,
    .community-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-hero .hero-subtitle,
    .terms-hero .hero-subtitle,
    .cookie-hero .hero-subtitle,
    .refund-hero .hero-subtitle,
    .community-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .privacy-text h1,
    .terms-text h1,
    .cookie-text h1,
    .refund-text h1,
    .community-text h1 {
        font-size: 2rem;
    }

    .privacy-text h2,
    .terms-text h2,
    .cookie-text h2,
    .refund-text h2,
    .community-text h2 {
        font-size: 1.5rem;
    }
}