/* ========================================
   OurDream AI Affiliate Site - Main Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Black, Red, Yellow Theme */
    --primary: #ff2d2d;
    --primary-dark: #cc0000;
    --primary-light: #ff5555;
    --secondary: #ffcc00;
    --secondary-dark: #e6b800;
    --accent: #ffcc00;
    --accent-green: #ffcc00;
    --yellow: #ffcc00;
    --gold: #ffd700;
    
    /* Background Colors - Pure Black */
    --bg-dark: #000000;
    --bg-darker: #000000;
    --bg-card: #0d0d0d;
    --bg-card-hover: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #000000 0%, #0d0d0d 50%, #000000 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    /* Gradients - Red and Yellow */
    --gradient-primary: linear-gradient(135deg, #ff2d2d 0%, #ff5555 50%, #ff7777 100%);
    --gradient-secondary: linear-gradient(135deg, #ffcc00 0%, #ffd700 100%);
    --gradient-accent: linear-gradient(135deg, #ff2d2d 0%, #ffcc00 100%);
    --gradient-text: linear-gradient(90deg, #ff2d2d, #ffcc00, #ff2d2d);
    --gradient-glow: radial-gradient(circle, rgba(255, 45, 45, 0.3) 0%, transparent 70%);
    --gradient-fire: linear-gradient(135deg, #ff2d2d 0%, #ff8800 50%, #ffcc00 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(255, 45, 45, 0.4);
    --shadow-glow-lg: 0 0 60px rgba(255, 45, 45, 0.5);
    --shadow-yellow: 0 0 30px rgba(255, 204, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 70px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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);
}

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

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

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

/* Highlight */
.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn i {
    font-size: 0.9em;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-lg);
    color: var(--text-primary);
}

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

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

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-primary);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 22px 44px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

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

/* 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;
    padding: 6px 16px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Floating Gift Button & Modal
   ======================================== */

/* Floating Gift Button */
.floating-gift-btn {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(255, 51, 102, 0.5);
    transition: var(--transition-normal);
    animation: floatBtnPulse 2s ease-in-out infinite;
}

.floating-gift-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(255, 51, 102, 0.6);
}

@keyframes floatBtnPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 25px rgba(255, 51, 102, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 35px rgba(255, 51, 102, 0.7);
    }
}

.gift-btn-icon {
    font-size: 1.6rem;
    color: white;
}

.gift-btn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-green);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    animation: badgeBounce 2s ease-in-out infinite;
}

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

/* Gift Modal Overlay */
.gift-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Gift Modal */
.gift-modal {
    background: linear-gradient(145deg, #1a1a25 0%, #12121a 100%);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.3);
    box-shadow: 0 25px 80px rgba(255, 51, 102, 0.3);
}

.gift-modal-overlay.active .gift-modal {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Modal Image */
.modal-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #12121a, transparent);
}

.modal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.exclusive-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

/* Modal Content */
.modal-content {
    padding: 30px;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.modal-description {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Coupon Code Box */
.coupon-code-box {
    background: rgba(255, 51, 102, 0.1);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.coupon-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.coupon-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.coupon-code {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    letter-spacing: 3px;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.copy-btn.copied {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--bg-dark);
}

/* Modal Features */
.modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-feature i {
    color: var(--accent-green);
    font-size: 0.85rem;
}

/* Modal CTA Button */
.modal-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
}

.modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 51, 102, 0.5);
    color: white;
}

.modal-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 0;
}

.modal-disclaimer i {
    margin-right: 5px;
    color: var(--primary);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}



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

.main-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

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

.nav-link i {
    font-size: 0.7em;
    transition: var(--transition-fast);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    list-style: none;
    box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(255, 51, 102, 0.1);
    color: var(--primary);
}

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

.nav-cta {
    padding: 12px 24px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.5);
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 45, 45, 0.2); }
    to { box-shadow: 0 0 20px rgba(255, 204, 0, 0.4); }
}

