/* ================================================
   ГОРІШНЯ РІКА — Investment Proposition
   Premium Dark Theme with Gold Accents
   ================================================ */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #f0ece4;
    --text-secondary: rgba(240, 236, 228, 0.65);
    --text-muted: rgba(240, 236, 228, 0.4);
    --gold-primary: #D4A843;
    --gold-light: #F4D784;
    --gold-dark: #B8912E;
    --gold-gradient: linear-gradient(135deg, #D4A843, #F4D784);
    --gold-gradient-text: linear-gradient(135deg, #D4A843, #F4D784, #D4A843);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 168, 67, 0.3);
    --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(212, 168, 67, 0.3);
    color: var(--gold-light);
}

a { color: var(--gold-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

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

.gold-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   PRELOADER
   ================================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-icon {
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 6px;
    font-size: 14px;
    color: var(--gold-primary);
    margin-top: 24px;
}

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

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-smooth);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.6));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--text-primary);
    white-space: nowrap !important;
    line-height: 1;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap !important;
    flex-shrink: 0;
}

.nav-links a:not(.nav-cta) {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: var(--text-secondary);
    white-space: nowrap !important;
    flex-shrink: 0;
    transition: color var(--transition-fast);
    padding: 4px 0;
    position: relative;
    display: inline-block;
}

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

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-primary);
    transition: width var(--transition-smooth);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 6px 16px !important;
    background: var(--gold-gradient);
    color: #0A0A0F !important;
    -webkit-text-fill-color: #0A0A0F !important;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 168, 67, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(184, 145, 46, 0.04) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0) 30%,
        rgba(10, 10, 15, 0) 70%,
        rgba(10, 10, 15, 0.8) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 32px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-subtle);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 168, 67, 0.35);
    color: var(--bg-primary);
}

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

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    color: var(--gold-light);
}

.btn-large {
    padding: 20px 44px;
    font-size: 17px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Glass Card */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    padding: 40px 32px;
    text-align: center;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--gold-primary);
}

.card-icon svg { width: 100%; height: 100%; }

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

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

/* ================================================
   DEPOSIT SECTION
   ================================================ */
.deposit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.deposit-detail {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.detail-value {
    font-weight: 600;
    font-size: 15px;
    text-align: right;
}

/* Geology Diagram */
.geology-diagram {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.geo-layer {
    height: var(--layer-height);
    min-height: 50px;
    background: var(--layer-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    position: relative;
    transition: all var(--transition-smooth);
}

.geo-layer:hover { filter: brightness(1.2); }

.geo-label {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.geo-depth {
    font-size: 12px;
    font-weight: 700;
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 100px;
}

.geo-layer-gold {
    background: linear-gradient(135deg, #B8912E, #D4A843, #F4D784) !important;
    min-height: 160px;
    position: relative;
}

.geo-highlight {
    position: absolute;
    bottom: 12px;
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(10, 10, 15, 0.5);
}

.deposit-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* Estimation Grid */
.estimation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.est-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.est-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.est-card-gold {
    border-color: var(--border-gold);
    background: rgba(212, 168, 67, 0.08);
}

.est-icon { font-size: 32px; margin-bottom: 16px; }

.est-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.est-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ================================================
   BUSINESS MODEL
   ================================================ */
.partnership-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 72px;
}

.partner-card {
    padding: 40px 36px;
}

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

.partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.partner-badge.owner {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.partner-badge.investor {
    background: rgba(212, 168, 67, 0.15);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 4px;
}

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

.partner-contributions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-contributions li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: var(--text-primary);
}

.check.gold {
    background: rgba(212, 168, 67, 0.2);
    color: var(--gold-primary);
}

.investor-card {
    border-color: var(--border-gold);
}

.partner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.divider-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-primary);
    background: var(--bg-primary);
}

/* Investor Gets */
.investor-gets {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
}

.gets-title {
    font-family: var(--font-heading);
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.gets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.gets-item {
    text-align: center;
    padding: 24px;
}

.gets-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.gets-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}

.gets-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   LAND SHARES
   ================================================ */
.shares-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.shares-info {
    padding: 40px 36px;
}

.shares-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 32px;
}

.shares-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.share-point {
    display: flex;
    gap: 20px;
}

.point-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 14px;
}

.point-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.point-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.shares-potential { display: flex; flex-direction: column; gap: 24px; }

.potential-card {
    padding: 40px 36px;
}

.potential-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 32px;
}

.scale-visual { margin-bottom: 32px; }

