﻿:root {
    --gold: #D4AF37;
    --gold-dark: #C9A328;
    --ivory: #F8F7F4;
    --secondary-bg: #F1EEE8;
    --text: #111111;
    --muted: #6D6D6D;
    --footer: #0B0B0B;
    --border: #E6E1D8;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--ivory);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container-custom {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: rgba(248, 247, 244, 0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper img {
    width: 125px;
}

.desktop-nav {
    display: flex;
    gap: 42px;
    align-items: center;
}

    .desktop-nav a {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

        .desktop-nav a:hover {
            color: var(--gold);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switch {
    display: flex;
    border: 1px solid var(--border);
}

.language-btn {
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

    .language-btn.active {
        background: var(--gold);
        color: var(--white);
    }

.login-btn,
.signup-btn {
    padding: 14px 22px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--gold);
}

.login-btn {
    color: var(--text);
}

.signup-btn {
    background: var(--gold);
    color: var(--white);
}

    .login-btn:hover,
    .signup-btn:hover {
        background: var(--gold-dark);
        color: var(--white);
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

/* HERO */

.hero-section {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 720px;
    border-bottom: 1px solid var(--border);
}

.hero-content {
    padding: 95px 64px 60px 80px;
}

.section-label,
.card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-content h1,
.performance-text h2,
.solutions-section h2,
.insights-left h2,
.final-cta h2 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.15;
}

.hero-content h1 {
    font-size: clamp(46px, 5vw, 72px);
    margin-bottom: 34px;
}

.hero-description {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 42px;
}

.hero-buttons {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 82px;
}

.btn-primary,
.btn-secondary {
    padding: 17px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--gold-dark);
    }

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--text);
}

    .btn-secondary:hover {
        background: var(--gold);
        color: var(--white);
    }

.trusted-by p {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.6px;
    margin-bottom: 18px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* TRUST */

.trust-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    transform: translateY(-1px);
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.trust-item {
    text-align: center;
    padding: 48px 28px;
    border-right: 1px solid var(--border);
}

    .trust-item:last-child {
        border-right: none;
    }

    .trust-item i,
    .solution-card i,
    .cta-stats i {
        color: var(--gold);
        font-size: 34px;
        margin-bottom: 22px;
    }

    .trust-item h4 {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .trust-item p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7;
    }

/* PERFORMANCE */

.performance-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 105px 24px 80px;
    display: grid;
    grid-template-columns: 33% 67%;
    gap: 48px;
    align-items: center;
}

.performance-text h2,
.solutions-section h2,
.insights-left h2,
.final-cta h2 {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 28px;
}

.performance-text p:not(.section-label),
.insights-left p:not(.section-label),
.final-cta p:not(.section-label) {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 40px;
}

.text-link {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.performance-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    padding: 36px;
}

.chart-tabs {
    display: flex;
    gap: 32px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--text);
}

    .chart-tabs span.active {
        color: var(--gold);
        border-bottom: 2px solid var(--gold);
        padding-bottom: 9px;
    }

.chart-area {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 32px;
}

.fake-chart {
    height: 330px;
}

    .fake-chart svg {
        width: 100%;
        height: 100%;
    }

    .fake-chart line {
        stroke: #ECECEC;
        stroke-width: 1;
    }

    .fake-chart polyline {
        fill: none;
        stroke: var(--gold);
        stroke-width: 3;
    }

