:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-bg: #1e293b;
    --darker-bg: #0f172a;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
    --border-color: #334155;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    padding: 25px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-badge i {
    color: var(--accent-color);
    margin-right: 5px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-light);
    font-weight: 600;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    color: white;
}

/* Value Proposition Section */
.value-prop-section {
    padding: 60px 20px;
    background: rgba(15, 23, 42, 0.5);
}

.section-title-alt {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.icon-box i {
    font-size: 36px;
    color: white;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}

.value-item p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 100%;
}

/* Download Section */
.download-section {
    padding: 80px 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 100%;
}

/* Force Bootstrap grid to work properly */
.download-section .download-cards.row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
    --bs-gutter-x: 30px !important;
}

.download-section .download-cards.row>.col-lg-6 {
    flex: 0 0 auto !important;
    width: 50% !important;
    max-width: 50% !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    margin-bottom: 30px !important;
}

.download-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.download-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
}

.os-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.os-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.os-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.help-link {
    color: var(--primary-light);
    font-size: 14px;
    text-decoration: none;
}

.help-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.command-box {
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.command-box pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.command-box code {
    color: var(--text-light);
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    width: 100% !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: 1px solid var(--primary-color) !important;
    padding: 14px 24px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.copy-btn:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.02) !important;
    color: white !important;
    border-color: var(--primary-dark) !important;
}

.copy-btn i {
    color: white !important;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: rgba(15, 23, 42, 0.5);
}

.screenshot-container {
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.main-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-screenshot:hover {
    transform: scale(1.02);
}

.cursor-pointer {
    cursor: pointer;
}

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

.feature-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0 auto;
}

/* Demo Section */
.demo-section {
    padding: 80px 20px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

/* SEO Content Section */
.seo-content-section {
    padding: 80px 20px;
    background: rgba(15, 23, 42, 0.5);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
}

.seo-content h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-content h3 {
    font-size: 24px;
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-list li {
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

/* .seo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
} */

.seo-list li strong {
    color: var(--primary-light);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--darker-bg);
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-col,
.product-col {
    padding: 20px;
    text-align: center;
}

.feature-col {
    text-align: left;
}

.highlight-col {
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
}

.comparison-row:hover {
    background: rgba(30, 41, 59, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: rgba(15, 23, 42, 0.5);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.8);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add this line */
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-light);
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 auto;
}

.faq-item p strong {
    color: var(--text-light);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    color: var(--text-gray);
    font-size: 18px;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
    color: white;
}

.cta-note {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

footer p {
    color: var(--text-gray);
    margin: 10px auto;
}

footer p strong {
    color: var(--text-light);
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    color: #64748b;
    max-width: 800px;
    margin: 10px auto 0;
}

/* Modal Styles */
.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    color: white;
}

.btn-close {
    filter: invert(1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.value-prop-section,
.download-section,
.features-section,
.demo-section,
.seo-content-section,
.comparison-section,
.faq-section,
.cta-section {
    animation: fadeInUp 0.8s ease-out;
}

body {
    background: linear-gradient(135deg, #3d72a3, #1e3c72);
    /* Smooth blue gradient */
    color: white;
    text-align: center;
    font-family: "Work Sans", sans-serif;
}

ul,
ul li {
    list-style-type: none;
}

header h1 {
    font-weight: bold;
    margin: 0.25em auto;
}

header h2 {
    width: 50%;
    margin: 0.75em auto 1em auto;
    font-style: italic;
    color: yellow;
}

a,
a:visited {
    text-decoration: underline;
    color: white;
}

a:hover {
    text-decoration: none;
}

footer a {
    text-decoration: underline;
}

footer a:hover {
    text-decoration: none;
}

ul.download {
    width: 75%;
    margin: 0 auto;
    padding: 0;
}

ul.download>li {
    display: inline-block;
    list-style-type: none;
    margin: 0 0.5em 1.5em 0.5em;
    padding: 0;
    width: 40%;
}

pre {
    border-radius: 5px;
}

/* Target all iPhones & iPads in both portrait and landscape orientations */
@media (min-width: 768px) and (max-width: 1024px),
(max-width: 480px),
(min-width: 481px) and (max-width: 812px),
(max-width: 768px) {
    ul.download>li {
        margin-left: 0;
        margin-right: 0;
        display: block;
        width: 100%;
    }
}

footer ul {
    padding: 0;
    margin: 1em auto;
}

footer ul li {
    display: inline-block;
    list-style-type: none;
    margin: 0 0.5em;
}

.features-list {
    width: 75%;
    list-style: none;
    /* Removes default list styling */
    padding: 0;
    margin: 0 auto;
    font-family: "Work Sans", sans-serif;
    font-size: x-large;
}

.features-list li {
    margin: 1em 0;
    /* Adds space between each item */
}

.checkmark {
    color: #4CAF50;
    /* Green checkmark */
    font-size: 18px;
    margin-right: 10px;
    /* Space between checkmark and text */
}

.features-list strong {
    color: lightgray;
    /* Strong text color */
    font-weight: bold;
}

p {
    max-width: 75%;
    margin: 0 auto 1em auto;
}

.cursor-pointer {
    cursor: pointer;
}

.modal-title {
    color: white;
}

main section.text {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #333;
    max-width: 80%;
}

main section.text h2 {
    color: #222;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

main section.text h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

main section.text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

main section.text ul li {
    color: #444;
    line-height: 1.7;
}

/* Make sure the iframe stays responsive */
iframe {
    max-width: 100%;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 20px 60px;
    }

    main section.text {
        padding: 1.5rem;
        border-radius: 10px;
    }
}

/* Responsive Design - Must come last */
@media (max-width: 992px) {
    .download-section .download-cards.row>.col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 13px;
    }

    .feature-col,
    .product-col {
        padding: 15px 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .seo-content {
        padding: 30px 25px;
    }

    .seo-content h2 {
        font-size: 26px;
    }

    .seo-content h3 {
        font-size: 20px;
    }

    ul.download>li {
        margin-left: 0;
        margin-right: 0;
        display: block;
        width: 100%;
    }

    main section.text {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .download-section .row {
        grid-template-columns: 1fr !important;
    }
}

#download div.os-header>div {
    flex: 0.95;
}