/* =========================================================
   AVENTRIX WEALTH — GLOBAL DESIGN SYSTEM
   ========================================================= */

:root {
    --bg: #f7f8fa;
    --surface: #ffffff;
    --surface-soft: #f1f3f6;

    --text: #111827;
    --text-soft: #667085;
    --text-muted: #98a2b3;

    --primary: #171717;
    --primary-hover: #2d2d2d;

    --accent: #7c5cff;
    --accent-light: #eeeaff;

    --border: #e5e7eb;
    --border-dark: #d0d5dd;

    --success: #12b76a;
    --danger: #f04438;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.04);
    --shadow-md: 0 10px 30px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 20px 60px rgba(16, 24, 40, 0.12);

    --container: 1180px;

    --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

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

.text-muted {
    color: var(--text-soft);
}

.desktop-only {
    display: block;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;

    background: var(--accent-light);
    color: var(--accent);

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.section-title {
    max-width: 720px;
    margin: 16px auto 0;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 750;
}

.section-description {
    max-width: 620px;
    margin: 20px auto 0;

    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 20px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-dark);
    box-shadow: var(--shadow-sm);
}

.btn-accent {
    color: #fff;
    background: var(--accent);
}

.btn-accent:hover {
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.25);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(247, 248, 250, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}

.navbar {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-mark {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    color: #fff;
    background: var(--primary);

    border-radius: 9px;

    font-size: 13px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 550;

    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 20px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 110px 0 80px;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(124, 92, 255, 0.14),
            transparent 32%
        ),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    margin-top: 22px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    max-width: 560px;
    margin-top: 25px;

    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 32px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: var(--text-muted);
    font-size: 13px;
}

.hero-note-icon {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    color: var(--success);
    background: #e9f9f1;
    border-radius: 50%;

    font-size: 10px;
}

/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
}

.dashboard-preview {
    position: relative;

    padding: 18px;

    background: #151515;
    border: 1px solid #292929;
    border-radius: 24px;

    box-shadow: var(--shadow-lg);

    transform: rotate(1deg);
}

.dashboard-window {
    overflow: hidden;

    background: #f7f7f8;
    border-radius: 15px;
}

.window-top {
    height: 42px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    background: #fff;
    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;

    background: #d0d5dd;
    border-radius: 50%;
}

.preview-content {
    display: grid;
    grid-template-columns: 150px 1fr;

    min-height: 420px;
}

.preview-sidebar {
    padding: 22px 15px;

    background: #fff;
    border-right: 1px solid var(--border);
}

.preview-sidebar-logo {
    margin-bottom: 28px;

    font-size: 14px;
    font-weight: 800;
}

.preview-nav-item {
    padding: 9px 10px;
    margin-bottom: 5px;

    color: var(--text-muted);

    border-radius: 7px;

    font-size: 10px;
}

.preview-nav-item.active {
    color: var(--text);
    background: var(--surface-soft);
    font-weight: 700;
}

.preview-main {
    padding: 24px;
}

.preview-heading {
    font-size: 17px;
    font-weight: 750;
}

.preview-subtitle {
    margin-top: 4px;

    color: var(--text-muted);
    font-size: 9px;
}

.preview-balance {
    margin-top: 20px;
    padding: 20px;

    color: #fff;
    background: var(--primary);

    border-radius: 14px;
}

.preview-balance-label {
    opacity: 0.65;
    font-size: 9px;
}

.preview-balance-amount {
    margin-top: 5px;

    font-size: 27px;
    font-weight: 750;
    letter-spacing: -0.04em;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

    margin-top: 12px;
}

.preview-stat {
    padding: 15px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.preview-stat-label {
    color: var(--text-muted);
    font-size: 8px;
}

.preview-stat-value {
    margin-top: 5px;

    font-size: 15px;
    font-weight: 750;
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
    padding: 35px 0;

    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.trust-items {
    display: flex;
    align-items: center;
    gap: 50px;

    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 60px;
}

.feature-card {
    padding: 30px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    color: var(--accent);
    background: var(--accent-light);

    border-radius: 12px;

    font-size: 18px;
}

.feature-card h3 {
    margin-top: 22px;

    font-size: 19px;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin-top: 10px;

    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   STEPS
   ========================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 60px;
}

.step {
    position: relative;

    padding: 30px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.step h3 {
    margin-top: 35px;

    font-size: 20px;
}

.step p {
    margin-top: 9px;

    color: var(--text-soft);
    font-size: 14px;
}

/* =========================================================
   SECURITY
   ========================================================= */

.security-section {
    background: #151515;
    color: #fff;
}

.security-section .section-description {
    color: #a1a1aa;
}

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

    margin-top: 60px;
}

.security-list {
    display: grid;
    gap: 18px;
}

.security-item {
    display: flex;
    gap: 15px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.security-icon {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: rgba(124, 92, 255, 0.18);
    border-radius: 10px;

    color: #b7a8ff;
}

.security-item h3 {
    font-size: 15px;
}

.security-item p {
    margin-top: 4px;

    color: #a1a1aa;
    font-size: 13px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-box {
    padding: 70px 50px;

    text-align: center;

    background: var(--accent-light);
    border-radius: var(--radius-xl);
}

.cta-box h2 {
    max-width: 650px;
    margin: auto;

    font-size: clamp(35px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.cta-box p {
    max-width: 550px;
    margin: 18px auto 28px;

    color: var(--text-soft);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 70px 0 30px;

    background: #fff;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.footer-description {
    max-width: 300px;
    margin-top: 15px;

    color: var(--text-soft);
    font-size: 13px;
}

.footer-column h4 {
    margin-bottom: 15px;

    font-size: 13px;
}

.footer-column a {
    display: block;

    margin-bottom: 10px;

    color: var(--text-soft);
    font-size: 13px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 55px;
    padding-top: 25px;

    border-top: 1px solid var(--border);

    color: var(--text-muted);
    font-size: 12px;
}

/* =========================================================
   SCROLL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        padding: 60px 0 65px;
    }

    .hero-title {
        font-size: 47px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .dashboard-preview {
        padding: 10px;
    }

    .preview-content {
        grid-template-columns: 85px 1fr;
    }

    .preview-sidebar {
        padding: 15px 8px;
    }

    .preview-main {
        padding: 14px;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cta-box {
        padding: 50px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media (max-width: 900px) {

    .nav-links.mobile-open,
    .nav-actions.mobile-open {
        position: absolute;
        left: 14px;
        right: 14px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 18px;

        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;

        box-shadow: var(--shadow-lg);
    }

    .nav-links.mobile-open {
        top: 68px;
        gap: 0;
    }

    .nav-links.mobile-open a {
        padding: 12px 8px;
    }

    .nav-actions.mobile-open {
        top: 285px;
        gap: 8px;
    }
}
@media (max-width: 700px) {

    .dashboard-grid,
    .account-grid {
        grid-template-columns: 1fr !important;
    }

}
@media (max-width: 700px) {

    main .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
    }

    main .container > div[style*="grid-template-columns:repeat(2,1fr)"] {
        grid-template-columns: 1fr !important;
    }

}
/* =========================================
   ACCOUNT MENU
========================================= */

.account-menu {
    position: relative;
}

.account-trigger {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 6px 10px 6px 6px;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    color: var(--text);
    transition: 0.2s ease;
}

.account-trigger:hover {
    border-color: rgba(108, 76, 255, 0.35);
    background: var(--surface-2);
}

.account-name {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.account-chevron {
    font-size: 15px;
    opacity: 0.55;
    margin-top: -3px;
}


/* Avatar */

.avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.avatar-small {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 11px;
}


/* Dropdown */

.account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    width: 260px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;

    padding: 8px;

    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;

    z-index: 1000;
}

.account-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.account-dropdown-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
}

.account-dropdown-header > div {
    min-width: 0;
}

.account-dropdown-header strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-dropdown-header span:not(.avatar) {
    display: block;
    font-size: 12px;
    color: var(--muted);

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.account-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 4px;
}


.account-dropdown > a {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 10px 11px;

    border-radius: 10px;

    color: var(--text);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: 0.18s ease;
}

.account-dropdown > a:hover {
    background: var(--surface-2);
}

.account-dropdown > a span {
    width: 18px;
    text-align: center;
    opacity: 0.65;
}

.account-dropdown .logout-link {
    color: #c0392b;
}


/* =========================================
   RESPONSIVE ACCOUNT MENU
========================================= */

@media (max-width: 760px) {

    .account-name,
    .account-chevron {
        display: none;
    }

    .account-trigger {
        padding: 4px;
        border: 0;
        background: transparent;
    }

    .account-trigger:hover {
        background: transparent;
    }

    .nav-actions .btn {
        display: none;
    }

}
/* =========================================
   DASHBOARD
========================================= */

.dashboard-page {
    padding: 52px 0 90px;
    background: var(--bg);
    min-height: calc(100vh - 80px);
}


/* Welcome */

.dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 34px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;

    margin-bottom: 22px;
}

.dashboard-welcome-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-avatar {
    width: 68px;
    height: 68px;
    min-width: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.dashboard-welcome h1 {
    margin: 5px 0 8px;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.dashboard-welcome p {
    margin: 0;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.6;
}

.dashboard-date {
    text-align: right;
}

.dashboard-date span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 5px;
}

.dashboard-date strong {
    font-size: 14px;
}


/* Status cards */

.dashboard-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-bottom: 22px;
}

.dashboard-status-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 23px;
}

.status-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.status-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--surface-2);
    color: var(--primary);

    font-weight: 700;
}

.status-label {
    font-size: 12px;
    color: var(--muted);
}

.dashboard-status-card h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.dashboard-status-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}


