/* =====================================================
   GoLove AI Affiliate Site - Main Stylesheet
   Modern, Responsive, Mobile-First Design
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #ff4d8d;
    --primary-dark: #e6357a;
    --primary-light: #ff7aa8;
    --primary-glow: rgba(255, 77, 141, 0.4);
    
    /* Secondary Colors */
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    --secondary-light: #a78bfa;
    
    /* Accent Colors */
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff4d8d 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 77, 141, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 77, 141, 0.1);
    color: var(--text-primary);
}

.btn-large,
.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px var(--primary-glow); }
    50% { box-shadow: 0 4px 40px var(--primary-glow), 0 0 60px var(--primary-glow); }
}

/* =====================================================
   Floating Gift Button & Popup
   ===================================================== */
.floating-gift-btn {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.floating-gift-btn:hover {
    transform: scale(1.08);
}

.floating-gift-btn:hover .gift-icon-wrap {
    box-shadow: 0 0 50px var(--primary-glow), 0 0 80px rgba(255, 77, 141, 0.3);
}

.gift-icon-wrap {
    position: relative;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(255, 77, 141, 0.2);
    animation: giftBounce 2s ease-in-out infinite;
}

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

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.gift-label {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    backdrop-filter: blur(15px);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.2);
    text-align: center;
    min-width: 100px;
}

.gift-discount {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
    letter-spacing: 0.5px;
}

.gift-subtext {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 2px;
    font-weight: 500;
}

/* Gift Popup Modal - Modern Square Design */
.gift-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.gift-popup-modal {
    background: linear-gradient(145deg, #121218 0%, #0d0d12 100%);
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 77, 141, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 77, 141, 0.15);
    animation: popupSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: row;
}

