/* Hotel Investment Calculator - Beautiful Modern Design */

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

:root {
    --gold: #C9A961;
    --gold-light: #D4B976;
    --gold-dark: #B8941C;
    --dark-blue: #0a0e27;
    --medium-blue: #16213e;
    --light-blue: #1e3a5f;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e0e0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

/* Hero Section - Redesigned */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 20px 40px;
    text-align: center;
    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(201, 169, 97, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.15em;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features .feature i {
    color: var(--gold);
    font-size: 1.2em;
}

/* Calculator Section - Completely Redesigned */
.calculator-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
}

.calculator-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* Input Panel - Beautiful Card Design */
.calculator-inputs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.calculator-inputs h2 {
    font-size: 1.8em;
    color: var(--white);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calculator-inputs h2 i {
    color: var(--gold);
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 1.05em;
}

.input-group label i {
    color: var(--gold);
    font-size: 1.1em;
}

.input-wrapper {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2em;
}

.input-group input[type="number"] {
    width: 100%;
    padding: 15px 15px 15px 35px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all 0.3s ease;
}

.input-group input[type="number"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.input-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    font-size: 1.05em;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.input-group select option {
    background: var(--medium-blue);
    color: var(--white);
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, rgba(201, 169, 97, 0.3) 0%, var(--gold) 100%);
    border-radius: 10px;
    outline: none;
    margin: 15px 0 10px;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.6);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-blue);
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    margin-bottom: 15px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.6);
}

.calculate-btn:active {
    transform: translateY(0);
}

.calculate-btn i {
    font-size: 1.2em;
}

.reset-btn {
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reset-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* Results Panel - Beautiful Cards */
.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-height: 600px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.results-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    gap: 20px;
}

.results-loading i {
    font-size: 3em;
    color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.results-loading p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
}

.results-content h2 {
    font-size: 2.2em;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.results-content h2 i {
    color: var(--gold);
}

.results-summary {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

/* Comparison Table - Beautiful Design */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-blue);
}

.comparison-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: 15px;
}

.comparison-table th:last-child {
    border-top-right-radius: 15px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: scale(1.01);
}

.comparison-table tbody tr.winner {
    background: linear-gradient(to right, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border-left: 4px solid var(--gold);
}

.comparison-table td {
    padding: 20px 15px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--white);
}