/* Main grid */

.dashboard-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;

    margin-bottom: 22px;
}

.dashboard-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 26px;
}

.dashboard-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 22px;
}

.dashboard-panel-header h2 {
    margin: 5px 0 0;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
}


/* Account details */

.account-details-list {
    border-top: 1px solid var(--border);
}

.account-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.detail-label {
    font-size: 13px;
    color: var(--muted);
}

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

.detail-with-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.muted {
    color: var(--muted);
    font-weight: 400;
}

.verified-badge,
.pending-badge {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.verified-badge {
    background: rgba(31, 163, 91, 0.1);
    color: #17834a;
}

.pending-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #b26b00;
}


/* Quick actions */

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 13px;

    border-radius: 14px;

    text-decoration: none;
    color: var(--text);

    transition: 0.2s ease;
}

.quick-action:hover {
    background: var(--surface-2);
    transform: translateX(3px);
}

.quick-action-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--surface-2);
    color: var(--primary);

    font-weight: 700;
}

.quick-action strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.quick-action span:not(.quick-arrow) {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.quick-arrow {
    margin-left: auto;
    color: var(--muted);
}


/* Getting started */

.getting-started {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
}

.getting-started-header {
    margin-bottom: 22px;
}

.getting-started h2 {
    margin: 5px 0 7px;
    font-size: 21px;
}

.getting-started-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.getting-started-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.getting-step {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 16px;
}

.getting-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--surface-2);
    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

.getting-step.completed .getting-step-number {
    background: var(--primary);
    color: #fff;
}

.getting-step strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.getting-step p {
    margin: 0 0 9px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.getting-step a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.getting-step a:hover {
    text-decoration: underline;
}


/* Responsive */

@media (max-width: 900px) {

    .dashboard-status-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }

    .getting-started-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .dashboard-page {
        padding: 30px 0 60px;
    }

    .dashboard-welcome {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .dashboard-welcome-content {
        align-items: flex-start;
    }

    .dashboard-avatar {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 16px;
        font-size: 16px;
    }

    .dashboard-welcome h1 {
        font-size: 25px;
    }

    .dashboard-date {
        text-align: left;
        padding-left: 74px;
    }

    .dashboard-panel,
    .getting-started {
        padding: 21px;
    }

    .account-detail {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .detail-value,
    .detail-with-status {
        text-align: left;
        justify-content: flex-start;
    }

}
/* =========================================================
   AVENTRIX WEALTH — PREMIUM INVESTMENT HOMEPAGE
========================================================= */

.investment-theme {
    --invest-bg: #f4f1e9;
    --invest-paper: #faf9f5;
    --invest-dark: #11181b;
    --invest-dark-2: #192124;
    --invest-text: #171d1f;
    --invest-muted: #707572;
    --invest-gold: #ae9560;
    --invest-line: rgba(17, 24, 27, 0.14);
}


/* HEADER */

.investment-theme .site-header {
    background: rgba(244, 241, 233, 0.92);
    border-bottom-color: var(--invest-line);
    backdrop-filter: blur(16px);
}

.investment-theme .logo {
    color: var(--invest-dark);
}

.investment-theme .nav-links a {
    color: #535956;
}

.investment-theme .nav-links a:hover {
    color: var(--invest-dark);
}


/* GENERAL */

.investment-home {
    background: var(--invest-bg);
    color: var(--invest-text);
}

.investment-home .container {
    max-width: 1240px;
}


/* HERO */

.invest-hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 100px 0 90px;
}

.invest-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.invest-hero-copy {
    max-width: 610px;
}

.invest-kicker,
.invest-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--invest-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.invest-kicker span {
    width: 28px;
    height: 1px;
    background: var(--invest-gold);
}

.invest-hero h1 {
    margin: 28px 0 28px;
    max-width: 650px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 7vw, 104px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.invest-hero h1 em,
.invest-intro h2 em,
.invest-section-heading h2 em,
.invest-plans-header h2 em,
.invest-cta-inner h2 em {
    color: var(--invest-gold);
    font-style: italic;
    font-weight: 400;
}

.invest-hero-text {
    max-width: 500px;
    color: #5f6461;
    font-size: 17px;
    line-height: 1.75;
}

.invest-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.invest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: 0.25s ease;
}

.invest-btn span {
    font-size: 17px;
}

.invest-btn-dark {
    background: var(--invest-dark);
    color: #fff;
}

.invest-btn-dark:hover {
    transform: translateY(-2px);
    background: #252e31;
}

.invest-text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--invest-dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.invest-text-link span {
    transition: transform 0.2s ease;
}

.invest-text-link:hover span {
    transform: translateX(5px);
}

.invest-hero-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 65px;
}

.invest-note-line {
    width: 45px;
    height: 1px;
    background: var(--invest-line);
}

.invest-hero-note p {
    max-width: 300px;
    margin: 0;
    color: #858985;
    font-size: 11px;
    line-height: 1.6;
}


/* HERO IMAGE */

.invest-hero-visual {
    position: relative;
}

.invest-image-frame {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--invest-dark);
}

.invest-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(174, 149, 96, 0.32),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #202b2d 0%,
            #101719 52%,
            #090e10 100%
        );
}

.invest-image-placeholder::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    top: 90px;
    border: 1px solid rgba(174, 149, 96, 0.28);
    border-radius: 50%;
}

.invest-image-placeholder::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    right: -65px;
    top: 155px;
    border: 1px solid rgba(174, 149, 96, 0.18);
    border-radius: 50%;
}

.placeholder-content {
    position: relative;
    z-index: 2;
    max-width: 350px;
    color: #fff;
}

.placeholder-content span {
    display: block;
    margin-bottom: 18px;
    color: var(--invest-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.placeholder-content strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 400;
}

.invest-image-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.invest-floating-card {
    position: absolute;
    right: -28px;
    bottom: 55px;
    width: 210px;
    padding: 23px;
    background: #f8f6ef;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.floating-label {
    display: block;
    margin-bottom: 28px;
    color: var(--invest-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.invest-floating-card strong {
    display: block;
    max-width: 140px;
    color: var(--invest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.15;
}

.floating-arrow {
    position: absolute;
    right: 22px;
    bottom: 21px;
    font-size: 18px;
}


/* INTRO */

.invest-intro {
    padding: 150px 0;
    background: var(--invest-paper);
    border-top: 1px solid var(--invest-line);
}

.invest-intro-grid {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 90px;
}

.invest-intro h2 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 400;
}

.invest-large-text {
    max-width: 650px;
    margin: 42px 0 30px;
    color: var(--invest-muted);
    font-size: 18px;
    line-height: 1.8;
}

.invest-outline-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--invest-dark);
    border-bottom: 1px solid var(--invest-dark);
    padding-bottom: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.invest-outline-link span {
    transition: transform 0.2s ease;
}

.invest-outline-link:hover span {
    transform: translateX(5px);
}


/* VALUES */

.invest-values {
    padding: 140px 0;
    background: var(--invest-bg);
}

.invest-section-label span {
    color: var(--invest-gold);
}

.invest-section-heading {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 90px;
    margin-bottom: 80px;
}

.invest-section-heading h2,
.invest-plans-header h2 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 400;
}

.invest-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--invest-line);
}

.invest-value {
    min-height: 300px;
    padding: 35px 35px 35px 0;
    border-right: 1px solid var(--invest-line);
}

.invest-value:not(:first-child) {
    padding-left: 35px;
}

.invest-value:last-child {
    border-right: 0;
}

.value-number {
    display: block;
    margin-bottom: 80px;
    color: var(--invest-gold);
    font-size: 11px;
    font-weight: 700;
}

.invest-value h3 {
    margin-bottom: 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.invest-value p {
    max-width: 280px;
    color: var(--invest-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* PLANS */

.invest-plans {
    padding: 140px 0;
    background: var(--invest-paper);
    border-top: 1px solid var(--invest-line);
}

.invest-plans-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 70px;
}

.invest-plans-header h2 {
    margin-top: 25px;
}

.invest-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--invest-line);
    border-bottom: 1px solid var(--invest-line);
}

.invest-plan-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    color: var(--invest-dark);
    border-right: 1px solid var(--invest-line);
    text-decoration: none;
    transition: 0.3s ease;
}

