:root {
    --liv-green: #76c043;
    --liv-green-dark: #5fa832;
    --liv-dark: #1a1a1a;
    --liv-text-light: #555;
    --liv-bg-gradient: radial-gradient(circle at top right, rgba(118, 192, 67, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
}

.liv-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    background-image: var(--liv-bg-gradient);
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
}

/* Navigation */
.liv-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 10;
}

.liv-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--liv-green);
    letter-spacing: -1px;
}

.liv-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.liv-nav-links a {
    text-decoration: none;
    color: var(--liv-text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.liv-nav-links a.active, .liv-nav-links a:hover {
    color: var(--liv-dark);
}

.fa-icon {
    margin-right: 8px;
    font-size: 0.95em;
    opacity: 0.9;
    vertical-align: -0.125em;
}

.liv-chevron {
    margin-left: 6px;
    margin-right: 0;
    font-size: 0.75em;
    opacity: 0.8;
    vertical-align: 0.05em;
}

.liv-nav-auth {
    display: flex;
    gap: 12px;
}

/* Buttons */
.liv-btn-outline, .liv-btn-dark, .liv-btn-ghost, .liv-btn-primary {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.liv-btn-outline {
    background: transparent;
    border: 1px solid #ddd;
}

.liv-btn-dark {
    background: var(--liv-dark);
    color: white;
    border: none;
}

.liv-btn-primary {
    background: var(--liv-green);
    color: white;
    border: none;
    padding: 14px 40px;
}

.liv-btn-primary:hover { background: var(--liv-green-dark); }

.liv-btn-ghost {
    background: transparent;
    border: 1px solid #ccc;
    color: var(--liv-text-light);
    padding: 14px 40px;
}

/* Content Area */
.liv-hero-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 150px; /* Space for city illustration */
    z-index: 2;
}

.liv-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--liv-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.liv-hero-subtitle {
    font-size: 1.1rem;
    color: var(--liv-text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.liv-hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* City Background Illustration */
.liv-city-illustration {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 300px;
    /* Use a placeholder image that looks like line art if you don't have the asset yet */
    background-image: url('./assets/img/hero-banner.png'); 
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: contain;
    opacity: 0.6;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

/* Stats Bar */
.liv-stats-bar {
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 40px 5%;
    border-top: 1px solid #eee;
    z-index: 5;
}

.liv-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.liv-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--liv-dark);
    letter-spacing: -2px;
}

.liv-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .liv-nav-links, .liv-nav-auth { display: none; }
    .liv-stats-bar { flex-wrap: wrap; gap: 30px; }
    .liv-stat-num { font-size: 2rem; }
}

@media (max-width: 600px) {
    .liv-hero-container {
        padding-bottom: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .liv-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .liv-btn-outline, .liv-btn-dark, .liv-btn-ghost, .liv-btn-primary {
        width: 100%;
        max-width: 360px;
    }

    .liv-city-illustration {
        height: 220px;
        bottom: 85px;
        opacity: 0.5;
    }

    .liv-stats-bar {
        padding: 26px 5%;
        justify-content: center;
    }

    .liv-stat-item {
        flex: 1 1 160px;
        justify-content: center;
    }
}

:root {
    --liv-green: #76c043;
    --liv-dark: #0b1109;
    --liv-bg: #ffffff;
    --liv-gray-bg: #f5f5f5;
    --liv-text-muted: #666;
}

.liv-smart-section {
    background-color: var(--liv-bg);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.liv-smart-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Content Column */
.liv-smart-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--liv-dark);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.liv-smart-desc {
    font-size: 1.1rem;
    color: var(--liv-text-muted);
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 400px;
}

.liv-smart-btn {
    background-color: var(--liv-dark);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.liv-smart-btn:hover {
    transform: translateY(-2px);
}

/* Visual Collage Column */
.liv-smart-visuals {
    position: relative;
}

.liv-smart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.liv-smart-card {
    background: var(--liv-gray-bg);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* AI Card Styling */
.liv-smart-ai {
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
}

.liv-smart-logo {
    color: var(--liv-green);
    font-weight: 900;
    margin-bottom: 15px;
}

.liv-smart-card-label {
    font-weight: 600;
    margin-bottom: 20px;
}

.liv-smart-input-box {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.liv-smart-ask-btn {
    background: var(--liv-green);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
}

/* Stat Card Styling */
.liv-smart-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.liv-smart-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--liv-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.liv-smart-big-num {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
}

.liv-smart-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
}

/* Property Card (Tilted) */
.liv-smart-property {
    grid-column: 2;
    grid-row: 1 / span 2;
    background: #fff;
    transform: rotate(5deg) translateY(20px);
    transition: transform 0.4s ease;
    padding: 15px;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.liv-smart-property:hover {
    transform: rotate(0deg) translateY(0px);
}

.liv-smart-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    position: relative;
}

.liv-smart-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    backdrop-filter: blur(4px);
}

.liv-smart-prop-details {
    padding: 20px 10px;
}

.liv-smart-prop-details h4 {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
}

.liv-smart-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.liv-smart-specs {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .liv-smart-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .liv-smart-desc { margin: 0 auto 35px; }
    .liv-smart-property { transform: rotate(0) translateY(0); }
    .liv-smart-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .liv-smart-section {
        padding: 70px 16px;
    }

    .liv-smart-container {
        gap: 40px;
    }

    .liv-smart-desc {
        max-width: 520px;
    }

    .liv-smart-btn {
        width: 100%;
        max-width: 360px;
    }

    .liv-smart-specs {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 8px;
    }
}

:root {
    --re-adv-bg: #ffffff;
    --re-adv-card-bg: #f8f9f8;
    --re-adv-text-main: #0b1109;
    --re-adv-text-muted: #5c635a;
    --re-adv-radius: 20px;
}

.re-adv-section {
    background-color: var(--re-adv-bg);
    padding: 100px 5%;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--re-adv-text-main);
}

.re-adv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.re-adv-main-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 60px;
}

.re-adv-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

/* Features Grid */
.re-adv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.re-adv-card {
    background-color: var(--re-adv-card-bg);
    padding: 30px;
    border-radius: var(--re-adv-radius);
    transition: transform 0.3s ease;
}

.re-adv-card:hover {
    transform: translateY(-5px);
}

.re-adv-icon-box {
    font-size: 24px;
    margin-bottom: 20px;
}

.re-adv-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.re-adv-card-text {
    font-size: 0.9rem;
    color: var(--re-adv-text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Right Side Info */
.re-adv-info-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.re-adv-info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--re-adv-text-main);
    margin-bottom: 40px;
    font-weight: 500;
}

.re-adv-btn-dark {
    background-color: var(--re-adv-text-main);
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s ease;
}

.re-adv-btn-dark:hover {
    background-color: #222;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .re-adv-layout {
        grid-template-columns: 1fr;
    }
    
    .re-adv-info-block {
        order: -1; /* Move text above grid on tablet */
        margin-bottom: 40px;
    }

    .re-adv-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .re-adv-features-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --lp-green: #76c043;
    --lp-dark: #0b1109;
    --lp-muted: #6b7280;
    --lp-radius: 20px;
}

.lp-prop-section {
    padding: 100px 5%;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    color: var(--lp-dark);
}

.lp-prop-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.lp-prop-header {
    text-align: center;
    margin-bottom: 60px;
}

.lp-prop-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.lp-prop-subtitle {
    font-size: 1.1rem;
    color: var(--lp-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid */
.lp-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.lp-prop-card {
    background: #fff;
    border-radius: var(--lp-radius);
    transition: transform 0.3s ease;
    cursor: default;
}

.lp-prop-card:hover {
    transform: translateY(-10px);
}

.lp-prop-image-box {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.lp-prop-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-prop-card:hover .lp-prop-image-box img {
    transform: scale(1.08);
}

.lp-prop-body {
    padding: 0 5px;
}

.lp-prop-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-prop-location {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.lp-prop-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--lp-muted);
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Footer & Button */
.lp-prop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-prop-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lp-green);
}

.lp-prop-btn {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: var(--lp-dark);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-prop-btn:hover {
    background: var(--lp-dark);
    color: white;
    border-color: var(--lp-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-prop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .lp-prop-grid {
        grid-template-columns: 1fr;
    }

    .lp-prop-meta {
        flex-wrap: wrap;
        row-gap: 8px;
    }
}

:root {
    --liv-green: #76c043;
    --liv-dark: #0b1109;
    --liv-muted: #5c635a;
    --liv-bg-glow: radial-gradient(circle at 10% 10%, rgba(118, 192, 67, 0.12) 0%, rgba(255, 255, 255, 0) 40%);
}

.liv-steps-section {
    background-color: #ffffff;
    background-image: var(--liv-bg-glow);
    padding: 100px 5%;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
}

.liv-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.liv-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

.liv-steps-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--liv-dark);
    letter-spacing: -2px;
    margin: 0;
}

.liv-steps-intro {
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--liv-dark);
    font-weight: 500;
    margin-top: 10px;
}

/* Steps Grid */
.liv-steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.liv-steps-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f0f2f0;
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.liv-steps-card:hover {
    transform: translateY(-5px);
}

/* Big Faded Number */
.liv-steps-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: var(--liv-green);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 10px;
}

