* {
    box-sizing: border-box; 
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #fff; 
}
body.mobile-nav-body-active {
    overflow: hidden;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}
header {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    left: 0; 
    right: 0; 
    z-index: 1000;
    width: 100%; 
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%; 
    max-width: 1100px; 
    margin: 0 auto; 
    height: 50px; 
}
nav .logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}
nav .logo img {
    height: 40px; 
    width: auto;
    vertical-align: middle; 
}
nav ul.desktop-nav { 
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center; 
}
nav ul.desktop-nav li {
    margin-left: 18px; 
    position: relative; 
}
nav ul.desktop-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.92em; 
    padding: 10px 0; 
    display: block;
    letter-spacing: 0.3px; 
}
nav ul.desktop-nav li a:hover,
nav ul.desktop-nav li:hover > a { 
    color: #6a0dad;
}
nav .cta-button {
    background-color: #6a0dad;
    color: white !important; 
    padding: 10px 25px; /* UPDATED: Increased side padding */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.92em; 
    display: inline-block; 
    white-space: nowrap;
}
nav .cta-button:hover {
    background-color: #540a8c;
    color: white !important;
}
.burger-menu {
    display: none; 
    cursor: pointer;
    padding: 5px; 
    flex-direction: column; 
    justify-content: space-around; 
    width: 30px;  
    height: 25px; 
    align-self: center; 
}
.burger-menu div { 
    width: 100%; 
    height: 3px;
    background-color: #333; 
    margin: 2px 0; 
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}
nav ul.desktop-nav li ul.submenu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #fff; 
    border: 1px solid #e0e0e0;
    border-top: none; 
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 220px; 
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 5px 5px; 
}
nav ul.desktop-nav li:hover > ul.submenu {
    display: block;
}
nav ul.desktop-nav li ul.submenu li {
    margin-left: 0;
    width: 100%;
}
nav ul.desktop-nav li ul.submenu li a {
    padding: 12px 18px; 
    white-space: nowrap; 
    color: #333; 
    font-weight: normal; 
    font-size: 0.9em; 
}
nav ul.desktop-nav li ul.submenu li a:hover {
    background-color: #e9d8fd; 
    color: #540a8c; 
}
nav ul.desktop-nav li.has-submenu > a::after { 
    content: ' ▾'; 
    font-size: 0.8em;
    margin-left: 4px;
}
.hero {
    background-color: #e9d8fd; 
    padding: 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5em; 
    line-height: 1.3; 
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}
.hero p.lead {
    font-size: 1.15em; 
    margin-bottom: 30px;
    color: #555;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.hero p.lead strong { 
    color: #540a8c;
    font-weight: 600;
}
.hero .cta-button-main {
    background-color: #6a0dad;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em; 
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.hero .cta-button-main:hover {
    background-color: #540a8c;
}
.hero .hero-features {
    margin-top: 25px;
    font-size: 1em; 
    color: #444;
    font-weight: 500;
}
.section {
    padding: 50px 0;
    text-align: center;
}
.section.bg-light {
    background-color: #f8f9fa;
}
.section h2 {
    font-size: 2.1em; 
    margin-bottom: 15px;
    font-weight: 600;
}
.section .sub-heading {
    font-size: 1.05em; 
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
    margin-top: 30px;
    text-align: center; 
}
.feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.feature-item .icon-placeholder { 
    margin-bottom: 15px; 
    width: 50px; 
    height: 50px;
    background-color: #e9d8fd;
    color: #6a0dad;
    padding: 8px;
    display: flex; 
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.feature-item .icon-placeholder svg {
     width: 100%;
     height: 100%;
}
.feature-item h4 { 
    font-size: 1.2em; 
    color: #6a0dad;
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 0.88em; 
    color: #555;
    line-height: 1.5;
}
.panel-showcase-visuals {
    margin-top: 30px;
}
.snapshot-item {
    margin-bottom: 40px; 
}
.snapshot-title {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}
.main-snapshot-placeholder,
.small-snapshot-placeholder {
    background-color: #f0f2f5; 
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0; 
    border-radius: 8px;
    padding: 15px; 
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.main-snapshot-placeholder {
    max-width: 800px; 
    min-height: 450px; 
}
.snapshot-gallery {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.small-snapshot-placeholder {
    flex-basis: calc(50% - 15px);
    max-width: 450px; 
    min-height: 250px; 
}
.main-snapshot-placeholder img,
.small-snapshot-placeholder img {
    width: 100%;
    height: auto; 
    object-fit: contain; 
    border-radius: 4px; 
}
.video-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 760px; 
    margin: 20px auto 0 auto; 
    background-color: #000; 
    border-radius: 8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
}
.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; 
}
.features-detailed-list {
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
}
.features-detailed-list h3 {
    font-size: 1.45em; 
    color: #540a8c;
    margin-top: 25px;
    margin-bottom: 15px; 
    border-bottom: 2px solid #e9d8fd;
    padding-bottom: 7px;
}
.features-detailed-list ul {
    list-style: none;
    padding-left: 0; 
    margin-top: 0; 
}
.features-detailed-list ul li {
    margin-bottom: 12px; 
    padding-left: 25px; 
    position: relative;
    font-size: 0.95em; 
    line-height: 1.6; 
}
.features-detailed-list ul li::before { 
    content: '✓';
    color: #6a0dad;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 3px; 
}
.features-detailed-list ul li strong { 
    font-weight: 600; 
    color: #333; 
}
.features-detailed-list ul li ul { 
    margin-top: 8px; 
    padding-left: 20px; 
}
.features-detailed-list ul li ul li {
    font-size: 0.9em; 
    margin-bottom: 6px; 
}
.features-detailed-list ul li ul li::before {
    content: '›'; 
    color: #777; 
    font-weight: bold;
    top: 2px;
}
.features-detailed-list code {
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}
/* REMOVE ALL styles related to .pricing-table and .pricing-plan */

/* ADD THESE NEW styles for the single trial card section */
.trial-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.trial-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #6a0dad; /* Accent border on top */
    border-radius: 8px;
    padding: 30px 40px;
    max-width: 700px; /* Control the width of the card */
    width: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: left;
}
.trial-card-header h3 {
    font-size: 1.5em;
    color: #333;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}
.trial-card .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    columns: 2; /* Create two columns for the feature list */
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 20px; /* Space between columns */
}
.trial-card .features-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9em;
    -webkit-column-break-inside: avoid; /* Prevent items from breaking across columns */
            page-break-inside: avoid;
                 break-inside: avoid;
}
.trial-card .features-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
}
.trial-card .cta-button-pricing { /* Reusing this class name for the button */
    display: block; 
    background-color: #6a0dad;
    color: white;
    padding: 14px 20px; /* Make button larger */
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
}
.trial-card .cta-button-pricing:hover {
    background-color: #540a8c;
}