.chart-metrics {
    display: grid;
    gap: 22px;
}

    .chart-metrics small {
        display: block;
        color: var(--muted);
        text-transform: uppercase;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .chart-metrics strong {
        font-family: "Playfair Display", serif;
        font-size: 34px;
        font-weight: 500;
    }

/* SOLUTIONS */

.solutions-section {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 52px 34px;
    border: 1px solid var(--border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 34px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.solution-card,
.insight-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.solution-card {
    padding: 34px 28px;
    min-height: 230px;
}

    .solution-card h3,
    .insight-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 21px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .solution-card p,
    .insight-card p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

/* INSIGHTS */

.insights-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 44px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.insight-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.insight-card div {
    padding: 26px;
}

.insight-card small {
    color: var(--muted);
    font-size: 12px;
}

/* FOOTER */

.footer {
    background: var(--footer);
    color: var(--white);
    padding: 70px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 42px;
}

.footer-brand img {
    width: 120px;
    margin-bottom: 24px;
}

.footer p,
.footer a,
.footer li {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.8;
}

.footer h4 {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 9px;
}

.footer a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

    .footer-socials i {
        font-size: 20px;
    }

.newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,.2);
    margin-top: 20px;
}

    .newsletter input {
        flex: 1;
        background: transparent;
        border: none;
        color: var(--white);
        padding: 16px;
        outline: none;
        min-width: 0;
    }

    .newsletter button {
        width: 52px;
        background: var(--gold);
        color: var(--white);
        border: none;
        cursor: pointer;
    }

.footer-bottom {
    margin-top: 56px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

    .footer-bottom div {
        display: flex;
        gap: 28px;
    }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: none;
        padding: 18px 0 28px;
        border-top: 1px solid var(--border);
    }

        .mobile-nav.show {
            display: grid;
            gap: 18px;
        }

        .mobile-nav a {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }

    .mobile-actions {
        display: grid;
        gap: 12px;
        margin-top: 12px;
    }

    .hero-section,
    .performance-section,
    .insights-section {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 70px 32px;
    }

    .hero-image {
        min-height: 420px;
        clip-path: none;
    }

    .trust-card,
    .solutions-grid,
    .insights-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-area {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container-custom {
        width: min(100% - 28px, 1280px);
    }

    .header-wrapper {
        height: 82px;
    }

    .logo-wrapper img {
        width: 100px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 55px 22px;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 55px;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .trusted-logos {
        gap: 16px;
        font-size: 12px;
    }

    .trust-section {
        padding: 0 16px;
    }

    .trust-card,
    .solutions-grid,
    .insights-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .performance-section,
    .insights-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .performance-card {
        padding: 24px;
    }

    .chart-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .solutions-section {
        margin-left: 16px;
        margin-right: 16px;
        padding: 34px 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }

        .footer-bottom div {
            flex-direction: column;
            gap: 8px;
        }
}
/* ==========================================
   ABOUT PAGE
========================================== */

.page-hero {
    padding: 140px 0;
    background: linear-gradient( 135deg, #f8f7f4 0%, #f1eee8 100% );
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: 900px;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 32px;
}

.page-hero p:last-child {
    max-width: 700px;
    color: var(--muted);
    line-height: 1.9;
    font-size: 18px;
}

.about-overview {
    padding: 120px 0;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
}

.about-overview h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
}

.about-overview p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* ==========================================
   MISSION
========================================== */

.mission-vision-section {
    padding-bottom: 120px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mission-card {
    background: white;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

    .mission-card span {
        color: var(--gold);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .mission-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 30px;
        margin: 20px 0;
        font-weight: 500;
    }

    .mission-card p {
        color: var(--muted);
        line-height: 1.9;
    }

/* ==========================================
   PHILOSOPHY
========================================== */

.philosophy-section {
    padding-bottom: 120px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 80px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.philosophy-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 24px;
}

.philosophy-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.philosophy-content ul {
    list-style: none;
}

.philosophy-content li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

    .philosophy-content li::before {
        content: "✓";
        color: var(--gold);
        margin-right: 12px;
    }

/* ==========================================
   VALUES
========================================== */

.values-section {
    padding-bottom: 120px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    padding: 36px;
    text-align: center;
}

    .value-card i {
        font-size: 42px;
        color: var(--gold);
        margin-bottom: 24px;
    }

    .value-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 18px;
    }

    .value-card p {
        color: var(--muted);
        line-height: 1.8;
    }

/* ==========================================
   OFFICES
========================================== */

.about-contact-section {
    padding-bottom: 120px;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
}

    .about-contact-grid h2 {
        font-family: "Playfair Display", serif;
        font-size: 52px;
        line-height: 1.2;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .about-contact-grid p {
        color: var(--muted);
        line-height: 1.9;
    }

.office-list {
    display: grid;
    gap: 24px;
}

.office-card {
    background: white;
    border: 1px solid var(--border);
    padding: 36px;
}

    .office-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .office-card p {
        margin-bottom: 12px;
    }

/* ==========================================
   ABOUT CTA
========================================== */

.about-cta {
    background: linear-gradient( 135deg, #0b0b0b, #151515 );
    padding: 120px 0;
    text-align: center;
}

.about-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-cta h2 {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px,4vw,64px);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 40px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .about-overview-grid,
    .philosophy-grid,
    .about-contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .philosophy-image img {
        height: 450px;
    }
}

@media (max-width: 700px) {

    .page-hero {
        padding: 80px 0;
    }

    .about-overview,
    .mission-vision-section,
    .philosophy-section,
    .values-section,
    .about-contact-section {
        padding-bottom: 80px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-overview h2,
    .philosophy-content h2,
    .about-contact-grid h2 {
        font-size: 38px;
    }

    .mission-card,
    .value-card,
    .office-card {
        padding: 28px;
    }

    .about-cta {
        padding: 80px 20px;
    }
}
/* ==========================================
   SOLUTIONS PAGE
========================================== */

.solutions-hero {
    padding: 110px 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
}

.solutions-hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 70px;
    align-items: center;
}

.solutions-hero-content h1,
.solutions-overview h2,
.core-solutions-section h2,
.investment-process-section h2,
.client-types-section h2,
.solutions-cta h2 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.15;
}

.solutions-hero-content h1 {
    font-size: clamp(46px, 5vw, 72px);
    margin-bottom: 32px;
}

.solutions-hero-content p:not(.section-label),
.solutions-overview p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 34px;
}

.solutions-hero-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.solutions-overview,
.core-solutions-section,
.investment-process-section,
.client-types-section {
    padding: 110px 0;
}

.solutions-overview-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 80px;
}

.solutions-overview h2,
.core-solutions-section h2,
.investment-process-section h2,
.client-types-section h2,
.solutions-cta h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.core-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.core-solution-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 38px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

    .core-solution-card i {
        color: var(--gold);
        font-size: 38px;
        margin-bottom: 24px;
    }

    .core-solution-card h3,
    .process-step h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .core-solution-card p,
    .process-step p {
        color: var(--muted);
        line-height: 1.8;
    }

.investment-process-section {
    background: var(--secondary-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    background: var(--white);
}

.process-step {
    padding: 42px;
    border-right: 1px solid var(--border);
}

    .process-step:last-child {
        border-right: none;
    }

    .process-step span {
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 13px;
    }

.solutions-stats-section {
    background: var(--footer);
    color: var(--white);
    padding: 80px 0;
}

.solutions-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.solutions-stat {
    border-left: 1px solid rgba(255,255,255,.18);
    padding-left: 30px;
}

    .solutions-stat strong {
        display: block;
        font-family: "Playfair Display", serif;
        font-size: 52px;
        font-weight: 500;
        color: var(--gold);
        margin-bottom: 10px;
    }

    .solutions-stat span {
        color: #d6d6d6;
    }

.client-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.client-type-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.solutions-cta {
    background: linear-gradient(135deg, #0b0b0b, #151515);
    padding: 120px 0;
    text-align: center;
}

.solutions-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.solutions-cta h2 {
    color: var(--white);
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .solutions-hero-grid,
    .solutions-overview-grid {
        grid-template-columns: 1fr;
    }

    .core-solutions-grid,
    .client-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline,
    .solutions-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        border-bottom: 1px solid var(--border);
    }

    .solutions-hero-image img {
        height: 460px;
    }
}

@media (max-width: 700px) {
    .solutions-hero,
    .solutions-overview,
    .core-solutions-section,
    .investment-process-section,
    .client-types-section {
        padding: 75px 0;
    }

    .core-solutions-grid,
    .client-types-grid,
    .process-timeline,
    .solutions-stats-grid {
        grid-template-columns: 1fr;
    }

    .core-solution-card,
    .process-step {
        padding: 30px;
    }

    .solutions-hero-image img {
        height: 340px;
    }

    .solutions-cta {
        padding: 85px 20px;
    }
}

/* ==========================================
   STRATEGIES PAGE
========================================== */

.strategies-hero {
    padding: 110px 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
}

.strategies-hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 70px;
    align-items: center;
}

.strategies-hero-content h1,
.strategy-philosophy h2,
.allocation-section h2,
.research-section h2,
.risk-section h2,
.strategies-cta h2 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.15;
}

