/* ============================================================
   VERTEX CAPITAL - Investment Fund Website
   ============================================================ */

:root {
    --primary: #1a2f4a;
    --primary-dark: #0c1829;
    --primary-light: #2a4d73;
    --accent: #d4af37;
    --accent-light: #e8ca5a;
    --accent-dark: #b8962d;
    --text: #1a1f2e;
    --text-light: #556073;
    --text-muted: #8b95a8;
    --bg: #fafbfc;
    --bg-alt: #f2f4f7;
    --bg-dark: #090e1a;
    --bg-card: #ffffff;
    --border: #dfe3ea;
    --success: #10b981;
    --danger: #ef4444;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.03);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.04), 0 20px 56px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

#page-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, canvas, video, svg {
    max-width: 100%;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #e8ca5a 50%, #f0d878 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--primary-dark);
}

.logo strong {
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #c9a84c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(212,175,55,0.3);
    position: relative;
}

.logo-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    margin-left: -2px;
}

.navbar.scrolled .logo-divider {
    background: rgba(26,47,74,0.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .logo-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-text .logo-sub {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.navbar.scrolled .btn-nav {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.navbar.scrolled .btn-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--text);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, #060b14 0%, #0c1829 25%, #152238 50%, #1a2f4a 75%, #1f3654 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 15%, rgba(42, 77, 115, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 100px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-dark);
    border-radius: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-dark);
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 14px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-suffix {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
}

.trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 100px 0;
    overflow: hidden;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
    background: var(--bg);
}

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

.about-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--bg);
}

.about-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

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

/* ============================================================
   FUND
   ============================================================ */
.section-fund {
    background: var(--bg-alt);
}

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

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

.fund-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.fund-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.fund-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-dark);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fund-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fund-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fund-icon-re {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: var(--primary-light);
}

.fund-icon-esg {
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    color: #059669;
}

.fund-icon-fin {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    color: var(--accent-dark);
}

.fund-return {
    text-align: right;
}

.fund-return-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--success);
}

.fund-return-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fund-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.fund-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.fund-features {
    list-style: none;
    margin-bottom: 20px;
}

.fund-features li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fund-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.fund-features li:last-child {
    border-bottom: none;
    font-weight: 600;
}

.fund-allocation {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.allocation-bar {
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    transition: width 1s ease;
}

/* Investment Tiers */
.invest-tiers {
    text-align: center;
}

.invest-tiers h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.tier-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--border);
    text-align: left;
    transition: var(--transition);
}

.tier-card:hover {
    box-shadow: var(--shadow-lg);
}

.tier-premium {
    background: var(--primary-dark);
    border-color: var(--accent);
    color: #fff;
}

.tier-premium .tier-label,
.tier-premium .tier-amount {
    color: #fff;
}

.tier-premium li {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.1);
}

.tier-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.tier-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.tier-card li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-card li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23c9a84c" stroke-width="2.5"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
    flex-shrink: 0;
}

.tier-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    border-radius: 10px;
}

.tier-premium .btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
}

.tier-premium .btn:hover {
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* ============================================================
   PERFORMANCE
   ============================================================ */
.section-performance {
    background: var(--bg);
}

.performance-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    align-items: start;
}

.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: 360px;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.perf-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}

.perf-stat:first-child {
    background: var(--primary-dark);
}

.perf-stat:first-child .perf-label {
    color: rgba(255,255,255,0.6);
}

.perf-stat:first-child .perf-value {
    font-size: 24px;
    color: var(--accent);
}

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

.perf-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.perf-value.negative {
    color: var(--danger);
}

.performance-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    max-width: 100%;
}

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

.performance-table th {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    padding: 14px 20px;
    text-align: center;
}

.performance-table th:first-child {
    text-align: left;
    border-radius: var(--radius-sm) 0 0 0;
}

.performance-table th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.performance-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.performance-table td:first-child {
    font-weight: 700;
    text-align: left;
    color: var(--primary-dark);
}

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

