/* ========================================
   CHAMPION ASCENDANT - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --red: #B22222;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --dark-bg: #121212;
    --medium-bg: #1A1A1A;
    --border: #333333;
    --primary: #1a3a6c;
    --secondary: #c41e3a;
    --light: #f5f7fa;
    --accent: #3498db;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--red);
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
}

/* ========================================
   NAVIGATION
   ======================================== */

nav {
    background: var(--charcoal);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

nav a.active {
    background: var(--gold);
    color: var(--charcoal);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c9a42f;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(178, 34, 34, 0.1) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 20px;
}

.stat-card h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: var(--medium-bg);
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    border-left: 4px solid var(--red);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
}

/* Solution Section */
.solution {
    background: radial-gradient(circle at center, rgba(178, 34, 34, 0.05) 0%, transparent 70%);
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    border-top: 4px solid var(--gold);
}

.solution-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Home Pricing Section */
.pricing {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--gold);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card.popular:before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 0 12px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.pricing-period {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.pricing-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 10px;
}

.pricing-cta {
    text-align: center;
}

/* Credibility Section */
.credibility {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.credibility-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========================================
   CALCULATOR PAGE STYLES
   ======================================== */

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-logo {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.calculator-form-group {
    margin-bottom: 25px;
}

.calculator-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculator-input-icon {
    position: relative;
}

.calculator-input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.calculator-input,
.calculator-select {
    width: 100%;
    padding: 12px 15px;
    padding-left: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.calculator-input:focus,
.calculator-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.calculator-button {
    width: 100%;
    background: var(--gold);
    color: var(--charcoal);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.calculator-button:hover {
    background: #c9a42f;
    transform: translateY(-2px);
}

.calculator-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: none;
}

.calculator-result.show {
    display: block;
}

.calculator-result-content h3 {
    text-align: center;
    margin-bottom: 20px;
}

.gauge-container {
    position: relative;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 10px;
    transition: width 1s ease;
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 0.9rem;
}

.strength-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    margin: 5px;
    font-size: 0.9rem;
}

.comment-medium {
    text-align: center;
    font-style: italic;
    color: #ddd;
    margin: 20px 0;
}

/* Calculator Prototype Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    margin-bottom: 10px;
}

.accuracy-badge {
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 10px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.input-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.results-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.help-text {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 5px;
}

.range-value {
    color: var(--gold);
    font-weight: 600;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
}

.metric-title {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.confidence-interval {
    font-size: 0.9rem;
    color: #aaa;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.scenario-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.scenario-probability {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.scenario-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 5px 0;
}

.disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ffc107;
}

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

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hidden {
    display: none !important;
}

/* ========================================
   ANALYTICS PAGE STYLES
   ======================================== */

.analytics-page .container {
    max-width: 1400px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-group select, 
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.filter-group select:focus, 
.filter-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.8;
    color: #aaa;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ddd;
}

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

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--gold);
}

.card-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #aaa;
}

.chart-container {
    height: 400px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.formula-box {
    background: rgba(26, 58, 108, 0.3);
    padding: 15px;
    margin: 0 20px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.1rem;
    text-align: center;
    overflow-x: auto;
    color: #ddd;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.insight-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.insight-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.insight-title h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--gold);
}

.insight-title svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

/* ========================================
   PROSPECTS PAGE STYLES
   ======================================== */

.prospects-page {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.prospects-header {
    text-align: center;
    padding: 60px 0 40px;
    background: radial-gradient(circle at top right, rgba(178, 34, 34, 0.1) 0%, transparent 40%);
}

.prospects-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.prospects-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prospects-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.prospects-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prospects-table tr:last-child td {
    border-bottom: none;
}

.prospects-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.premium {
    position: relative;
}

.premium:after {
    content: 'PREMIUM';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--charcoal);
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 0 4px;
}

.notes {
    font-size: 0.95rem;
    opacity: 0.9;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 5px;
}

.badge-high {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.badge-medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.badge-low {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.roi-positive {
    color: #28a745;
    font-weight: 600;
}

.roi-negative {
    color: #dc3545;
    font-weight: 600;
}

.premium-lock {
    color: var(--gold);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
}

.premium-lock i {
    margin-right: 5px;
}

/* ========================================
   PRICING PAGE STYLES
   ======================================== */

.pricing-header {
    text-align: center;
    padding: 80px 0 40px;
    background: radial-gradient(circle at top right, rgba(178, 34, 34, 0.1) 0%, transparent 40%);
}

.pricing-header h1 {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

.pricing-tier {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.pricing-tier.popular {
    border: 2px solid var(--gold);
    transform: scale(1.03);
}

.pricing-tier.popular:before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 0 12px;
}

.tag {
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 10px;
}

.pricing-tier h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-tier ul {
    list-style: none;
    margin: 30px 0;
}

.pricing-tier li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.pricing-tier li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    background: var(--medium-bg);
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 50px;
    position: relative;
}

.faq h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--red);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border-left: 4px solid var(--gold);
}

.faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 50px;
    position: relative;
}

.testimonials h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--red);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    border-top: 4px solid var(--gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--charcoal);
    margin-right: 20px;
}

.testimonial-author h3 {
    font-size: 1.3rem;
    color: var(--gold);
}

.testimonial-author p {
    color: #aaa;
    font-size: 0.9rem;
}

.testimonial-content {
    font-style: italic;
    color: #ddd;
}

.rating {
    color: var(--gold);
    margin-top: 15px;
}

/* CTA Section */
.cta {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #aaa;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--charcoal);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .prospects-table {
        display: block;
        overflow-x: auto;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .prospects-header {
        padding: 40px 0 20px;
    }
    
    .pricing-tiers {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-form-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    nav li {
        margin: 5px;
    }
    
    .metrics-container {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-container {
        height: 250px;
        padding: 10px;
    }
    
    .prospects-table th, 
    .prospects-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .scenario-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-header h1 {
        font-size: 2.5rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
}

/* Fix for Plotly charts in dark mode */
.js-plotly-plot .plotly .main-svg {
    background-color: transparent !important;
}