.strategies-hero-content h1 {
    font-size: clamp(46px, 5vw, 72px);
    margin-bottom: 32px;
}

.strategies-hero-content p:not(.section-label),
.strategy-philosophy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 28px;
}

.strategies-hero-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.strategy-philosophy,
.allocation-section,
.research-section,
.risk-section {
    padding: 110px 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 80px;
}

.strategy-philosophy h2,
.allocation-section h2,
.research-section h2,
.risk-section h2,
.strategies-cta h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.allocation-section {
    background: var(--secondary-bg);
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.allocation-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

    .allocation-card h3 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .allocation-card span {
        font-family: "Playfair Display", serif;
        color: var(--gold);
        font-size: 46px;
    }

.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.research-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

    .research-card i {
        color: var(--gold);
        font-size: 38px;
        margin-bottom: 24px;
    }

    .research-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .research-card p {
        color: var(--muted);
        line-height: 1.8;
    }

.risk-section {
    background: var(--ivory);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    background: var(--white);
}

.risk-card {
    padding: 38px;
    border-right: 1px solid var(--border);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

    .risk-card:last-child {
        border-right: none;
    }

    .risk-card::before {
        content: "✓";
        color: var(--gold);
        margin-right: 12px;
    }

.strategies-cta {
    background: linear-gradient(135deg, #0b0b0b, #151515);
    padding: 120px 0;
    text-align: center;
}

.strategies-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.strategies-cta h2 {
    color: var(--white);
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .strategies-hero-grid,
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .allocation-grid,
    .research-grid,
    .risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategies-hero-image img {
        height: 460px;
    }

    .risk-card {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 700px) {
    .strategies-hero,
    .strategy-philosophy,
    .allocation-section,
    .research-section,
    .risk-section {
        padding: 75px 0;
    }

    .allocation-grid,
    .research-grid,
    .risk-grid {
        grid-template-columns: 1fr;
    }

    .research-card,
    .risk-card,
    .allocation-card {
        padding: 30px;
    }

    .strategies-hero-image img {
        height: 340px;
    }

    .strategies-cta {
        padding: 85px 20px;
    }
}

/* ==========================================
   INSIGHTS PAGE
========================================== */

.insights-page-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ivory), var(--secondary-bg));
    border-bottom: 1px solid var(--border);
}

.insights-page-hero-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 70px;
    align-items: center;
}