.liv-steps-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--liv-dark);
    margin-bottom: 15px;
}

.liv-steps-card-text {
    font-size: 0.95rem;
    color: var(--liv-muted);
    line-height: 1.5;
    margin: 0;
}

/* Connectors */
.liv-steps-arrow {
    color: var(--liv-green);
    opacity: 0.5;
    display: flex;
    align-items: center;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .liv-steps-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .liv-steps-arrow {
        transform: rotate(90deg);
        justify-content: center;
        margin: 10px 0;
    }
    .liv-steps-header {
        flex-direction: column;
    }
    .liv-steps-intro {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .liv-steps-section {
        padding: 70px 5%;
    }

    .liv-steps-card {
        padding: 28px 22px;
    }

    .liv-steps-number {
        font-size: 4rem;
    }
}

:root {
    --lv-foot-bg: #000000;
    --lv-foot-text: #ffffff;
    --lv-foot-muted: #888888;
}

.lv-footer {
    background-color: var(--lv-foot-bg);
    color: var(--lv-foot-text);
    padding: 100px 0 0 0; /* No bottom padding because of giant text */
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.lv-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout Grid */
.lv-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Column 1 Styling */
.lv-footer-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--lv-foot-text);
    max-width: 340px;
    margin-bottom: 30px;
}