.badge-icon {
    font-size: 1.2rem;
}

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

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    padding: 10px 14px;
    background: rgba(255, 45, 45, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 45, 45, 0.15);
}

.hero-feature i {
    width: 32px;
    height: 32px;
    background: rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
    font-size: 0.85rem;
}

.hero-feature div {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-feature strong {
    color: var(--text-primary);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-cta-group .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(18, 18, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float-card 4s ease-in-out infinite;
}

.hero-floating-card img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.hero-floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    right: -20px;
    animation-delay: -2s;
}

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

/* ========================================
   Tinder-Style Swiper Cards
   ======================================== */
.tinder-swiper {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.swiper-container {
    position: relative;
    width: 100%;
    height: 580px;
}

.swiper-cards-stack {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.swiper-card {
    position: absolute;
    width: 100%;
    height: 520px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 45, 45, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: grab;
    user-select: none;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    pointer-events: none;
}

.swiper-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 10;
}

.swiper-card.active ~ .swiper-card {
    opacity: 0.6;
    transform: scale(0.95) translateY(15px);
    z-index: 5;
}

.swiper-card.active ~ .swiper-card ~ .swiper-card {
    opacity: 0.3;
    transform: scale(0.9) translateY(30px);
    z-index: 1;
}

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

/* Swipe Animations */
.swiper-card.swiping-left {
    animation: swipeLeft 0.4s ease forwards;
}

.swiper-card.swiping-right {
    animation: swipeRight 0.4s ease forwards;
}

.swiper-card.swiping-up {
    animation: swipeUp 0.4s ease forwards;
}

@keyframes swipeLeft {
    to {
        transform: translateX(-150%) rotate(-30deg);
        opacity: 0;
    }
}

@keyframes swipeRight {
    to {
        transform: translateX(150%) rotate(30deg);
        opacity: 0;
    }
}

@keyframes swipeUp {
    to {
        transform: translateY(-150%) scale(0.8);
        opacity: 0;
    }
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-fire);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 45, 45, 0.4);
    z-index: 5;
}

/* Card Info */
.card-info {
    padding: 15px 20px 10px;
    position: relative;
    z-index: 5;
    margin-top: -30px;
}

.card-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.card-info h3 .age {
    font-weight: 400;
    color: var(--text-secondary);
}

.card-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags span {
    background: rgba(255, 45, 45, 0.15);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

/* Card Actions */
.card-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 20px 20px;
}

.action-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: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.action-btn:hover {
    transform: scale(1.15);
}

.action-btn.dislike {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: #ff4444;
    border: 2px solid #ff4444;
}

.action-btn.dislike:hover {
    background: #ff4444;
    color: white;
}

.action-btn.super {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    color: white;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
}

.action-btn.super:hover {
    box-shadow: var(--shadow-yellow);
}

.action-btn.like {
    background: var(--gradient-fire);
    color: white;
    border: 2px solid var(--primary);
}

.action-btn.like:hover {
    box-shadow: var(--shadow-glow);
}

/* Swipe Instructions */
.swipe-instructions {
    text-align: center;
    padding-top: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.swipe-instructions i {
    margin-right: 5px;
    animation: pointLeft 1.5s ease-in-out infinite;
}

@keyframes pointLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

/* Match Popup */
.match-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.match-popup.active {
    opacity: 1;
    visibility: visible;
}

.match-content {
    text-align: center;
    padding: 40px;
}

.match-animation {
    width: 100px;
    height: 100px;
    background: var(--gradient-fire);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: matchPulse 1s ease-in-out infinite;
}

.match-animation i {
    font-size: 3rem;
    color: white;
}

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

.match-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.match-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.match-content .btn {
    margin: 5px 10px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.hero-scroll-indicator a:hover {
    color: var(--primary);
}

.hero-scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ========================================
   Video Showcase Section - Grid Design
   ======================================== */
.video-showcase-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Video Grid Container - 5 Cards in Row */
.video-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Card Base Styles */
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 9/16;
}

.video-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 45, 45, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 45, 45, 0.15);
}

