/* =============================================================
   Site Web _Head.Soeurise - Styles CSS
   Version : 1.0
   ============================================================= */

/* Variables */
:root {
    --color-primary: #1a365d;
    --color-secondary: #3182ce;
    --color-accent: #38a169;
    --color-error: #e53e3e;
    --color-warning: #dd6b20;
    --color-bg: #f7fafc;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-terminal-bg: #1a202c;
    --color-terminal-text: #68d391;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
html {
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--color-secondary);
}

/* Page courante dans le menu (navigation publique) */
.nav-menu a.nav-active {
    color: var(--color-secondary);
    font-weight: 600;
    border-bottom: 2px solid var(--color-secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.hero .btn-primary:hover {
    background: var(--color-bg);
}

/* Features */
.features {
    padding: 4rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.feature-card p {
    margin-bottom: 1rem;
}

.feature-card .btn {
    margin-top: 0.5rem;
}

.learn-more {
    text-align: center;
    margin-top: 2rem;
}

.btn-link {
    background: transparent;
    color: var(--color-secondary);
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Scope */
.scope {
    background: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.scope-text {
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Terminal / Chat */
.terminal {
    background: var(--color-terminal-bg);
    color: var(--color-terminal-text);
    font-family: var(--font-mono);
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-y: auto;
}

.terminal-prompt {
    color: var(--color-secondary);
}

.terminal-input {
    background: transparent;
    border: none;
    color: var(--color-terminal-text);
    font-family: var(--font-mono);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

/* Auth pages */
.auth-section {
    padding: 4rem 0;
}

.auth-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox input {
    width: auto;
}

.form-group small {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-text-light);
}

.auth-footer a {
    color: var(--color-secondary);
}

.auth-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Messages */
.message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.message.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h1 {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.session-info {
    background: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
}

.session-info .timer {
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--color-accent);
}

.session-timer {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--color-accent);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-card h2 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.dashboard-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--color-text);
}

.btn-secondary:hover:not(:disabled) {
    background: #cbd5e0;
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fec-summary {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.fec-summary h4 {
    margin-bottom: 0.5rem;
}

.fec-summary ul {
    list-style: none;
}

.fec-summary li {
    padding: 0.25rem 0;
}

/* Chat */
.chat-card {
    grid-column: span 1;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: var(--color-terminal-bg);
    border-radius: 0.375rem 0.375rem 0 0;
    font-size: 0.9rem;
}

.message-user, .message-bot {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    max-width: 85%;
}

.message-user {
    background: var(--color-secondary);
    color: white;
    margin-left: auto;
}

.message-bot {
    background: #2d3748;
    color: var(--color-terminal-text);
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #2d3748;
    border-radius: 0 0 0.375rem 0.375rem;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

.chat-input button {
    padding: 0.5rem 1rem;
}

/* Reports */
#report-container {
    margin-top: 1rem;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.report-section h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.report-section table,
.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.report-section td,
.report-table td,
.report-table th {
    padding: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.report-section td:last-child,
.report-table td:last-child {
    text-align: right;
    font-family: var(--font-mono);
}

.report-section .total,
.report-table .subtotal {
    font-weight: 700;
    background: var(--color-bg);
}

.report-table .result {
    font-weight: 700;
    background: var(--color-primary);
    color: white;
}

.report-table th {
    text-align: left;
    background: var(--color-bg);
}

/* Expired info */
.expired-info {
    text-align: left;
    margin: 1.5rem 0;
}

.expired-info ul {
    margin: 1rem 0 1rem 1.5rem;
}

.expired-info li {
    padding: 0.25rem 0;
}

.message.warning {
    background: #fefcbf;
    color: #744210;
    border: 1px solid #f6e05e;
}

/* =============================================================
   Nouvelles pages publiques V2
   ============================================================= */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    opacity: 0.9;
}

/* Content sections */
.content-section {
    padding: 3rem 0;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.content-card ul {
    margin-left: 1.5rem;
}

.content-card li {
    padding: 0.25rem 0;
}

/* Features list (en-savoir-plus) */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.375rem;
}

.feature-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Cycle timeline (en-savoir-plus) */
.cycle-timeline {
    margin-top: 1rem;
}

.cycle-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cycle-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 2rem 0;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.cta-section .btn {
    margin: 0 0.5rem;
}

/* Fullscreen Chat */
.fullscreen-chat {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.chat-wrapper {
    width: 100%;
    max-width: 1000px;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    padding: 1.5rem;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.chat-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.chat-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.chat-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-body .chat-messages {
    flex: 1;
    border-radius: 0;
}

.chat-footer {
    padding: 1rem;
    background: var(--color-bg);
    border-top: 1px solid #e2e8f0;
}

.chat-input-form {
    display: flex;
    gap: 0.5rem;
}

.chat-input-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.chat-input-form input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.chat-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.chat-hint a {
    color: var(--color-secondary);
}

/* Journey Section (methode) */
.journey-section {
    padding: 3rem 0;
}

.journey-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.journey-step {
    text-align: center;
}

.journey-step .step-icon {
    width: 3rem;
    height: 3rem;
    background: #e2e8f0;
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.5rem;
}

.journey-step.active .step-icon {
    background: var(--color-secondary);
    color: white;
}

.journey-step .step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.journey-arrow {
    color: var(--color-text-light);
    font-size: 1.5rem;
}

.journey-details {
    display: grid;
    gap: 1.5rem;
}

.journey-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.journey-card.highlight {
    border-left: 4px solid var(--color-accent);
}

.journey-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.journey-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.journey-card li {
    padding: 0.25rem 0;
}

.journey-card .btn {
    margin-top: 0.5rem;
}

.important-note {
    padding: 1rem;
    background: #c6f6d5;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    color: #22543d;
}

/* Test FEC Page */
.test-section {
    padding: 3rem 0;
}

.test-card {
    max-width: 500px;
    margin: 0 auto 2rem;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.upload-zone {
    border: 2px dashed #e2e8f0;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--color-secondary);
    background: #ebf8ff;
}

.upload-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.upload-zone p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.file-name {
    font-weight: 500;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--color-error);
    font-size: 1.25rem;
    cursor: pointer;
}

/* Results */
#results-container {
    max-width: 900px;
    margin: 0 auto;
}

.results-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.results-card h2,
.results-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-table,
.preview-table {
    width: 100%;
    border-collapse: collapse;
}

.summary-table td,
.preview-table td,
.preview-table th {
    padding: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.summary-table td:last-child,
.preview-table td:last-child {
    text-align: right;
    font-family: var(--font-mono);
}

.preview-table .section-header th {
    background: var(--color-bg);
    font-weight: 600;
}

.preview-table .total {
    font-weight: 700;
    background: var(--color-bg);
}

.preview-table .result {
    font-weight: 700;
    background: var(--color-primary);
    color: white;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.cta-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cta-card li {
    padding: 0.25rem 0;
}

.cta-card .btn-primary {
    background: white;
    color: var(--color-primary);
}

.info-section {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
}

.info-section h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-section p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* =============================================================
   Zone Prospect - Landing page et sous-pages
   ============================================================= */

/* Prospect Hero */
.prospect-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.prospect-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.prospect-hero .hero-subtitle {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.session-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
}

.session-badge .timer {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
}

.session-badge .max-time {
    opacity: 0.8;
    font-size: 0.9rem;
}

.session-badge.warning {
    background: rgba(255, 193, 7, 0.3);
}

.session-badge.critical {
    background: rgba(220, 53, 69, 0.4);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Prospect Features Section */
.prospect-features {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.features-grid-prospect {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card-prospect {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.feature-card-prospect h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card-prospect > p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.feature-icon-large {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Prospect CTA */
.prospect-cta {
    padding: 2rem 0 3rem;
}

.cta-box {
    background: var(--color-bg);
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}


/* =============================================================================
   Landing page - Channels & Pricing
   ============================================================================= */

.channels {
    padding: 3rem 0;
    background: #f9fafb;
}

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

.channel-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.channel-card h3 {
    margin: 0 0 0.75rem;
    color: var(--color-primary);
    font-size: 1rem;
}

.channel-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.channel-featured {
    border: 2px solid var(--color-primary);
}

.pricing-overview {
    padding: 3rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card h3 {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
    font-size: 1.15rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0.5rem 0;
}

.pricing-amount span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.pricing-card > p {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.375rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.85rem;
    color: #4b5563;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-featured {
    border: 2px solid var(--color-primary);
    position: relative;
}
