/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 64px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    width: 40px;
    height: 40px;
    background: #00ae4f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00ae4f;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #374151;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu-toggle:hover {
    color: #00ae4f;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 16px;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .btn {
        margin-top: 8px;
        text-align: center;
    }
}

/* Buttons */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #00ae4f;
    color: white;
}

.btn-primary:hover {
    background: #00ae4f;
}

.btn-outline {
    background: transparent;
    color: #00ae4f;
    border: 1px solid #00ae4f;
}

.btn-outline:hover {
    background: #f0fdf4;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #111827;
}

.btn-large {
    padding: 12px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #f0fdf4, white);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: bold;
    color: #00ae4f;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    margin: 0 auto;
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-content {
    color: #6b7280;
    line-height: 1.6;
}

/* Pain Points Section */
.pain-points {
    background: #fef2f2;
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pain-card {
    border: 1px solid #fecaca;
}

.pain-icon {
    background: #fee2e2;
    color: #dc2626;
}

.pain-card .card-title {
    color: #991b1b;
}

.card-wide {
    grid-column: span 2;
}

/* Solution Section */
.solution {
    background: #f0fdf4;
    padding: 80px 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-card {
    border: 1px solid #bbf7d0;
}

.solution-card .card-title {
    color: #00ae4f;
}

.process-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-title {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    
}
.process-title+p {
        margin-top: 5px;
    margin-bottom: 24px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #00ae4f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Video Demo Section */
.video-demo {
    text-align: center;
    margin-top: 48px;
}

.video-title {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.video-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.video-container {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Benefits Section */
.benefits {
    background: #f0fdf4;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit-card {
    border: 1px solid #bbf7d0;
}

.benefit-icon {
    background: #dcfce7;
    color: #00ae4f;
}

.benefit-card .card-title {
    color: #00ae4f;
}

/* USP Section */
.usp {
    background: #faf5ff;
    padding: 80px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.usp-card {
    border: 1px solid #e9d5ff;
}

.usp-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.usp-card .card-title {
    color: #7c3aed;
}

.free-badge {
    font-weight: bold;
    font-size: 12px;
}

/* Pricing Section */
.pricing {
    background: #fff7ed;
    padding: 80px 0;
}

.pricing-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-table {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
}

.pricing-table:hover {
    border-color: #00ae4f;
    transform: translateY(-4px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: #6b7280;
    font-size: 16px;
}

.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-plan {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s;
}

.pricing-plan:hover {
    border-color: #00ae4f;
    background: #f0fdf4;
}

.pricing-plan.popular {
    border-color: #3b82f6;
    background: #eff6ff;
}

.pricing-plan.best-value {
    border-color: #00ae4f;
    background: #f0fdf4;
}

.popular-badge, .best-value-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.popular-badge {
    background: #3b82f6;
}

.best-value-badge {
    background: #00ae4f;
}

.plan-duration {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 24px;
    font-weight: bold;
    color: #00ae4f;
    margin-bottom: 4px;
}

.plan-price span {
    font-size: 14px;
    color: #6b7280;
    font-weight: normal;
}

.plan-total {
    font-size: 16px;
    color: #374151;
    margin-bottom: 8px;
}

.plan-savings {
    font-size: 14px;
    color: #059669;
    font-weight: 500;
    background: #d1fae5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    background: #f8fafc;
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    display: flex;
    gap: 24px;
    min-width: 100%;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00ae4f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.author-info h4 {
    font-weight: bold;
    color: #111827;
    margin-bottom: 4px;
}

.author-info p {
    color: #6b7280;
    font-size: 14px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #00ae4f;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #00ae4f;
    transform: scale(1.1);
}

.slider-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

/* Contact Section */
.contact {
    background: #111827;
    color: white;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.contact-description {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #60a5fa;
    width: 20px;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-form-card {
    background: white;
    color: #111827;
    border-radius: 8px;
    padding: 24px;
}

.form-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-description {
    color: #6b7280;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ae4f;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 24px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-text {
    font-size: 12px;
    color: #6b7280;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 12px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #374151;
    text-decoration: underline;
}

/* Contact Widget */
.wrapper-contact {
    display: flex;
    flex-direction: column;
    bottom: 30px;
    right: 0px;
    z-index: 999999;
    position: fixed;
    gap: 10px;
}

.hotline-phone-ring {
    position: relative;
    background-color: transparent;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 11;
    display: block;
}

.hotline-phone-ring-circle {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #00ae4f;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #ccc;
    border-radius: 100%;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
}

.hotline-phone-ring-img-circle {
    background-color: #fff;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 12.5px;
    left: 12.5px;
    border-radius: 100%;
    animation: phonering-alo-circle-img-anim 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pps-btn-img, .hotline-phone-ring-img-circle .pps-btn-img img {
    width: 25px;
    height: 25px;
}

@keyframes phonering-alo-circle-anim {
    0% {
        transform: scale(0.5);
        opacity: 0.1;
    }
    30% {
        transform: scale(0.7);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0%, 100% {
        transform: scale(0.7);
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% { transform: rotate(0deg); opacity: 0.1; }
    10% { transform: rotate(-25deg); opacity: 0.2; }
    20% { transform: rotate(25deg); opacity: 0.4; }
    30% { transform: rotate(-25deg); opacity: 0.6; }
    40% { transform: rotate(25deg); opacity: 0.8; }
    50% { transform: rotate(0); opacity: 0.9; }
    100% { transform: rotate(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-wide {
        grid-column: span 1;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-slide {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .video-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .pricing-table {
        padding: 24px;
    }
    
    .pricing-plans {
        gap: 12px;
    }
    
    .pricing-plan {
        padding: 16px;
    }
    
    .video-container {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio on mobile */
    }
    
    .video-title {
        font-size: 20px;
    }
    
    .video-description {
        font-size: 14px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}