.insights-page-hero-content h1,
.featured-research-section h2,
.research-categories-section h2,
.insights-library-section h2,
.insights-newsletter-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.15;
}

.insights-page-hero-content h1 {
    font-size: clamp(48px, 5vw, 74px);
    margin-bottom: 32px;
}

.insights-page-hero-content p:not(.section-label) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
    max-width: 760px;
    margin-bottom: 38px;
}

.insights-page-hero-card {
    background: var(--footer);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, .35);
    padding: 46px;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

    .insights-page-hero-card > p:first-child {
        color: var(--gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

    .insights-page-hero-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 34px;
        font-weight: 500;
        line-height: 1.25;
        margin-bottom: 24px;
    }

    .insights-page-hero-card p {
        color: #d6d6d6;
        line-height: 1.85;
        margin-bottom: 28px;
    }

    .insights-page-hero-card span {
        color: var(--gold);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
    }

/* FEATURED RESEARCH */

.featured-research-section,
.research-categories-section,
.insights-library-section {
    padding: 110px 0;
}

    .featured-research-section h2,
    .research-categories-section h2,
    .insights-library-section h2,
    .insights-newsletter-section h2 {
        font-size: clamp(38px, 4vw, 56px);
    }

.featured-research-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 32px;
}

.featured-main-article,
.side-article,
.research-category-card,
.library-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

    .featured-main-article img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

.featured-main-content {
    padding: 38px;
}

    .featured-main-content h3 {
        font-family: "Playfair Display", serif;
        font-size: 36px;
        font-weight: 500;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .featured-main-content p:not(.card-label) {
        color: var(--muted);
        line-height: 1.85;
        margin-bottom: 28px;
    }

.article-meta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 13px;
}

    .article-meta a {
        color: var(--gold);
        font-weight: 700;
    }

.featured-side-list {
    display: grid;
    gap: 22px;
}

.side-article {
    padding: 34px;
}

    .side-article h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .side-article p:not(.card-label) {
        color: var(--muted);
        line-height: 1.75;
    }

/* RESEARCH CATEGORIES */

.research-categories-section {
    background: var(--secondary-bg);
}

.research-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.research-category-card {
    padding: 36px;
}

    .research-category-card i {
        color: var(--gold);
        font-size: 38px;
        margin-bottom: 24px;
    }

    .research-category-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .research-category-card p {
        color: var(--muted);
        line-height: 1.8;
    }

/* LIBRARY */

.insights-library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.library-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.library-card div {
    padding: 30px;
}

.library-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.28;
    margin-bottom: 16px;
}

