@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --rausch: #FF385C;
    --rausch-dark: #E31C5F;
    --dark: #222222;
    --gray: #717171;
    --light-gray: #F7F7F7;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #FF385C 0%, #E61E4D 50%, #D70466 100%);
}

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

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--rausch);
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--rausch);
}

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,56,92,0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ========== HERO ========== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 120px 40px 60px;
    background: linear-gradient(180deg, #FFF5F7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,56,92,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

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

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,56,92,0.4);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    margin: 0 auto;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.phone-screen {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
}

.phone-status-bar {
    background: #f8f8f8;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
}

.phone-content {
    padding: 14px;
}

.phone-logo {
    color: #FF385C;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.experience-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.experience-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.experience-image .emoji { font-size: 56px; }

.experience-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
}

.experience-info { padding: 12px; }
.experience-tag { font-size: 10px; color: #717171; margin-bottom: 4px; }
.experience-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.experience-meta { display: flex; justify-content: space-between; font-size: 13px; }

.phone-stats {
    margin-top: 14px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.phone-stat { text-align: center; }
.phone-stat-value { font-size: 20px; font-weight: 800; color: #FF385C; }
.phone-stat-value.dark { color: #222; }
.phone-stat-label { font-size: 9px; color: #717171; }

.floating-badge {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.one { top: 20px; right: -40px; }
.floating-badge.two { bottom: 60px; left: -30px; animation-delay: 1.5s; }
.floating-badge .emoji { font-size: 20px; }
.floating-badge .text { font-size: 12px; font-weight: 700; }
.floating-badge .subtext { font-size: 10px; color: #717171; }

/* ========== SECTIONS COMMON ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,56,92,0.1);
    color: var(--rausch);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--gray);
}

/* ========== PROBLEM ========== */
.problem {
    padding: 80px 40px;
    background: var(--white);
}

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

.problem-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s;
}

.problem-card:hover { transform: translateY(-8px); }
.problem-card .emoji { font-size: 48px; margin-bottom: 20px; display: block; }
.problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.problem-card p { color: var(--gray); font-size: 15px; }

/* ========== SOLUTION ========== */
.solution {
    padding: 80px 40px;
    background: linear-gradient(180deg, #FFF5F7 0%, #FFFFFF 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.solution-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.solution-card .emoji { font-size: 48px; margin-bottom: 20px; display: block; }
.solution-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.solution-card p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.solution-card ul { list-style: none; }
.solution-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.solution-card ul li:last-child { border-bottom: none; }
.solution-card ul li::before { content: '✓'; color: var(--rausch); font-weight: 700; }

/* ========== SOCIAL PROOF ========== */
.social-proof {
    padding: 50px 40px;
    background: var(--gradient);
    color: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.proof-item .number { font-size: 40px; font-weight: 900; display: block; }
.proof-item .label { font-size: 14px; opacity: 0.9; }

/* ========== EXAMPLES ========== */
.examples {
    padding: 80px 40px;
    background: var(--light-gray);
}

.screenshot-gallery {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

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

.examples-intro {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.examples-highlight {
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(255,56,92,0.1);
    border: 2px solid rgba(255,56,92,0.15);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.6;
}

.highlight-text strong {
    color: var(--rausch);
    font-size: 17px;
}

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

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

.example-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.example-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.example-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.example-image .emoji { font-size: 56px; }

.example-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.example-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
}

.example-content { padding: 16px; }
.example-tag { font-size: 11px; color: #717171; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.example-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.example-meta { display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 4px; }

/* ========== PREVIEW BOXES ========== */
.preview-section {
    padding: 80px 40px;
    background: white;
}

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

.teaser-item {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.teaser-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.teaser-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.teaser-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.preview-box {
    background: var(--light-gray);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
}

.preview-box:last-child { margin-bottom: 0; }

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

.preview-header .emoji { font-size: 32px; }
.preview-header h3 { font-size: 24px; font-weight: 800; }

.idea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.idea-category h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--rausch); }
.idea-list { list-style: none; font-size: 14px; color: var(--gray); }
.idea-list li { padding: 6px 0; }

.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th { text-align: left; padding: 12px 8px; font-weight: 700; border-bottom: 2px solid var(--rausch); }
.price-table td { padding: 12px 8px; border-bottom: 1px solid #ddd; }
.price-table .price { font-weight: 600; color: var(--rausch); }

.success-box { background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%); }
.success-checklist { list-style: none; }
.success-checklist li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 15px; }
.success-checklist .check { color: #4CAF50; font-weight: 700; }

/* ========== PRICING ========== */
.pricing {
    padding: 80px 40px;
    background: var(--light-gray);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.pricing-features ul { list-style: none; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 15px; }
.pricing-features .check { color: #4CAF50; font-weight: 700; }

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255,56,92,0.15);
    position: relative;
    overflow: hidden;
}

.pricing-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gradient);
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card .emoji { font-size: 64px; display: block; margin-bottom: 16px; }
.pricing-original { font-size: 24px; color: #999; text-decoration: line-through; margin-bottom: 8px; }
.pricing-amount { margin-bottom: 16px; }
.pricing-amount .value { font-size: 56px; font-weight: 900; color: var(--rausch); }
.pricing-amount .currency { font-size: 24px; font-weight: 600; color: var(--gray); }
.pricing-urgency { background: #FFF3CD; color: #856404; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }

.pricing-btn {
    display: block;
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    background: var(--gradient);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,56,92,0.4);
}

.pricing-note { margin-top: 16px; font-size: 12px; color: var(--gray); }

/* ========== WHAT YOU GET ========== */
.what-you-get {
    padding: 80px 40px;
    background: white;
}

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

.benefit-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover { transform: translateY(-8px); }
.benefit-card .emoji { font-size: 48px; margin-bottom: 20px; display: block; }
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.benefit-card p { color: var(--gray); font-size: 14px; }

/* ========== FAQ ========== */
.faq {
    padding: 80px 40px;
    background: var(--light-gray);
}

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

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--rausch);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 16px;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 80px 40px;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.final-cta h2 { font-size: 44px; font-weight: 900; margin-bottom: 20px; }
.final-cta p { font-size: 18px; opacity: 0.95; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.final-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--rausch);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.final-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px;
    background: var(--dark);
    color: white;
    text-align: center;
}

.footer p { opacity: 0.7; font-size: 14px; }

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 968px) {
    .navbar { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .mobile-menu-btn { display: block; }
    
    .hero { padding: 100px 20px 60px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero h1 { font-size: 36px; }
    .hero-description { font-size: 16px; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 240px; }
    .floating-badge { display: none; }
    
    .problem, .solution, .examples, .preview-section, .pricing, .what-you-get, .faq { padding: 60px 20px; }
    .section-header h2 { font-size: 32px; }
    .section-header p { font-size: 15px; }
    
    .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .problem-card { padding: 20px; }
    .problem-card .emoji { font-size: 36px; margin-bottom: 12px; }
    .problem-card h3 { font-size: 16px; }
    .problem-card p { font-size: 13px; }
    
    .solution-grid { gap: 20px; }
    .solution-card { padding: 24px; }
    .solution-card .emoji { font-size: 40px; }
    .solution-card h3 { font-size: 22px; }
    
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .proof-item .number { font-size: 32px; }
    
    .examples-grid { grid-template-columns: repeat(2, 1fr); }
    .examples-grid-large { grid-template-columns: repeat(2, 1fr); }
    
    .preview-box { padding: 24px; }
    .preview-header h3 { font-size: 20px; }
    .preview-teaser { grid-template-columns: repeat(2, 1fr); }
    .idea-grid { gap: 20px; }
    
    .pricing-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .benefit-card { padding: 20px; }
    
    .final-cta h2 { font-size: 32px; }
    .final-cta p { font-size: 16px; }
    .social-proof { padding: 40px 20px; }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 600px) {
    .hero h1 { font-size: 28px; }
    .hero-cta { padding: 16px 28px; font-size: 16px; width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 24px; }
    .hero-stat-label { font-size: 11px; }
    .phone-mockup { width: 200px; }
    
    .section-header h2 { font-size: 26px; }
    
    .problem-grid { grid-template-columns: 1fr; gap: 16px; }
    .problem-card { display: flex; align-items: center; text-align: left; gap: 16px; }
    .problem-card .emoji { font-size: 32px; margin-bottom: 0; flex-shrink: 0; }
    
    .solution-grid { grid-template-columns: 1fr; }
    
    .proof-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .proof-item .number { font-size: 28px; }
    .proof-item .label { font-size: 12px; }
    
    .examples-grid { grid-template-columns: 1fr; max-width: 320px; }
    .examples-grid-large { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
    .preview-teaser { grid-template-columns: 1fr 1fr; gap: 16px; }
    .teaser-item { padding: 20px 16px; }
    .teaser-icon { font-size: 32px; margin-bottom: 12px; }
    .teaser-item h4 { font-size: 15px; }
    .teaser-item p { font-size: 13px; }
    .idea-grid { grid-template-columns: 1fr; }
    
    .price-table { font-size: 13px; }
    .price-table th, .price-table td { padding: 10px 6px; }
    
    .pricing-card { padding: 32px 24px; }
    .pricing-amount .value { font-size: 48px; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { display: flex; align-items: center; text-align: left; gap: 16px; }
    .benefit-card .emoji { font-size: 36px; margin-bottom: 0; flex-shrink: 0; }
    
    .faq-question { font-size: 15px; }
    .faq-answer { font-size: 14px; }
    
    .final-cta h2 { font-size: 28px; }
    .final-cta .cta-btn { padding: 16px 32px; font-size: 16px; }
}
