/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 500;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

.active {
    display: block !important;
}

/* Typography */
h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.logo-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-btn:hover .logo-icon {
    background-color: rgba(2, 172, 163, 0.2);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(2, 172, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zap-icon {
    width: 16px;
    height: 16px;
    color: #02ACA3;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 600;
    color: #02ACA3;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.desktop-nav {
    display: none;
    gap: 48px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.nav-link:hover,
.nav-link.active {
    color: #02ACA3;
    transform: scale(1.05);
}

.nav-link.active {
    font-weight: 600;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #02ACA3;
}

.menu-icon,
.x-icon {
    width: 20px;
    height: 20px;
}

.mobile-menu {
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #6b7280;
    padding: 8px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #02ACA3;
}

.mobile-nav-link.active {
    font-weight: 600;
}

/* Page Navigation */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h1,
.section-header h2 {
    color: #1f2937;
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.section-header p {
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #02ACA3;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: rgba(2, 172, 163, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #02ACA3;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #ffffff, rgba(249, 250, 251, 0.3), #ffffff);
    padding: 96px 0;
}

.hero-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #111827;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: #6b7280;
    font-weight: 500;
}

.hero-description {
    color: #4b5563;
    max-width: 28rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    z-index: 10;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.hero-image:hover .hero-img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-bg-1 {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 256px;
    height: 256px;
    background: rgba(2, 172, 163, 0.05);
    border-radius: 50%;
    filter: blur(64px);
}

.hero-bg-2 {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 256px;
    height: 256px;
    background: rgba(229, 231, 235, 1);
    border-radius: 50%;
    filter: blur(64px);
}

/* Features Section */
.features-section {
    padding: 96px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.feature-item {
    display: grid;
    gap: 64px;
    align-items: center;
}

/* Remove grid layout for reverse items on mobile - will be added back on desktop */

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #02ACA3;
}

.feature-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.feature-description {
    color: #4b5563;
    max-width: 28rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-bullet {
    width: 6px;
    height: 6px;
    background-color: #02ACA3;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-list span {
    font-size: 0.875rem;
    color: #4b5563;
}

.feature-video {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    height: 320px;
}

.feature-video:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
    border-radius: 24px;
    pointer-events: none;
}

/* Updates Section */
.updates-section {
    padding: 96px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.updates-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.update-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.update-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.update-header {
    padding: 24px;
    background-color: white;
}

.update-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.update-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.update-title-group h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-major {
    background-color: #02ACA3;
    color: white;
}

.badge-patch {
    background-color: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.calendar-icon {
    width: 16px;
    height: 16px;
}

.update-header h3 {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 8px;
}

.update-header p {
    color: #4b5563;
    font-size: 0.875rem;
}

.update-content {
    padding: 24px;
    background-color: rgba(249, 250, 251, 0.5);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.update-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #02ACA3;
}

.bug-icon {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.update-section h4 {
    font-weight: 600;
    color: #1f2937;
}

.update-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.update-section li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.zap-small {
    width: 12px;
    height: 12px;
    color: #02ACA3;
    margin-top: 6px;
    flex-shrink: 0;
}

.orange-dot {
    width: 12px;
    height: 12px;
    background-color: #f59e0b;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.update-section span {
    font-size: 0.875rem;
    color: #4b5563;
}

.updates-footer {
    text-align: center;
    margin-top: 64px;
}

.updates-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.download-icon {
    width: 16px;
    height: 16px;
    color: #02ACA3;
}

.updates-note span {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.contact-methods {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-header {
    text-align: center;
    padding: 32px 24px 16px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.email-icon {
    background-color: rgba(59, 130, 246, 0.1);
}

.email-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.whatsapp-icon {
    background-color: rgba(34, 197, 94, 0.1);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    color: #22c55e;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.contact-info {
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 24px !important;
}

.contact-action {
    text-align: center;
    padding: 0 24px 32px;
}

.contact-action .btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 96px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-search-card {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    height: 48px;
}

.search-input:focus {
    outline: none;
    border-color: #02ACA3;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    background-color: transparent;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: #02ACA3;
    border-color: #d1d5db;
}

.filter-btn.active {
    background-color: #02ACA3;
    color: white;
    border-color: #02ACA3;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-category {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.category-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(2, 172, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 16px;
    height: 16px;
    color: #02ACA3;
}

.category-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px 24px;
}

.faq-item {
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #02ACA3;
}

.faq-item.active .faq-question {
    background-color: rgba(249, 250, 251, 0.5);
}

.chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 16px 16px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    margin-top: 64px;
    text-align: center;
    background: rgba(2, 172, 163, 0.05);
    border-radius: 16px;
    padding: 32px;
}

.faq-cta-icon {
    width: 48px;
    height: 48px;
    background-color: #02ACA3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.faq-cta-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.faq-cta h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.faq-cta p {
    color: #4b5563;
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid #f3f4f6;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(2, 172, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 16px;
    height: 16px;
    color: #02ACA3;
}

.footer-logo-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.footer-logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.footer-description {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 21rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.875rem;
    color: #6b7280;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #02ACA3;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.footer-contact a {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #02ACA3;
}

.footer-contact span {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-bottom {
    border-top: 1px solid #f3f4f6;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Apply reverse layout only on desktop */
    .feature-item.reverse {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item.reverse .feature-content {
        order: 2;
    }
    
    .feature-item.reverse .feature-video {
        order: 1;
    }
}