/* =============================================================================
   Simple Girlfriend Template - Mobile First
   ============================================================================= */

:root {
    --primary: #FF7E55;
    --primary-dark: #FF6B3C;
    --bg-dark: #100D0B;
    --bg-card: #1D1D1D;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for sticky CTA */
}

/* =============================================================================
   Header
   ============================================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    max-width: 600px;
    margin: 0 auto;
}

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

.header-cta {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, background 0.2s;
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
}

.hero-headline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subheadline span {
    background: linear-gradient(to bottom, transparent 50%, color-mix(in srgb, var(--primary) 35%, transparent) 50%);
    padding: 2px 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.badge {
    background: color-mix(in srgb, var(--primary) 25%, transparent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
    backdrop-filter: blur(4px);
}

/* =============================================================================
   CTA Buttons
   ============================================================================= */

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 77, 109, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 77, 109, 0.5);
}

.cta-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid var(--primary);
}

.cta-secondary:hover {
    background: var(--primary);
}

.cta-large {
    padding: 20px 48px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 77, 109, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(255, 77, 109, 0.7); }
}

/* =============================================================================
   Features Section
   ============================================================================= */

.features {
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--bg-card);
    border-radius: var(--radius);
    text-align: left;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 1rem;
    font-weight: 600;
}

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

.features .cta-button {
    margin-top: 24px;
    width: 100%;
}

/* =============================================================================
   Reviews Section
   ============================================================================= */

.reviews {
    padding: 40px 20px;
    background: var(--bg-card);
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.reviews-list {
    max-width: 500px;
    margin: 0 auto 24px;
}

.review {
    padding: 20px;
    margin-bottom: 16px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    text-align: left;
}

.review-stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.reviews .cta-button {
    width: 100%;
    max-width: 300px;
}

/* =============================================================================
   SEO Content
   ============================================================================= */

.seo-content {
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--primary);
}

.seo-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

.seo-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.seo-content ul, .seo-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-muted);
}

.seo-content li {
    margin-bottom: 8px;
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.seo-content a:hover {
    color: var(--primary-dark);
}

/* =============================================================================
   Legal Page
   ============================================================================= */

.legal-content {
    padding: 100px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section strong {
    color: var(--text);
}

/* =============================================================================
   FAQ Section
   ============================================================================= */

.faq-section {
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

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

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

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

/* =============================================================================
   Final CTA
   ============================================================================= */

.final-cta {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.final-headline {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =============================================================================
   Footer
   ============================================================================= */

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

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

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

.footer-languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-lang {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s;
}

.footer-lang:hover {
    color: var(--text);
    background: rgba(255,255,255,0.1);
}

.footer-lang.active {
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 15%, transparent);
}

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

/* =============================================================================
   Sticky CTA - Appears after hero, urgent pulsing effect
   ============================================================================= */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(16, 13, 11, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cta-sticky {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 126, 85, 0.5);
    animation: urgentPulse 1.5s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 126, 85, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 35px rgba(255, 126, 85, 0.8), 0 0 20px rgba(255, 126, 85, 0.4);
        transform: scale(1.02);
    }
}

/* =============================================================================
   Exit Popup
   ============================================================================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.popup-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.popup-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.popup .cta-button {
    width: 100%;
}

/* =============================================================================
   Desktop Enhancements
   ============================================================================= */

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .header-container {
        max-width: 1200px;
        padding: 16px 40px;
    }

    .logo {
        height: 40px;
    }

    /* Sticky CTA on desktop - centered, smaller width */
    .sticky-cta {
        padding: 16px 40px;
    }

    .sticky-cta .cta-sticky {
        max-width: 400px;
        margin: 0 auto;
        font-size: 1.2rem;
        padding: 18px 32px;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 40px 60px;
    }

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

    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-subheadline {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .cta-large {
        padding: 22px 56px;
        font-size: 1.3rem;
    }

    .trust-badges {
        gap: 12px;
        margin-top: 28px;
    }

    .badge {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Features - Grid on desktop */
    .features {
        padding: 80px 40px;
        max-width: 1200px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .feature {
        padding: 24px;
        margin-bottom: 0;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-text strong {
        font-size: 1.1rem;
    }

    .features .cta-button {
        width: auto;
        min-width: 320px;
        margin-top: 40px;
    }

    /* Reviews - Grid on desktop */
    .reviews {
        padding: 80px 40px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 900px;
        margin: 0 auto 40px;
    }

    .review {
        padding: 28px;
        margin-bottom: 0;
    }

    .reviews .cta-button {
        width: auto;
        min-width: 320px;
    }

    /* FAQ */
    .faq-section {
        padding: 80px 40px;
        max-width: 900px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 1rem;
    }

    /* SEO Content */
    .seo-content {
        padding: 80px 40px;
        max-width: 900px;
    }

    .seo-content h2 {
        font-size: 1.8rem;
        margin: 48px 0 20px;
    }

    .seo-content h3 {
        font-size: 1.4rem;
        margin: 32px 0 16px;
    }

    .seo-content p {
        font-size: 1.05rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 100px 40px;
    }

    .final-headline {
        font-size: 2.5rem;
        margin-bottom: 32px;
    }

    /* Footer */
    .footer {
        padding: 50px 40px;
    }

    .disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
    }

    /* Popup */
    .popup {
        padding: 40px 32px;
        max-width: 450px;
    }

    .popup-title {
        font-size: 1.6rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1100px;
    }

    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1100px;
    }

    .hero-headline {
        font-size: 4rem;
    }
}