.library-card p:not(.card-label) {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.library-card span {
    color: var(--muted);
    font-size: 13px;
}

/* NEWSLETTER */

.insights-newsletter-section {
    background: linear-gradient(135deg, #0b0b0b, #151515);
    padding: 110px 0;
    color: var(--white);
}

.insights-newsletter-inner {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 70px;
    align-items: center;
}

.insights-newsletter-section h2 {
    margin-bottom: 24px;
}

.insights-newsletter-section p:not(.section-label) {
    color: #d6d6d6;
    line-height: 1.85;
    max-width: 700px;
}

.insights-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.04);
}

    .insights-newsletter-form input {
        border: none;
        background: transparent;
        color: var(--white);
        padding: 20px;
        outline: none;
        min-width: 0;
    }

    .insights-newsletter-form button {
        border: none;
        background: var(--gold);
        color: var(--white);
        padding: 0 30px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
    }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .insights-page-hero-grid,
    .featured-research-grid,
    .insights-newsletter-inner {
        grid-template-columns: 1fr;
    }

    .research-categories-grid,
    .insights-library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .insights-page-hero,
    .featured-research-section,
    .research-categories-section,
    .insights-library-section,
    .insights-newsletter-section {
        padding: 75px 0;
    }

    .research-categories-grid,
    .insights-library-grid {
        grid-template-columns: 1fr;
    }

    .insights-page-hero-card,
    .featured-main-content,
    .side-article,
    .research-category-card,
    .library-card div {
        padding: 28px;
    }

    .featured-main-article img {
        height: 260px;
    }

    .library-card img {
        height: 200px;
    }

    .insights-newsletter-form {
        grid-template-columns: 1fr;
    }

        .insights-newsletter-form button {
            padding: 18px;
        }

    .article-meta {
        flex-direction: column;
    }
}

/* ==========================================
   CONTACT PAGE
========================================== */

.contact-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ivory), var(--secondary-bg));
    border-bottom: 1px solid var(--border);
}

.contact-hero-inner {
    max-width: 900px;
}

.contact-hero h1,
.contact-main-section h2,
.contact-faq-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.15;
}

.contact-hero h1 {
    font-size: clamp(48px, 5vw, 72px);
    margin-bottom: 28px;
}

.contact-hero p:not(.section-label) {
    color: var(--muted);
    line-height: 1.9;
    max-width: 760px;
}

/* MAIN */

.contact-main-section {
    padding: 110px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
}

.contact-info-panel {
    background: var(--footer);
    color: var(--white);
    padding: 50px;
}

    .contact-info-panel h2 {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .contact-info-panel > p:not(.section-label) {
        color: #d6d6d6;
        line-height: 1.8;
        margin-bottom: 40px;
    }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .contact-details-list div {
        border-top: 1px solid rgba(255,255,255,.1);
        padding-top: 24px;
    }

    .contact-details-list i {
        color: var(--gold);
        font-size: 20px;
        margin-right: 10px;
    }

    .contact-details-list span {
        display: block;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .contact-details-list p {
        color: #d6d6d6;
        margin: 0;
    }

/* FORM */

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    margin-bottom: 24px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        border: 1px solid var(--border);
        padding: 14px;
        font-size: 15px;
        font-family: Inter;
        outline: none;
        background: #fff;
    }

    .form-group textarea {
        resize: vertical;
    }

/* OFFICES */

.contact-offices-section {
    padding: 110px 0;
    background: var(--secondary-bg);
}

.contact-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-office-card {
    background: white;
    border: 1px solid var(--border);
    padding: 36px;
}

    .contact-office-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        margin-bottom: 16px;
        font-weight: 500;
    }

    .contact-office-card p {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .contact-office-card span {
        color: var(--gold);
        font-weight: 700;
    }

/* FAQ */

.contact-faq-section {
    padding: 110px 0;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 70px;
}

.contact-faq-section h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border: 1px solid var(--border);
    padding: 32px;
}

    .faq-item h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 14px;
    }

    .faq-item p {
        color: var(--muted);
        line-height: 1.8;
    }

/* RESPONSIVE */

@media(max-width:1100px) {

    .contact-main-grid,
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {

    .contact-hero,
    .contact-main-section,
    .contact-offices-section,
    .contact-faq-section {
        padding: 75px 0;
    }

    .form-row,
    .contact-offices-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form,
    .contact-office-card,
    .faq-item {
        padding: 28px;
    }

        .contact-info-panel h2 {
            font-size: 34px;
        }
}

/* ==========================================
   REGISTER PAGE
========================================== */

.register-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--ivory), var(--secondary-bg));
}

.register-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 50px;
    align-items: start;
}

.register-side-panel {
    background: var(--footer);
    color: var(--white);
    padding: 54px;
    min-height: 100%;
}

    .register-side-panel h1,
    .register-form-header h2 {
        font-family: "Playfair Display", serif;
        font-weight: 500;
        line-height: 1.15;
    }

    .register-side-panel h1 {
        font-size: clamp(42px, 4vw, 62px);
        margin-bottom: 26px;
    }

    .register-side-panel > p:not(.section-label) {
        color: #d6d6d6;
        line-height: 1.85;
        margin-bottom: 40px;
    }