.lv-footer-socials {
    display: flex;
    gap: 20px;
}

.lv-footer-socials a {
    color: var(--lv-foot-text);
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.lv-footer-socials a:hover {
    opacity: 0.6;
}

/* Links Styling */
.lv-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lv-footer-link-list li {
    margin-bottom: 15px;
}

.lv-footer-link-list a {
    color: var(--lv-foot-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.lv-footer-link-list a:hover {
    color: var(--lv-foot-muted);
}

/* Bottom Bar Styling */
.lv-footer-bottom {
    text-align: center;
    position: relative;
    padding-bottom: 50px;
}

.lv-footer-copyright {
    color: var(--lv-foot-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}

.lv-footer-copyright span {
    color: var(--lv-foot-text);
    font-weight: 600;
}

/* Giant Striped Watermark */
.lv-footer-watermark {
    font-size: clamp(10rem, 25vw, 30rem);
    font-weight: 900;
    text-transform: lowercase;
    line-height: 0.7;
    margin-top: -50px;
    user-select: none;
    pointer-events: none;
    
    /* Striped Texture using Gradient */
    background: repeating-linear-gradient(
        -45deg,
        #111,
        #111 10px,
        #080808 10px,
        #080808 20px
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Make it slanted like the image */
    transform: skewX(-5deg);
    opacity: 0.8;
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .lv-footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .lv-footer-info {
        grid-column: span 2;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .lv-footer-top {
        grid-template-columns: 1fr;
    }
    .lv-footer-info {
        grid-column: span 1;
    }
    .lv-footer-watermark {
        font-size: 20vw;
    }
}




































:root {
    --lv-reg-green: #76c043;
    --lv-reg-dark: #333333;
    --lv-reg-gray: #666666;
    --lv-reg-light: #f5f5f5;
    --lv-reg-white: #ffffff;
}

.lv-reg-section {
    background-color: var(--lv-reg-white);
    padding: 60px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lv-reg-main-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

/* Left Side Illustration */
.lv-reg-illustration img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.lv-reg-stats-row {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
}

.lv-reg-stat {
    display: flex;
    flex-direction: column;
}

.lv-reg-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lv-reg-dark);
}

.lv-reg-stat-lbl {
    font-size: 0.9rem;
    color: var(--lv-reg-gray);
    font-weight: 500;
}

.lv-reg-stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Right Side Form Card */
.lv-reg-form-card {
    background: var(--lv-reg-white);
    padding: 76px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.lv-reg-form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lv-reg-dark);
    margin-bottom: 10px;
}

.lv-reg-form-subtitle {
    color: var(--lv-reg-gray);
    margin-bottom: 30px;
}

.lv-reg-input-group {
    margin-bottom: 15px;
}

.lv-reg-input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.lv-reg-input-group input:focus {
    border-color: var(--lv-reg-green);
    outline: none;
}

.lv-reg-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--lv-reg-gray);
    margin: 20px 0;
}

.lv-reg-checkbox-row span {
    color: var(--lv-reg-green);
    font-weight: 700;
    cursor: pointer;
}

/* Captcha Styling */
.lv-reg-captcha-mock {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.lv-reg-captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}

.lv-reg-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--lv-reg-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.lv-reg-submit-btn:hover {
    background-color: #5fa832;
    transform: translateY(-2px);
}

.lv-reg-login-prompt {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--lv-reg-gray);
}

.lv-reg-login-prompt a {
    color: var(--lv-reg-green);
    font-weight: 700;
    text-decoration: none;
}

/* Bottom FAQ Bar */
.lv-reg-faq-bar {
    width: 100%;
    max-width: 1000px;
    background: #f8f9f8;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.lv-reg-faq-item {
    font-size: 0.85rem;
    color: var(--lv-reg-gray);
    padding: 0 15px;
    border-right: 1px solid #ddd;
    flex: 1;
    text-align: center;
}

.lv-reg-faq-item:last-of-type { border-right: none; }

.lv-reg-faq-item span { font-weight: 700; color: var(--lv-reg-dark); }

.lv-reg-faq-arrow {
    font-size: 1.2rem;
    color: var(--lv-reg-gray);
    padding-left: 20px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .lv-reg-main-container { grid-template-columns: 1fr; }
    .lv-reg-visual-content { text-align: center; order: 2; }
    .lv-reg-stats-row { justify-content: center; }
    .lv-reg-faq-bar { display: none; }
}

@media (max-width: 600px) {
    .lv-reg-section {
        padding: 50px 16px;
    }

    .lv-reg-main-container {
        gap: 28px;
    }

    .lv-reg-stats-row {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 16px;
    }

    .lv-reg-stat-divider {
        display: none;
    }

    .lv-reg-form-card {
        padding: 28px;
    }
}



:root {
    --hvn-primary: #5d3b4f; /* Plum/Burgundy from image */
    --hvn-text: #333;
    --hvn-gray: #666;
    --hvn-input-bg: #f5f6f8;
    --hvn-border: #e0e0e0;
}

.hvn-auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.hvn-auth-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Form Side */
.hvn-form-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.hvn-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.hvn-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--hvn-primary);
}