.invest-plan-card:last-child {
    border-right: 0;
}

.invest-plan-card:hover {
    background: #efede5;
}

.invest-plan-card.featured {
    background: var(--invest-dark);
    color: #fff;
}

.invest-plan-card.featured:hover {
    background: var(--invest-dark-2);
}

.plan-top {
    display: flex;
    justify-content: space-between;
    color: var(--invest-gold);
    font-size: 11px;
    font-weight: 700;
}

.invest-plan-card h3 {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 400;
}

.invest-plan-card p {
    max-width: 280px;
    margin: 0;
    color: var(--invest-muted);
    font-size: 14px;
    line-height: 1.7;
}

.invest-plan-card.featured p {
    color: rgba(255,255,255,0.6);
}

.plan-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* PHILOSOPHY */

.invest-philosophy {
    padding: 150px 0;
    background: var(--invest-dark);
    color: #fff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 90px;
}

.invest-section-label.light {
    color: rgba(255,255,255,0.55);
}

.philosophy-grid blockquote {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.philosophy-grid p {
    max-width: 560px;
    margin-top: 45px;
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    line-height: 1.8;
}


/* PROCESS */

.invest-process {
    padding: 140px 0;
    background: var(--invest-bg);
}

.invest-process-grid {
    border-top: 1px solid var(--invest-line);
}

.invest-process-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 38px 0;
    border-bottom: 1px solid var(--invest-line);
}

.invest-process-item > span {
    color: var(--invest-gold);
    font-size: 11px;
    font-weight: 700;
}

.invest-process-item h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.invest-process-item p {
    max-width: 500px;
    margin: 0;
    color: var(--invest-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* FINAL CTA */

.invest-final-cta {
    padding: 140px 0;
    background: var(--invest-paper);
    border-top: 1px solid var(--invest-line);
}

.invest-cta-inner {
    padding: 85px;
    background: var(--invest-dark);
    color: #fff;
}

.invest-cta-inner h2 {
    max-width: 850px;
    margin: 30px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 400;
}

.invest-cta-inner p {
    max-width: 500px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    line-height: 1.7;
}

.invest-btn-light {
    background: #f4f1e9;
    color: var(--invest-dark);
}

.invest-btn-light:hover {
    transform: translateY(-2px);
    background: #fff;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .invest-hero {
        padding: 70px 0;
    }

    .invest-hero-grid,
    .invest-intro-grid,
    .invest-section-heading,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .invest-hero h1 {
        font-size: clamp(58px, 12vw, 90px);
    }

    .invest-image-frame {
        min-height: 560px;
    }

    .invest-floating-card {
        right: 20px;
    }

    .invest-values-grid,
    .invest-plan-grid {
        grid-template-columns: 1fr;
    }

    .invest-value,
    .invest-value:not(:first-child) {
        min-height: auto;
        padding: 35px 0;
        border-right: 0;
        border-bottom: 1px solid var(--invest-line);
    }

    .invest-value:last-child {
        border-bottom: 0;
    }

    .invest-value .value-number {
        margin-bottom: 35px;
    }

    .invest-plan-card,
    .invest-plan-card:not(:first-child) {
        min-height: 320px;
        border-right: 0;
        border-bottom: 1px solid var(--invest-line);
    }

    .invest-plan-card:last-child {
        border-bottom: 0;
    }

    .invest-plans-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .invest-cta-inner {
        padding: 55px 35px;
    }

}


@media (max-width: 600px) {

    .invest-hero {
        padding: 55px 0 70px;
    }

    .invest-hero h1 {
        margin-top: 22px;
        font-size: 58px;
    }

    .invest-hero-text {
        font-size: 15px;
    }

    .invest-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .invest-image-frame {
        min-height: 470px;
    }

    .invest-image-placeholder {
        padding: 30px;
    }

    .placeholder-content strong {
        font-size: 30px;
    }

    .invest-floating-card {
        width: 175px;
        right: 12px;
        bottom: 30px;
    }

    .invest-intro,
    .invest-values,
    .invest-plans,
    .invest-philosophy,
    .invest-process,
    .invest-final-cta {
        padding: 90px 0;
    }

    .invest-intro h2,
    .invest-section-heading h2,
    .invest-plans-header h2 {
        font-size: 46px;
    }

    .philosophy-grid blockquote {
        font-size: 45px;
    }

    .invest-process-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .invest-cta-inner {
        padding: 45px 25px;
    }

    .invest-cta-inner h2 {
        font-size: 47px;
    }

}
/* =========================================================
   AVENTRIX WEALTH INVESTMENT HOMEPAGE
========================================================= */

.investment-theme {
    background: #f7f5ef;
    color: #171716;
}


/* HERO
--------------------------------------------------------- */

.investment-hero {
    padding: 80px 0 70px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(190, 161, 87, 0.12),
            transparent 32%
        ),
        #f7f5ef;
}

.investment-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
    gap: 80px;
    align-items: center;
}

.investment-hero-copy {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #8c7542;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.investment-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.investment-hero h1 span {
    display: block;
    color: #8d7440;
    font-style: italic;
}

.hero-description {
    max-width: 580px;
    margin: 28px 0 32px;
    color: #66645e;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #24231f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.hero-trust-row {
    display: flex;
    gap: 38px;
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(23, 23, 22, 0.12);
}

.hero-trust-row div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-trust-row strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.hero-trust-row span {
    color: #77736b;
    font-size: 12px;
}


/* CALCULATOR
--------------------------------------------------------- */

.investment-calculator {
    padding: 30px;
    border: 1px solid rgba(23, 23, 22, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 25px 70px rgba(36, 31, 19, 0.08);
    backdrop-filter: blur(16px);
}

.calculator-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(23, 23, 22, 0.1);
}

.calculator-label {
    display: block;
    margin-bottom: 7px;
    color: #8c7542;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.calculator-top h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.calculator-icon {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #191917;
    color: #fff;
    font-size: 16px;
}

.calculator-form {
    padding-top: 25px;
}

.form-field {
    margin-bottom: 21px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #55524b;
    font-size: 12px;
    font-weight: 700;
}

.form-field select,
.amount-input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(23, 23, 22, 0.14);
    border-radius: 12px;
    background: #fff;
    color: #171716;
    font: inherit;
}

.form-field select {
    padding: 0 15px;
    cursor: pointer;
}

.amount-input {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.amount-input span {
    padding-left: 15px;
    color: #8d7440;
    font-weight: 700;
}

.amount-input input {
    width: 100%;
    height: 52px;
    padding: 0 14px 0 7px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #171716;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
}

.calculator-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0;
}

.calculator-summary > div {
    padding: 14px;
    border-radius: 12px;
    background: #f4f1e8;
}

.calculator-summary span,
.calculator-summary strong {
    display: block;
}

.calculator-summary span {
    margin-bottom: 5px;
    color: #77736b;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calculator-summary strong {
    font-size: 14px;
}

.calculator-button {
    width: 100%;
    justify-content: center;
}

.calculator-button span {
    margin-left: auto;
}

.calculator-note {
    margin: 14px 0 0;
    color: #88847b;
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}


/* =========================================================
   CONTINUOUS MARKET TICKER
========================================================= */

.market-ticker-bar {
    position: relative;
    z-index: 20;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1916;
    color: #ffffff;
}

.market-ticker-bar::before,
.market-ticker-bar::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 90px;
    content: "";
    pointer-events: none;
}

.market-ticker-bar::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #1a1916,
        transparent
    );
}

.market-ticker-bar::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #1a1916,
        transparent
    );
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: continuousTicker 32s linear infinite;
    will-change: transform;
}

