/* CSS Variables & Global Resets */
:root {
    /* Color Palette - Premium Enterprise (Deep Navy, Clean White, Vibrant Accents) */
    --primary-color: #0F172A;
    /* Deep Navy */
    --secondary-color: #334155;
    /* Slate */
    --accent-color: #3B82F6;
    /* Bright Blue */
    --accent-hover: #2563EB;

    /* New Accents for Landing Page */
    --accent-control: #D97706;
    /* Amber-600 for 'Control' */
    --accent-security: #059669;
    /* Emerald-600 for 'Security' */

    --background-light: #F8FAFC;
    --surface-white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    --gradient-popular: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--background-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

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

.text-muted {
    color: var(--text-muted) !important;
}

.text-dark {
    color: var(--primary-color) !important;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.border-white {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.text-white {
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1E293B;
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: var(--surface-white);
}

.btn-text {
    color: white;
    /* For hero usually */
    background: transparent;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-dark {
    background-color: #000;
    color: white;
}

.full-width {
    width: 100%;
}

/* Header */
.site-header {
    background-color: var(--surface-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo .dot {
    color: var(--accent-color);
}

.site-header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}


/* PREVIOUS HERO (For Pricing Page Compatibility) */
.hero-section:not(.landing-hero) {
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 0 8rem;
    text-align: center;
}

/* LANDING PAGE HERO */
.landing-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: visible;
    /* Allow floats */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    /* Slate 400 */
    margin-bottom: 2.5rem;
}

.trust-signals {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: #CBD5E1;
    /* Slate 300 */
    flex-wrap: wrap;
}

.trust-signals.low-profile {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.trust-signals i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.trust-signals.low-profile i {
    color: #4ADE80;
    /* Green explicitly */
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}


/* HERO VISUAL MOCKUP */
.hero-visual {
    position: relative;
    z-index: 5;
}

.visual-container {
    position: relative;
    animation: fadeIn 1s ease-out;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
}

.float-card i {
    font-size: 1.25rem;
}

.card-revenue {
    top: 10%;
    right: -20px;
    border-left: 3px solid #10B981;
}

.card-revenue i {
    color: #10B981;
}

.card-sla {
    bottom: 20%;
    left: -20px;
    border-left: 3px solid #3B82F6;
    animation-delay: 1.5s;
}

.card-sla i {
    color: #3B82F6;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* SECTION UTILITIES */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

/* PROBLEM STATEMENT */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s;
}

.problem-card:hover {
    transform: translateY(-3px);
}

.icon-warning {
    width: 50px;
    height: 50px;
    background: #FEF2F2;
    /* Red 50 */
    color: #EF4444;
    /* Red 500 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.problem-card h3 {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.bottom-line {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ROI CALCULATOR */
.roi-section {
    background: var(--primary-color);
    color: white;
}

.roi-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.roi-inputs {
    flex: 1;
    max-width: 400px;
}

.roi-inputs label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.input-hint {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-top: 1rem;
}

input[type=range] {
    width: 100%;
    height: 6px;
    background: white;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.range-display {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--accent-color);
}

.roi-results {
    flex: 1;
    display: grid;
    gap: 1.5rem;
    max-width: 400px;
}

.roi-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.roi-card.highlight {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
}

.roi-card span {
    display: block;
    font-size: 0.9rem;
    color: #CBD5E1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roi-card h3 {
    font-size: 1.75rem;
    color: white;
    margin: 0;
}


/* INTEGRATIONS */
.integrations-section {
    background: white;
}

.integration-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.int-card {
    background: #F8FAFC;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.int-card:hover {
    border-color: var(--accent-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.int-card i {
    color: var(--text-muted);
}


/* POSITIONING */
.positioning-section {
    background: white;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.outcome-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.outcome-item {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.outcome-item i {
    color: var(--accent-security);
}

/* MODULES GRID */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.module-card {
    background: var(--surface-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.module-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.module-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.module-card h3 {
    font-size: 1.2rem;
}

/* DEEP FEATURES TAB/ACCORDION */
.deep-features-section {
    background: var(--background-light);
}

.tabs-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.tab-btn {
    text-align: left;
    padding: 1rem;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: var(--background-light);
    color: var(--text-main);
}

.tab-btn.active {
    background: #EFF6FF;
    color: var(--accent-color);
    font-weight: 600;
}

.tabs-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.what-it-does h4,
.why-it-matters h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tab-pane ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.tab-pane ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.why-it-matters p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    background: #F0FDF4;
    /* Green 50 */
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-security);
}

/* SECURITY SECTION */
.security-section {
    background: var(--primary-color);
    color: white;
}

.security-section .section-title {
    color: white;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.sec-card h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.sec-card ul li {
    margin-bottom: 1rem;
    color: #CBD5E1;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.sec-card ul li i {
    color: var(--accent-control);
    margin-top: 4px;
}


/* COMPARISON TABLE (Shared styled refined) */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th {
    background: #F1F5F9;
    color: var(--primary-color);
    padding: 1.25rem;
    text-align: left;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.deployment-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* TRANSFORMATION SPLIT */
.transformation-section {
    background: white;
}

.split-screen {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.split-side {
    flex: 1;
    padding: 4rem;
}

.split-side h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.split-side ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.split-side.before {
    background: #F8FAFC;
    border-right: 1px solid var(--border-color);
}

.split-side.before ul li i {
    color: #EF4444;
}

.split-side.after {
    background: #F0FDF4;
}

.split-side.after ul li i {
    color: #10B981;
}

/* METRICS */
.metrics-section {
    padding: 4rem 0;
    background: var(--surface-white);
    border-top: 1px solid var(--border-color);
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.metric-val {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FINAL CTA */
.final-cta-section.dark-mode {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-section h3 {
    color: white;
    font-weight: 400;
    font-size: 1.5rem;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    color: #CBD5E1;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}


/* FOOTER (Shared) */
.site-footer {
    background: var(--surface-white);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* DEMO MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .roi-container {
        flex-direction: column;
        gap: 2rem;
    }

    .tabs-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
        padding-right: 0;
    }

    .tab-btn {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 6rem 0 4rem;
        overflow: hidden;
        /* Prevent horizontal scroll again */
    }

    .float-card {
        position: static;
        margin-top: 1rem;
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .mobile-hidden {
        display: none;
    }

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

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

    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-screen {
        flex-direction: column;
    }

    .metrics-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Existing pricing page compat */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cost-card {
    background: var(--surface-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.cost-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.recovery-statement {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}


/* Pricing Section */
.pricing-section {
    background-color: var(--surface-white);
}

.pricing-controls {
    text-align: center;
    margin-bottom: 4rem;
}

.model-toggle {
    display: inline-flex;
    background: #F1F5F9;
    padding: 0.25rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border-radius: 99px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.tooltip-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tooltip-text i {
    color: var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: var(--gradient-popular);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.card-header {
    margin-bottom: 2rem;
    min-height: 80px;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.price-display {
    margin-bottom: 2rem;
}

.amount {
    font-size: 1.5rem;
    /* Base size */
    font-weight: 700;
    color: var(--primary-color);
}

.tier-business .amount {
    font-size: 1.75rem;
}

.billing-cycle,
.alt-currency {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.feature-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-list li i {
    color: var(--accent-color);
    margin-top: 4px;
}


/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #F8FAFC;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    /* Hidden by default */
    line-height: 1.6;
}

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

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.toggle-icon {
    transition: transform 0.2s;
    font-size: 1.25rem;
}


/* Value Justification */
.value-justification {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.value-justification .section-title {
    color: white;
}

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

.justification-reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reason-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reason-item i {
    color: #4ADE80;
    /* Green accent */
}

.value-line {
    font-size: 1.5rem;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* CTA BOX FOR PRICING PAGE (Keep just in case) */
.cta-box {
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&q=80') center/cover;
    /* Generic subtle tech background or pattern */
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
}

.big-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}