/* Best Hotel Investment Platforms 2026 - Comparison Page Styles */

:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-dark: #020617;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --green: #10b981;
    --red: #ef4444;
    --blue: #3b82f6;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

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

.mobile-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: var(--gray-100);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.2);
    color: var(--gold-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-300);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Summary Section */
.summary-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.summary-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.summary-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

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

.summary-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
    position: relative;
}

.summary-card.winner {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.rank-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.rank-1 {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.rank-2 {
    background: var(--gray-300);
    color: var(--gray-700);
}

.rank-3 {
    background: var(--gray-200);
    color: var(--gray-700);
}

.summary-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.summary-card .score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.summary-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.strengths {
    margin-top: 1rem;
}

.strengths strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.5rem;
}

.strengths ul {
    list-style: none;
    padding-left: 0;
}

.strengths li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.summary-box > .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
}

.comparison-table thead {
    background: var(--navy);
    color: var(--white);
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th:first-child {
    border-top-left-radius: 1rem;
}

.comparison-table th:last-child {
    border-top-right-radius: 1rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.3s;
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table tbody tr.winner-row {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.comparison-table tbody tr.winner-row:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.comparison-table td {
    padding: 1.25rem 1rem;
}

.rank-cell {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy);
}

.platform-cell {
    font-weight: 600;
}

.platform-tag {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.score-cell {
    min-width: 150px;
}

.score-bar {
    display: block;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
}

.rating-excellent {
    background: var(--green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.rating-good {
    background: var(--blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.rating-fair {
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.rating-poor {
    background: var(--red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.detail {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.table-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-left: 4px solid var(--gold);
    border-radius: 0.5rem;
}

.table-note p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Detailed Rankings Section */
.detailed-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.platform-review {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.platform-review.winner-platform {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.platform-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.winner-platform .platform-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.platform-rank {
    font-size: 2rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.2);
    border-radius: 0.5rem;
}

.platform-title {
    flex: 1;
}

.platform-title h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.platform-score {
    font-size: 1.125rem;
    opacity: 0.9;
}

.platform-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
}

.tag-primary {
    background: rgba(255,255,255,0.3);
}

.platform-content {
    padding: 2.5rem;
}

.platform-overview {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

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

.detail-box {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.detail-box h4 {
    color: var(--navy);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-box h4 i {
    color: var(--gold);
}

.detail-box ul {
    list-style: none;
    padding-left: 0;
}

.detail-box li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.pros-list li {
    color: var(--green);
}

.cons-list li {
    color: var(--red);
}

.platform-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

/* Methodology Section */
.methodology-section {
    padding: 5rem 0;
    background: var(--white);
}

.criteria-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.criterion-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--gray-200);
}

.criterion-header h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.criterion-header h3 i {
    color: var(--gold);
}

.criterion-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.criterion-scores {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.score-row {
    display: grid;
    grid-template-columns: 150px 1fr 200px;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.score-row.winner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid var(--gold);
}

.platform-name {
    font-weight: 600;
    color: var(--navy);
}

.score-bar-wrapper {
    position: relative;
    height: 32px;
    background: var(--gray-200);
    border-radius: 0.5rem;
    overflow: hidden;
}

.score-row .score-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--blue), var(--blue));
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    transition: width 0.5s;
}

.score-row.winner .score-bar {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.score-reason {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.methodology-summary {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.methodology-summary h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.methodology-summary p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.methodology-summary ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.methodology-summary li {
    padding: 0.5rem 0;
    color: var(--gray-300);
}

.methodology-summary strong {
    color: var(--gold);
}

/* Decision Framework Section */
.decision-framework-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.decision-tree {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.decision-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.decision-step h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

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

.decision-option {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.option-header i {
    font-size: 1.5rem;
}

.option-header .fa-check-circle {
    color: var(--green);
}

.option-header .fa-times-circle {
    color: var(--red);
}

.option-header h4 {
    font-size: 1.25rem;
    color: var(--navy);
}

.platforms-available {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.platforms-available strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.platforms-available ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.platforms-available li {
    padding: 0.25rem 0;
}

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

.priority-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
}

.priority-card.winner {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.priority-card h4 {
    color: var(--navy);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.priority-card h4 i {
    color: var(--gold);
}

.priority-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.recommendation {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.recommendation strong {
    color: var(--navy);
}

.recommendation .platform-name {
    color: var(--gold);
}

.recommendation ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.recommendation li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

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

.risk-level {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
}

.risk-level.winner {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.risk-level h4 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-level h4 i {
    color: var(--gold);
}

.risk-level p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.recommendations {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
}

.recommendations ul {
    list-style: none;
    padding-left: 0;
}

.recommendations li {
    padding: 0.5rem 0;
}

.decision-summary {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 1rem;
}

.decision-summary h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.decision-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
}

.decision-table thead {
    background: var(--navy-light);
}

.decision-table th {
    padding: 1rem;
    text-align: left;
    color: var(--white);
    font-weight: 600;
}

.decision-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

.decision-table tbody tr.winner-row {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.decision-table td {
    padding: 1rem;
    color: var(--gray-700);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
}

.faq-item h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: var(--gold);
    margin-top: 0.25rem;
}

.faq-answer {
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin: 0.5rem 0;
}

.faq-answer strong {
    color: var(--navy);
}

.simple-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
}

.simple-table thead {
    background: var(--navy);
    color: var(--white);
}

.simple-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.simple-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 1rem;
    color: var(--gray-300);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-note p {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.cta-note a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: var(--navy-dark);
    color: var(--gray-400);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.875rem;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .score-row {
        grid-template-columns: 120px 1fr 180px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        border-radius: 0.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .platform-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .platform-details-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-cta {
        flex-direction: column;
    }
    
    .platform-cta .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .score-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .score-bar-wrapper {
        order: 2;
    }
    
    .score-reason {
        order: 3;
    }
    
    .decision-options {
        grid-template-columns: 1fr;
    }
    
    .decision-grid {
        grid-template-columns: 1fr;
    }
    
    .risk-matrix {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .platform-header {
        padding: 1.5rem;
    }
    
    .platform-content {
        padding: 1.5rem;
    }
    
    .decision-step {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}