.hvn-welcome-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--hvn-text);
}

.hvn-welcome-subtitle {
    color: var(--hvn-gray);
    margin-bottom: 30px;
}

.hvn-social-logins {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.hvn-social-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--hvn-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--hvn-gray);
    cursor: pointer;
    transition: 0.2s;
}

.hvn-social-btn:hover {
    background: #fcfcfc;
    border-color: #ccc;
}

.hvn-social-btn img {
    width: 20px;
    height: 20px;
}

.hvn-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.hvn-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--hvn-border);
    z-index: 1;
}

.hvn-divider span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 15px;
    color: #bbb;
    font-size: 14px;
}

.hvn-input-group {
    margin-bottom: 20px;
}

.hvn-input-group label {
    display: block;
    font-size: 12px;
    color: var(--hvn-gray);
    margin-bottom: 6px;
    margin-left: 4px;
}

.hvn-input-group input {
    width: 100%;
    padding: 14px;
    border: none;
    background: var(--hvn-input-bg);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.hvn-pass-wrapper {
    position: relative;
}

.hvn-eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--hvn-gray);
    cursor: pointer;
    padding: 5px;
}

.hvn-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.hvn-forgot-link {
    color: var(--hvn-text);
    text-decoration: none;
    font-weight: 700;
}

.hvn-main-login-btn {
    width: 100%;
    padding: 16px;
    background: var(--hvn-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hvn-main-login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hvn-signup-prompt {
    text-align: center;
    margin-top: 25px;
    color: var(--hvn-text);
    font-weight: 600;
}

.hvn-signup-prompt a {
    color: #a06b86;
    text-decoration: none;
    font-weight: 700;
}

/* Visual Side - The Shape */
.hvn-visual-wrapper {
    width: 100%;
    height: 100%;
}

.hvn-shape-container {
    position: relative;
    width: 100%;
    height: 650px;
    /* Custom organic shape */
    border-radius: 80px 250px 80px 350px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hvn-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hvn-overlay-text {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 320px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hvn-auth-container {
        grid-template-columns: 1fr;
    }
    .hvn-visual-wrapper {
        display: none; /* Hide image on tablet/mobile for better focus */
    }
}

@media (max-width: 600px) {
    .hvn-auth-section {
        padding: 16px;
    }

    .hvn-form-wrapper {
        padding: 28px 20px;
    }
}














































:root {
    --inv-db-green: #71a943;
    --inv-db-bg: #f5f7f4;
    --inv-db-sidebar-bg: #ffffff;
    --inv-db-text: #333;
    --inv-db-card-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.inv-db-wrapper {
    display: flex;
    background: var(--inv-db-bg);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--inv-db-text);
}

/* Sidebar */
.inv-db-sidebar {
    width: 240px;
    background: var(--inv-db-sidebar-bg);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-right: 1px solid #eef1ee;
}

.inv-db-nav {
    display: flex;
    flex-direction: column;
}

.inv-db-logo {
    padding: 0 30px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--inv-db-green);
    display: flex;
    align-items: center;
    gap: 12px;
}

.inv-db-logo-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.inv-db-nav-item {
    padding: 14px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #777;
    font-weight: 500;
    transition: 0.3s;
}

.inv-db-nav-icon {
    width: 18px;
    text-align: center;
    flex: 0 0 18px;
    opacity: 0.9;
}

.inv-db-nav-item.active {
    background: #eef6e9;
    color: var(--inv-db-green);
    border-right: 4px solid var(--inv-db-green);
}

/* Main Layout */
.inv-db-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.inv-db-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.inv-db-user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.inv-db-icon-notify {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

.inv-db-icon-notify i {
    display: inline-block;
    vertical-align: -0.125em;
}

.inv-db-icon-notify[data-count]::after {
    content: attr(data-count);
    position: absolute;
    top: -5px; right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
}

.inv-db-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid #eee;
}

.inv-db-profile-chevron {
    margin-left: 6px;
    font-size: 0.75em;
    opacity: 0.7;
    vertical-align: 0.05em;
}

.inv-db-trans-icon {
    margin-right: 8px;
    opacity: 0.85;
}

.inv-db-trans-chevron {
    margin-left: 6px;
    font-size: 0.8em;
    opacity: 0.6;
}

.inv-db-profile img { width: 32px; border-radius: 50%; }

/* Grid Systems */
.inv-db-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.inv-db-stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--inv-db-card-shadow);
}