.performance-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-sm);
}

.performance-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-sm) 0;
}

.performance-table tr:hover td {
    background: var(--bg-alt);
}

.positive { color: var(--success); font-weight: 600; }
.negative { color: var(--danger); font-weight: 600; }
.muted { color: var(--text-muted); }
.strong { font-weight: 800; font-size: 15px; }

.disclaimer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

/* ============================================================
   SECURITY
   ============================================================ */
.section-security {
    background: var(--bg-alt);
    overflow: hidden;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-content .section-tag {
    text-align: left;
}

.security-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.security-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.security-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    min-width: 40px;
}

.security-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.security-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
}

.shield-ring-1 {
    width: 300px;
    height: 300px;
    animation: pulse-ring 4s ease-in-out infinite;
}

.shield-ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(201,168,76,0.25);
    animation: pulse-ring 4s ease-in-out infinite 1s;
}

.shield-ring-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(201,168,76,0.4);
    animation: pulse-ring 4s ease-in-out infinite 2s;
}

.shield-center {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    z-index: 1;
}

@keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }
}

/* ============================================================
   TEAM
   ============================================================ */
.section-team {
    background: var(--bg);
}

/* Team V2 Grid */
.team-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.team-card-v2 {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.team-card-v2:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
}

.team-card-v2:hover .tc-link {
    color: var(--accent);
}

.team-card-v2:hover .tc-photo-placeholder {
    transform: scale(1.03);
}

.tc-photo {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tc-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.tc-photo-placeholder svg {
    width: 120px;
    height: 120px;
}

.tc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
}

.tc-body {
    padding: 24px;
}

.tc-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.tc-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.tc-bio {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tc-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #d4af37;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.tc-phone svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.tc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    transition: color 0.2s;
    width: 100%;
}

.tc-link svg {
    transition: transform 0.2s;
}

.team-card-v2:hover .tc-link svg {
    transform: translateX(3px);
}

/* ============================================================
   PROCESS
   ============================================================ */
.section-process {
    background: var(--primary-dark);
    color: #fff;
}

.section-process .section-tag {
    color: var(--accent);
}

.section-process .section-header h2 {
    color: #fff;
}

.section-process .section-desc {
    color: rgba(255,255,255,0.5);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: rgba(201,168,76,0.3);
    margin-top: 28px;
    flex-shrink: 0;
}

/* ============================================================
   CTA
   ============================================================ */
.section-cta {
    background: var(--bg-alt);
    padding: 80px 0;
    overflow: hidden;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-box .btn {
    position: relative;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2364748b" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 60px 0 30px;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
}

.footer-links h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12px;
}

.footer-disclaimer {
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
}

/* ============================================================
   INVESTOR MODAL
   ============================================================ */
.investor-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.investor-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.investor-modal {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    transform: translateY(0) scale(1);
    transition: transform 0.4s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.investor-modal-overlay.hidden .investor-modal {
    transform: translateY(20px) scale(0.95);
}

.investor-modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.investor-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.investor-modal > p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.6;
}

.investor-modal > p strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.investor-modal-text {
    font-size: 14px !important;
    color: var(--text-light) !important;
    margin-bottom: 32px !important;
}

.investor-modal .btn {
    width: 100%;
    margin-bottom: 16px;
}

.investor-modal-leave {
    display: inline-block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition);
}