.ticker-set {
    display: flex;
    flex-shrink: 0;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 16px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.ticker-item strong {
    color: #d1b56d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.ticker-item span {
    color: #eeeeeb;
    font-size: 12px;
}

.ticker-item span:last-child {
    color: #91b676;
}

.ticker-item span:last-child.negative {
    color: #c8786b;
}

@keyframes continuousTicker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* MARKET OVERVIEW
--------------------------------------------------------- */

.market-section {
    background: #f7f5ef;
}

.section {
    padding: 110px 0;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.section-heading-row h2,
.section-heading h2 {
    max-width: 650px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading-row p {
    max-width: 580px;
    margin: 18px 0 0;
    color: #77736b;
    line-height: 1.7;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    color: #66645e;
    font-size: 12px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ca55e;
    box-shadow: 0 0 0 5px rgba(124, 165, 94, 0.1);
}

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

.market-card {
    min-width: 0;
    padding: 25px;
    border: 1px solid rgba(23, 23, 22, 0.1);
    border-radius: 18px;
    background: #fff;
}

.market-card-top,
.asset-info,
.market-card-footer {
    display: flex;
    align-items: center;
}

.market-card-top {
    justify-content: space-between;
}

.asset-info {
    gap: 11px;
}

.asset-info strong,
.asset-info span {
    display: block;
}

.asset-info strong {
    font-size: 14px;
}

.asset-info span {
    margin-top: 3px;
    color: #858179;
    font-size: 11px;
}

.asset-icon {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1eee6;
    color: #8d7440;
    font-size: 17px;
    font-weight: 700;
}

.market-symbol {
    color: #9b968c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.market-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 28px;
}

.market-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.market-price span {
    font-size: 12px;
}

.market-price span.positive {
    color: #648d49;
}

.market-price span.negative {
    color: #b35e52;
}

.sparkline-wrapper {
    height: 90px;
    margin: 20px -5px 15px;
}

.market-sparkline {
    width: 100%;
    height: 100%;
    color: #8d7440;
}

.market-card-footer {
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(23, 23, 22, 0.08);
    color: #99958c;
    font-size: 10px;
}

.market-card-footer span:last-child {
    color: #7ca55e;
}

.market-disclaimer {
    margin: 18px 0 0;
    color: #969188;
    font-size: 11px;
}


/* PLANS
--------------------------------------------------------- */

.plans-preview-section {
    background: #ece8de;
}

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

.investment-plan-card {
    position: relative;
    display: flex;
    min-height: 400px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(23, 23, 22, 0.1);
    border-radius: 18px;
    background: #f8f6f0;
}

.investment-plan-card.featured-plan {
    background: #1a1916;
    color: #fff;
}

.plan-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-number {
    color: #99958c;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.plan-tag {
    padding: 6px 9px;
    border-radius: 50px;
    background: rgba(141, 116, 64, 0.1);
    color: #8d7440;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-plan .plan-tag {
    background: rgba(255, 255, 255, 0.09);
    color: #d8bd78;
}

.investment-plan-card h3 {
    margin: 65px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.investment-plan-card p {
    margin: 0;
    color: #77736b;
    font-size: 14px;
    line-height: 1.7;
}

.featured-plan p {
    color: #aaa69e;
}

.plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
    padding-top: 30px;
}

.plan-details span,
.plan-details strong {
    display: block;
}

.plan-details span {
    margin-bottom: 5px;
    color: #99958c;
    font-size: 10px;
    text-transform: uppercase;
}

.plan-details strong {
    font-size: 14px;
}

.plan-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid rgba(23, 23, 22, 0.1);
    color: #24231f;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.featured-plan .plan-link {
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}


/* APPROACH
--------------------------------------------------------- */

.approach-section {
    background: #f7f5ef;
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 110px;
}

.approach-intro h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.05em;
}

.approach-intro p {
    max-width: 430px;
    margin-top: 28px;
    color: #77736b;
    line-height: 1.8;
}

.approach-list {
    border-top: 1px solid rgba(23, 23, 22, 0.12);
}

.approach-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(23, 23, 22, 0.12);
}

.approach-item > span {
    color: #8d7440;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.approach-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.approach-item p {
    max-width: 550px;
    margin: 0;
    color: #77736b;
    line-height: 1.7;
}


/* HOW IT WORKS
--------------------------------------------------------- */

.process-section {
    background: #ece8de;
}

.section-heading.centered {
    margin-bottom: 60px;
    text-align: center;
}

.section-heading.centered h2 {
    margin-right: auto;
    margin-left: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-step {
    min-height: 240px;
    padding: 0 25px;
    border-left: 1px solid rgba(23, 23, 22, 0.12);
}

.process-step:last-child {
    border-right: 1px solid rgba(23, 23, 22, 0.12);
}

.process-number {
    display: block;
    margin-bottom: 55px;
    color: #8d7440;
    font-size: 11px;
    font-weight: 700;
}

.process-step h3 {
    margin: 0 0 12px;
    font-size: 17px;
}

.process-step p {
    margin: 0;
    color: #77736b;
    font-size: 13px;
    line-height: 1.7;
}


/* TRUST
--------------------------------------------------------- */

.trust-section {
    background: #f7f5ef;
}

.trust-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    padding: 65px;
    border-radius: 22px;
    background: #1a1916;
    color: #fff;
}

.trust-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.trust-features {
    display: flex;
    flex-direction: column;
}

.trust-features > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-features > div:first-child {
    padding-top: 0;
}

.trust-features > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.trust-features > div > span {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #d4b66f;
    font-size: 12px;
}

.trust-features strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.trust-features p {
    margin: 0;
    color: #aaa69e;
    font-size: 12px;
    line-height: 1.7;
}


/* FINAL CTA
--------------------------------------------------------- */

.final-investment-cta {
    padding: 120px 0 140px;
    background: #f7f5ef;
}

.final-cta-inner {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.final-cta-inner h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.final-cta-inner p {
    max-width: 500px;
    margin: 25px auto 30px;
    color: #77736b;
    line-height: 1.7;
}

.final-cta-inner .hero-actions {
    justify-content: center;
}


/* RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .investment-hero-grid,
    .approach-grid,
    .trust-panel {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .market-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-step {
        min-height: 200px;
        margin-bottom: 35px;
    }

    .process-step:nth-child(2) {
        border-right: 1px solid rgba(23, 23, 22, 0.12);
    }

    .process-step:nth-child(3) {
        border-left: 0;
    }

    .trust-panel {
        padding: 45px;
    }

}

@media (max-width: 700px) {

    .section {
        padding: 80px 0;
    }

    .investment-hero {
        padding: 55px 0;
    }

    .investment-hero h1 {
        font-size: 52px;
    }

    .hero-trust-row {
        gap: 20px;
        flex-wrap: wrap;
    }

    .investment-calculator {
        padding: 22px;
    }

    .section-heading-row {
        display: block;
    }

    .market-status {
        margin-top: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:nth-child(2),
    .process-step:nth-child(3) {
        min-height: auto;
        margin-bottom: 0;
        padding: 25px 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(23, 23, 22, 0.12);
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .process-number {
        margin-bottom: 25px;
    }

    .trust-panel {
        padding: 30px 24px;
    }

}
/* =========================================================
   HOMEPAGE IMAGE SECTIONS
========================================================= */

.approach-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd8cc;
}

.approach-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 16px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;

    background: rgba(20, 19, 17, 0.65);
    color: #ffffff;

    backdrop-filter: blur(12px);

    font-size: 11px;
}

.image-caption span:first-child {
    color: #d1b56d;
    font-weight: 700;
}

.approach-intro .text-link {
    margin-top: 25px;
}


/* Put the supporting content underneath
   the new visual rather than beside it. */

.approach-section .approach-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: stretch;
}

.approach-section .approach-list {
    max-width: 900px;
    margin-top: 70px;
    margin-left: auto;
}


/* Mobile */

@media (max-width: 1000px) {

    .approach-visual,
    .approach-visual img {
        min-height: 420px;
    }

    .approach-section .approach-list {
        margin-top: 45px;
    }

}

@media (max-width: 700px) {

    .approach-visual,
    .approach-visual img {
        min-height: 340px;
    }

}
/* =========================================================
   INVESTMENT HERO IMAGE
========================================================= */

.investment-hero {
    position: relative;
    isolation: isolate;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(20, 19, 17, 0.90) 0%,
            rgba(20, 19, 17, 0.72) 42%,
            rgba(20, 19, 17, 0.30) 100%
        ),
        url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* Keep hero content above the image */

.investment-hero > * {
    position: relative;
    z-index: 2;
}


/* Make the existing hero text work on the image */

.investment-hero h1,
.investment-hero h2,
.investment-hero p {
    color: #ffffff;
}


/* Hero eyebrow */

.investment-hero .eyebrow {
    color: #d1b56d;
}


/* Slightly stronger calculator separation */

.investment-hero .investment-calculator,
.investment-hero .calculator-card {
    background: rgba(255, 255, 255, 0.94);
    color: #1a1916;
    backdrop-filter: blur(18px);
}


/* Mobile */

@media (max-width: 700px) {

    .investment-hero {
        min-height: 800px;

        background-image:
            linear-gradient(
                180deg,
                rgba(20, 19, 17, 0.82),
                rgba(20, 19, 17, 0.72)
            ),
            url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=1400&q=85");

        background-position: center;
    }

}
/* =========================================================
   FIXED BOTTOM MARKET TICKER
========================================================= */

.market-ticker-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9999;

    width: 100%;
    height: 58px;

    overflow: hidden;

    background: rgba(20, 19, 17, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 -8px 30px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* Make sure the scrolling content fills the bar */

.market-ticker-bar .ticker-track {
    height: 58px;
    display: flex;
    align-items: stretch;

    width: max-content;

    animation:
        continuousTicker 32s linear infinite;

    will-change: transform;
}


/* Each repeated ticker set */

.market-ticker-bar .ticker-set {
    display: flex;
    flex-shrink: 0;
    height: 100%;
}


/* Individual ticker */

.market-ticker-bar .ticker-item {
    min-width: 210px;
    height: 100%;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 24px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    white-space: nowrap;
}


/* Coin symbol */

.market-ticker-bar .ticker-item strong {
    color: #d1b56d;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* Price */

.market-ticker-bar .ticker-item span {
    color: #f3f2ed;

    font-size: 12px;
}


/* Percentage */

.market-ticker-bar
.ticker-item
span:last-child {
    color: #91b676;
    font-weight: 600;
}


/* Negative percentage */

.market-ticker-bar
.ticker-item
span:last-child.negative {
    color: #d2786d;
}


/* Fade the edges */

.market-ticker-bar::before,
.market-ticker-bar::after {
    position: absolute;

    top: 0;
    bottom: 0;

    z-index: 5;

    width: 90px;

    content: "";

    pointer-events: none;
}

.market-ticker-bar::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 19, 17, 1),
            rgba(20, 19, 17, 0)
        );
}