.method-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.method-icon.reit { background: rgba(25, 118, 210, 0.2); color: #42a5f5; }
.method-icon.crowdfunding { background: rgba(123, 31, 162, 0.2); color: #ab47bc; }
.method-icon.tokenization { background: rgba(245, 127, 23, 0.2); color: var(--gold); }
.method-icon.private-equity { background: rgba(194, 24, 91, 0.2); color: #ec407a; }
.method-icon.direct { background: rgba(56, 142, 60, 0.2); color: #66bb6a; }

.return-value {
    font-weight: 700;
    font-size: 1.2em;
}

.return-value.positive { color: #66bb6a; }
.return-value.high { color: var(--gold); }

.liquidity-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.liquidity-badge.excellent { background: rgba(56, 142, 60, 0.2); color: #66bb6a; }
.liquidity-badge.good { background: rgba(245, 127, 23, 0.2); color: var(--gold); }
.liquidity-badge.poor { background: rgba(211, 47, 47, 0.2); color: #ef5350; }

.risk-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.risk-badge.low { background: rgba(56, 142, 60, 0.2); color: #66bb6a; }
.risk-badge.medium { background: rgba(239, 108, 0, 0.2); color: #ff9800; }
.risk-badge.high { background: rgba(211, 47, 47, 0.2); color: #ef5350; }

/* Winner Card - Eye-Catching Design */
.winner-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.05em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.winner-badge i {
    font-size: 1.3em;
}

.winner-card h3 {
    font-size: 2em;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.winner-card p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.winner-card .cta-primary {
    position: relative;
    z-index: 1;
}

/* Chart Container */
.chart-container {
    margin: 40px 0;
    padding: 30px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.chart-container h3 {
    font-size: 1.6em;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-container h3 i {
    color: var(--gold);
}

#returns-chart {
    max-height: 400px;
}

/* Action Buttons */
.results-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.action-btn {
    flex: 1;
    min-width: 200px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.action-btn.tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(201, 169, 97, 0.5);
}

.action-btn.tertiary:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-secondary.large {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(201, 169, 97, 0.5);
}

.cta-secondary.large:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
}

/* ========================================
   INSTRUCTIONS SECTION - PREMIUM REDESIGN
   ======================================== */
.instructions-section {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    padding: 100px 20px;
    position: relative;
}

.instructions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.3) 50%, transparent 100%);
}

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

.instructions-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.instructions-section .section-header h2 i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 2.5rem;
    vertical-align: middle;
}

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

.instruction-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.instruction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instruction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.4);
}

.instruction-card:hover::before {
    opacity: 1;
}

.instruction-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    transition: all 0.4s ease;
}

.instruction-card:hover .instruction-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.instruction-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    position: relative;
}

.instruction-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

/* ========================================
   METHODOLOGY SECTION - PREMIUM REDESIGN
   ======================================== */
.methodology-section {
    background: linear-gradient(180deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 20px;
    position: relative;
}

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

.methodology-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.methodology-section .section-header h2 i {
    color: var(--gold);
    margin-right: 15px;
}

.section-intro {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.methodology-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.methodology-card:hover::before {
    opacity: 1;
}

.methodology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.3);
}

.methodology-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.methodology-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.methodology-card h3 i {
    color: var(--gold);
    font-size: 1.4rem;
}

.methodology-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.methodology-details strong {
    color: rgba(255, 255, 255, 0.95);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 20px;
}

.methodology-notes {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.methodology-notes h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.methodology-notes h3 i {
    color: var(--gold);
}

.methodology-notes ul {
    list-style: none;
    padding: 0;
}

.methodology-notes li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.methodology-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.methodology-notes li strong {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   RETURNS VARIANCE SECTION - PREMIUM REDESIGN
   ======================================== */
.returns-variance-section {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    padding: 100px 20px;
    position: relative;
}

.returns-variance-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
}

.variance-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.factor-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s ease;
}

.factor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.3);
}

.factor-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.factor-icon i {
    font-size: 2rem;
    color: var(--dark-blue);
}

.factor-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.factor-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.factor-card strong {
    color: rgba(255, 255, 255, 0.95);
}

.factor-example, .factor-comparison, .geographic-breakdown, .diversification-spectrum, .asset-tiers {
    margin-top: 25px;
    padding: 25px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.factor-example strong {
    color: var(--gold);
}

.comparison-item, .geo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item:last-child, .geo-item:last-child {
    border-bottom: none;
}

.comparison-item.highlighted {
    background: rgba(201, 169, 97, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
}

.label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.value, .return {
    font-weight: 700;
    color: var(--gold);
}

.return.gold {
    color: var(--gold);
    font-size: 1.2em;
}

.flag {
    font-size: 1.5rem;
}

.location {
    flex: 1;
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.9);
}

.diversification-spectrum {
    position: relative;
    height: 120px;
    background: linear-gradient(to right, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.3) 50%, rgba(201, 169, 97, 0.1) 100%);
}

.spectrum-marker {
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    margin: 0 auto 10px;
}

.marker-dot.gold {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
}

.marker-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
}

.asset-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.tier.luxury {
    border-color: var(--gold);
}

.tier i {
    font-size: 1.8rem;
    color: var(--gold);
}

.tier-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.tier-return {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

.tier-adr {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CASE STUDY SECTION - PREMIUM REDESIGN
   ======================================== */
.case-study-section {
    background: linear-gradient(180deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 20px;
}

.case-study-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.case-study-method {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-study-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.3);
}

.case-study-method.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.03) 100%);
}

