/* =====================================================
   HOMEPAGE REDESIGN - Clean, Focused, Conversion-Optimized
   ===================================================== */

/* ==================== GLOBAL SPACING IMPROVEMENTS ==================== */
:root {
    --section-spacing: 100px;
    --section-spacing-mobile: 60px;
    --container-max: 1200px;
    --side-padding: 32px;
    --side-padding-mobile: 20px;
}

/* Override container for better spacing */
.container {
    max-width: var(--container-max);
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
}

/* ==================== HERO SECTION - CLEAN & FOCUSED ==================== */
.hero-section {
    min-height: 100vh;
    padding: 140px 0 120px;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Subtle background gradient - only in hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 45, 45, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 204, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Hide the old background effects */
.hero-bg-effects {
    display: none;
}

/* Hero Content - Left Side */
.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.hero-badge .badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Hero Features - Clean bullet style */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: none;
    padding: 0;
    border: none;
    min-width: auto;
}

.hero-feature i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
}

.hero-feature strong {
    color: #fff;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
}

.hero-cta-group .btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
}

.hero-cta-group .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff5555 100%);
    box-shadow: 0 8px 30px rgba(255, 45, 45, 0.4);
}

.hero-cta-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 45, 0.5);
}

.hero-cta-group .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

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

/* Hide stats in hero - they clutter */
.hero-stats {
    display: none;
}

/* Hide scroll indicator */
.hero-scroll-indicator {
    display: none;
}

/* Hero Visual - Right Side - Single Featured Card */
.hero-visual.tinder-swiper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .swiper-container {
    width: 100%;
    max-width: 380px;
}

/* Style the featured card to be large and prominent */
.hero-visual .swiper-card.active {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 
                0 0 60px rgba(255, 45, 45, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none !important;
}

.hero-visual .swiper-card:not(.active) {
    display: none;
}

.hero-visual .swiper-card .card-image {
    height: 420px;
}

.hero-visual .swiper-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual .swipe-instructions {
    display: none;
}

/* Match popup hide */
.match-popup {
    display: none;
}

/* ==================== SECTION STYLING - CONSISTENT ==================== */
section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

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

/* ==================== FEATURES GRID - 2 COLUMNS, LARGER CARDS ==================== */
.features-section {
    background: #000;
}

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

.feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.feature-card:hover {
    border-color: rgba(255, 45, 45, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

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

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

.feature-card .feature-link:hover {
    gap: 12px;
}

/* ==================== GALLERY SECTION - PROPER GRID ==================== */
.gallery-section {
    background: #050505;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

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

.gallery-overlay .btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==================== COMPARISON TABLE - STRONGER STYLING ==================== */
.comparison-section {
    background: #000;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: #0a0a0a;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.15) 0%, rgba(255, 204, 0, 0.1) 100%);
}

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

.comparison-table th {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.comparison-table th:first-child {
    width: 25%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
    width: 18.75%;
}

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

.comparison-table td:first-child {
    color: #fff;
    font-weight: 600;
}

.comparison-table td:first-child::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

/* Alternating row striping */
.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

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

/* Highlight column */
.comparison-table .highlight-col {
    background: rgba(255, 45, 45, 0.08);
    border-left: 2px solid rgba(255, 45, 45, 0.3);
    border-right: 2px solid rgba(255, 45, 45, 0.3);
}

.comparison-table thead .highlight-col {
    background: rgba(255, 45, 45, 0.15);
}

/* Badges */
.comparison-table .badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comparison-table .badge.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.comparison-table .badge.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.comparison-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==================== WHY CHOOSE SECTION - PROS/CONS STYLE ==================== */
.why-choose-section {
    background: #050505;
}

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

.why-text {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
}

.why-text > p:first-child {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.why-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.highlight-item i {
    color: #10b981;
    font-size: 1rem;
}

.why-image {
    position: sticky;
    top: 100px;
}

.why-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background: #000;
}

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

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

.pricing-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 45, 45, 0.08) 0%, #0a0a0a 50%);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-images {
    display: none;
}

/* ==================== FAQ SECTION - MODERN ACCORDION ==================== */
.faq-section {
    background: #050505;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    border-color: rgba(255, 45, 45, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    color: var(--primary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.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: 300px;
}

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

/* ==================== FINAL CTA - SINGLE PROMINENT STRIP ==================== */
.final-cta-section {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.15) 0%, rgba(255, 204, 0, 0.1) 100%);
    border-top: 1px solid rgba(255, 45, 45, 0.2);
    border-bottom: 1px solid rgba(255, 45, 45, 0.2);
    padding: 80px 0;
}

.final-cta-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.final-cta-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.final-cta-section .btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.final-cta-section .cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==================== HIDE / SIMPLIFY CLUTTER ==================== */
/* ==================== VIDEO SHOWCASE SECTION ==================== */
.video-showcase-section {
    background: #050505;
    padding: var(--section-spacing) 0;
}

.video-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9/16;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-card.featured {
    grid-column: span 1;
}

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

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

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-card:hover .video-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(255,45,45,0.1) 50%, rgba(0,0,0,0.4) 100%);
}

.play-button {
    width: 56px;
    height: 56px;
    background: rgba(255, 45, 45, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 45, 45, 0.4);
}

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

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

.video-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.video-badge {
    display: inline-block;
    background: rgba(255, 45, 45, 0.2);
    border: 1px solid rgba(255, 45, 45, 0.3);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-badge.featured-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: #fff;
}

.video-card-info h3,
.video-card-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

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

.video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.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: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

/* Hide customization section - redundant with gallery */
.customization-section {
    display: none;
}

/* Hide use cases section - can be on a separate page */
.use-cases-section {
    display: none;
}

/* Hide image generation section - already covered in features */
.image-gen-section {
    display: none;
}

/* Hide about section - footer handles this */
.about-section {
    display: none;
}

/* Hide privacy section - can be linked in footer */
.privacy-section {
    display: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-section > .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual .swiper-container {
        max-width: 320px;
    }
    
    .hero-visual .swiper-card .card-image {
        height: 360px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image {
        order: -1;
        position: static;
        text-align: center;
    }
    
    .why-image img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 70px;
    }
    
    .container {
        padding-left: var(--side-padding-mobile);
        padding-right: var(--side-padding-mobile);
    }
    
    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual .swiper-container {
        max-width: 280px;
    }
    
    .hero-visual .swiper-card .card-image {
        height: 320px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        min-height: auto;
    }
    
    .video-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .play-button {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .play-button.small {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .why-highlights {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .final-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .hero-feature i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 28px;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .pricing-card {
        padding: 28px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .hero-visual,
    .floating-gift-btn,
    .gift-modal-overlay,
    .mobile-bottom-cta {
        display: none !important;
    }
}
