/* SecureBriefing - Nomadier Family Styles */
/* Sage green palette + security trust elements */

:root {
    --sage-green: #6b9b7f;
    --sage-dark: #4a6b5a;
    --sage-light: #a8c5b5;
    --charcoal: #2d3748;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --cream: #fafaf9;
    --border: #e2e8f0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
}

.header-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: auto;
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.hero h1 em {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: var(--sage-dark);
    font-weight: 400;
}

.subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Props */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

.value-prop .check {
    color: var(--sage-green);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--sage-dark);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 30px;
}

.cta-button:hover {
    background: var(--sage-green);
    transform: translateY(-2px);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-icon {
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Problem Section */
.problem {
    background: var(--cream);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-statement {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.problem-statement strong {
    color: var(--sage-dark);
    font-weight: 600;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--cream);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-links .separator {
    margin: 0 12px;
    color: var(--text-light);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .header-tagline {
        display: none;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 15px;
    }
    
    .problem-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}

/* Assessment Page Styles */
.assessment-container {
    min-height: 70vh;
    padding: 60px 20px;
    background: var(--cream);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.assessment-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--sage-green);
    transition: width 0.3s ease;
}

.question-block {
    margin-bottom: 30px;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-button {
    background: var(--cream);
    border: 2px solid var(--border);
    padding: 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.option-button:hover {
    border-color: var(--sage-green);
    background: var(--white);
}

.option-button.selected {
    border-color: var(--sage-green);
    background: var(--sage-light);
}

.assessment-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--sage-green);
}

.btn-secondary {
    background: var(--cream);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border);
}

.email-gate {
    text-align: center;
    padding: 40px;
}

.email-gate h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.email-gate p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.email-input {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    margin-bottom: 20px;
}

.email-input:focus {
    outline: none;
    border-color: var(--sage-green);
}
