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

:root {
    --sage: #7C9885;
    --sage-dark: #5F7866;
    --sage-light: #E5EFE6;
    --ivory: #FAF7F2;
    --sand: #F4F0E7;
    --stone: #E0DACE;
    --slate: #2C3E50;
    --ink: #1F2833;
    --mint: #E8F2EB;
    --peach: #FFF7EC;
    --success: #85C88A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--sand);
    color: var(--slate);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 64px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.lead {
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 24px;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--sage);
    color: white;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.primary-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(124, 152, 133, 0.25);
}

.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 28px;
    color: var(--sage-dark);
    font-weight: 700;
}

.brand-tagline {
    font-size: 13px;
    color: #6C7A89;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.site-nav a.active {
    color: var(--sage-dark);
}

.site-nav a:hover {
    background: var(--sage-light);
}

.nav-cta {
    background: var(--sage);
    color: white !important;
    padding: 10px 18px;
}

.hero {
    background: linear-gradient(135deg, var(--ivory), var(--sand));
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--ink);
}

.hero-subtext {
    font-size: 18px;
    color: #4a4f57;
    margin-bottom: 16px;
}

.hero-note {
    background: white;
    border-left: 4px solid var(--sage);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cta-tagline {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ink);
}

.cta-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    font-style: italic;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(124, 152, 133, 0.2);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.executor-support {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.support-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.executor-subhead {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
}

.hero-highlights {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.hero-highlights li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    font-weight: 500;
}

.hero-card-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
    display: inline-block;
}