.investment-dashboard-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,175,55,.35);
    padding: 30px;
    margin-bottom: 36px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

    .dashboard-header span {
        color: #d6d6d6;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .dashboard-header strong {
        color: var(--gold);
        font-size: 24px;
    }

.mini-chart {
    height: 180px;
    margin-bottom: 24px;
}

    .mini-chart svg {
        width: 100%;
        height: 100%;
    }

    .mini-chart line {
        stroke: rgba(255,255,255,.12);
    }

    .mini-chart polyline {
        fill: none;
        stroke: var(--gold);
        stroke-width: 4;
    }

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    .dashboard-metrics small {
        display: block;
        color: #bdbdbd;
        font-size: 11px;
        margin-bottom: 6px;
    }

    .dashboard-metrics strong {
        color: var(--white);
        font-size: 13px;
    }

.register-trust-list {
    display: grid;
    gap: 18px;
}

    .register-trust-list div {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #d6d6d6;
    }

    .register-trust-list i {
        color: var(--gold);
        font-size: 20px;
    }

/* FORM */

.register-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 54px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.register-form-header {
    margin-bottom: 38px;
}

    .register-form-header h2 {
        font-size: clamp(38px, 4vw, 54px);
        margin-bottom: 20px;
    }

    .register-form-header p {
        color: var(--muted);
        line-height: 1.8;
    }

.form-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
}

    .form-section-title:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .form-section-title span {
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 1px;
    }

    .form-section-title h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
    }

.phone-input-group {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 12px;
}

.form-group small {
    color: var(--muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox-group {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

    .checkbox-group label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: var(--muted);
        line-height: 1.6;
    }

    .checkbox-group input {
        margin-top: 5px;
    }

.register-submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
}

    .register-submit-btn:hover {
        background: var(--gold-dark);
    }

.register-login-text {
    text-align: center;
    margin-top: 24px;
    color: var(--muted);
}

    .register-login-text a {
        color: var(--gold);
        font-weight: 700;
    }

/* RESPONSIVE */

@media(max-width:1100px) {
    .register-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {
    .register-section {
        padding: 55px 0;
    }

    .register-side-panel,
    .register-form-panel {
        padding: 28px;
    }

    .form-row,
    .phone-input-group {
        grid-template-columns: 1fr;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LOGIN PAGE
========================================== */

.login-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--ivory), var(--secondary-bg));
}

.login-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 50px;
    align-items: stretch;
}

.login-inspiration-panel {
    background: radial-gradient(circle at top right, #242424, var(--footer));
    color: var(--white);
    padding: 58px;
}

    .login-inspiration-panel h1,
    .login-form-header h2 {
        font-family: "Playfair Display", serif;
        font-weight: 500;
        line-height: 1.15;
    }

    .login-inspiration-panel h1 {
        font-size: clamp(44px, 4vw, 66px);
        margin-bottom: 28px;
    }

    .login-inspiration-panel > p:not(.section-label) {
        color: #d6d6d6;
        line-height: 1.85;
        margin-bottom: 42px;
    }

.login-market-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,175,55,.35);
    padding: 32px;
    margin-bottom: 34px;
}

.login-market-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

    .login-market-header span {
        color: #d6d6d6;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .login-market-header strong {
        color: var(--gold);
        font-size: 26px;
    }

.login-market-table {
    display: grid;
    gap: 16px;
}

    .login-market-table div {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding-bottom: 14px;
    }

    .login-market-table span {
        color: #d6d6d6;
    }

    .login-market-table strong {
        color: var(--gold);
    }

.login-quote-box {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
}

    .login-quote-box i {
        color: var(--gold);
        font-size: 30px;
    }

    .login-quote-box p {
        color: #d6d6d6;
        line-height: 1.8;
        margin-top: 12px;
    }

.login-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 58px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.login-form-header {
    margin-bottom: 38px;
}

    .login-form-header h2 {
        font-size: clamp(38px, 4vw, 56px);
        margin-bottom: 20px;
    }

    .login-form-header p {
        color: var(--muted);
        line-height: 1.8;
    }

.login-form-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0 32px;
    color: var(--muted);
    font-size: 14px;
}

    .login-form-options label {
        display: flex;
        gap: 10px;
    }

    .login-form-options a {
        color: var(--gold);
        font-weight: 700;
    }

.login-submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
}

    .login-submit-btn:hover {
        background: var(--gold-dark);
    }