@keyframes popupSlide {
    from { 
        transform: scale(0.9) translateY(20px); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

/* Gallery Side */
.popup-gallery {
    flex: 1;
    position: relative;
    background: linear-gradient(180deg, #1a1a24 0%, #0f0f15 100%);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.popup-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.4);
}

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

.gallery-main {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.05);
}

.gallery-img.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-info {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.companion-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.swipe-actions {
    display: flex;
    gap: 12px;
}

.swipe-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.swipe-nope {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swipe-nope:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: scale(1.1);
}

.swipe-like {
    background: var(--gradient-primary);
    color: white;
}

.swipe-like:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 25px rgba(255, 77, 141, 0.5);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumb:hover {
    opacity: 1;
}

.thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 77, 141, 0.5);
}

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

/* Content Side */
.popup-content {
    flex: 1;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.popup-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.popup-features {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    gap: 12px;
}

.popup-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.popup-features li:hover {
    background: rgba(255, 77, 141, 0.08);
    border-color: rgba(255, 77, 141, 0.2);
    transform: translateX(5px);
}

.popup-features li i {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
}

.popup-features li span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.popup-cta-section {
    margin-top: auto;
}

.popup-cta {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-note i {
    color: #22c55e;
}

/* Popup Responsive - Tablet & Mobile */
@media (max-width: 768px) {
    .gift-popup-modal {
        flex-direction: column;
        max-width: 380px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .popup-gallery {
        min-height: 280px;
        max-height: 300px;
    }
    
    .gallery-info {
        bottom: 60px;
    }
    
    .companion-name {
        font-size: 1.1rem;
    }
    
    .swipe-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .gallery-thumbs {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .thumb {
        width: 50px;
        height: 50px;
    }
    
    .popup-content {
        padding: 25px 20px;
    }
    
    .popup-header h2 {
        font-size: 1.4rem;
    }
    
    .popup-header p {
        font-size: 0.85rem;
    }
    
    .popup-features {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .popup-features li {
        padding: 10px 12px;
    }
    
    .popup-features li span {
        font-size: 0.85rem;
    }
    
    .popup-cta {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .gift-popup-overlay {
        padding: 10px;
    }
    
    .gift-popup-modal {
        max-width: 100%;
        border-radius: var(--radius-lg);
    }
    
    .popup-gallery {
        min-height: 240px;
    }
    
    .popup-header h2 {
        font-size: 1.25rem;
    }
    
    .popup-features li {
        padding: 8px 10px;
    }
}

/* Legacy support - hide old elements */
.popup-image {
    display: none;
}

.popup-features i {
    color: #22c55e;
    font-size: 1rem;
}

.popup-cta {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
}

.popup-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.popup-note i {
    color: #22c55e;
    margin-right: 5px;
}

/* =====================================================
   Header & Navigation
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    padding: 12px 0;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    padding: 8px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1rem;
    color: #fff;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 5px;
}

.nav-link {
    padding: 8px 14px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.nav-cta-btn span {
    display: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

.nav-menu.active .nav-link {
    font-size: 1.2rem;
    padding: 12px 30px;
}

/* =====================================================
   Alternative Navbar Structure (for guide pages)
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.mobile-menu .btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Navbar Desktop Responsive */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* =====================================================
   Hero Section with Tinder Swipe
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(255, 77, 141, 0.15) 0%, transparent 50%),
                var(--bg-dark);
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 77, 141, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.hero-trust {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-trust i {
    color: #22c55e;
    margin-right: 5px;
}

/* =====================================================
   Tinder-Style Swipe Cards
   ===================================================== */
.tinder-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tinder-cards {
    position: relative;
    width: 100%;
    height: 420px;
    margin-bottom: 20px;
}

.tinder-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: grab;
    transition: transform 0.3s ease;
    will-change: transform;
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}

.tinder-card:active {
    cursor: grabbing;
}

.tinder-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tinder-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.tinder-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tinder-card-age {
    font-weight: 400;
    opacity: 0.9;
}

.tinder-card-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.tinder-card-badge {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tinder-card-badge.like {
    right: 20px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: 3px solid #22c55e;
}

.tinder-card-badge.nope {
    left: 20px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: 3px solid #ef4444;
}

.tinder-card.swiping-right .tinder-card-badge.like,
.tinder-card.swiping-left .tinder-card-badge.nope {
    opacity: 1;
}

.tinder-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.tinder-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.tinder-nope {
    background: white;
    color: #ef4444;
}

.tinder-nope:hover {
    transform: scale(1.1);
    background: #ef4444;
    color: white;
}

.tinder-info {
    background: white;
    color: var(--accent);
    width: 45px;
    height: 45px;
    font-size: 1rem;
}

.tinder-info:hover {
    transform: scale(1.1);
    background: var(--accent);
    color: white;
}

.tinder-like {
    background: var(--gradient-primary);
    color: white;
}

.tinder-like:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.swipe-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

.swipe-hint i {
    margin-right: 5px;
}

/* =====================================================
   Video Companions Showcase
   ===================================================== */
.video-showcase-section {
    background: var(--bg-darker);
}

.video-companions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.video-companion-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: var(--shadow-md);
}

.video-companion-card .video-wrapper {
    width: 100%;
    height: 100%;
}

.video-companion-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-companion-card .companion-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 10px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.video-cta {
    text-align: center;
}

/* More Companions Horizontal Scroll */
.more-companions-section {
    background: var(--gradient-dark);
    padding: 60px 0;
}

.video-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.video-scroll-container::-webkit-scrollbar {
    display: none;
}

.video-scroll-track {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    width: max-content;
}

.video-scroll-card {
    flex-shrink: 0;
    width: 140px;
    height: 200px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-scroll-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-scroll-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 8px 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* =====================================================
   Section Styles
   ===================================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 77, 141, 0.15);
    border: 1px solid rgba(255, 77, 141, 0.3);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* =====================================================
   About Section
   ===================================================== */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.85rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    display: none;
}

/* =====================================================
   Intimacy Section
   ===================================================== */
.intimacy-section {
    background: var(--gradient-dark);
}

.intimacy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intimacy-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intimacy-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    aspect-ratio: 9/16;
    max-width: 300px;
    margin: 0 auto;
}

.intimacy-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   Features Section
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 77, 141, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feature-list i {
    color: #22c55e;
    font-size: 0.8rem;
}

.features-cta {
    text-align: center;
    margin-top: 30px;
}

/* =====================================================
   Companions Section
   ===================================================== */
.companions-section {
    background: var(--bg-darker);
}

.companions-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.companion-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.companion-card:hover {
    transform: translateY(-5px);
}

.companion-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.companion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.companion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transition: var(--transition-normal);
}

.companion-card:hover .companion-overlay {
    opacity: 1;
}

.companion-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
    text-align: center;
}

.companion-info h4 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.companion-info p {
    font-size: 0.75rem;
    color: var(--primary);
    margin: 0;
}

.companions-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* =====================================================
   Who Needs Section
   ===================================================== */
.who-needs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.who-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.who-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 77, 141, 0.3);
}

.who-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 77, 141, 0.1);
    border-radius: var(--radius-full);
    margin: 0 auto 15px;
    font-size: 1.2rem;
    color: var(--primary);
}

.who-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.who-card p {
    font-size: 0.85rem;
    margin: 0;
}

.who-needs-bottom {
    text-align: center;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* =====================================================
   How It Works Section - Premium Design
   ===================================================== */
.how-it-works-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 20, 30, 1) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 77, 141, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.step-content {
    display: flex;
    gap: 20px;
}

.step-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.4);
}