.market-ticker-bar::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            rgba(20, 19, 17, 1),
            rgba(20, 19, 17, 0)
        );
}


/* =========================================================
   PAGE SPACE FOR FIXED TICKER
========================================================= */

/*
   Prevent the ticker from covering the very bottom
   of the website when the user reaches the end.
*/

body.home-has-market-ticker {
    padding-bottom: 58px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .market-ticker-bar {
        height: 52px;
    }

    .market-ticker-bar .ticker-track {
        height: 52px;
    }

    .market-ticker-bar .ticker-item {
        min-width: 175px;
        padding: 0 18px;
    }

    body.home-has-market-ticker {
        padding-bottom: 52px;
    }

}
/* =========================================================
   INVESTMENT CALCULATOR CONTRAST FIX
========================================================= */

.investment-hero .investment-calculator,
.investment-hero .calculator-card {
    color: #1a1916;

    background: rgba(250, 249, 245, 0.96);

    border:
        1px solid rgba(255, 255, 255, 0.45);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* Calculator heading */

.investment-hero
.investment-calculator
h2,

.investment-hero
.calculator-card
h2,

.investment-hero
.investment-calculator
h3,

.investment-hero
.calculator-card
h3 {
    color: #1a1916;
}


/* "Find your starting point" */

.investment-hero
.investment-calculator
.eyebrow,

.investment-hero
.calculator-card
.eyebrow {
    color: #756f63;
}


/* Regular calculator text */

.investment-hero
.investment-calculator
p,

.investment-hero
.calculator-card
p {
    color: #5f5a51;
}


/* Labels */

.investment-hero
.investment-calculator
label,

.investment-hero
.calculator-card
label {
    color: #292721;
}


/* Inputs */

.investment-hero
.investment-calculator
input,

.investment-hero
.investment-calculator
select,

.investment-hero
.calculator-card
input,

.investment-hero
.calculator-card
select {
    color: #1a1916;

    background: #ffffff;

    border:
        1px solid #d8d3c8;
}


/* Placeholder text */

.investment-hero
.investment-calculator
input::placeholder,

.investment-hero
.calculator-card
input::placeholder {
    color: #918b80;
}


/* Selected plan / amount */

.investment-hero
#selectedPlanName,

.investment-hero
#selectedAmount {
    color: #1a1916;
}


/* Disclaimer underneath calculator */

.investment-hero
.planner-disclaimer,

.investment-hero
.calculator-disclaimer,

.investment-hero
.investment-calculator
small,

.investment-hero
.calculator-card
small {
    color: #777167;
}


/* If the disclaimer uses a generic span */

.investment-hero
.investment-calculator
.disclaimer,

.investment-hero
.calculator-card
.disclaimer {
    color: #777167;
}


/* Calculator button */

.investment-hero
.investment-calculator
.btn-primary,

.investment-hero
.calculator-card
.btn-primary {
    color: #ffffff;
}
/* Full viewport hero */
.investment-hero {
    min-height: calc(100vh - 72px);
}

@media (max-width: 700px) {
    .investment-hero {
        min-height: calc(100vh - 60px);
    }
}
/* Hero secondary CTA */
.investment-hero .btn-secondary,
.investment-hero .hero-secondary-btn {
    color: #ffffff !important;
    border: 1px solid rgba(7, 7, 7, 0.75) !important;
    background: transparent !important;
}

.investment-hero .btn-secondary:hover,
.investment-hero .hero-secondary-btn:hover {
    color: #1a1916 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

/* Hero "How it works" button */
.investment-hero .text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    border-radius: 8px;
    background: transparent !important;
    text-decoration: none;
    transition: all 0.25s ease;
}

.investment-hero .text-link span {
    color: #ffffff !important;
}

