/* CognitiveCore Page Styles */
@import url('hotelstate.css');

/* Additional CognitiveCore-specific styles */
.hero {
    padding: 6rem 0 5rem;
}

.hero-img-wrapper {
    margin: 3rem auto;
    max-width: 700px;
}

.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: minmax(300px, 400px) 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.problem-image {
    position: sticky;
    top: 2rem;
}

.problem-content {
    max-width: 900px;
}

.section-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
    display: grid;
    gap: 16px;
}

.problem-list li {
    padding-left: 36px;
    margin-bottom: 0;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.problem-list li::before {
    content: none;
}

.problem-list li .bullet-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border: 2px solid #ffd93d;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-list li .bullet-icon svg {
    width: 14px;
    height: 14px;
    stroke: #ffd93d;
    stroke-width: 2.5;
    fill: none;
}

.cost-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #0B2036;
}

.how-content {
    max-width: 1000px;
    margin: 0 auto;
}

.how-content h4 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.feature-block {
    margin-bottom: 2rem;
}

.feature-block h5 {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.plus-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.feature-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Timely Insights Card */
.timely-insights-card {
    background: #07172C;
    border: 2px solid rgba(205, 168, 51, 0.3);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 0 auto 4rem;
    max-width: 900px;
}

.icon-placeholder {}

.timely-insights-card h5 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timely-insights-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Patterns Section */
.patterns-section {
    margin: 4rem auto;
    max-width: 1000px;
}

.patterns-section h4 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pattern-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(205, 168, 51, 0.3);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
    border-radius: 8px;
}

.pattern-card h5 {
    color: var(--gold);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pattern-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.evolution-message {
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 4rem;
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--gold);
}

/* Intelligence Table Section */
.intelligence-table-section {
    padding: 5rem 0;
}

.table-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(205, 168, 51, 0.3);
    border-radius: 16px;
    padding: 3rem;
}

.intelligence-table {
    margin: 3rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #07172C;
    border: 2px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
}

th {
    background: rgba(205, 168, 51, 0.2);
    color: var(--gold);
    font-weight: 700;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
}

td {
    padding: 1.5rem;
    border-top: 1px solid rgba(205, 168, 51, 0.2);
    font-size: 1.05rem;
    line-height: 1.7;
}

tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Under the Hood Section */
.under-hood {
    padding: 5rem 0;
    background: var(--navy-dark);
}

.featured-capability {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(205, 168, 51, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.icon-small {
    width: 80px;
    height: 80px;
}

.featured-capability h5 {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.capability-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(205, 168, 51, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.capability-card .icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.capability-card h5 {
    color: var(--gold);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.capability-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.closing-message {
    font-family: var(--font-body);
    font-weight: 600;
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--white);
}

/* Competitive Moat Section */
.competitive-moat {
    padding: 5rem 0;
}

.moat-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    max-width: 1000px;
    margin: 2rem auto 1rem;
    text-align: left;
}

.moat-description {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
}

.moat-grid {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.moat-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
    text-align: left;
    margin-top: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(205, 168, 51, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    transition: background 0.3s ease;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

/* Explore Systems Section */
.explore-systems {
    padding: 5rem 0;
}

.explore-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.system-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(205, 168, 51, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.system-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(205, 168, 51, 0.2);
}

.system-card h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.system-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.system-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.system-card a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    text-align: center;
}

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

.final-cta h3 {
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: #E5C04A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 168, 51, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: rgba(205, 168, 51, 0.1);
}

/* Responsive Styles */
@media (max-width: 960px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-image {
        position: static;
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .moat-grid>div:first-child {
        order: -1;
    }

    .timely-insights-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .patterns-grid {
        grid-template-columns: 1fr;
    }

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

    .systems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Split CTA h1 into 2 lines on mobile */
    .final-cta-content h1 {
        white-space: normal !important;
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
}