.step-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    margin-top: 10px;
    display: none;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-info h3 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.step-info > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 77, 141, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.step-features li i {
    color: #22c55e;
    font-size: 0.75rem;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.step-image-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.step-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.step-item:hover .step-image-wrapper img {
    transform: scale(1.03);
}

.step-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 77, 141, 0.2) 100%);
    pointer-events: none;
}

.steps-cta {
    text-align: center;
    padding-top: 20px;
}

.steps-cta .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Tablet+ Responsive */
@media (min-width: 768px) {
    .step-item {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .step-item.reverse {
        direction: rtl;
    }
    
    .step-item.reverse > * {
        direction: ltr;
    }
    
    .step-line {
        display: block;
    }
    
    .step-info h3 {
        font-size: 1.6rem;
    }
    
    .step-info > p {
        font-size: 1.05rem;
    }
    
    .step-image-wrapper {
        max-width: 380px;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .steps-container {
        gap: 80px;
    }
    
    .step-item {
        gap: 80px;
    }
    
    .step-num {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .step-info h3 {
        font-size: 1.8rem;
    }
    
    .step-info > p {
        font-size: 1.1rem;
    }
    
    .step-image-wrapper {
        max-width: 420px;
    }
}

/* =====================================================
   Trust Section
   ===================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition-normal);
}

.trust-card:hover {
    border-color: rgba(255, 77, 141, 0.3);
}

.trust-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.trust-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.trust-card p {
    font-size: 0.9rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.badge-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing-preview-section {
    background: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 77, 141, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(255, 77, 141, 0.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #22c55e;
}

.pricing-cta {
    text-align: center;
}

/* =====================================================
   Reviews Section
   ===================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition-normal);
}

.review-card:hover {
    border-color: rgba(255, 77, 141, 0.3);
}

.review-header {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.review-header img {
    width: 100%;
    height: auto;
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-cta {
    text-align: center;
}

/* =====================================================
   Comparison Table Section
   ===================================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.comparison-table th {
    background: rgba(255, 77, 141, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th.highlight {
    background: rgba(255, 77, 141, 0.15);
    color: var(--primary);
}

.comparison-table td.highlight {
    background: rgba(255, 77, 141, 0.05);
}

.comparison-table .fa-check-circle {
    color: #22c55e;
    font-size: 1.1rem;
}

.comparison-table .fa-times-circle {
    color: #ef4444;
    font-size: 1.1rem;
}

.comparison-table .fa-minus-circle {
    color: #f59e0b;
    font-size: 1.1rem;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto 30px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 77, 141, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 10px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 18px 16px;
    margin: 0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.faq-cta {
    text-align: center;
}

/* =====================================================
   Why Choose Section
   ===================================================== */
.why-choose-section {
    background: var(--gradient-dark);
}

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

.why-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =====================================================
   Final CTA Section
   ===================================================== */
.final-cta-section {
    background: var(--gradient-primary);
    padding: 70px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: white;
}

.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 20px;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary);
    font-size: 1rem;
    padding: 14px 35px;
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: var(--primary);
}

.cta-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.cta-features i {
    color: white;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--bg-darker);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo {
    height: 35px;
    margin: 0 auto 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-cta h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-cta p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* =====================================================
   Scroll to Top Button
   ===================================================== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* =====================================================
   Page Hero (for inner pages)
   ===================================================== */
.page-hero {
    padding: 120px 0 60px;
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1rem;
}

/* Background Darker Class */
.bg-darker {
    background: var(--bg-darker);
}

/* =====================================================
   RESPONSIVE STYLES - TABLET (768px+)
   ===================================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .nav-cta-btn span {
        display: inline;
    }
    
    .logo-img {
        height: 38px;
    }
    
    /* Hero */
    .hero-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        max-width: 500px;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .tinder-container {
        max-width: 350px;
    }
    
    .tinder-cards {
        height: 480px;
    }
    
    /* Video Grid */
    .video-companions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .video-scroll-card {
        width: 160px;
        height: 230px;
    }
    
    /* About */
    .about-grid {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }
    
    .about-content {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
    }
    
    .floating-card {
        display: flex;
        position: absolute;
        align-items: center;
        gap: 10px;
        background: rgba(10, 10, 15, 0.9);
        backdrop-filter: blur(10px);
        padding: 12px 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-md);
        animation: float 3s ease-in-out infinite;
    }
    
    .floating-card i {
        color: var(--primary);
        font-size: 1rem;
    }
    
    .floating-card span {
        font-weight: 600;
        font-size: 0.85rem;
    }
    
    .card-1 {
        top: 20%;
        left: -20px;
    }
    
    .card-2 {
        bottom: 20%;
        right: -20px;
        animation-delay: 1.5s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    /* Intimacy */
    .intimacy-content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    
    .intimacy-text {
        flex: 1.5;
    }
    
    .intimacy-video {
        flex: 1;
        max-width: 350px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Companions */
    .companions-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .companions-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Who Needs */
    .who-needs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Trust */
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    
    .badge-item {
        flex-direction: row;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    /* CTA Features */
    .cta-features {
        flex-direction: row;
        gap: 25px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    
    .footer-logo {
        margin: 0 0 15px 0;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    /* Floating Gift Button - Tablet */
    .floating-gift-btn {
        right: 20px;
        bottom: 100px;
    }
    
    .gift-icon-wrap {
        width: 60px;
        height: 60px;
    }
    
    .gift-label {
        min-width: 95px;
    }
}

/* =====================================================
   RESPONSIVE STYLES - TABLET LANDSCAPE (992px - 1023px)
   ===================================================== */
@media (min-width: 992px) and (max-width: 1023px) {
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-content {
        max-width: 480px;
    }
    
    .tinder-container {
        max-width: 340px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .companions-slider {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        gap: 20px;
    }
}

/* =====================================================
   RESPONSIVE STYLES - DESKTOP (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .tinder-container {
        max-width: 380px;
    }
    
    .tinder-cards {
        height: 520px;
    }
    
    .tinder-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tinder-info {
        width: 50px;
        height: 50px;
    }
    
    /* Video Grid */
    .video-companions-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .video-scroll-card {
        width: 180px;
        height: 260px;
    }
    
    /* About */
    .about-grid {
        gap: 80px;
    }
    
    .about-lead {
        font-size: 1.2rem;
    }
    
    /* Features */
    .feature-card {
        padding: 35px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    /* Companions */
    .companions-slider {
        grid-template-columns: repeat(6, 1fr);
    }
    
    /* Who Needs */
    .who-needs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 100px 0;
    }
    
    .cta-buttons .btn {
        font-size: 1.1rem;
        padding: 16px 45px;
    }
}

/* =====================================================
   RESPONSIVE STYLES - LARGE DESKTOP (1200px+)
   ===================================================== */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 550px;
    }
    
    .tinder-container {
        max-width: 400px;
    }
    
    .tinder-cards {
        height: 550px;
    }
}

/* =====================================================
   MOBILE RESPONSIVE (max-width: 767px)
   ===================================================== */
@media (max-width: 767px) {
    /* Floating Gift Button - Mobile */
    .floating-gift-btn {
        right: 15px;
        bottom: 80px;
    }
    
    .gift-icon-wrap {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .gift-label {
        padding: 6px 10px;
        min-width: 85px;
    }
    
    .gift-discount {
        font-size: 0.75rem;
    }
    
    .gift-subtext {
        font-size: 0.6rem;
    }
    
    /* Gift Popup - Mobile */
    .gift-popup-overlay {
        padding: 15px;
    }
    
    .gift-popup-modal {
        max-height: 95vh;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .popup-features {
        padding: 15px;
    }
    
    .popup-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .popup-cta {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    /* Hero Section - Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Tinder Cards - Mobile */
    .tinder-container {
        max-width: 100%;
        margin-top: 40px;
    }
    
    .tinder-cards {
        height: 420px;
    }
    
    /* Section Titles - Mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Cards - Mobile */
    .feature-card,
    .pricing-card,
    .review-card {
        padding: 20px;
    }
    
    /* Navigation - Mobile */
    .nav-cta-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* Footer - Mobile */
    .footer-grid {
        gap: 30px;
    }
}

/* =====================================================
   MOBILE SMALL (< 375px)
   ===================================================== */
@media (max-width: 374px) {
    html {
        font-size: 14px;
    }
    
    /* Floating Gift Button - Small Mobile */
    .floating-gift-btn {
        right: 10px;
        bottom: 70px;
    }
    
    .gift-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .gift-label {
        padding: 5px 8px;
        min-width: 75px;
    }
    
    .gift-discount {
        font-size: 0.7rem;
    }
    
    .gift-subtext {
        font-size: 0.55rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .tinder-cards {
        height: 380px;
    }
    
    .tinder-btn {
        width: 48px;
        height: 48px;
    }
    
    .tinder-info {
        width: 40px;
        height: 40px;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .header,
    .sticky-gift-widget,
    .floating-gift-btn,
    .gift-popup-overlay,
    .scroll-top,
    .tinder-container,
    video {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 30px 0;
    }
}

/* =====================================================
   Accessibility - Reduced Motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* =====================================================
   High Contrast Mode
   ===================================================== */
@media (prefers-contrast: high) {
    :root {
        --bg-card: rgba(255, 255, 255, 0.1);
        --text-secondary: rgba(255, 255, 255, 0.9);
    }
    
    .btn-outline {
        border-width: 3px;
    }
}