.investment-hero .text-link:hover {
    color: #1a1916 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

.investment-hero .text-link:hover span {
    color: #1a1916 !important;
}
/* =========================================
   AVENTRIX WEALTH — ROBUST FOOTER
========================================= */

.site-footer {
    position: relative;
    margin-top: 0;
    padding: 90px 0 28px;
    background: #171614;
    color: #f3f1eb;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-logo .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(209, 181, 109, 0.65);
    border-radius: 9px;
    color: #d1b56d;
    font-size: 14px;
    font-weight: 700;
}

.footer-description {
    max-width: 340px;
    margin: 24px 0 30px;
    color: #a8a49b;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(209, 181, 109, 0.65);
    color: #e5d5a9;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-cta span {
    transition: transform 0.25s ease;
}

.footer-cta:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.footer-cta:hover span {
    transform: translateX(4px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-column-label {
    margin-bottom: 8px;
    color: #d1b56d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    color: #9e9a91;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.09);
}


/* =========================================
   DISCLAIMER
========================================= */

.footer-disclaimer {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-disclaimer-label {
    color: #d1b56d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-disclaimer p {
    max-width: 850px;
    margin: 0;
    color: #77736c;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 25px;
    color: #68655f;
    font-size: 11px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    color: #77736c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #77736c;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #91b676;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 520px;
    }

    .footer-disclaimer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}


@media (max-width: 700px) {

    .site-footer {
        padding: 65px 0 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
        padding-bottom: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-description {
        margin-top: 18px;
    }

    .footer-disclaimer {
        padding: 25px 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 14px 20px;
    }

}


@media (max-width: 480px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column {
        gap: 13px;
    }

    .footer-bottom {
        font-size: 10px;
    }

}
/* =========================================
   AVENTRIX WEALTH — INVESTMENT PLAN CARDS
========================================= */

.plans-preview-section {
    background: #f5f3ee;
}

.plans-preview-section .section-heading-row {
    align-items: flex-end;
    margin-bottom: 48px;
}

.plans-preview-section .section-heading-row > div:first-child {
    max-width: 680px;
}

.plans-preview-section .section-heading-row h2 {
    max-width: 620px;
    margin-bottom: 14px;
}

.plans-preview-section .section-heading-row p {
    max-width: 560px;
    margin: 0;
    color: #77736c;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   PLAN GRID
========================================= */

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


/* =========================================
   PLAN CARD
========================================= */

.investment-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 30px;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #dedbd3;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(25, 23, 19, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.investment-plan-card:hover {
    transform: translateY(-6px);
    border-color: #c9c3b6;
    box-shadow: 0 18px 45px rgba(25, 23, 19, 0.09);
}


/* =========================================
   CARD HEADER
========================================= */

.plan-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px;
}

.plan-number {
    color: #aaa59a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.plan-tag {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;

    border: 1px solid #ddd8cc;
    border-radius: 999px;

    color: #6d685f;
    background: #f8f6f1;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================
   CARD CONTENT
========================================= */

.investment-plan-card h3 {
    margin: 0 0 12px;

    color: #1a1916;

    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.investment-plan-card > p {
    max-width: 360px;
    margin: 0;

    color: #77736c;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   PLAN DETAILS
========================================= */

.plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;

    margin-top: auto;
    padding-top: 30px;
}

.plan-details > div {
    padding-top: 15px;
    border-top: 1px solid #e6e2d9;
}

.plan-details span {
    display: block;
    margin-bottom: 7px;

    color: #99948a;

    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-details strong {
    display: block;

    color: #292721;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   PLAN LINK
========================================= */

.plan-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
    padding-top: 18px;

    border-top: 1px solid #e6e2d9;

    color: #292721;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    transition: color 0.2s ease;
}

.plan-link span {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.plan-link:hover {
    color: #8e763c;
}

.plan-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================
   FEATURED PLAN
========================================= */

.investment-plan-card.featured-plan {
    background: #1b1a17;
    border-color: #1b1a17;
    box-shadow: 0 18px 50px rgba(20, 19, 17, 0.16);
}

.investment-plan-card.featured-plan:hover {
    border-color: #292722;
    box-shadow: 0 25px 60px rgba(20, 19, 17, 0.22);
}

.investment-plan-card.featured-plan .plan-number {
    color: #77736b;
}

.investment-plan-card.featured-plan .plan-tag {
    color: #e5d5a9;
    background: rgba(209, 181, 109, 0.10);
    border-color: rgba(209, 181, 109, 0.35);
}

.investment-plan-card.featured-plan h3 {
    color: #ffffff;
}

.investment-plan-card.featured-plan > p {
    color: #a9a59c;
}

.investment-plan-card.featured-plan .plan-details > div {
    border-color: rgba(255, 255, 255, 0.10);
}

.investment-plan-card.featured-plan .plan-details span {
    color: #77736b;
}

.investment-plan-card.featured-plan .plan-details strong {
    color: #f3f1eb;
}

.investment-plan-card.featured-plan .plan-link {
    border-color: rgba(255, 255, 255, 0.10);
    color: #e5d5a9;
}

.investment-plan-card.featured-plan .plan-link:hover {
    color: #ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .investment-plan-card {
        min-height: 390px;
    }

}

@media (max-width: 700px) {

    .plans-preview-section .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .investment-plan-card {
        min-height: 380px;
        padding: 25px;
    }

    .plan-card-header {
        margin-bottom: 45px;
    }

    .investment-plan-card h3 {
        font-size: 27px;
    }

}
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e6e2d9;
}

.market-stats > div {
    min-width: 0;
}

.market-stats span {
    display: block;
    margin-bottom: 6px;
    color: #99948a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.market-stats strong {
    display: block;
    overflow: hidden;
    color: #292721;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 700px) {

    .market-stats {
        gap: 8px;
    }

    .market-stats strong {
        font-size: 10px;
    }

}
/* =========================================
   HOW IT WORKS — EDITORIAL LAYOUT
========================================= */

.process-section {
    background: #ffffff;
}

.process-heading {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.process-heading h2 {
    margin: 12px 0 0;
    color: #1a1916;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.process-heading p {
    max-width: 430px;
    margin: 0 0 5px auto;
    color: #77736c;
    font-size: 14px;
    line-height: 1.8;
}

.process-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.process-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd8cc;
}

.process-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.process-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            180deg,
            rgba(20, 19, 17, 0.05) 30%,
            rgba(20, 19, 17, 0.72) 100%
        );
    pointer-events: none;
}

.process-visual-overlay {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #ffffff;
}

.process-visual-overlay span {
    color: #d1b56d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.process-visual-overlay strong {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: right;
}

.process-steps {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #dedbd3;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr 25px;
    gap: 18px;
    align-items: start;
    min-height: 154px;
    padding: 28px 8px 28px 0;
    border-bottom: 1px solid #dedbd3;
    transition: padding 0.25s ease;
}

.process-step:hover {
    padding-left: 10px;
}

.process-number {
    padding-top: 3px;
    color: #aaa59a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.process-step h3 {
    margin: 0 0 9px;
    color: #1a1916;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.process-step p {
    max-width: 390px;
    margin: 0;
    color: #77736c;
    font-size: 13px;
    line-height: 1.7;
}

.process-arrow {
    padding-top: 1px;
    color: #aaa59a;
    font-size: 17px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.process-step:hover .process-arrow {
    color: #8e763c;
    transform: translate(3px, -3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .process-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-heading p {
        margin-left: 0;
    }

    .process-layout {
        grid-template-columns: 1fr;
    }

    .process-visual,
    .process-visual img {
        min-height: 500px;
    }

}

@media (max-width: 700px) {

    .process-heading {
        margin-bottom: 35px;
    }

    .process-heading h2 {
        font-size: 42px;
    }

    .process-visual,
    .process-visual img {
        min-height: 420px;
    }

    .process-visual-overlay {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .process-visual-overlay strong {
        font-size: 25px;
    }

    .process-step {
        grid-template-columns: 35px 1fr 20px;
        gap: 12px;
        min-height: auto;
        padding: 24px 0;
    }

    .process-step h3 {
        font-size: 18px;
    }

}
/* =========================================
   FULL PLANS PAGE
========================================= */

.plans-hero {
    padding: 70px 0 80px;
    background: #f5f3ee;
}

.plans-hero-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: stretch;
}

.plans-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plans-hero-copy h1 {
    margin: 14px 0 24px;
    color: #1a1916;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.plans-hero-copy h1 span {
    color: #8e763c;
}

.plans-hero-copy p {
    max-width: 480px;
    margin: 0;
    color: #77736c;
    font-size: 15px;
    line-height: 1.8;
}

.plans-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.plans-hero-meta span {
    padding: 9px 12px;
    border: 1px solid #dcd8cf;
    border-radius: 999px;
    color: #77736c;
    background: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plans-hero-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 20px;
}

.plans-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}

.plans-hero-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        180deg,
        rgba(20,19,17,0.04),
        rgba(20,19,17,0.72)
    );
}

.plans-hero-overlay {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #ffffff;
}

.plans-hero-overlay span {
    color: #d1b56d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.plans-hero-overlay strong {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: right;
}


/* =========================================
   SELECTED PLAN
========================================= */

.selected-plan-section {
    padding: 20px 0 0;
    background: #f5f3ee;
}

.selected-plan-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 25px;
    border: 1px solid #d9d4c9;
    border-radius: 14px;
    background: #ffffff;
}

.selected-plan-banner > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.selected-plan-banner strong {
    color: #1a1916;
    font-size: 18px;
}

.selected-plan-banner > div > span:last-child {
    color: #77736c;
    font-size: 12px;
}


/* =========================================
   ALL PLANS
========================================= */

.all-plans-section {
    background: #f5f3ee;
}

.plans-section-heading {
    align-items: flex-end;
    margin-bottom: 50px;
}

.plans-section-heading h2 {
    margin: 12px 0 0;
    color: #1a1916;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.plans-section-heading > p {
    max-width: 410px;
    margin: 0;
    color: #77736c;
    font-size: 14px;
    line-height: 1.8;
}

.full-plans-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.full-plan-card {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr 0.8fr 210px;
    gap: 35px;
    align-items: center;
    padding: 28px 30px;
    border: 1px solid #dedbd3;
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.full-plan-card:hover {
    transform: translateY(-3px);
    border-color: #c9c3b6;
    box-shadow: 0 15px 40px rgba(25,23,19,0.07);
}

.full-plan-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-self: stretch;
    justify-content: space-between;
}

.full-plan-number {
    color: #aaa59a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.full-plan-tag {
    width: fit-content;
    padding: 7px 9px;
    border: 1px solid #ddd8cc;
    border-radius: 999px;
    color: #6d685f;
    background: #f8f6f1;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.full-plan-main h2 {
    margin: 0 0 9px;
    color: #1a1916;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.full-plan-main p {
    max-width: 470px;
    margin: 0;
    color: #77736c;
    font-size: 12px;
    line-height: 1.7;
}

.full-plan-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.full-plan-details > div {
    padding-left: 15px;
    border-left: 1px solid #e4e0d7;
}

.full-plan-details span {
    display: block;
    margin-bottom: 7px;
    color: #99948a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.full-plan-details strong {
    display: block;
    color: #292721;
    font-size: 12px;
    line-height: 1.35;
}

.full-plan-action {
    display: flex;
    justify-content: flex-end;
}

.plan-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 175px;
    padding: 13px 15px;
    border: 1px solid #d8d3c8;
    border-radius: 8px;
    color: #292721;
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.plan-action-link span {
    font-size: 15px;
}

.plan-action-link:hover {
    color: #ffffff;
    background: #1a1916;
    border-color: #1a1916;
}


/* =========================================
   FEATURED PLAN
========================================= */

.full-plan-featured {
    background: #1b1a17;
    border-color: #1b1a17;
    box-shadow: 0 15px 45px rgba(20,19,17,0.13);
}

.full-plan-featured .full-plan-number {
    color: #77736b;
}

.full-plan-featured .full-plan-tag {
    color: #e5d5a9;
    background: rgba(209,181,109,0.10);
    border-color: rgba(209,181,109,0.35);
}

.full-plan-featured .full-plan-main h2 {
    color: #ffffff;
}

.full-plan-featured .full-plan-main p {
    color: #a9a59c;
}

.full-plan-featured .full-plan-details > div {
    border-color: rgba(255,255,255,0.10);
}

.full-plan-featured .full-plan-details span {
    color: #77736b;
}

.full-plan-featured .full-plan-details strong {
    color: #f3f1eb;
}

.full-plan-featured .plan-action-link {
    color: #e5d5a9;
    background: transparent;
    border-color: rgba(209,181,109,0.35);
}

.full-plan-featured .plan-action-link:hover {
    color: #1a1916;
    background: #e5d5a9;
    border-color: #e5d5a9;
}


/* =========================================
   SELECTED PLAN
========================================= */

.full-plan-selected {
    border-color: #b99d58;
    box-shadow: 0 0 0 2px rgba(185,157,88,0.15);
}

.full-plan-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selected-badge {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: #8e763c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================
   PLAN GUIDANCE
========================================= */

.plan-guidance-section {
    background: #ffffff;
}

.plan-guidance-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.plan-guidance-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 20px;
}

.plan-guidance-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.plan-guidance-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(20,19,17,0.75)
    );
}

.plan-guidance-caption {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #ffffff;
}

