/* Tabloide.pro Landing Page Styles */

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

:root {
    --primary-yellow: #FFB800;
    --secondary-yellow: #FFA000;
    --accent-gold: #F39C12;
    --dark-blue: #2C3E50;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --text-dark: #2C3E50;
    --text-gray: #5A6C7D;
    --success-green: #27AE60;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-yellow: 0 6px 24px rgba(255, 184, 0, 0.3);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    height: 40px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.btn-login {
    padding: 10px 24px;
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    color: var(--primary-yellow);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--primary-yellow);
    color: white;
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-blue);
    margin-bottom: 24px;
}

.hero-content .highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-yellow);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.5);
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--accent-gold) 100%);
}

.btn-secondary {
    padding: 18px 40px;
    background: white;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--light-gray);
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--success-green);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

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

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
    width: 12px;
    height: 12px;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
    opacity: 1;
    background: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

.carousel-arrow:hover svg {
    color: white;
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 32px;
        height: 32px;
        opacity: 0.5;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .carousel-arrow-left {
        left: 5px;
    }

    .carousel-arrow-right {
        right: 5px;
    }
}

/* Stats Section */
.stats {
    padding: 60px 20px;
    background: var(--dark-blue);
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* Problem Section */
.problem {
    padding: 100px 20px;
    background: white;
}

.problem-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.15);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.problem h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-blue);
}

.problem p {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--light-gray);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

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

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background: white;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    box-shadow: var(--shadow-yellow);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.step-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    padding: 100px 20px;
    background: var(--light-gray);
}

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

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-gray);
}

.testimonial-card .rating {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card .quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: white;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.pricing-card.featured {
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.25);
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    color: #1a1a1a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 20px;
    color: var(--text-gray);
}

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

.pricing-card .features-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .features-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

/* CTA Section */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a252f 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: #1a1a1a;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-header h2,
    .problem h2 {
        font-size: 32px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        font-size: 18px;
    }
}