.inv-db-card-header h4 {
    margin: 0;
}

.inv-db-mock-chart {
    margin-top: 14px;
    height: 240px;
}

.inv-db-chart {
    width: 100%;
    height: 100%;
    display: block;
}

.inv-db-chart-grid {
    stroke: #eef1ee;
    stroke-width: 1;
}

.inv-db-chart-axis {
    fill: #8b948a;
    font-size: 11px;
    font-weight: 500;
}

.inv-db-chart-area {
    fill: url(#invDbArea);
}

.inv-db-chart-line {
    fill: none;
    stroke: var(--inv-db-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.inv-db-mid-grid, .inv-db-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.inv-db-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--inv-db-card-shadow);
}

/* Utilities */
.inv-db-text-green { color: var(--inv-db-green); }
.inv-db-text-red { color: #c0392b; }

.inv-db-btn-sm {
    background: transparent;
    border: 1px solid #d7ded6;
    color: var(--inv-db-text);
    padding: 7px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.inv-db-btn-sm:hover {
    background: #f6f9f5;
    border-color: #c9d3c9;
}

.inv-db-active-section h4 {
    margin: 0 0 14px;
    font-size: 1rem;
}
.inv-db-btn-full {
    width: 100%;
    padding: 12px;
    background: var(--inv-db-green);
    color: white;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
}

.inv-db-invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.inv-db-invest-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--inv-db-card-shadow);
}

.inv-db-invest-card img { width: 100%; height: 140px; object-fit: cover; }
.inv-db-invest-body { padding: 16px; }

.inv-db-invest-body h5 {
    margin: 0 0 10px;
    font-size: 0.95rem;
}

.inv-db-invest-body p {
    margin: 0 0 12px;
    color: #555;
}

.inv-db-invest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.inv-db-invest-footer small {
    font-weight: 700;
}

.inv-db-trans-card .inv-db-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.inv-db-table-labels {
    display: grid;
    grid-template-columns: 80px 46px;
    gap: 14px;
    color: #8b948a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.inv-db-trans-list {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.inv-db-trans-row {
    display: grid;
    grid-template-columns: 1fr auto auto 22px;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid #f0f2f0;
}

.inv-db-trans-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.inv-db-trans-label {
    font-weight: 700;
    color: #394039;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inv-db-trans-badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f6f2;
    color: #606a60;
    flex: 0 0 28px;
}

.inv-db-trans-badge.is-positive {
    background: rgba(113, 169, 67, 0.12);
    color: var(--inv-db-green);
}

.inv-db-trans-amount {
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
}

.inv-db-trans-amount.positive {
    color: var(--inv-db-green);
}

.inv-db-trans-amount.negative {
    color: #c0392b;
}

.inv-db-trans-date {
    color: #8b948a;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: right;
}

.inv-db-trans-status {
    display: flex;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 1200px) {
    .inv-db-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .inv-db-mid-grid, .inv-db-bottom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .inv-db-wrapper {
        flex-direction: column;
    }

    .inv-db-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 12px 0;
        border-right: none;
        border-bottom: 1px solid #eef1ee;
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .inv-db-logo {
        padding: 0 18px;
        padding-bottom: 0;
        font-size: 1.25rem;
    }

    .inv-db-nav {
        flex: 1;
        flex-direction: row;
        gap: 6px;
        padding: 0 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
    }

    .inv-db-nav-item {
        padding: 10px 12px;
        border-right: none;
        white-space: nowrap;
    }

    .inv-db-nav-item.active {
        border-right: none;
        border-bottom: 3px solid var(--inv-db-green);
    }

    .inv-db-logout {
        padding-right: 14px;
    }

    .inv-db-main {
        padding: 22px 18px;
    }

    .inv-db-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .inv-db-table-labels { display: none; }
    .inv-db-stat-grid { grid-template-columns: 1fr; }
    .inv-db-trans-row { grid-template-columns: 1fr auto 22px; }
    .inv-db-trans-amount { grid-column: 2; }
    .inv-db-trans-status { grid-column: 3; }
    .inv-db-trans-date {
        grid-column: 1 / -1;
        text-align: left;
        margin-left: 38px;
        margin-top: -6px;
        font-size: 0.8rem;
    }
}



:root {
    --dep-green: #71a943;
    --dep-bg: #f5f7f4;
    --dep-white: #ffffff;
    --dep-text: #333;
    --dep-muted: #777;
    --dep-border: #eef1ee;
}

.inv-dep-wrapper {
    display: flex;
    background: var(--dep-bg);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* Sidebar context */
.inv-dep-sidebar { width: 240px; background: #fff; padding: 20px 0; border-right: 1px solid var(--dep-border); }
.inv-dep-logo { padding: 0 30px 40px; font-weight: 800; color: var(--dep-green); display: flex; align-items: center; gap: 12px; }
.inv-dep-logo-icon { font-size: 1.05rem; line-height: 1; }
.inv-dep-nav-item { padding: 14px 30px; display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--dep-muted); font-weight: 500; }
.inv-dep-nav-item.active { background: #eef6e9; color: var(--dep-green); border-right: 4px solid var(--dep-green); }
.inv-dep-nav { display: flex; flex-direction: column; }
.inv-dep-nav-icon { width: 18px; text-align: center; flex: 0 0 18px; opacity: 0.9; }

/* Main Area */
.inv-dep-main { flex: 1; padding: 40px; }
.inv-dep-header { display: flex; justify-content: space-between; margin-bottom: 30px; }
.inv-dep-header h2 { margin: 0; font-size: 1.8rem; }
.inv-dep-header p { color: var(--dep-muted); margin: 5px 0 0; }
.inv-dep-user-meta { display: flex; align-items: center; gap: 20px; }
.inv-dep-top-icons { display: flex; align-items: center; gap: 14px; color: #666; }
.inv-dep-icon i { display: inline-block; vertical-align: -0.125em; }
.inv-dep-profile { display: flex; align-items: center; gap: 10px; padding: 5px 15px; background: #fff; border-radius: 50px; border: 1px solid #eee; }
.inv-dep-profile img { width: 30px; border-radius: 50%; }
.inv-dep-profile-chevron { margin-left: 6px; font-size: 0.75em; opacity: 0.7; vertical-align: 0.05em; }

/* Grid */
.inv-dep-grid { display: grid; grid-template-columns: 2fr 1.2fr; gap: 30px; }

/* Payment Methods */
.inv-dep-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
.inv-dep-method-card { 
    background: #fff; padding: 20px; border-radius: 12px; text-align: center;
    border: 2px solid transparent; cursor: pointer; transition: 0.3s;
}
.inv-dep-method-card:hover { transform: translateY(-3px); }
.inv-dep-method-card.active { border-color: var(--dep-green); background: #f9fff4; }
.inv-dep-method-icon { font-size: 2rem; margin-bottom: 10px; }
.inv-dep-method-icon i { display: inline-block; vertical-align: -0.125em; }

/* Form Card */
.inv-dep-card { background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); margin-bottom: 25px; }
.inv-dep-input-wrapper { display: flex; align-items: center; background: #f9f9f9; border: 1px solid #eee; border-radius: 8px; margin: 15px 0 5px; }
.inv-dep-currency { padding: 0 15px; font-weight: bold; border-right: 1px solid #eee; }
.inv-dep-input-wrapper input { border: none; background: transparent; padding: 15px; width: 100%; outline: none; }
.inv-dep-limits { font-size: 12px; color: var(--dep-muted); text-align: right; margin-bottom: 20px; }
.inv-dep-btn-primary { width: 100%; padding: 15px; background: var(--dep-green); color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; }
.inv-dep-hint { font-size: 12px; color: var(--dep-muted); text-align: center; margin-top: 20px; }

/* Side Column */
.inv-dep-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.inv-dep-card-header h4 {
    margin: 0;
}

.inv-dep-card-header a {
    color: var(--dep-green);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.inv-dep-card-header a:hover {
    text-decoration: underline;
}

.inv-dep-history-list {
    margin-top: 6px;
}

.inv-dep-history-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #f5f5f5; }
.inv-dep-history-row:last-child { border: none; }
.inv-dep-h-amount { font-weight: 800; color: var(--dep-green); }

.inv-dep-h-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.inv-dep-h-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    background: rgba(113, 169, 67, 0.14);
    color: var(--dep-green);
}

.inv-dep-h-badge.is-crypto {
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    color: #f59e0b;
}

.inv-dep-h-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.inv-dep-h-text strong {
    color: #394039;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inv-dep-h-text small {
    color: var(--dep-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

.inv-dep-faq-item { padding: 15px; background: #f9f9f9; margin-bottom: 10px; border-radius: 8px; display: flex; justify-content: space-between; cursor: pointer; font-size: 14px; }
.inv-dep-faq-q { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: #444; }
.inv-dep-faq-plus { opacity: 0.9; }
.inv-dep-faq-chevron { opacity: 0.65; }
.inv-dep-illus { margin-top: 20px; text-align: center; }
.inv-dep-illus img { width: 100%; max-width: 200px; opacity: 0.8; }

/* Responsive */
@media (max-width: 1024px) {
    .inv-dep-wrapper { flex-direction: column; }
    .inv-dep-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--dep-border); padding: 12px 0; }
    .inv-dep-logo { padding: 0 20px 16px; }
    .inv-dep-nav {
        flex-direction: row;
        gap: 6px;
        padding: 0 14px 8px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
    }
    .inv-dep-nav-item { padding: 10px 12px; border-right: none; white-space: nowrap; }
    .inv-dep-nav-item.active { border-right: none; border-bottom: 3px solid var(--dep-green); }
    .inv-dep-main { padding: 26px 18px; }
    .inv-dep-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .inv-dep-grid { grid-template-columns: 1fr; }
    .inv-dep-methods { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .inv-dep-methods { grid-template-columns: 1fr; }
}
