/* --- Global Styles & Variables --- */
:root {
    --primary-gradient: linear-gradient(45deg, #ffe03a, #ffee95);
    --dark-blue: #0a0a23;
    --text-color: #495057;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--light-gray);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* --- Navigation Bar --- */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    text-decoration: none;
}

/* --- Logo Container --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
}

.navbar nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #0d6efd;
}

/* --- Call to Action Buttons --- */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    background: var(--primary-gradient);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.nav-cta {
    padding: 8px 20px;
    margin-left: 25px;
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    background-color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.hero-cta {
    font-size: 18px;
    padding: 15px 40px;
}

.availability-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
}

/* --- Demo Section --- */
.demo {
    padding: 60px 0;
}
.demo-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
}

.demo-box img,
.demo-box video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.demo-box video {
    max-height: 500px;
    border-radius: 12px;
    background-color: var(--light-gray);
    object-fit: contain; /* This ensures the poster image fits properly */
}

.demo-box video:focus {
    outline: 3px solid #0d6efd;
    outline-offset: 2px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    color: white;
    font-size: 28px;
    margin-left: 4px; /* Slight offset to center the play triangle */
}


/* --- Features Section --- */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.section-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* --- Feature Icons Enhancement --- */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.feature-icon i {
    font-size: 28px;
    color: #09090990;
}

.feature-card i {
    font-size: 32px;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0 0 10px 0;
}

/* --- Pricing Section --- */
.pricing {
    padding: 80px 0;
    background-color: var(--white);
}
.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
}
.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 10px 0;
}
.price sup {
    font-size: 24px;
    font-weight: 600;
}
.price-desc {
    font-size: 16px;
    margin-bottom: 30px;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.pricing-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.pricing-card ul i {
    color: #28a745;
    margin-right: 10px;
    font-size: 20px;
}

/* --- Price Disclaimers --- */
.price-disclaimer {
    font-size: 12px;
    color: #6c757d;
    margin-top: 10px;
    font-style: italic;
}

.pricing-disclaimer {
    font-size: 12px;
    color: #6c757d;
    margin-top: 15px;
    font-style: italic;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #6c757d;
}

/* --- Footer --- */
.footer {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
}
.footer nav a:hover {
    color: #0d6efd;
}

/* --- Support Page Specifics --- */
.support-page {
    padding: 80px 0;
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:first-of-type {
    border-top: 1px solid var(--border-color);
}

.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    position: relative;
    padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide default triangle for Chrome/Safari */
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #0d6efd;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 0 20px 0;
    margin: 0;
}

.contact-support {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}
.contact-support h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-top: 0;
}

/* --- Privacy Policy Page Specifics --- */
.privacy-page {
    padding: 80px 0;
    background-color: #fff;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section a {
    color: #0d6efd;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .navbar nav a {
        margin-left: 0;
    }
    
    .nav-cta {
        margin-left: 0 !important;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .demo-box video {
        max-height: 350px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .demo-box video {
        max-height: 250px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 18px;
    }
}