.plan-guidance-caption span {
    color: #d1b56d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.plan-guidance-caption strong {
    font-size: 26px;
    line-height: 1.05;
    text-align: right;
}

.plan-guidance-copy h2 {
    margin: 14px 0 20px;
    color: #1a1916;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.plan-guidance-copy p {
    max-width: 470px;
    margin: 0;
    color: #77736c;
    font-size: 14px;
    line-height: 1.8;
}

.plan-guidance-copy .text-link {
    display: inline-flex;
    margin-top: 28px;
}


/* =========================================
   DISCLAIMER
========================================= */

.plans-disclaimer {
    padding: 35px 0 90px;
    background: #ffffff;
}

.plans-disclaimer-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid #dedbd3;
}

.plans-disclaimer-inner > span {
    color: #8e763c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.plans-disclaimer-inner p {
    max-width: 750px;
    margin: 0;
    color: #99948a;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .plans-hero-inner {
        grid-template-columns: 1fr;
    }

    .plans-hero-copy {
        max-width: 700px;
    }

    .plans-hero-visual,
    .plans-hero-visual img {
        min-height: 500px;
    }

    .full-plan-card {
        grid-template-columns: 55px 1fr 1fr;
    }

    .full-plan-action {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }

}

@media (max-width: 800px) {

    .full-plan-card {
        grid-template-columns: 45px 1fr;
        gap: 20px;
    }

    .full-plan-details {
        grid-column: 2;
    }

    .full-plan-action {
        grid-column: 2;
    }

    .plan-guidance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 700px) {

    .plans-hero {
        padding: 45px 0 55px;
    }

    .plans-hero-copy h1 {
        font-size: 52px;
    }

    .plans-hero-visual,
    .plans-hero-visual img {
        min-height: 400px;
    }

    .plans-hero-overlay {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .plans-hero-overlay strong {
        font-size: 23px;
    }

    .selected-plan-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .selected-plan-banner > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .plans-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .plans-section-heading h2 {
        font-size: 45px;
    }

    .full-plan-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .full-plan-top {
        flex-direction: row;
        align-items: center;
    }

    .full-plan-details {
        grid-column: auto;
    }

    .full-plan-action {
        grid-column: auto;
    }

    .plan-action-link {
        width: 100%;
    }

    .plan-guidance-image,
    .plan-guidance-image img {
        min-height: 400px;
    }

    .plans-disclaimer-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}
.calculator-result {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid #ddd8ce;
    border-radius: 14px;
    background: #f8f6f1;
}

.calculator-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calculator-result-header > span:first-child {
    color: #77736c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.projection-badge {
    padding: 5px 8px;
    border-radius: 999px;
    color: #8e763c;
    background: rgba(142, 118, 60, 0.1);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.calculator-result-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2ded5;
}

.calculator-result-main span,
.calculator-result-details span {
    display: block;
    margin-bottom: 7px;
    color: #99948a;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.calculator-result-main strong {
    display: block;
    color: #1a1916;
    font-size: 25px;
    letter-spacing: -0.04em;
}

.calculator-result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 18px;
}

.calculator-result-details strong {
    color: #292721;
    font-size: 14px;
}

#calculatorGrowth {
    color: #6f8d55;
}

#minimumAmountText {
    display: block;
    margin-top: 8px;
    color: #99948a;
    font-size: 10px;
}

@media (max-width: 700px) {

    .calculator-result-main strong {
        font-size: 21px;
    }

}
/* =========================================================
   AUTH — AVENTRIX WEALTH
   ========================================================= */