.video-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

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

/* Featured Video Card - Same Size as Others */
.video-card.featured {
    grid-column: auto;
    grid-row: auto;
}

.video-card.featured .video-card-inner video {
    height: 100%;
}

/* All Video Cards Same Height */
.video-card:not(.featured) {
    height: auto;
}

/* Video Card Overlay */
.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-card-overlay {
    background: linear-gradient(180deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 45, 45, 0.2) 40%, rgba(0, 0, 0, 0.85) 100%);
}

/* Play Button */
.play-button {
    width: 50px;
    height: 50px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(255, 45, 45, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: playPulse 2s ease-in-out infinite;
}

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

.play-button i {
    margin-left: 3px;
}

.video-card:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 45, 45, 0.6);
}

.play-button.small {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.play-button.small::before {
    display: none;
}

/* Video Duration */
.video-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Video Card Info */
.video-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.video-card.featured .video-card-info {
    padding: 16px;
}

.video-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 45, 45, 0.25);
    border: 1px solid rgba(255, 45, 45, 0.4);
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.video-badge.featured-badge {
    background: var(--gradient-fire);
    border: none;
    color: white;
}

.video-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.video-card-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.video-card-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video CTA */
.video-cta {
    text-align: center;
    margin-top: 40px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-dark);
}

.video-modal-content video {
    width: 100%;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Legacy video grid (keep for backward compatibility) */
.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.main-video {
    min-height: 400px;
}

.main-video video {
    min-height: 350px;
}

.video-info {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-video {
    flex: 1;
    min-height: 120px;
}

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

.video-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-link i {
    transition: var(--transition-fast);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    transform: translateY(60px);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

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

/* ========================================
   Why Choose Section
   ======================================== */
.why-choose-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.why-text p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.why-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 51, 102, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 51, 102, 0.12);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.25);
    transform: translateX(4px);
}

.highlight-item i {
    color: var(--accent-green);
    font-size: 1rem;
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.why-image {
    position: sticky;
    top: 100px;
    max-width: 240px;
    margin-left: auto;
}

.why-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   Comparison Table Section
   ======================================== */
.comparison-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: linear-gradient(135deg, #1a1a25 0%, #12121a 100%);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 51, 102, 0.1) 100%);
    color: var(--primary);
}

.comparison-table td {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comparison-table td.highlight-col {
    background: rgba(255, 51, 102, 0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.success {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
}

.badge.warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.text-success {
    color: var(--accent-green) !important;
}

.stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

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

/* ========================================
   Customization Section
   ======================================== */
.customization-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 51, 102, 0.3);
}

.custom-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.custom-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
}

.custom-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: var(--shadow-glow);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.use-case-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.use-case-card img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: 15px;
}

/* ========================================
   Image Generation Section
   ======================================== */
.image-gen-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.image-gen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.image-gen-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

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

.image-gen-card:hover img {
    transform: scale(1.1);
}

.image-gen-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.image-gen-cta {
    text-align: center;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-primary);
    font-weight: 600;
}

.save-badge {
    display: inline-block;
    padding: 3px 8px;
    background: var(--accent-green);
    color: var(--bg-dark);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 5px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 2px;
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

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

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

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

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

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

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

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.pricing-features li i {
    font-size: 0.9rem;
}

.pricing-features li i.fa-check {
    color: var(--accent-green);
}

.pricing-features li i.fa-times {
    color: var(--text-muted);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}

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

.pricing-screenshot {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 102, 0.3);
}

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

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Privacy Section
   ======================================== */
.privacy-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.privacy-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.privacy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.privacy-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.privacy-list li i {
    color: var(--accent-green);
    margin-top: 3px;
}

.privacy-image {
    text-align: center;
}