.investor-modal-leave:hover {
    color: var(--text);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.cookie-text svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-secondary {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.btn-cookie-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.btn-cookie-link {
    background: none;
    color: rgba(255,255,255,0.5);
    border: none;
    padding: 10px 12px;
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
}

.btn-cookie-link:hover {
    color: var(--accent);
}

/* ============================================================
   ANALYTICS SECTION
   ============================================================ */
.section-analytics {
    background: var(--bg-alt);
    overflow: hidden;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.analytics-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    overflow: hidden;
    min-width: 0;
}

.analytics-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.analytics-card-wide {
    grid-column: 1 / -1;
}

.chart-wrap {
    height: 280px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.chart-wrap canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
}

/* Heatmap */
.heatmap-container {
    overflow-x: auto;
}

.heatmap-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 13px;
    text-align: center;
}

.heatmap-table th {
    padding: 8px 12px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heatmap-table td {
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.heatmap-table td:hover {
    transform: scale(1.1);
    z-index: 1;
    position: relative;
}

.heatmap-table td.hm-strong-pos { background: rgba(5,150,105,0.2); color: #059669; }
.heatmap-table td.hm-pos { background: rgba(5,150,105,0.1); color: #059669; }
.heatmap-table td.hm-neutral { background: rgba(148,163,184,0.1); color: var(--text-muted); }
.heatmap-table td.hm-neg { background: rgba(220,38,38,0.1); color: #dc2626; }
.heatmap-table td.hm-empty { color: var(--text-muted); }

.heatmap-table td:first-child {
    font-weight: 700;
    color: var(--primary-dark);
    text-align: left;
}

/* Live Stats Bar */
.analytics-live {
    display: flex;
    justify-content: space-between;
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 20px 32px;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

.live-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

.live-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.live-value.positive {
    color: var(--success);
}

.live-value.negative {
    color: var(--danger);
}

.live-value.flash-up {
    animation: flash-green 0.6s ease;
}

.live-value.flash-down {
    animation: flash-red 0.6s ease;
}

@keyframes flash-green {
    0% { color: #fff; }
    30% { color: #34d399; text-shadow: 0 0 8px rgba(52,211,153,0.4); }
    100% { color: #fff; }
}

@keyframes flash-red {
    0% { color: #fff; }
    30% { color: #f87171; text-shadow: 0 0 8px rgba(248,113,113,0.4); }
    100% { color: #fff; }
}

/* Market Ticker */
.market-ticker {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 14px 0;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.market-ticker::before,
.market-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.market-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-dark), transparent);
}

.market-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--primary-dark), transparent);
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.ticker-item .ticker-symbol {
    font-weight: 700;
    color: rgba(255,255,255,0.8);
}

.ticker-item .ticker-price {
    font-weight: 600;
    color: #fff;
}

.ticker-item .ticker-change {
    font-weight: 600;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.ticker-change.up {
    color: var(--success);
    background: rgba(16,185,129,0.1);
}

.ticker-change.down {
    color: var(--danger);
    background: rgba(239,68,68,0.1);
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.btn:focus-visible,
.nav-links a:focus-visible,
.btn-nav:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .fund-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
    .performance-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .security-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .analytics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 20px;
        gap: 0;
    }

    .nav-links.active a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.8) !important;
    }

    .nav-links.active a:hover {
        color: #fff !important;
    }

    .hero h1 { font-size: 36px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .stat-number, .stat-suffix { font-size: 32px; }

    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }

    .about-grid { grid-template-columns: 1fr; }
    .team-grid-v2 { grid-template-columns: 1fr; }
    .tc-photo { height: 180px; }
    .tc-actions { flex-wrap: wrap; }
    .tiers-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .trust-items { flex-wrap: wrap; justify-content: center; text-align: center; }

    .process-grid { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 30px; margin-top: 0; }

    .contact-form { padding: 24px; }
    .cta-box { padding: 48px 24px; }
    .analytics-grid { grid-template-columns: 1fr; }
    .analytics-card { padding: 20px; }
    .chart-wrap { height: 260px; }
    .analytics-live { flex-direction: column; gap: 12px; padding: 16px 20px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; flex-wrap: wrap; }
    .cookie-text { flex-direction: column; align-items: center; }
    .investor-modal { padding: 32px 24px; }
    .heatmap-container { -webkit-overflow-scrolling: touch; }
    .performance-table { min-width: 500px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding-top: 100px; padding-bottom: 60px; }
    .hero h1 { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .section-header h2 { font-size: 24px; }
    .investor-modal { padding: 24px 16px; margin: 0 8px; }
    .investor-modal h2 { font-size: 22px; }
    .cta-box { padding: 36px 16px; }
    .cta-box h2 { font-size: 24px; }
    .tier-card { padding: 28px 20px; }
    .tier-amount { font-size: 22px; }
    .btn-lg { padding: 14px 24px; font-size: 14px; }
    .stat-number, .stat-suffix { font-size: 28px; }
}

/* ── REALIZOVANE PROJEKTY ── */
.section-projects {
    background: var(--bg-alt, #f2f4f7);
}

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

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.project-image {
    height: 180px;
    background: linear-gradient(135deg, #1a2f4a 0%, #2a4d73 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.project-image svg {
    width: 48px;
    height: 48px;
    color: rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.project-status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.project-status.done {
    background: rgba(16,185,129,0.15);
    color: #059669;
    backdrop-filter: blur(8px);
}

.project-status.active {
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    backdrop-filter: blur(8px);
}

.project-status.planned {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    backdrop-filter: blur(8px);
}

.project-body {
    padding: 24px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-location svg {
    width: 14px;
    height: 14px;
}

.project-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c1829;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-desc {
    font-size: 14px;
    color: #556073;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-metrics {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}

.project-metric {
    flex: 1;
    text-align: center;
    position: relative;
}

.project-metric + .project-metric::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.06);
}

.project-metric-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a2f4a;
    display: block;
}

.project-metric-label {
    font-size: 11px;
    color: #8b95a8;
    display: block;
    margin-top: 2px;
}

.projects-summary {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.projects-summary-item {
    text-align: center;
}

.projects-summary-value {
    font-size: 32px;
    font-weight: 800;
    color: #1a2f4a;
}

.projects-summary-label {
    font-size: 13px;
    color: #8b95a8;
    margin-top: 4px;
}

/* ── PARTNERI & OCENENI ── */
.section-partners {
    background: linear-gradient(160deg, #060b14 0%, #0c1829 40%, #1a2f4a 100%);
    color: #fff;
}

.partners-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.partner-logo {
    width: 160px;
    height: 72px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.3);
}

.partner-logo span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.3;
}

.partners-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 48px;
}

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

.partner-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #d4af37;
}

.partner-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* Awards & Media */
.awards-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.awards-block, .media-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
}

.block-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-title svg {
    width: 18px;
    height: 18px;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
}

.award-item:hover {
    background: rgba(255,255,255,0.06);
}

.award-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon svg {
    width: 20px;
    height: 20px;
    color: #d4af37;
}

.award-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.award-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: all 0.2s;
}

.media-item:hover {
    background: rgba(255,255,255,0.06);
}

.media-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(59,130,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.media-icon svg {
    width: 20px;
    height: 20px;
    color: #60a5fa;
}

.media-source {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #60a5fa;
}

.media-headline {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    line-height: 1.4;
}

.media-date {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

/* ── Responsive for new sections ── */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .awards-media-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .projects-summary {
        flex-wrap: wrap;
        gap: 24px;
    }
    .partners-logos {
        gap: 12px;
    }
    .partner-logo {
        width: 140px;
        height: 64px;
    }
    .partners-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .project-metrics {
        flex-wrap: wrap;
    }
    .project-metric {
        flex: 0 0 50%;
        padding: 8px 0;
    }
    .project-metric + .project-metric::before {
        display: none;
    }
    .projects-summary {
        gap: 16px;
    }
    .projects-summary-value {
        font-size: 24px;
    }
}

/* ── ESG / UDRZITELNOST ── */
.section-esg {
    background: var(--bg, #fafbfc);
}

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

.esg-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.esg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.esg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.esg-env::before { background: linear-gradient(90deg, #059669, #10b981); }
.esg-soc::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.esg-gov::before { background: linear-gradient(90deg, #d4af37, #e8ca5a); }

.esg-icon {
    margin-bottom: 16px;
}

.esg-env .esg-icon svg { color: #059669; }
.esg-soc .esg-icon svg { color: #2563eb; }
.esg-gov .esg-icon svg { color: #d4af37; }

.esg-letter {
    font-size: 48px;
    font-weight: 800;
    position: absolute;
    top: 20px;
    right: 24px;
    opacity: 0.06;
    font-family: 'Playfair Display', serif;
}

.esg-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0c1829;
    margin-bottom: 16px;
}

.esg-list {
    list-style: none;
    padding: 0;
}

.esg-list li {
    font-size: 14px;
    color: #556073;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.esg-list li:last-child {
    border-bottom: none;
}

.esg-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.esg-env .esg-list li::before { background: #10b981; }
.esg-soc .esg-list li::before { background: #60a5fa; }
.esg-gov .esg-list li::before { background: #d4af37; }

.esg-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.esg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, #1a2f4a, #0c1829);
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
}

.esg-badge svg {
    color: #10b981;
}

/* ── FAQ ── */
.section-faq {
    background: var(--bg-alt, #f2f4f7);
}

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

.faq-item {
    margin-bottom: 8px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.2s;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: #0c1829;
    flex: 1;
    padding-right: 16px;
}

.faq-question svg {
    color: #d4af37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #556073;
    line-height: 1.7;
}

/* ── NOVINKY ── */
.section-news {
    background: var(--bg, #fafbfc);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.news-card-featured {
    grid-row: 1 / 3;
}

.news-image {
    height: 220px;
    background: linear-gradient(135deg, #1a2f4a 0%, #2a4d73 60%, #1f3654 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.news-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.1) 0%, transparent 50%);
}

.news-image-sm {
    height: 120px;
}

.news-card-featured .news-image {
    height: 280px;
}

.news-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(212,175,55,0.2);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    color: #d4af37;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 12px;
    color: #8b95a8;
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0c1829;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-card-featured .news-body h3 {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.news-body p {
    font-size: 14px;
    color: #556073;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
    text-decoration: none;
    transition: gap 0.2s;
}

.news-link:hover {
    gap: 10px;
}

/* ── FAQ open state ── */
.faq-item.faq-open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
    opacity: 1;
}

.faq-item.faq-open .faq-question svg {
    transform: rotate(45deg);
}

/* ── HISTORIE / TIMELINE ── */
.section-history {
    background: #0c1829;
    color: #fff;
}

.section-history .section-tag {
    color: #d4af37;
    border-color: rgba(212,175,55,0.3);
}

.section-history .section-desc {
    color: rgba(255,255,255,0.65);
}

.history-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.history-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.history-intro p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.4) 10%, rgba(212,175,55,0.4) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 50px;
    box-sizing: border-box;
}

.timeline-left {
    left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-right {
    left: 50%;
    text-align: left;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #d4af37;
    border: 3px solid #0c1829;
    border-radius: 50%;
    top: 5px;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}

.timeline-left .timeline-dot {
    right: -8px;
}

.timeline-right .timeline-dot {
    left: -8px;
}

.timeline-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
}

.timeline-year {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.history-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.history-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 8px;
}

.history-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Responsive for ESG, FAQ, News ── */
@media (max-width: 1024px) {
    .esg-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card-featured {
        grid-row: auto;
    }
    .news-card-featured .news-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .esg-badges {
        gap: 10px;
    }
    .esg-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    .faq-question span {
        font-size: 14px;
    }
    .news-image {
        height: 160px;
    }
    .news-image-sm {
        height: 100px;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding: 0 0 40px 50px;
        text-align: left;
    }
    .timeline-left {
        padding-right: 0;
        padding-left: 50px;
    }
    .timeline-right {
        left: 0;
        padding-left: 50px;
    }
    .timeline-left .timeline-dot,
    .timeline-right .timeline-dot {
        left: 12px;
        right: auto;
    }
    .history-stats {
        gap: 30px;
    }
    .history-stat-number {
        font-size: 32px;
    }
}
