@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

/* =============================================================================
   PITCHINTEL - CSS STYLESHEET
   ============================================================================= */

/* CSS Variables */
:root {
    --bg-dark: #EAEBED;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8F9FA;
    --bg-input: #FFFFFF;
    
    --text-primary: #222222;
    --text-secondary: #555555;
    --text-muted: #777777;
    
    --primary: #006989;
    --primary-dark: #005570;
    --primary-light: #0088b3;
    --primary-bg: rgba(0, 105, 137, 0.08);
    --primary-border: rgba(0, 105, 137, 0.2);
    
    --info: #22d3ee;
    --info-bg: rgba(34, 211, 238, 0.1);
    --info-border: rgba(34, 211, 238, 0.2);
    
    --success: #4ade80;
    --success-bg: rgba(74, 222, 128, 0.1);
    --success-border: rgba(74, 222, 128, 0.2);
    
    --warning: #fbbf24;
    --warning-bg: rgba(251, 191, 36, 0.1);
    --warning-border: rgba(251, 191, 36, 0.2);
    
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.1);
    --danger-border: rgba(239, 68, 68, 0.3);
    
    --purple: #a78bfa;
    --purple-bg: rgba(167, 139, 250, 0.1);
    --purple-border: rgba(167, 139, 250, 0.2);
    
    --border-color: rgba(0, 0, 0, 0.1);
    --border-light: rgba(0, 0, 0, 0.06);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 105, 137, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: var(--bg-card);
    text-decoration: none;
}

.btn-danger {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    color: var(--danger);
}

.btn-text {
    background: none;
    padding: 8px 12px;
    color: var(--text-secondary);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* =============================================================================
   FORMS
   ============================================================================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-row .flex-2 {
    flex: 2;
}

.form-row .form-actions {
    flex: 0 0 auto;
    min-width: auto;
}

/* =============================================================================
   ALERTS
   ============================================================================= */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success);
}

.alert-error {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    color: #fca5a5;
}

.alert-warning {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    color: var(--warning);
}

.alert a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-icon {
    font-size: 32px;
}

.nav-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    padding: 8px 16px;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--text-primary);
    text-decoration: none;
}

/* App Header */
.app-header {
    background: linear-gradient(135deg, #1a1f35 0%, #0d1220 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 8px;
}

.nav-item {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: all 0.2s;
}

.nav-item:hover {
    color: var(--text-primary);
    text-decoration: none;
}

.nav-item.active {
    color: var(--primary);
}

.admin-link {
    color: var(--danger) !important;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-dropdown {
    position: relative;
}

.user-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 8px;
}

.user-name {
    color: var(--text-primary);
    font-weight: 500;
}

.user-plan {
    font-size: 12px;
    color: var(--text-muted);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 180px;
    display: none;
    box-shadow: var(--shadow);
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-card-hover);
    text-decoration: none;
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 8px 0;
}

/* =============================================================================
   LANDING PAGE
   ============================================================================= */
.hero {
    padding: 80px 40px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-note {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

/* Features */
.features {
    padding: 60px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
}

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

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 48px;
}

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

.pricing-grid.compact {
    max-width: 1000px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    position: relative;
}

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

.pricing-card.current {
    border: 2px solid var(--success);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-badge.current-badge {
    background: var(--success);
}

.pricing-name {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-name {
    color: var(--primary);
}

.pricing-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features .check {
    color: var(--success);
}

/* CTA */
.cta {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid var(--primary-border);
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--border-light);
}

/* =============================================================================
   AUTH PAGES
   ============================================================================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-back {
    display: block;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.auth-header h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

/* =============================================================================
   APP PAGES
   ============================================================================= */
.app-main {
    padding: 40px 0;
}

.back-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.back-link:hover {
    color: var(--text-secondary);
}

.page-header {
    margin-bottom: 32px;
}

.page-header.centered {
    text-align: center;
}

.page-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-muted);
}

.page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header-row h1 {
    font-size: 28px;
    margin-bottom: 4px;
}

.page-header-row p {
    color: var(--text-muted);
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2,
.card-header h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 24px;
}

.section-icon {
    font-size: 20px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-light);
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
}

.stat-value small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.stat-primary { color: var(--primary); }
.stat-info { color: var(--info); }
.stat-secondary { color: var(--purple); }

.stat-action {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
}

/* Action Cards */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.2s;
}

.action-card:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.action-primary {
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
}

.action-secondary {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
}

.action-icon {
    font-size: 32px;
}

.action-content h3 {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.action-primary .action-content h3 { color: var(--primary); }
.action-secondary .action-content h3 { color: var(--info); }

.action-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Client List */
.client-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.client-item:hover {
    background: rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.client-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.client-desc {
    color: var(--text-muted);
    font-size: 13px;
}

.client-date {
    color: var(--text-muted);
    font-size: 12px;
}

/* Clients Table */
.clients-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.client-row {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.client-main {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-main:hover {
    text-decoration: none;
}

.client-url {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.client-actions {
    display: flex;
    gap: 8px;
}

/* =============================================================================
   PROFILE SECTIONS
   ============================================================================= */
.profile-section .card-header h3 {
    font-weight: 600;
}

.profile-section.spec-spots .card-header h3 {
    color: var(--warning);
}

.profile-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.info-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.info-item.info-highlight {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
}

.info-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.info-value {
    color: var(--text-primary);
    font-size: 14px;
}

.info-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-top: 16px;
}

.info-box p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Tags */
.tags-section {
    margin-top: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.tag-primary {
    background: var(--primary-bg);
    color: var(--primary-light);
    border: 1px solid var(--primary-border);
}

.tag-info {
    background: var(--info-bg);
    color: var(--info);
    border: 1px solid var(--info-border);
}

/* Demographics */
.demographics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.demo-item {
    padding: 14px;
    border-radius: var(--radius-sm);
}

.demo-highlight {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
}

.demo-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.demo-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Competitors */
.competitors-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competitor-card {
    background: var(--purple-bg);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.competitor-card h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.competitor-details {
    font-size: 13px;
}

.competitor-details p {
    margin-bottom: 6px;
}

.label-positive { color: var(--success); }
.label-negative { color: var(--danger); }
.label-neutral { color: var(--text-muted); }

.subsection-title {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 24px 0 12px;
}

/* Angles */
.angles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.angle-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px;
    border-left: 3px solid var(--purple);
}

.angle-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.angle-pitch {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Spec Spots */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.spot-card {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.spot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.spot-badge {
    background: var(--warning);
    color: var(--bg-dark);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.spot-style {
    color: var(--text-muted);
    font-size: 13px;
    flex: 1;
}

.copy-btn {
    background: transparent !important;
    border: 1px solid var(--warning-border) !important;
    color: var(--warning) !important;
}

.spot-script {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 14px;
    white-space: pre-wrap;
}

/* Objections */
.objections-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.objection-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.objection-q {
    color: var(--danger);
    font-size: 13px;
    margin-bottom: 6px;
}

.objection-a {
    color: var(--success);
    font-size: 13px;
}

/* Usage Badge */
.usage-badge {
    background: var(--bg-input);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Save Form */
.save-form {
    margin-bottom: 24px;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 24px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--primary-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: var(--primary-light);
    font-size: 14px;
}

/* FAQ */
.faq-section {
    max-width: 700px;
    margin: 60px auto 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.current-plan-banner {
    text-align: center;
    padding: 16px;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    color: var(--success);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .header-nav {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        min-width: 100%;
    }
    
    .client-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .client-main {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .client-actions {
        margin-top: 16px;
    }
    
    .spots-grid {
        grid-template-columns: 1fr;
    }
}