.privacy-image img {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, var(--bg-dark) 50%, rgba(108, 92, 231, 0.2) 100%);
    padding: 120px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

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

.cta-note i {
    color: var(--accent-green);
    margin-right: 8px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

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

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

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

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

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

.disclaimer {
    font-size: 0.85rem !important;
    opacity: 0.7;
}

/* ========================================
   Mobile Bottom CTA
   ======================================== */
.mobile-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    /* Video Grid Responsive - 4 columns on large tablet */
    .video-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        padding: 0 15px;
    }
    
    .video-card.featured,
    .video-card:not(.featured) {
        min-height: auto;
    }
    
    /* Why Choose Responsive */
    .why-content {
        grid-template-columns: 1fr auto;
        gap: 30px;
    }
    
    .why-image {
        max-width: 200px;
    }
    
    .why-image img {
        max-height: 260px;
    }
}

@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-feature {
        max-width: 300px;
        flex: 1 1 auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-floating-card.card-1 {
        left: 10px;
    }
    
    .hero-floating-card.card-2 {
        right: 10px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-sidebar {
        flex-direction: row;
    }
    
    /* Video Grid - Tablet: 3 columns */
    .video-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 15px;
    }
    
    .video-card.featured {
        grid-column: auto;
        grid-row: auto;
    }
    
    .video-card-info h3 {
        font-size: 0.9rem;
    }
    
    .video-card-info h4 {
        font-size: 0.8rem;
    }
    
    /* Why Choose - Stack on tablet */
    .why-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .why-image {
        position: static;
        max-width: 220px;
        margin: 0 auto;
        order: -1;
    }
    
    .why-image img {
        max-height: 280px;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .about-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Floating gift button adjustments for tablet */
    .floating-gift-btn {
        right: 20px;
        bottom: 90px;
        width: 60px;
        height: 60px;
    }
    
    .gift-btn-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Mobile */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-feature {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 10px 12px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .why-highlights {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        max-width: 280px;
    }
    
    .why-image img {
        max-height: 300px;
    }
    
    .video-sidebar {
        flex-direction: column;
    }
    
    /* Video Grid - Mobile: 2 columns */
    .video-showcase-section {
        padding: 50px 0;
    }
    
    .video-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .video-card {
        aspect-ratio: 9/14;
    }
    
    .video-card.featured {
        grid-column: auto;
        grid-row: auto;
    }
    
    .play-button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .play-button.small {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .video-card-info {
        padding: 10px;
    }
    
    .video-card-info h3 {
        font-size: 0.8rem;
    }
    
    .video-card-info h4 {
        font-size: 0.75rem;
    }
    
    .video-card-info p {
        font-size: 0.7rem;
        -webkit-line-clamp: 1;
    }
    
    .video-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .video-cta {
        margin-top: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .mobile-bottom-cta {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    /* Tinder Swiper Mobile */
    .tinder-swiper {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .swiper-container {
        height: 480px;
    }
    
    .swiper-card {
        height: 420px;
    }
    
    .card-image {
        height: 60%;
    }
    
    .card-info h3 {
        font-size: 1.4rem;
    }
    
    .card-actions {
        gap: 15px;
        padding: 10px 15px 15px;
    }
    
    .action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .action-btn.super {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Video section compact mobile */
    .video-showcase-section.compact {
        padding: 40px 0;
    }
    
    .video-showcase-compact {
        padding: 20px 15px;
    }
    
    .video-header-inline {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .video-header-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-header-text h2 {
        font-size: 1.2rem;
    }
    
    .video-thumb {
        flex: 0 0 150px;
        height: 100px;
    }
    
    .video-thumb-overlay i {
        font-size: 2rem;
    }
    
    .video-thumb-label {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    
    /* Video modal mobile */
    .video-modal-content {
        max-width: 100%;
        border-radius: var(--radius-md);
    }
    
    .video-modal-close {
        width: 38px;
        height: 38px;
        top: 10px;
        right: 10px;
    }
    
    /* Floating gift button for mobile */
    .floating-gift-btn {
        right: 15px;
        bottom: 85px;
        width: 55px;
        height: 55px;
    }
    
    .gift-btn-icon {
        font-size: 1.3rem;
    }
    
    .gift-btn-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    /* Modal responsive for mobile */
    .gift-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-image {
        height: 160px;
    }
    
    .modal-content {
        padding: 25px 20px;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .coupon-code {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .coupon-code-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 90px 15px 50px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .hero-feature {
        gap: 8px;
        padding: 8px 10px;
    }
    
    .hero-feature i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .hero-feature div {
        font-size: 0.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta-group .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .btn-lg, .btn-xl {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    /* Tinder Swiper Small Mobile */
    .tinder-swiper {
        padding: 0;
    }
    
    .swiper-container {
        height: 400px;
    }
    
    .swiper-card {
        height: 350px;
        border-radius: var(--radius-md);
    }
    
    .card-image {
        height: 55%;
    }
    
    .card-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .card-info {
        padding: 12px 15px 8px;
    }
    
    .card-info h3 {
        font-size: 1.15rem;
    }
    
    .card-tagline {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .card-tags span {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .card-actions {
        gap: 12px;
        padding: 8px 15px 15px;
    }
    
    .action-btn {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    
    .action-btn.super {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .swipe-instructions {
        font-size: 0.7rem;
        padding-top: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gen-grid {
        grid-template-columns: 1fr;
    }
    
    .customization-grid {
        grid-template-columns: 1fr;
    }
    
    /* Video Grid - Small Mobile: 2 columns */
    .video-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .video-card {
        aspect-ratio: 3/4;
    }
    
    .video-card.featured,
    .video-card:not(.featured) {
        min-height: auto;
        height: auto;
    }
    
    .play-button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .play-button.small {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .video-card-info {
        padding: 8px;
    }
    
    .video-card-info h3,
    .video-card-info h4 {
        font-size: 0.7rem;
    }
    
    .video-card-info p {
        display: none;
    }
    
    .video-badge {
        font-size: 0.55rem;
        padding: 2px 5px;
        margin-bottom: 4px;
    }
    
    /* Why Choose Mobile */
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-image {
        max-width: 220px;
    }
    
    .why-image img {
        max-height: 250px;
    }
    
    .why-text p {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 10px 12px;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .video-card-info {
        padding: 12px;
    }
    
    .video-card-info h3 {
        font-size: 1rem;
    }
    
    .video-card-info h4 {
        font-size: 0.85rem;
    }
    
    .video-card-info p {
        font-size: 0.8rem;
        display: none;
    }
    
    .video-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .video-duration {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 0.9rem;
    }
    
    .final-cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content > p {
        font-size: 1rem;
    }
    
    /* Video section mobile */
    .video-grid {
        gap: 15px;
    }
    
    .main-video {
        min-height: 250px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    /* Comparison table scroll hint */
    .comparison-table-wrapper {
        position: relative;
    }
    
    .comparison-table-wrapper::after {
        content: '← Scroll →';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        color: var(--text-muted);
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Extra small mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.15rem;
    }
    
    .coupon-code {
        font-size: 1.3rem;
    }
    
    .modal-cta-btn {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-section .container {
        gap: 80px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .pricing-grid {
        max-width: 1200px;
        gap: 40px;
    }
}

/* Tablet landscape specific (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-section .container {
        gap: 40px;
    }
    
    .hero-main-image {
        max-width: 450px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .use-case-card {
        padding: 25px;
    }
    
    .pricing-grid {
        max-width: 900px;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
}

/* Tablet portrait specific (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .privacy-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .image-gen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Modal for tablet */
    .gift-modal {
        max-width: 480px;
    }
    
    .modal-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print Styles */
@media print {
    .floating-gift-btn,
    .gift-modal-overlay,
    .mobile-bottom-cta,
    .main-header {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
