/* App Landing Page Styles - Optimized for Google Ads */

:root {
    /* Lynxbe Brand Colors */
    --color-black: #090a0c;
    --color-white: #ffffff;
    --color-grey-1: #0B0C0F;
    --color-grey-5: #1A1D24;
    --color-grey-10: #23262F;
    --color-grey-20: #303236;
    --color-grey-50: #85878C;
    --color-grey-60: #9DA0A5;
    --color-grey-80: #C9CBCF;
    --color-grey-90: #E5E7EB;
    --color-grey-98: #F6F6F6;
    --color-blue: #3D7EFF;
    --color-orange: #FF5F0B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #F58041 0%, #AC795C 25.6%, #887064 41.58%, #716A69 56.98%, #61656B 69.44%);
    --text-gradient: linear-gradient(135deg, white 30%, #d5d8f6 80%, #fdf7fe 100%);
    --gradient: linear-gradient(135deg, #FF5F0B 0%, #FF8A4C 100%);
    
    /* Font */
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Theme Variables */
    --bg-primary: var(--color-grey-1);
    --bg-secondary: var(--color-grey-5);
    --bg-tertiary: var(--color-grey-10);
    --text-primary: var(--color-white);
    --text-secondary: var(--color-grey-80);
    --text-tertiary: var(--color-grey-60);
    --card-bg: var(--color-grey-10);
    --card-border: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4);
    
    /* Transition */
    --theme-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: var(--theme-transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with Logo */
.landing-header {
    padding: 20px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.landing-header .logo {
    height: 50px;
    width: auto;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 100px;
    background-color: var(--bg-primary);
    overflow: hidden;
    transition: var(--theme-transition);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(61, 126, 255, 0.15) 0%, rgba(61, 126, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.badge-text {
    color: var(--success-color);
    font-size: 14px;
    font-weight: 600;
}

.hero-headline {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Value Props */
.value-props {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

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

.prop-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.prop span {
    font-size: 16px;
    font-weight: 600;
}

/* CTA Form - Enhanced */
.cta-form {
    background: var(--card-bg);
    border: 2px solid var(--color-orange);
    border-radius: 16px;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(255, 95, 11, 0.2);
    backdrop-filter: blur(8px);
    position: relative;
    animation: fadeInUp 0.6s ease 0.4s both;
    overflow: hidden;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--color-orange), #ff7a3d);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-timer {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

#timer-display {
    font-weight: 700;
    letter-spacing: 1px;
}

.urgency-icon {
    animation: pulse 1s infinite;
}

.cta-form > h2,
.cta-form > p,
.cta-form > form {
    padding: 0 40px;
}

.cta-form > h2 {
    padding-top: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.value-point {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}



/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.trust-indicators span {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Social Proof Mini */
.social-proof-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -10px;
    padding: 20px;
    border-top: 1px solid var(--card-border);
    background: rgba(255, 95, 11, 0.05);
}

.client-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--card-bg);
    margin-left: -10px;
}

.client-avatar:first-child {
    margin-left: 0;
}

.client-count {
    margin-left: 15px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.quick-form input::placeholder,
.quick-form textarea::placeholder {
    color: var(--text-muted);
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.quick-form textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    color: #5A250A;
    background-color: #d1d1d1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFF5 3.5%, #FFAA81 26.5%, #FFDA9F 37.5%, rgba(255, 170, 129, 0.50) 49%, rgba(210, 106, 58, 0.00) 92.5%);
    transform: translate(-50%, -50%);
    z-index: -1;
}



.submit-btn:hover {
    transform: translateY(-2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.proof-item {
    animation: fadeIn 0.8s ease;
}

.proof-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.proof-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.5);
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(255, 95, 11, 0.1) 0%, rgba(255, 95, 11, 0) 70%);
    border-color: var(--color-orange);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Process Timeline */
.process {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.timeline-step {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.timeline-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--dark-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 95, 11, 0.1) 0%, transparent 100%);
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-main,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    position: relative;
}

.btn-main {
    color: #5A250A;
    background-color: #d1d1d1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFF5 3.5%, #FFAA81 26.5%, #FFDA9F 37.5%, rgba(255, 170, 129, 0.50) 49%, rgba(210, 106, 58, 0.00) 92.5%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-main:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--color-white);
    background-color: var(--color-grey-1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--color-grey-10);
    transform: translateY(-2px);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

.guarantee {
    font-size: 18px;
    color: var(--success-color);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    margin-bottom: 12px;
    height: 60px;
    width: auto;
}

.footer-logo p {
    color: var(--text-muted);
}

.footer h4 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-contact p,
.footer-links a {
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Feature Cards - Lynxbe Style */
.feature-card {
    position: relative;
    height: 384px;
    width: 384px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 126, 255, 0.1) 0%, rgba(61, 126, 255, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Scrolling Animation */
.scrolling-wrapper {
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    width: 100%;
}

.scrolling-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.scrolling-content span {
    white-space: nowrap;
    padding: 0 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.feature-dot {
    color: var(--color-orange);
    padding: 0 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 30px 0 40px;
    }

    .cta-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .value-props {
        flex-direction: column;
        gap: 16px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .proof-number {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}
