/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111b21;
    /* WhatsApp Dark Background */
    color: #e9edef;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(17, 27, 33, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.nav-logo {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #aebac1;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover {
    color: #00a884;
}

.instagram-link svg {
    fill: currentColor;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 60px;
    gap: 40px;
    background: radial-gradient(circle at top right, #0b141a 0%, #111b21 60%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 168, 132, 0.1);
    color: #00a884;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 168, 132, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, #00a884 0%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8696a0;
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-container {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #00a884;
    color: #111b21;
}

.btn-primary:hover {
    background: #008f6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 168, 132, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.small-text {
    font-size: 0.85rem;
    color: #667781;
}

/* Hero Visual Animation */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    /* Ensure it doesn't look too big on large screens */
    max-height: 600px;
    object-fit: cover;
}

/* Video Section */
.video-section {
    padding: 60px 8%;
    background: #0b141a;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper video {
    width: 100%;
    display: block;
}


/* Features Section */
.features {
    padding: 80px 8%;
    background: #111b21;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.highlight {
    color: #00a884;
}

.section-title p {
    color: #8696a0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #202c33;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #00a884;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.card p {
    color: #8696a0;
    font-size: 0.95rem;
}

/* Review Section */
.reviews-section {
    padding: 80px 8%;
    background: #0b141a;
    overflow: hidden;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 20px;
    /* Space for scrollbar */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Custom Scrollbar for Chrome/Safari/Edge - Hidden */
.scroll-container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
    display: none;
}

.review-card {
    flex: 0 0 300px;
    /* Fixed width */
    background: #202c33;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #febc2e;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: #e9edef;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.review-author {
    font-size: 0.85rem;
    color: #8696a0;
    font-weight: 600;
    text-align: right;
}

/* Footer */
footer {
    padding: 60px 8%;
    background: #111b21;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-info h4 {
    margin-bottom: 4px;
}

.dev-link {
    color: #00a884;
    text-decoration: none;
}

.dev-link:hover {
    text-decoration: underline;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aebac1;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #00a884;
    color: #00a884;
}


/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Comparison Section */
.comparison-section {
    padding: 80px 8%;
    background: #0b141a;
    /* Darker background */
    color: #e9edef;
}

.comparison-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(32, 44, 51, 0.6);
    /* Glass-ish */
    backdrop-filter: blur(5px);
    border-radius: 16px;
    overflow: hidden;
    /* To clip corners */
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(0, 168, 132, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #8696a0;
}

.comparison-table th.highlight-header {
    background: rgba(0, 168, 132, 0.2);
    color: #00a884;
    font-size: 1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #fff;
    padding-left: 30px;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Feedback Section */
.feedback-section {
    padding: 80px 8%;
    background: #111b21;
    text-align: center;
}

.feedback-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(32, 44, 51, 0.8), rgba(11, 20, 26, 0.9));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feedback-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feedback-content p {
    color: #8696a0;
    margin-bottom: 30px;
}

.feedback-btn {
    border-color: #00a884;
    color: #00a884;
    padding: 12px 30px;
}

.feedback-btn:hover {
    background: rgba(0, 168, 132, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(17, 27, 33, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .cta-container {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .comparison-table td:first-child {
        padding-left: 15px;
    }

    .review-card {
        flex: 0 0 260px;
    }
}