.auth-page{background:#f7f8fa}.auth-main{padding:72px 0 96px;background:radial-gradient(circle at 18% 8%,rgba(124,92,255,.10),transparent 28%),linear-gradient(180deg,#fafbfc 0%,#f5f6f8 100%)}.auth-container{display:grid;grid-template-columns:minmax(0,.9fr) minmax(420px,.7fr);gap:76px;align-items:center}.auth-register-container{align-items:start}.auth-intro{padding:30px 0}.auth-intro h1{max-width:650px;margin:20px 0 18px;font-size:clamp(42px,5vw,68px);line-height:1.02;letter-spacing:-.05em}.auth-intro>p{max-width:580px;color:var(--text-soft);font-size:17px;line-height:1.75}.auth-proof{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.auth-proof span{padding:8px 12px;border:1px solid var(--border);border-radius:999px;background:rgba(255,255,255,.7);color:#5f6877;font-size:12px;font-weight:650}.auth-card{background:#fff;border:1px solid var(--border);border-radius:24px;padding:34px;box-shadow:var(--shadow-md)}.auth-card-wide{width:100%}.auth-card-head{margin-bottom:26px}.auth-kicker{display:block;margin-bottom:8px;color:var(--accent);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.auth-card-head h2{font-size:31px;letter-spacing:-.035em}.auth-card-head p{margin-top:8px;color:var(--text-soft);font-size:14px}.auth-form{display:grid;gap:18px}.auth-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.auth-field-full{grid-column:1/-1}.auth-field label,.auth-label-row label{display:block;margin-bottom:7px;font-size:13px;font-weight:700;color:#344054}.auth-label-row{display:flex;align-items:center;justify-content:space-between;gap:12px}.auth-label-row a{margin-bottom:7px;color:var(--accent);font-size:12px;font-weight:700}.auth-field input:not([type=file]){width:100%;height:50px;padding:0 14px;border:1px solid var(--border-dark);border-radius:11px;background:#fff;outline:none;transition:.2s}.auth-field input:focus{border-color:#9d8bff;box-shadow:0 0 0 4px rgba(124,92,255,.1)}.auth-field small{display:block;margin-top:6px;color:var(--text-muted);font-size:11px}.auth-submit{width:100%;margin-top:2px}.auth-switch{margin-top:22px;text-align:center;color:var(--text-soft);font-size:13px}.auth-switch a{color:var(--accent);font-weight:750}.auth-alert{margin-bottom:20px;padding:14px 16px;border:1px solid #f5c6c2;border-radius:12px;background:#fff3f2;color:#a53c35;font-size:13px}.auth-alert ul{margin:7px 0 0 18px}.auth-selection{display:grid;grid-template-columns:1fr auto;gap:7px 18px;max-width:430px;margin-top:28px;padding:18px;border:1px solid var(--border);border-radius:16px;background:rgba(255,255,255,.76)}.auth-selection span{color:var(--text-muted);font-size:12px}.auth-selection strong{text-align:right;font-size:13px}.auth-upload{display:flex;align-items:center;gap:18px;padding:20px;border:1px dashed var(--border-dark);border-radius:14px;background:var(--surface-soft)}.auth-upload p{margin:3px 0 12px;color:var(--text-muted);font-size:11px}.auth-upload-button{min-height:40px;padding:0 14px;cursor:pointer}.auth-upload-preview{width:72px;height:72px;flex:0 0 72px;border-radius:12px;overflow:hidden;background:#fff}.auth-upload-preview img{width:100%;height:100%;object-fit:cover}.auth-file-name{display:block;margin-top:8px;color:var(--text-soft);font-size:11px}.auth-terms{display:flex;gap:9px;align-items:flex-start;color:var(--text-soft);font-size:12px}.auth-terms input{margin-top:3px}@media(max-width:900px){.auth-main{padding:48px 0 70px}.auth-container{grid-template-columns:1fr;gap:28px}.auth-intro{padding:0}.auth-intro h1{font-size:44px}.auth-register-container .auth-intro{display:none}}@media(max-width:600px){.auth-card{padding:22px;border-radius:18px}.auth-form-grid{grid-template-columns:1fr}.auth-field-full{grid-column:auto}.auth-intro h1{font-size:38px}.auth-upload{align-items:flex-start;flex-direction:column}}
/* ================================================================
   Aventrix content pages, profile, and global branding additions
   ================================================================ */
.site-logo-image{display:block;width:125px;height:50px;object-fit:contain;object-position:left center}.footer-logo-image{width:150px;height:60px;filter:brightness(0) invert(1)}
.company-page{background:#f6f6f2}.company-hero{position:relative;overflow:hidden;padding:104px 0 96px;background:linear-gradient(135deg,#1c211d 0%,#34382e 58%,#5a5139 100%);color:#fff}.company-hero:after{content:"";position:absolute;right:-130px;bottom:-220px;width:520px;height:520px;border:1px solid rgba(255,255,255,.1);border-radius:50%}.company-hero.compact{padding:88px 0}.company-hero-grid{display:grid;grid-template-columns:1.4fr .6fr;align-items:center;gap:70px}.company-kicker{display:inline-flex;color:#c9b98f;font-size:10px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.company-kicker.dark{color:#8f7a4d}.company-hero h1{max-width:820px;margin:17px 0 20px;font-size:clamp(44px,6.3vw,78px);font-weight:580;line-height:1.02;letter-spacing:-.05em}.company-hero p{max-width:640px;margin:0;color:rgba(255,255,255,.7);font-size:17px;line-height:1.75}.about-hero-art{position:relative;height:310px}.about-hero-art span{position:absolute;border:1px solid rgba(255,255,255,.2);border-radius:50%}.about-hero-art span:nth-child(1){inset:12px}.about-hero-art span:nth-child(2){inset:56px}.about-hero-art span:nth-child(3){inset:100px}.about-hero-art strong{position:absolute;inset:0;display:grid;place-items:center;font-size:54px;font-weight:500;color:#c9b98f}.company-section{padding:100px 0}.company-intro{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.company-intro h2,.faq-layout aside h2{margin:13px 0 0;font-size:42px;line-height:1.14;letter-spacing:-.04em}.company-intro>p{margin:0;color:#6f736b;font-size:16px;line-height:1.85}.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:76px}.value-grid article{padding:32px 28px;border:1px solid #e2e1da;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(25,27,22,.035)}.value-grid article>span{color:#a28d5f;font-size:11px;font-weight:700}.value-grid h3{margin:34px 0 10px;font-size:20px}.value-grid p{margin:0;color:#777b73;font-size:13px;line-height:1.7}.company-quote{padding:88px 0;background:#eae7dd;text-align:center}.company-quote p{max-width:880px;margin:0 auto 32px;color:#262923;font-family:Georgia,serif;font-size:clamp(30px,4vw,52px);line-height:1.25}.faq-hero{text-align:center}.faq-hero p{margin-left:auto;margin-right:auto}.faq-layout{display:grid;grid-template-columns:310px 1fr;gap:90px}.faq-layout aside p{color:#7a7d75;font-size:13px;line-height:1.7}.faq-layout aside a{display:inline-block;margin-top:15px;color:#575d4b;font-size:12px;font-weight:700;text-decoration:none}.faq-list{display:grid;gap:12px}.faq-list details{padding:22px 24px;border:1px solid #e2e1da;border-radius:14px;background:#fff}.faq-list summary{display:flex;align-items:center;justify-content:space-between;gap:20px;list-style:none;cursor:pointer;color:#262923;font-size:15px;font-weight:650}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary span{display:grid;gap:5px}.faq-list summary small{color:#9b875d;font-size:8px;letter-spacing:.1em;text-transform:uppercase}.faq-list summary b{font-size:20px;font-weight:400}.faq-list details[open] summary b{transform:rotate(45deg)}.faq-list p{margin:18px 35px 2px 0;color:#71756d;font-size:13px;line-height:1.75}.contact-hero{padding:92px 0 82px;background:#1c211d;color:#fff}.contact-hero-grid{display:grid;grid-template-columns:1fr auto;align-items:center;gap:60px}.contact-hero h1{max-width:720px;margin:15px 0 18px;font-size:clamp(44px,6vw,72px);line-height:1.03;letter-spacing:-.05em}.contact-hero p{max-width:630px;margin:0;color:rgba(255,255,255,.68);font-size:16px;line-height:1.75}.contact-monogram{width:190px;height:190px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.16);border-radius:50%;color:#c9b98f;font-family:Georgia,serif;font-size:40px}.contact-body{padding:88px 0 105px}.contact-layout{display:grid;grid-template-columns:.78fr 1.22fr;gap:70px;align-items:start}.contact-aside h2{margin:13px 0 34px;font-size:38px;letter-spacing:-.035em}.contact-detail{display:grid;gap:7px;padding:19px 0;border-top:1px solid #dfded7}.contact-detail b{font-size:13px}.contact-detail span{color:#777b73;font-size:12px;line-height:1.65}.contact-form-card{overflow:hidden;border:1px solid #dfded7;border-radius:20px;background:#fff;box-shadow:0 18px 50px rgba(24,26,21,.06)}.contact-form-head{padding:28px 30px;background:#f0eee6}.contact-form-head span{color:#8f7a4d;font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.contact-form-head h2{margin:6px 0 0;font-size:27px}.contact-form{display:grid;gap:18px;padding:30px}.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.contact-form label{display:grid;gap:8px;color:#484c45;font-size:11px;font-weight:650}.contact-form input,.contact-form select,.contact-form textarea,.profile-form input,.profile-form textarea{width:100%;box-sizing:border-box;padding:13px 14px;border:1px solid #deded7;border-radius:10px;background:#fff;color:#242722;font:inherit;outline:none}.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus,.profile-form input:focus,.profile-form textarea:focus{border-color:#a5946d;box-shadow:0 0 0 3px rgba(143,122,77,.08)}.contact-success,.contact-error{display:grid;gap:6px;margin:30px;padding:20px;border-radius:12px}.contact-success{background:#eef7ef;border:1px solid #d3e8d7;color:#477253}.contact-error{background:#fbefef;border:1px solid #efd4d4;color:#944d4d}.profile-page{min-height:calc(100vh - 70px);background:#f4f4f1}.profile-main{padding:38px 0 80px}.profile-wrap{width:min(820px,calc(100% - 24px));margin:auto}.profile-heading{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-bottom:24px}.profile-heading span{color:#8f7a4d;font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.profile-heading h1{margin:7px 0 5px;font-size:34px;letter-spacing:-.035em}.profile-heading p{margin:0;color:#7b7f76;font-size:13px}.profile-avatar{width:58px;height:58px;display:grid;place-items:center;border-radius:50%;background:#1c211d;color:#fff;font-size:14px;font-weight:700}.profile-card{margin-bottom:16px;padding:28px;border:1px solid #e2e1da;border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(24,26,21,.04)}.profile-card-head{margin-bottom:24px}.profile-card h2{margin:0;font-size:20px}.profile-card p{margin:5px 0 0;color:#7b7f76;font-size:12px}.profile-form{display:grid;gap:22px}.profile-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.profile-grid label{display:grid;gap:8px;color:#4c5048;font-size:11px;font-weight:650}.profile-grid .full{grid-column:1/-1}.profile-button{min-height:44px;padding:0 18px;border:0;border-radius:9px;background:#1c211d;color:#fff;font-weight:650;cursor:pointer}.profile-button.secondary{background:#f1f1ed;color:#363932;border:1px solid #deded7}.security-card,.security-card>div{display:flex;align-items:center;justify-content:space-between;gap:16px}.security-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:#f4f0e6;color:#8f7a4d}.profile-alert,.security-code-reveal{margin-bottom:16px;padding:15px;border-radius:11px;font-size:12px}.profile-alert.success{background:#eef7ef;border:1px solid #d5ead8;color:#477253}.profile-alert.error{background:#fbefef;border:1px solid #efd4d4;color:#944d4d}.security-code-reveal{display:grid;gap:5px;background:#f8f4ea;border:1px solid #e5dac1;color:#64583d}.security-code-reveal strong{font-size:28px;letter-spacing:7px}.profile-meta{display:flex;gap:24px;flex-wrap:wrap;padding:14px 4px;color:#8b8f86;font-size:11px}
@media(max-width:800px){.company-hero-grid,.company-intro,.faq-layout,.contact-layout{grid-template-columns:1fr}.about-hero-art,.contact-monogram{display:none}.company-hero{padding:72px 0}.company-section,.contact-body{padding:64px 0}.company-intro,.faq-layout,.contact-layout{gap:35px}.value-grid{grid-template-columns:1fr;margin-top:45px}.contact-form-grid,.profile-grid{grid-template-columns:1fr}.profile-grid .full{grid-column:auto}.security-card{align-items:flex-start;flex-direction:column}.site-logo-image{width:112px;height:45px}}
.security-modal{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:20px}.security-modal.open{display:flex}.security-modal-backdrop{position:absolute;inset:0;background:rgba(18,21,18,.68);backdrop-filter:blur(5px)}.security-modal-card{position:relative;z-index:1;width:min(440px,100%);padding:34px;border-radius:22px;background:#fff;text-align:center;box-shadow:0 30px 90px rgba(0,0,0,.28)}.security-modal-icon{width:50px;height:50px;display:grid;place-items:center;margin:0 auto 18px;border-radius:50%;background:#edf7ef;color:#4d825a;font-size:20px;font-weight:800}.security-modal-kicker{color:#8f7a4d;font-size:9px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}.security-modal-card h2{margin:8px 0 9px;font-size:29px;letter-spacing:-.035em}.security-modal-card p{margin:0 auto;color:#777b73;font-size:13px;line-height:1.65}.security-modal-code{margin:22px 0 12px;padding:17px;border:1px solid #e4dac2;border-radius:12px;background:#f8f4ea;color:#4f4631;font-size:30px;font-weight:750;letter-spacing:8px}.security-modal-copy,.security-modal-close{width:100%;min-height:46px;border-radius:10px;font-weight:700;cursor:pointer}.security-modal-copy{border:0;background:#1c211d;color:#fff}.security-modal-close{margin-top:9px;border:1px solid #deded7;background:#fff;color:#4e524b}.security-modal-card>small{display:block;margin-top:14px;color:#a0a39b;font-size:9px}