/* Responsive for trial card feature list */
@media (max-width: 600px) {
    .trial-card .features-list {
        columns: 1; /* Stack features in one column on smaller screens */
    }
    .trial-card {
        padding: 25px;
    }
}
/* Download / Test Drive Section Styles */
.download-section {
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.cta-download-button {
    display: inline-block;
    background-color: #1a73e8; /* A different, strong call-to-action color like blue */
    color: white;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 14px 0 rgba(26, 115, 232, 0.39);
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-bottom: 15px;
}
.cta-download-button:hover {
    background-color: #185abc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(26, 115, 232, 0.45);
}
.download-support-text {
    font-size: 0.9em;
    color: #666;
    margin-top: 15px;
}
.download-support-text a {
    color: #6a0dad;
    text-decoration: underline;
    font-weight: 500;
}
.use-case-cards {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 25px;
    margin-top: 30px;
}
.use-case-card {
    background-color: #fff;
    padding: 25px; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border: 1px solid #e7e7e7; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}
 .use-case-card .icon-placeholder { 
    width: 50px; 
    height: 50px; 
    font-size: 1.7em; 
    margin-bottom: 15px; 
    background-color: #e9d8fd; color: #6a0dad; display: flex; align-items: center; justify-content: center; border-radius: 50%;
 }
 .use-case-card h3 {
    font-size: 1.2em; 
    color: #6a0dad;
    margin-bottom: 10px; 
    text-align: center;
}
.use-case-card p {
    flex-grow: 1;
    text-align: center;
    font-size: 0.85em; 
    line-height: 1.5;
}
.pricing-table {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    margin-top: 30px;
    flex-wrap: wrap; 
}
.pricing-plan {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px; 
    flex-basis: calc(33.333% - 20px); 
    min-width: 245px; 
    max-width: 280px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.pricing-plan h3 {
    font-size: 1.4em; 
    color: #6a0dad;
    margin-bottom: 10px; 
}
.pricing-plan .price {
    font-size: 2em; 
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.pricing-plan .price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #777;
}
.pricing-plan .billing-note {
    font-size: 0.8em; 
    color: #777;
    margin-bottom: 15px; 
    min-height: 18px;
}
.pricing-plan .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px; 
    text-align: left;
    flex-grow: 1;
}
.pricing-plan .features-list li {
    margin-bottom: 7px; 
    padding-left: 20px; 
    position: relative;
    font-size: 0.85em; 
}
.pricing-plan .features-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px; 
}
.pricing-plan .cta-button-pricing {
    display: block; 
    background-color: #6a0dad;
    color: white;
    padding: 10px 0; 
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: auto;
    font-size: 0.9em; 
}
.pricing-plan .cta-button-pricing:hover {
    background-color: #540a8c;
}
.pricing-plan.recommended {
    border-top: 4px solid #6a0dad;
    position: relative;
}
.pricing-plan.recommended::before {
    content: 'Best Value';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%) ;
    background-color: #6a0dad;
    color: white;
    padding: 4px 12px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.final-cta {
    background-color: #6a0dad;
    color: white;
    padding: 50px 0;
    text-align: center;
}
.final-cta h2 {
    color: white;
    font-size: 1.9em; 
}
.final-cta p {
    font-size: 1.05em;
    margin-bottom: 25px;
}
.final-cta .cta-button-main {
    background-color: white;
    color: #6a0dad;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
}
.final-cta .cta-button-main:hover {
    background-color: #f0e6ff;
}
/* FAQ Section Accordion Styles */
.faq-section {
    max-width: 750px;
    margin: auto;
    text-align: left;
}
.faq-item {
    background-color: #fff; 
    border: 1px solid #e7e7e7; 
    border-radius: 8px; 
    margin-bottom: 15px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden; 
}
.faq-question {
    font-size: 1.1em; 
    font-weight: 500;
    color: #333;
    padding: 18px 45px 18px 20px; 
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #f8f9fa;
}
.faq-question::after { 
    content: '▾';
    font-size: 1.2em;
    color: #6a0dad;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after { 
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fdfcff; 
    border-top: 1px solid #e9d8fd; 
}
.faq-answer p {
    font-size: 0.95em; 
    color: #444;
    margin: 0; 
    padding: 20px 25px; 
    line-height: 1.7;
}
.faq-item.active .faq-answer {
     /* max-height is set by JS */
}
.faq-item code { 
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}
footer {
    background-color: #2c2c2c; 
    color: #bbb; 
    padding: 40px 0 20px 0; 
    font-size: 0.9em;
}
.footer-content-wrapper { 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; 
    margin-bottom: 30px;
}
.footer-logo-area {
    flex-basis: 250px; 
    flex-grow: 1; 
    min-width: 200px; 
    margin-bottom: 20px; 
}
.footer-logo-area .logo {
    display: block; 
}
.footer-logo-area .logo a {
    display: inline-block; 
}
.footer-logo-area .logo img {
    height: 45px; 
    width: auto;
}
.footer-logo-area p.tagline { 
    font-size: 0.85em;
    color: #ccc;
    margin-top: 0;
    line-height: 1.4;
}
.footer-links-area {
    flex-basis: 65%; 
    flex-grow: 2; 
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 20px; 
}
.footer-column {
    flex: 1; 
    min-width: 160px; 
    margin-bottom: 20px;
}
.footer-column h4 {
    color: #fff; 
    font-size: 1.05em; 
    margin-top: 0; 
    margin-bottom: 12px; 
    border-bottom: 1px solid #555; 
    padding-bottom: 7px; 
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul li a {
    color: #ccc; 
    text-decoration: none;
    font-size: 0.95em;
}
.footer-column ul li a:hover {
    color: #fff; 
    text-decoration: underline;
}
.footer-bottom-info {
    border-top: 1px solid #444; 
    padding-top: 20px;
    margin-top: 10px; 
    font-size: 0.85em;
    color: #aaa;
    text-align: center; 
}
.footer-bottom-info p {
    margin: 5px 0;
}
.footer-bottom-info a {
    color: #e9d8fd; 
}
@media (max-width: 992px) { 
    nav ul.desktop-nav { 
        display: none; 
    }
    .burger-menu {
        display: flex; 
    }
    nav ul.desktop-nav.nav-active-mobile { 
        display: flex !important; 
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #f8f9fa; 
        box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 999; 
    }
    nav ul.desktop-nav.nav-active-mobile li { margin-left: 0; width: 100%; text-align: center; }
    nav ul.desktop-nav.nav-active-mobile li a { padding: 12px 20px; border-bottom: 1px solid #eee; width: 100%; }
    nav ul.desktop-nav.nav-active-mobile li:last-child a { border-bottom: none; }
    nav ul.desktop-nav.nav-active-mobile ul.submenu { display: none !important; } 
    nav ul.desktop-nav.nav-active-mobile li.has-submenu > a::after { display: none; } 
    body.mobile-nav-body-active .burger-menu div:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.mobile-nav-body-active .burger-menu div:nth-child(2) { opacity: 0; }
    body.mobile-nav-body-active .burger-menu div:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .pricing-plan { flex-basis: calc(50% - 12px); min-width: 240px; }
    .use-case-cards { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .snapshot-gallery { flex-direction: column; align-items: center; }
    .small-snapshot-placeholder { flex-basis: 100%; max-width: 400px; }
    .feature-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .footer-logo-area { text-align: center; margin-bottom: 30px;} 
    .footer-links-area { justify-content: center; } 
}
@media (max-width: 768px) {
     html { scroll-padding-top: 60px; } 
     header { padding: 5px 0; } 
     nav { height: 60px; } 
     .hero h1 { font-size: 2em; } 
     .hero p.lead { font-size: 1.05em; } 
     .section h2 { font-size: 1.8em; } 
     .use-case-cards, .feature-grid { grid-template-columns: 1fr; } 
     .feature-item, .use-case-card { max-width: 400px; width: 90%; margin-left: auto; margin-right: auto; } 
     .pricing-table { flex-direction: column; align-items: center; } 
     .pricing-plan { flex-basis: auto; width: 90%; max-width: 380px; min-width: unset; } 
     .pricing-plan.recommended::before { font-size: 0.75em; } 
     .footer-content-wrapper { flex-direction: column; align-items: flex-start; } 
     .footer-logo-area { text-align: left; width: 100%; } 
     .footer-links-area { width: 100%; justify-content: flex-start; } 
     .footer-column { flex-basis: 100%; text-align: left; margin-bottom: 20px; } 
     .footer-column h4 { text-align: left; } 
     .footer-bottom-info { text-align: left; } 
}