.scale-bar {
    display: flex;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.scale-current {
    background: var(--gold-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 15px;
}

.scale-current small, .scale-potential small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
}

.scale-potential {
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 15px;
    border-left: 2px dashed var(--gold-primary);
}

.scale-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.scale-stat {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-glass);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.scale-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.scale-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ================================================
   FINANCIALS
   ================================================ */
.market-prices {
    margin-bottom: 64px;
}

.prices-title, .table-title {
    font-family: var(--font-heading);
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.price-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.price-card.highlight {
    border-color: var(--gold-primary);
    background: rgba(212, 168, 67, 0.08);
}

.price-type {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-value small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

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

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 64px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.invest-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.invest-table thead {
    background: rgba(212, 168, 67, 0.08);
}

.invest-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--gold-primary);
    border-bottom: 1px solid var(--border-gold);
}

.invest-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.invest-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.total-row {
    background: rgba(212, 168, 67, 0.05) !important;
}

.total-row td {
    border-bottom-color: var(--border-gold);
    color: var(--text-primary);
}

.usd-row td {
    border-bottom: none;
}

.profit-row td {
    color: var(--text-primary) !important;
    background: rgba(76, 175, 80, 0.05);
}

.investor-profit-row td {
    color: var(--gold-primary) !important;
    background: rgba(212, 168, 67, 0.08);
    font-size: 15px;
}

/* Charts */
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.chart-container {
    padding: 36px;
}

.chart-container h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 220px;
    padding: 0 8px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 12px;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    max-width: 56px;
    height: var(--bar-height);
    background: var(--gold-gradient);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bar span {
    font-size: 12px;
    font-weight: 700;
    color: var(--bg-primary);
}

.bar-cumulative {
    background: linear-gradient(180deg, var(--gold-primary), rgba(212, 168, 67, 0.4));
}

.bar-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    font-weight: 500;
}

.chart-unit {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ROI Summary */
.roi-card {
    padding: 48px;
    border-color: var(--border-gold) !important;
    background: rgba(212, 168, 67, 0.04) !important;
}

.roi-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.roi-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.roi-value small {
    font-size: 16px;
    font-weight: 400;
}

.roi-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.roi-arrow {
    font-size: 24px;
    color: var(--gold-primary);
}

.roi-highlight .roi-value {
    font-size: 48px;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-payback {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.payback-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-right: 12px;
}

.payback-value {
    font-size: 18px;
    font-weight: 700;
}

/* ================================================
   LEGAL
   ================================================ */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.legal-card {
    padding: 36px 28px;
    text-align: center;
}

.legal-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.legal-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

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

/* Timeline */
.timeline-title {
    font-family: var(--font-heading);
    font-size: 28px;
    text-align: center;
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--border-subtle), var(--gold-primary), var(--border-subtle));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
    z-index: 2;
}

.timeline-item.active .timeline-marker,
.timeline-marker.gold {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.timeline-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: all var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--border-gold);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.timeline-duration {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
    padding: 4px 14px;
    border: 1px solid var(--border-gold);
    border-radius: 100px;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    font-size: 13px;
    font-weight: 500;
    color: white;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   CTA SECTION
   ================================================ */
.section-cta {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.1) 0%, transparent 60%),
        var(--bg-primary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

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

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

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
}

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

.footer-logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

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

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-subtle);
    margin: 24px auto;
}

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

/* ================================================
   ANIMATIONS
   ================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1080px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .deposit-layout { grid-template-columns: 1fr; }
    .estimation-grid { grid-template-columns: repeat(2, 1fr); }
    .partnership-layout { grid-template-columns: 1fr; }
    .partner-divider { padding-top: 0; }
    .gets-grid { grid-template-columns: repeat(2, 1fr); }
    .shares-layout { grid-template-columns: 1fr; }
    .prices-grid { grid-template-columns: 1fr; }
    .charts-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .roi-value { font-size: 24px; }
    .roi-highlight .roi-value { font-size: 36px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    
    .about-grid { grid-template-columns: 1fr; }
    .estimation-grid { grid-template-columns: 1fr 1fr; }
    .gets-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
    
    .roi-grid { flex-direction: column; gap: 24px; }
    .roi-arrow { transform: rotate(90deg); }
    
    .invest-table { font-size: 12px; }
    .invest-table th, .invest-table td { padding: 10px 12px; }
    
    .hero-cta { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .estimation-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .scale-stats { grid-template-columns: 1fr; }
}
