/* --- CSS Reset & Base Styles --- */
:root {
    --blue-primary: #0a6ebd;
    --blue-dark: #085c9d;
    --grey-dark: #333333;
    --grey-medium: #555;
    --grey-light: #f4f7f9;
    --grey-border: #e1e6ea;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    background-color: var(--white);
    color: var(--grey-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Layout & Container --- */
.container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    padding: 80px 0;
    text-align: center;
}

.section-light {
    background-color: var(--white);
}

.section-grey {
    background-color: var(--grey-light);
}

h1, h2, h3 {
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--grey-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--grey-dark);
}

p {
    max-width: 650px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: var(--grey-medium);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-medium);
    max-width: 700px;
    margin-bottom: 50px;
}

/* --- Header / Hero Section --- */
.hero-header {
    padding: 100px 0;
    text-align: center;
}

.hero-header h1 {
    font-size: 3.5rem;
    color: var(--blue-primary);
    margin-bottom: 10px;
}

.hero-header .tagline {
    font-size: 1.3rem;
    color: var(--grey-medium);
    font-weight: 400;
}

/* --- Industry Icons Section --- */
.industry-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.industry-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}
.industry-icon .emoji {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 10px;
}
.industry-icon span {
    font-weight: 600;
    color: var(--grey-dark);
}

/* --- Stats / Proof Points Section --- */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.stat-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--grey-border);
    flex-basis: 250px;
    flex-grow: 1;
    max-width: 100%;
}
.stat-item .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-primary);
}
.stat-item .label {
    font-size: 1rem;
    color: var(--grey-medium);
    margin-top: 5px;
}

/* --- Benefits Section --- */
.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.benefits-list .icon {
    flex-shrink: 0;
    margin-right: 20px;
    color: var(--blue-primary);
    width: 28px;
    height: 28px;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 750px;
    margin: 40px auto 0;
    text-align: left;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.2s ease-in-out;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item .faq-content {
    padding: 0 20px 20px;
    color: var(--grey-medium);
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--blue-primary);
    color: var(--white);
}
.cta-section h2 {
    color: var(--white);
}
.cta-section .cta-subtitle {
    color: var(--white);
    opacity: 0.9;
}
.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--blue-primary);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.cta-button:hover {
    background-color: var(--grey-light);
}

/* --- Trust Indicators --- */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--grey-medium);
}
.trust-item .trust-emoji {
    font-size: 24px;
    line-height: 1;
}

/* --- Footer --- */
footer {
    background-color: var(--grey-dark);
    color: #ccc;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}
.footer-contact p {
    font-size: 1rem;
    color: #eee;
    margin-bottom: 10px;
}
.footer-contact a, .footer-links a {
    color: var(--white);
    text-decoration: none;
}
.footer-contact a:hover, .footer-links a:hover {
    text-decoration: underline;
}
.social-links {
    margin: 20px 0;
}
.social-links a {
    margin: 0 10px;
    display: inline-block;
}
.social-links svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: opacity 0.2s;
}
.social-links a:hover svg {
    opacity: 0.8;
}
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* --- General Page & Sticky Footer Layout --- */
.page-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-body main {
    flex-grow: 1; /* Pushes footer down */
}
.page-header {
    padding: 60px 0;
    text-align: center;
    background-color: var(--grey-light);
    border-bottom: 1px solid var(--grey-border);
}
.page-header h1 {
    font-size: 2.5rem;
    color: var(--grey-dark);
}

/* --- Legal Page Styles --- */
.legal-content {
    padding: 60px 0;
    text-align: left;
}
.legal-content h2 {
    font-size: 1.8rem;
    color: var(--blue-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--grey-border);
    padding-bottom: 10px;
}
.legal-content h2:first-of-type {
    margin-top: 0;
}
.legal-content p, .legal-content ul {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}
.legal-content ul {
    list-style-position: inside;
    padding-left: 10px;
}
.legal-content li {
    margin-bottom: 10px;
}
.legal-content a {
    color: var(--blue-primary);
    font-weight: 600;
}
.back-button {
    display: inline-block;
    background-color: var(--blue-primary);
    color: var(--white) !important;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin-bottom: 20px;
}
.back-button:hover {
    background-color: var(--blue-dark);
    text-decoration: none;
}

/* --- Demo Page Form Styles --- */
.demo-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--grey-border);
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--grey-dark);
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--grey-border);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}
.form-group input:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px rgba(10, 107, 189, 0.2);
}
.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: var(--blue-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.submit-button:hover {
    background-color: var(--blue-dark);
}

/* --- Thank You Page Styles --- */
.thank-you-content {
    padding: 60px 0;
}
.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--grey-light);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--grey-border);
}
.thank-you-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--grey-dark);
    margin: 0;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    h2, .page-header h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .hero-header {
        padding: 80px 0;
    }
    .hero-header h1 {
        font-size: 2.8rem;
    }
    .hero-header .tagline {
        font-size: 1.2rem;
    }
    .stats-container, .trust-indicators {
        gap: 20px;
    }
    .benefits-list li {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .faq-item summary {
        font-size: 1rem;
    }
    .legal-content h2 {
        font-size: 1.5rem;
    }
    .demo-form-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    .demo-form-container {
        padding: 20px;
    }
}
