/* ==================== Hero Section ==================== */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top, rgba(77, 181, 255, 0.08), transparent 70%);
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    img { width: 30px; height: auto; }
    background: rgba(77, 181, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--mokapp-blue);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(77, 181, 255, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(77, 181, 255, 0.15);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-shadow: 0 2px 20px var(--mokapp-dark);
    animation: fadeInUp 0.8s ease;
    margin-bottom: 24px;
    margin-block-end: 24px;
    max-width: 100%;
}

.hero-title strong {
    color: var(--mokapp-blue-dark);
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.1s both;
}


.hero-subdescription {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subdescription strong {
    color: var(--mokapp-blue);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(77,181,255,0.9) 0%, rgba(58,157,216,0.9) 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 181, 255, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(77, 181, 255, 0.4);
}

.btn-secondary {
    background: rgba(77, 181, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 2px solid rgba(77, 181, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(77, 181, 255, 0.15);
    border-color: var(--mokapp-blue);
    transform: translateY(-3px);
    color: var(--mokapp-blue);
}

.hero-trust {
    color: var(--text-light);
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust strong {
    color: var(--text-dark);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: none;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--mokapp-blue) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 3s infinite;
}

/* ==================== Features Section ==================== */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* ==================== Video Demo Section ==================== */
.video-demo {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: rgb(0, 0, 0);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 0px 70px 4px;
}

.video-demo-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.video-demo-wrapper:hover {
    box-shadow: 
        0 0 60px 20px rgb(39, 39, 55),
        0 0 100px 35px rgb(39, 39, 55),
        0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.video-demo-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* ==================== Small gallery (before Pricing) ==================== */
.gallery-small-section {
    --top-item-w: 250px; /* width for the two top images */
    --top-item-h: 150px; /* height for the two top images */
    --small-item-w: 250px; /* width for bottom thumbnails */
    --small-item-h: 120px;  /* height for bottom thumbnails */
    padding: 56px 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.gallery-small-section .section-header h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.gallery-small-section .section-header p {
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.small-top-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}
        
.small-gallery {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3.5rem;
}

.small-item {
    width: var(--small-item-w);
    height: var(--small-item-h);
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-item.small-item--top {
    width: var(--top-item-w);
    height: var(--top-item-h);
    padding: 12px;
}

.small-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);            
    gap: 20px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    width: 340px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    flex-basis: 300px;
    flex-grow: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(77, 181, 255, 0.15);
    border-color: rgba(77, 181, 255, 0.4);
    background: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(77, 181, 255, 0.15), rgba(77, 181, 255, 0.05));
    border-radius: 14px;
    color: var(--mokapp-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(77, 181, 255, 0.2);
}

.feature-card:hover .feature-icon {
    background: var(--mokapp-blue);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-card small {
    color: var(--text-light);
    line-height: 1.5;
}

.target-audience-section {
    padding: 3rem;
    background: rgba(77, 181, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    text-align: center;
    margin-top: 4rem;
}

.target-audience-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.target-audience-section p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
}

/* ==================== Pricing Section ==================== */
.pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(77, 181, 255, 0.04));
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    color: var(--text-dark);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mokapp-blue), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: rgba(77, 181, 255, 0.12);
    border-color: rgba(77, 181, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(77, 181, 255, 0.2);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(77, 181, 255, 0.15);
    border-color: rgba(77, 181, 255, 0.4);
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--mokapp-green), #00cc55);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 102, 0.3);
}

.pricing-card h5 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-card .subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-annual {
    margin-bottom: 1rem;
}

.price-annual {
    font-size: 1.125rem;
    color: var(--mokapp-blue);
    margin-bottom: 0.5rem;
}

.price-annual strong {
    font-size: 2rem;
    font-weight: 700;
}

.price-installment {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mokapp-green);
    font-weight: bold;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    background: transparent;
    color: var(--mokapp-blue);
    border: 2px solid var(--mokapp-blue);
}

.pricing-cta:hover {
    background: var(--mokapp-blue);
    color: white;
    box-shadow: 0 4px 20px rgba(77, 181, 255, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--mokapp-blue), var(--secondary-color));
    color: white;
    border: none;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(77, 181, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    color: var(--text-dark);
}

.pricing-note h4 {
    color: var(--mokapp-blue);
    margin-bottom: 1rem;
}

/* ==================== Demo Section ==================== */
.demo {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 181, 255, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 181, 255, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(77, 181, 255, 0.2);
    border-color: rgba(77, 181, 255, 0.4);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(77, 181, 255, 0.04), transparent);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    overflow-y: hidden;
    cursor: grab;
    padding: 1rem 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    transition: scroll-left 0.3s ease;
}

.testimonials-grid:active {
    cursor: grabbing;
}

.testimonial-card {
    width: 800px;
    min-width: 800px;
    max-width: 800px;
    flex-shrink: 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    transition: all 0.3s ease;
    height: flex;
    min-height: 250px;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    text-align: justify;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(77, 181, 255, 0.12);
    border-color: rgba(77, 181, 255, 0.4);
    background: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    font-weight: 600;
    color: var(--mokapp-blue-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-logo {
    width: 120px;
    height: 80px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(77, 181, 255, 0.2);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(77, 181, 255, 0.1);
    border-color: rgba(77, 181, 255, 0.4);
}

.accordion-header {
    padding: 1.25rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--mokapp-blue);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--mokapp-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== Contact Form ==================== */
.contact-form {
    padding: 2rem;
    background: rgba(77, 181, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(77, 181, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h4 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Compact contact box used above the FAQ */
.contact-compact {
    max-width: 1100px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    border-radius: 18px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 181, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--mokapp-blue);
    box-shadow: 0 0 0 3px rgba(77, 181, 255, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-buttons {
    display: flex;
    gap: 1rem;
}

.btn-submit {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--mokapp-blue), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    box-shadow: 0 4px 20px rgba(77, 181, 255, 0.3);
    transform: translateY(-2px);
}

.btn-reset {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(77, 181, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    border-color: var(--mokapp-blue);
    color: var(--mokapp-blue);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 992px) {
    .hero-content,
    .demo-content,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    /* On smaller screens keep FAQ stacked */
    .faq-column {
        width: 100%;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        width: 100%;
        min-width: 280px;
        max-width: 100%;
        min-height: 100%;
        max-height: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1rem;
    }
    .pricing-card {
        padding: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ==================== Browser Compatibility ==================== */
@supports not (backdrop-filter: blur(10px)) {
    .hero-badge {
        background: rgba(77, 181, 255, 0.2);
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.95);
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.98);
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.95);
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.98);
    }
}