.login-register-text {
    text-align: center;
    margin-top: 24px;
    color: var(--muted);
}

    .login-register-text a {
        color: var(--gold);
        font-weight: 700;
    }

@media(max-width:1100px) {
    .login-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {
    .login-section {
        padding: 55px 0;
    }

    .login-inspiration-panel,
    .login-form-panel {
        padding: 30px;
    }

    .login-form-options {
        flex-direction: column;
    }
}

.auth-error-box {
    background: #fff6f6;
    border: 1px solid #e6b8b8;
    color: #8a1f1f;
    padding: 18px 22px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.7;
}

    .auth-error-box ul {
        margin-left: 18px;
    }

/* =====================================================
   CLIENT DASHBOARD
===================================================== */

.client-dashboard-page {
    display: flex;
    min-height: 100vh;
    background: #07090D;
}

/* SIDEBAR */

.client-sidebar {
    width: 280px;
    background: #0E1219;
    border-right: 1px solid #222831;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
}

.client-sidebar-logo img {
    width: 180px;
}

.client-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 50px;
}

    .client-sidebar-nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #A9B0BA;
        text-decoration: none;
        padding: 14px 18px;
        border-radius: 12px;
        transition: .3s;
    }

        .client-sidebar-nav a:hover,
        .client-sidebar-nav a.active {
            background: rgba(212,175,55,.12);
            color: #D4AF37;
        }