.method-header {
    padding: 30px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.method-header h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.method-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.method-badge.reit {
    background: rgba(25, 118, 210, 0.2);
    color: #42a5f5;
}

.method-badge.crowdfunding {
    background: rgba(123, 31, 162, 0.2);
    color: #ab47bc;
}

.method-badge.tokenization {
    background: rgba(201, 169, 97, 0.3);
    color: var(--gold);
}

.investment-details {
    padding: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-row.total {
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    margin: 15px 0;
    padding: 18px 0;
    font-weight: 700;
}

.detail-row.highlight {
    background: rgba(201, 169, 97, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 10px -10px;
    border: none;
}

.detail-row .label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.detail-row .value {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.detail-row.highlight .value.gold {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.method-outcome {
    padding: 30px;
    background: rgba(201, 169, 97, 0.03);
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.outcome-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.outcome-icon i {
    font-size: 2rem;
}

.outcome-icon.neutral {
    background: rgba(239, 108, 0, 0.2);
    color: #ff9800;
}

.outcome-icon.mixed {
    background: rgba(245, 127, 23, 0.2);
    color: var(--gold);
}

.outcome-icon.positive {
    background: rgba(56, 142, 60, 0.2);
    color: #66bb6a;
}

.method-outcome h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.method-outcome p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.case-study-summary {
    max-width: 1000px;
    margin: 60px auto;
    padding: 50px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid var(--gold);
}

.case-study-summary h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.case-study-summary h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.case-study-summary blockquote {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 30px;
    border-left: 4px solid var(--gold);
}

.case-study-attribution {
    text-align: right;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.case-study-attribution strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.case-study-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.case-study-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.case-study-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ========================================
   FAQ SECTION - PREMIUM REDESIGN
   ======================================== */
.faq-section {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    padding: 100px 20px;
}

.faq-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.3);
}

.faq-question {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    color: var(--gold);
    font-size: 1.3rem;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-answer li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.faq-answer li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.faq-answer strong {
    color: rgba(255, 255, 255, 0.95);
}

.tax-comparison, .return-drivers, .liquidity-table {
    margin: 20px 0;
}

.tax-method, .driver {
    padding: 20px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 3px solid rgba(201, 169, 97, 0.3);
}

.tax-method.gold-bg {
    background: rgba(201, 169, 97, 0.1);
    border-left-color: var(--gold);
}

.liquidity-table {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.liquidity-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.liquidity-row.header {
    background: rgba(201, 169, 97, 0.2);
    font-weight: 700;
    color: var(--gold);
}

.liquidity-row.highlight {
    background: rgba(201, 169, 97, 0.08);
    border-left: 3px solid var(--gold);
}

.liquidity-row span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   FINAL CTA SECTION - PREMIUM REDESIGN
   ======================================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
}

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

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.final-cta-content h2 i {
    color: var(--gold);
    margin-right: 15px;
}

.lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--gold);
}

.benefit-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

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

.cta-primary.large, .cta-secondary.large {
    padding: 20px 45px;
    font-size: 1.2rem;
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.cta-disclaimer i {
    color: var(--gold);
    margin-right: 8px;
}

/* ========================================
   FOOTER - PREMIUM REDESIGN
   ======================================== */
.site-footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .calculator-container {
        grid-template-columns: 380px 1fr;
        gap: 30px;
    }
    
    .variance-factors {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 968px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-inputs {
        position: relative;
        top: 0;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .instructions-grid, .methodology-grid, .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .asset-tiers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .calculator-inputs, .calculator-results {
        padding: 30px 25px;
    }
    
    .results-actions, .cta-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .liquidity-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .liquidity-row span {
        padding: 5px 0;
    }
}

/* Print Styles */
@media print {
    .calculator-inputs,
    .hero-section,
    .site-footer {
        display: none;
    }
    
    .calculator-results {
        box-shadow: none;
    }
    
    body {
        background: white;
    }
}
