:root {
    --navy: #1f2b59;
    --gold: #ffb400;
    --text: #222222;
    --muted: #666666;
    --bg: #f7f7f7;
    --white: #ffffff;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: 20px auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.logo-image {
    height: 30px;
    width: auto;
}

body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #f5f5f7;
    color: #222;
    scroll-behavior: smooth;
}

/* Header */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ececec;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner {
    background-color: #ffb400;
    color: #1f2b59;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.container {
    /*width: 90%;
    max-width: 1100px;*/
    width: min(1100px, calc(100% - 40px));
    margin: auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #1f2b59;
    font-size: 24px;
    font-weight: bold;
}
.logo span {
    color: var(--gold);
}

nav a {
    /*color: white;*/
    color: #1f2b59;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}
nav a:hover {
    color: #ffb400;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px 60px 20px;
    background: white;
    color: var(--text);
    min-height: auto;
}

.eyebrow {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 20px auto;
    color: var(--navy);
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--muted);
    padding: 20px;
}

.hero-features {
    font-size: 14px;
}

.hero-features span::before {
    content: "✓ ";
    color: #ffb400;
    font-weight: bold;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: #ffb400;
    color: #1f2b59;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}
.btn-primary:hover {
    background-color: #ffcf48;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #1f2b59;
    border-radius: 6px;
    text-decoration: none;
    color: #1f2b59;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: #1f2b59;
    color: white;
}

.btn-disabled {
    display: inline-block;
    padding: 12px 25px;
    background: #d1d5db;
    color: #6b7280;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    cursor: not-allowed;
    pointer-events: none;
}

/* Sections */
.info-section {
    padding: 20px;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    min-width: 0;
    max-width: none;
}

.feature-card h4 {
    color: var(--navy);
}

/* Demo */
#chat-container iframe {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

/* Pricing */
.pricing-section {
    text-align: center;
}

.pricing-features {
    font-size: 14px;
}

.price {
    font-size: 1.8rem;
    color: #1f2b59;
}

#faq .faq-list {
    max-width: 100%;
}

#faq .qa-item {
    margin-bottom: 1px dashed #cfd8e3;
}


#faq .qa-item:last-child {
    border-bottom: none;
}

#faq .qa-question {
    margin: 0;
    padding: 22px 30px;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    color: #355070;
    position: relative;
    transition: background 0.2s;
}

#faq .qa-question::before {
    content: "•";
    color: #4a90e2;
    font-size: 1.4rem;
    margin-right: 15px;
}

#faq .qa-question::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

#faq .qa-answer {
    display: none;
    padding: 0 60px 25px 60px;
    text-align: left;
    color: #666;
    line-height: 1.7;
}

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

#faq .qa-item.active .qa-question::after {
    content: "−";
}

/* Contact */
.contact-section a {
    color: #ffb400;
    text-decoration: none;
}
.contact-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #142045;
    color: #aaa;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.notice {
    margin-top: 30px;
    padding: 24px 28px;

    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #ffb400;

    border-radius: 12px;

    color: #555;
    line-height: 1.7;

    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
    font-size: 14px;
}

.notice strong {
    display: block;
    margin-bottom: 10px;

    color: #1f2b59;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {

    .section-card {
        padding: 24px;
    }

    .hero {
        padding: 40px 10px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

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

}