.client-sidebar-logout button {
    width: 100%;
    border: none;
    background: #D4AF37;
    color: #111;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

/* CONTENT */

.client-dashboard-content {
    flex: 1;
    padding: 40px;
}

.client-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

    .client-dashboard-header h1 {
        color: white;
        margin-top: 12px;
        font-size: 42px;
    }

    .client-dashboard-header p {
        color: #A0A7B3;
    }

.client-status-pill {
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

    .client-status-pill.verified {
        background: rgba(0,180,90,.15);
        color: #4ADE80;
    }

    .client-status-pill.pending {
        background: rgba(255,180,0,.15);
        color: #FACC15;
    }

/* SUMMARY */

.client-summary-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.client-summary-card {
    background: #0E1219;
    border: 1px solid #222831;
    border-radius: 18px;
    padding: 28px;
}

    .client-summary-card span {
        color: #9EA6B2;
        font-size: 14px;
    }

    .client-summary-card strong {
        display: block;
        margin-top: 10px;
        font-size: 34px;
        color: white;
    }

    .client-summary-card p {
        margin-top: 12px;
        color: #7E8795;
        font-size: 14px;
    }

/* MAIN GRID */

.client-main-grid {
    display: grid;
    grid-template-columns: 2fr 380px;
    gap: 24px;
    margin-bottom: 35px;
}

.client-chart-card,
.client-profile-card,
.client-table-section,
.client-security-card {
    background: #0E1219;
    border: 1px solid #222831;
    border-radius: 20px;
}

.client-card-header {
    padding: 25px 30px;
}

    .client-card-header h2 {
        color: white;
    }

    .client-card-header p {
        color: #9EA6B2;
        margin-top: 8px;
    }

/* CHART */

.client-activity-chart {
    padding: 20px 30px 10px;
}

    .client-activity-chart svg {
        width: 100%;
        height: 320px;
    }

    .client-activity-chart line {
        stroke: #232A35;
    }

.investment-line {
    fill: none;
    stroke: #D4AF37;
    stroke-width: 5;
}

.withdrawal-line {
    fill: none;
    stroke: #6B7280;
    stroke-width: 4;
}

.client-chart-legend {
    display: flex;
    gap: 25px;
    padding: 0 30px 30px;
}

    .client-chart-legend span {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
    }

.legend-gold,
.legend-muted {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-gold {
    background: #D4AF37;
}

.legend-muted {
    background: #6B7280;
}

/* PROFILE */

.client-profile-card {
    padding: 30px;
}

    .client-profile-card h2 {
        color: white;
        margin-bottom: 25px;
    }

.client-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #D4AF37;
    color: black;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.client-profile-card h3 {
    color: white;
}

.client-profile-card p {
    color: #A0A7B3;
}

.client-profile-row {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #222831;
}

    .client-profile-row span {
        color: #9EA6B2;
    }

    .client-profile-row strong {
        color: white;
    }

/* TABLES */

.client-table-section {
    margin-bottom: 30px;
}

.client-table-wrapper {
    overflow-x: auto;
}

.client-data-table {
    width: 100%;
    border-collapse: collapse;
}

    .client-data-table th {
        text-align: left;
        color: #D4AF37;
        padding: 20px 25px;
        border-bottom: 1px solid #222831;
    }

    .client-data-table td {
        color: white;
        padding: 18px 25px;
        border-bottom: 1px solid #1C232D;
    }

.status-badge {
    background: rgba(212,175,55,.12);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
}

.empty-table-text {
    text-align: center;
    color: #A0A7B3 !important;
    padding: 40px !important;
}

/* SECURITY */

.client-security-card {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .client-security-card i {
        font-size: 40px;
        color: #D4AF37;
    }

    .client-security-card h3 {
        color: white;
        margin-bottom: 10px;
    }

    .client-security-card p {
        color: #9EA6B2;
    }

/* MOBILE */

@media (max-width: 1200px) {

    .client-summary-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .client-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .client-dashboard-page {
        flex-direction: column;
    }

    .client-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .client-dashboard-content {
        padding: 25px;
    }

    .client-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-summary-grid {
        grid-template-columns: 1fr;
    }

    .client-dashboard-header h1 {
        font-size: 30px;
    }
}

/* =====================================================
   ADMIN DASHBOARD
===================================================== */

.admin-dashboard-page {
    display: flex;
    min-height: 100vh;
    background: #07090D;
}

.admin-sidebar {
    width: 280px;
    background: #0E1219;
    border-right: 1px solid #222831;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-sidebar-logo img {
    width: 180px;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

    .admin-sidebar-nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #A0A7B3;
        text-decoration: none;
        padding: 14px 18px;
        border-radius: 12px;
    }

        .admin-sidebar-nav a.active,
        .admin-sidebar-nav a:hover {
            background: rgba(212,175,55,.12);
            color: #D4AF37;
        }

.admin-sidebar-logout button {
    width: 100%;
    border: none;
    background: #D4AF37;
    color: black;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.admin-dashboard-content {
    flex: 1;
    padding: 40px;
}

.admin-dashboard-header h1 {
    color: white;
    margin-top: 10px;
}

.admin-dashboard-header p {
    color: #A0A7B3;
}

.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin: 35px 0;
}

.admin-summary-card {
    background: #0E1219;
    border: 1px solid #222831;
    border-radius: 18px;
    padding: 28px;
}

    .admin-summary-card span {
        color: #9EA6B2;
    }

    .admin-summary-card strong {
        display: block;
        margin-top: 12px;
        color: white;
        font-size: 32px;
    }

.admin-table-section {
    background: #0E1219;
    border: 1px solid #222831;
    border-radius: 20px;
}

.admin-card-header {
    padding: 25px 30px;
}

    .admin-card-header h2 {
        color: white;
    }

    .admin-card-header p {
        color: #A0A7B3;
    }

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-data-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-data-table th {
        color: #D4AF37;
        text-align: left;
        padding: 20px 25px;
        border-bottom: 1px solid #222831;
    }

    .admin-data-table td {
        color: white;
        padding: 18px 25px;
        border-bottom: 1px solid #1C232D;
    }

.admin-status {
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 13px;
}

    .admin-status.verified {
        background: rgba(0,180,90,.15);
        color: #4ADE80;
    }

    .admin-status.pending {
        background: rgba(255,180,0,.15);
        color: #FACC15;
    }

.admin-action-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width:1200px) {
    .admin-summary-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:900px) {

    .admin-dashboard-page {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .admin-dashboard-content {
        padding: 25px;
    }

    .admin-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* ADMIN USER DETAILS */

.admin-management-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.admin-management-card {
    background: #0E1219;
    border: 1px solid #222831;
    border-radius: 20px;
    padding: 30px;
}

    .admin-management-card h2 {
        color: white;
        margin-bottom: 24px;
    }

    .admin-management-card h3 {
        color: #D4AF37;
        margin-bottom: 14px;
    }

.admin-control-block {
    border-top: 1px solid #222831;
    padding-top: 24px;
    margin-top: 24px;
}

.admin-gold-button,
.admin-outline-button {
    width: 100%;
    padding: 15px 22px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
}

.admin-gold-button {
    background: #D4AF37;
    color: black;
    border: none;
}

.admin-outline-button {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.admin-management-card .form-group label {
    color: #A0A7B3;
}

.admin-management-card input,
.admin-management-card select,
.admin-management-card textarea {
    background: #07090D;
    border: 1px solid #222831;
    color: white;
}

.admin-table-section {
    margin-bottom: 30px;
}

@media(max-width: 1000px) {
    .admin-management-grid {
        grid-template-columns: 1fr;
    }
}