/* FAQ styles - remove accordion plus signs */
.faq-question::after {
    display: none !important;
}

.faq-question::before {
    display: none !important;
}

/* Remove any accordion functionality */
.faq-question {
    cursor: default !important;
    position: relative;
}

.faq-q-marker {
    font-weight: 600;
    color: #E94560;
    margin-right: 0.5em;
}

/* ===== DEMO PAGE STYLES ===== */
/* Demo page specific subtitle spacing */
body .subtitle {
    margin-bottom: 2em !important;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    margin: 1em auto 8em auto !important;
    padding: 0;
    min-height: 400px;
    max-width: 1100px;
    width: 100%;
}

.demo-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.demo-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.demo-slider {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    position: relative;
    margin-bottom: 15px;
    min-height: 350px;
    min-width: 350px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    pointer-events: none;
    text-align: center;
    line-height: 1.4;
}

.demo-info {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.get-plan-btn {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Align buttons to the bottom of the demo cards */
.demo-item .get-plan-btn {
    margin-top: auto;
}

.coming-soon {
    opacity: 0.6;
}

.coming-soon .get-plan-btn {
    background: #6c757d;
    cursor: not-allowed;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 1em;
}

.contact-info h2 {
    margin-bottom: 0.8em;
    margin-top: 0.5em !important;
    color: #1A1A2E;
    font-size: 1.6em;
    font-weight: 300;
}

.contact-info p {
    margin-bottom: 0.5em !important;
    color: #666;
    line-height: 1.6;
}

.contact-info>p:last-of-type {
    margin-bottom: 0.8em !important;
}

.contact-methods {
    margin-top: 0.1em !important;
}

.contact-method {
    margin-bottom: 1.2em;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    transition: none;
}

.contact-method:hover {
    transform: none;
    box-shadow: none;
}

.contact-method h3 {
    margin-top: 0 !important;
    margin-bottom: 0.2em !important;
    color: #1A1A2E;
    font-size: 1.1em;
    font-weight: 600;
}

.contact-method p {
    margin-top: 0 !important;
    margin-bottom: 0.1em !important;
    color: #333;
}

.contact-method a {
    color: #0366d6;
    font-weight: 500;
}

.response-time {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 1.8em;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e4e8;
    margin-top: 0.5em;
}

.form-group {
    margin-bottom: 1.2em;
}

.form-group label {
    display: block;
    margin-bottom: 0.4em;
    font-weight: 500;
    color: #333;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e1e4e8;
    border-radius: 6px;
    font-size: 0.95em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #0366d6;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0256cc;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== INDEX PAGE SPECIFIC STYLES ===== */
/* Index page main layout */
body.index-page main {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 60px;
}

/* Hero Slider - 75% of main area */
.hero-slider {
    height: 75vh;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

/* Fixed hero overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    z-index: 10;
}

body.index-page .hero-overlay .hero-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 3em;
    font-weight: 700 !important;
    margin-bottom: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px !important;
}

body.index-page .hero-overlay .hero-title .light {
    font-weight: 300 !important;
    margin-left: 0.2em;
}

body.index-page .hero-overlay .hero-title .pro {
    font-weight: 700 !important;
    margin-left: 0.2em;
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Solutions page title styling */
h1 .solutions {
    font-weight: 700 !important;
    margin-left: 0.2em;
    color: #1A1A2E;
}

body.index-page .hero-overlay .hero-title .rubik {
    font-weight: 700 !important;
    margin-left: 0.2em;
    color: #e74c3c !important;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

body.index-page .hero-overlay .hero-subtitle {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 1.2em;
    font-weight: 400 !important;
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.85);
}

.hero-button {
    background: #E94560;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-shadow: none;
    width: 200px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

.hero-button:hover {
    background: #d63447;
    transform: translateY(-2px);
}

/* Content Section - 25% of main area */
.content-section {
    height: 25%;
    min-height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Ensure content section is always visible */
body.index-page .content-section {
    display: flex !important;
    visibility: visible !important;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #1A1A2E;
}

.feature-desc {
    font-size: 0.9em;
    color: #666;
}

/* ===== DOCS PAGE STYLES ===== */
.warning-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    margin: 15px 0;
    margin-bottom: 1em;
    margin-top: 1em !important;
    font-size: 0.9em;
    line-height: 1.5;
}

.warning-box:first-child {
    margin-top: 1.5em !important;
}

.warning-box h3 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.warning-box p {
    color: #495057;
    margin-bottom: 0.5em;
}

.warning-box h4 {
    color: #495057;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

.warning-box ol {
    margin-top: 0em;
    margin-bottom: 0.5em;
    padding-top: 0.5em;
    padding-left: 1.5em;
}

.warning-box li {
    margin-bottom: 0.3em;
    color: #495057;
}

.step-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 5px 0 15px 0 !important;
}

.content .step-box {
    margin-top: 5px !important;
    margin-bottom: 15px !important;
}

.step-box h3 {
    margin-top: 0 !important;
    margin-bottom: 0.8em !important;
}

.step-number {
    color: #333;
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.3em;
    display: inline;
}

.info-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 1em;
    color: #0c5460;
}

/* ===== COMPANY PAGE STYLES ===== */
.founder-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2em;
    border-radius: 12px;
    margin: 2em 0;
    position: relative;
}

.founder-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3em;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin: 0 0 1em 0;
    position: relative;
}

.founder-quote::before {
    display: none;
}

.founder-signature {
    text-align: right;
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
    color: #34495e;
    font-weight: 600;
    margin-top: 1em;
}

/* === 404 Page Specific Styles === */
.note-item .get-plan-btn {
    margin-top: auto !important;
}

/* System Requirements section - override flex auto margin */
.notes-grid .note-item .get-plan-btn {
    margin-top: 0 !important;
    margin-bottom: 1em !important;
}

/* 404 Hero Section */
.error-hero {
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 0;
    text-align: center;
}

.error-hero h2 {
    margin-top: 0;
}

.error-hero p.intro-text {
    font-size: 1.1em;
}

.error-hero p.signature {
    text-align: center;
    font-style: italic;
    margin-top: 1.5em;
    color: #666;
}

/* 404 What Happened Section */
.error-what-happened {
    margin-top: -30px !important;
    margin-bottom: 0.8em !important;
}

.error-info h3 {
    margin-top: 0;
}

.error-info ul {
    text-align: left;
    margin: 1em 0;
    padding-left: 1.2em;
}

/* 404 Support Section */
.error-support-center {
    text-align: center;
    margin-top: 1em;
}

/* === Solutions Page - Feature Comparison Table Styles === */
.solutions-comparison-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 2em 0 !important;
    background: white !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    display: table !important;
    table-layout: fixed !important;
}

.solutions-comparison-table thead {
    display: table-header-group !important;
}

.solutions-comparison-table tbody {
    display: table-row-group !important;
}

.solutions-comparison-table tr {
    display: table-row !important;
    width: 100% !important;
}

.solutions-comparison-table th,
.solutions-comparison-table td {
    display: table-cell !important;
    padding: 12px 15px !important;
    text-align: center !important;
    border-bottom: 1px solid #e1e4e8 !important;
    font-size: 0.9em !important;
    vertical-align: middle !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    writing-mode: horizontal-tb !important;
    direction: ltr !important;
}

.solutions-comparison-table th:first-child,
.solutions-comparison-table td:first-child {
    text-align: left !important;
    width: 25% !important;
}

.solutions-comparison-table th:not(:first-child),
.solutions-comparison-table td:not(:first-child) {
    width: 25% !important;
}

.solutions-comparison-table th {
    background: #f6f8fa !important;
    font-weight: bold !important;
    color: #333 !important;
}

.solutions-comparison-table .feature-name {
    text-align: left !important;
    font-weight: 500 !important;
    background: #fafbfc !important;
    width: 25% !important;
}

.solutions-comparison-table .standard-col {
    background: rgba(3, 102, 214, 0.05) !important;
}

.solutions-comparison-table .pro-col {
    background: rgba(255, 193, 7, 0.05) !important;
}

.solutions-comparison-table .enterprise-col {
    background: rgba(40, 167, 69, 0.05) !important;
}

.solutions-comparison-table .check {
    color: #28a745 !important;
    font-size: 1.1em !important;
}

.solutions-comparison-table .cross {
    color: #dc3545 !important;
    font-size: 1.1em !important;
}

.solutions-comparison-table .limited {
    color: #ffc107 !important;
    font-size: 0.8em !important;
}

.solutions-comparison-table .price-row {
    font-weight: bold !important;
}

.solutions-comparison-table .price-row .standard-col {
    color: #0366d6 !important;
}

.solutions-comparison-table .price-row .pro-col {
    color: #e36209 !important;
}

.solutions-comparison-table .price-row .enterprise-col {
    color: #28a745 !important;
}

.solutions-comparison-table .cta-row {
    background: #f8f9fa !important;
    border-top: 2px solid #e1e4e8 !important;
}

.solutions-comparison-table .cta-row td {
    padding: 20px 12px !important;
}