.features {
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.feature-card {
    background: var(--ivory);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.feature-cta {
    margin-top: 16px;
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--sage);
    color: var(--sage-dark);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.feature-cta:hover {
    background: var(--sage);
    color: white;
    transform: translateY(-1px);
}

.mission-narrative {
    background: var(--mint);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.mission-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.mission-card--wide {
    grid-column: span 2;
}

.mission-card--accent {
    background: var(--sage);
    color: white;
}

.mission-card--accent .eyebrow {
    color: white;
}

.proof-placeholders {
    background: var(--peach);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.modal-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px dashed rgba(44, 62, 80, 0.2);
    min-height: 220px;
}

.ghost-btn {
    margin-top: 16px;
    padding: 12px 20px;
    border: 1px solid var(--sage);
    background: transparent;
    color: var(--sage-dark);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.ghost-btn:hover {
    background: var(--sage);
    color: white;
}

.cta-panel {
    text-align: center;
    background: white;
}

.cta-panel--secondary {
    background: var(--ivory);
}

.cta-text {
    max-width: 640px;
    margin: 0 auto 20px auto;
    color: #4C5A63;
}

.cta-footnote {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

.toolkit {
    background: var(--sand);
}

.toolkit-intro {
    max-width: 720px;
    margin-bottom: 32px;
}

/* Immediate Actions Section */
.section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.section-number {
    width: 36px;
    height: 36px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
}

.urgent-badge {
    background: #FEF3E2;
    color: #D97706;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

/* Task List */
.task {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: #FAFAFA;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.task:hover {
    background: #F5F5F5;
    transform: translateX(4px);
}

.task-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--sage);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.task-checkbox.checked {
    background: var(--sage);
}

.task-checkbox.checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    top: -2px;
    left: 4px;
}

.task-content {
    flex: 1;
}

.task-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.task-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.task-time {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Your Rights & Authority Section */
.authority-badge {
    background: var(--sage);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.rights-content {
    margin-top: 24px;
}

.key-facts {
    margin-bottom: 24px;
}

.key-facts h3 {
    font-size: 18px;
    color: var(--slate);
    margin-bottom: 16px;
}

/* Collapsible sections */
.collapsible-section {
    margin-bottom: 16px;
}

.expand-btn {
    width: 100%;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    font-weight: 500;
}

.expand-btn:hover {
    border-color: var(--sage);
    background: #FAFAFA;
}

.expand-btn.expanded {
    border-color: var(--sage);
    background: #F0FAF0;
}

.expand-icon {
    transition: transform 0.3s;
    color: var(--sage);
}

.expand-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    margin-top: 12px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fact-item {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

.pressure-item {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.pressure-item:hover {
    border-color: var(--sage);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pressure {
    font-style: italic;
    color: #888;
    margin-bottom: 8px;
}

.response {
    color: var(--slate);
    font-weight: 500;
    padding-left: 20px;
}

.important-notes {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 8px;
}

.important-notes ul {
    margin: 0;
    padding-left: 20px;
}

.important-notes li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.reminder-box {
    background: #FFF9F0;
    border-left: 4px solid var(--sage);
    padding: 16px 20px;
    border-radius: 4px;
    color: var(--slate);
    line-height: 1.6;
}

/* Discovery Section */
.discovery-intro {
    background: #FFF9F0;
    border-left: 4px solid var(--sage);
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.discovery-intro h3 {
    margin-bottom: 8px;
    color: var(--slate);
}

.discovery-intro p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

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

.discovery-item {
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.discovery-item:hover {
    border-color: var(--sage);
    background: #FAFAF8;
}

.discovery-item.completed {
    background: #F0FAF0;
    border-color: var(--success);
}

.discovery-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.discovery-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.discovery-status {
    font-size: 12px;
    color: #999;
}

.discovery-status.complete {
    color: var(--success);
    font-weight: 600;
}

/* Discovery Questions */
.question-card {
    background: white;
    border: 2px solid var(--sage);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
}

.question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.answer-options {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.answer-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #E5E5E5;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.answer-btn:hover {
    border-color: var(--sage);
    background: #FAFAF8;
}

.answer-btn.selected {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

/* Progress Bar */
.progress-bar {
    height: 8px;
    background: #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 30;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: white;
    border-radius: 16px;
    padding: 32px;
    width: min(480px, 90vw);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 40;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: var(--slate);
}

.page-hero {
    background: white;
    text-align: left;
}

.page-hero h1 {
    font-size: 36px;
    color: var(--ink);
    margin-bottom: 16px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.story-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: start;
}

.contact-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.contact-card ul {
    margin-top: 16px;
    padding-left: 20px;
    color: #4c5a63;
}

.contact-card li {
    margin-bottom: 6px;
}

.survey-benefits {
    background: var(--ivory);
}

.survey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.survey-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.survey-card h3 {
    margin-bottom: 12px;
}

.survey-prep {
    background: white;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.prep-list {
    margin-top: 16px;
    padding-left: 20px;
    color: #4c5a63;
}

.prep-card {
    background: var(--mint);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.prep-steps {
    margin: 0 0 16px 18px;
    color: #4c5a63;
}

.prep-note {
    font-size: 14px;
}

.survey-highlights {
    background: var(--peach);
}

.survey-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.highlight-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.highlight-card ul {
    margin-top: 12px;
    padding-left: 20px;
    color: #4c5a63;
}

.pricing-overview {
    background: var(--ivory);
}

.pricing-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.value-card ul {
    margin-top: 16px;
    padding-left: 20px;
    color: #4c5a63;
}

.value-card li {
    margin-bottom: 8px;
}

.value-card--primary {
    grid-column: span 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
}

.price-pill--light {
    background: var(--peach);
    color: var(--slate);
}

.pricing-list {
    margin-top: 16px;
    padding-left: 20px;
    color: #4c5a63;
}

.pricing-list li {
    margin-bottom: 8px;
}

.comparison {
    background: var(--mint);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.comparison-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.comparison-card ul {
    margin-top: 12px;
    padding-left: 18px;
    color: #444;
}

.comparison-card--highlight {
    border-color: transparent;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: white;
    box-shadow: 0 25px 50px rgba(124, 152, 133, 0.4);
}

.comparison-card--highlight h3 {
    color: white;
}

.comparison-card--highlight ul {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-card--highlight li {
    margin-bottom: 8px;
}

.contact-form {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid rgba(44, 62, 80, 0.2);
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-message {
    font-size: 14px;
    color: var(--sage-dark);
    display: none;
}

.status-message.visible {
    display: block;
}

.site-footer {
    background: #1f2a2f;
    color: white;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
}

.footer-mission {
    margin-top: 8px;
    color: #d5dbe3;
    font-size: 14px;
}

.footer-links,
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.legal-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover,
.legal-links a:hover {
    text-decoration: underline;
}

.legal-links {
    font-size: 14px;
}

.footer-note {
    grid-column: 1 / -1;
    font-size: 13px;
    color: #a1acbb;
}

.pilot-invite {
    background: var(--sage-dark);
    color: white;
}

.pilot-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.pilot-card p {
    color: #eef2ea;
    font-size: 18px;
}

.pilot-card .primary-cta {
    align-self: center;
    background: white;
    color: var(--sage-dark);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: var(--slate);
    margin-bottom: 8px;
    font-size: 28px;
}

.legal-content h2 {
    color: var(--slate);
    margin: 32px 0 16px 0;
    font-size: 20px;
    border-bottom: 2px solid var(--sage);
    padding-bottom: 8px;
}

.legal-content h3 {
    color: var(--slate);
    margin: 24px 0 12px 0;
    font-size: 16px;
}

.legal-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--sage);
    text-decoration: underline;
}

.important-disclaimer {
    background: #FFF3CD;
    border-left: 4px solid #FFA500;
    padding: 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.important-disclaimer p {
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-notice {
    background: #F0FAF0;
    border-left: 4px solid var(--sage);
    padding: 20px;
    margin: 32px 0;
    border-radius: 4px;
}

.legal-notice p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--slate);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    color: var(--sage);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
        margin: 16px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-nav {
        width: 100%;
    }
    
    section {
        padding: 48px 0;
    }
    
    .mission-card--wide {
        grid-column: span 1;
    }
    
    .value-card--primary {
        grid-column: span 1;
    }
    
    .modal {
        width: 90vw;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Feedback Section */
.feedback {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 40px;
}

.feedback-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feedback-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.feedback-btn {
    padding: 12px 32px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--slate);
}

.feedback-btn:hover {
    transform: translateY(-2px);
    border-color: var(--sage);
}

.feedback-btn.selected.yes {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

.feedback-btn.selected.no {
    background: #F5F5F5;
    color: var(--slate);
    border-color: var(--slate);
}

.feedback-text {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.feedback-submit-btn {
    margin-top: 12px;
    padding: 10px 24px;
    background: var(--sage);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.feedback-submit-btn:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
}

/* Triage Wizard */
.triage-hero {
    background: linear-gradient(135deg, var(--ivory), var(--sand));
}

.triage-wrapper {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 28px 80px rgba(32, 53, 44, 0.12);
    border: 1px solid rgba(44, 62, 80, 0.08);
    margin-bottom: 60px;
}

#triage-wizard {
    padding-top: 50px;
    max-width: 920px;
    margin: 0 auto;
}

.triage-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 50px 0;
}

.triage-step-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--slate);
    border: none;
    font-weight: 600;
}

.pill-dot {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid rgba(44,62,80,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-weight: 700;
    color: var(--slate);
}

.pill-label {
    font-size: 14px;
    color: var(--slate);
}

.triage-connector {
    flex: 1;
    height: 2px;
    background: rgba(44,62,80,0.15);
    border-radius: 999px;
}

.triage-step-pill.active .pill-dot {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
    box-shadow: 0 8px 24px rgba(124, 152, 133, 0.35);
}

.triage-step-pill.active .pill-label {
    color: var(--sage-dark);
}

.triage-step-pill.completed .pill-dot {
    background: var(--sage-light);
    border-color: var(--sage);
    color: var(--sage-dark);
}

.triage-step-pill.completed .pill-label {
    color: var(--sage-dark);
}

.triage-connector.completed {
    background: var(--sage);
}

.triage-card {
    background: white;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 20px;
    padding: 28px;
}

.triage-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.triage-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 14px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
}

.triage-option:hover {
    border-color: var(--sage);
    background: var(--sage-light);
    transform: translateY(-1px);
}

.triage-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 12px;
}

.triage-status {
    margin-top: 12px;
    font-size: 14px;
    color: #c0392b;
}

.triage-summary {
    background: var(--ivory);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(44,62,80,0.08);
    margin-top: 20px;
    display: none;
}

.triage-intro {
    margin-bottom: 24px;
}

.trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: #4C5A63;
    font-size: 14px;
}

.trust-row-centered {
    justify-content: center;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--sage);
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: -1px;
}

.triage-title {
    font-size: 28px;
    line-height: 1.3;
    color: var(--ink);
    margin: 16px 0 8px 0;
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 16px;
    }
    
    .section {
        padding: 20px;
    }
    
    .discovery-grid {
        grid-template-columns: 1fr;
    }
    
    .answer-options {
        flex-direction: column;
    }
}
