/* Reset & Base */
@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/spartan/v22/l7gfbjR61M69yt8Z2QytlAXJExtwBw.woff2) format('woff2');
}

@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/spartan/v22/l7gdbjR61M69yt8Z2U_pzlAXJExt.woff2) format('woff2');
}

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

:root {
    /* Executive Teal Palette - Inspired by jillszeder.com & SMI Gradient */
    --brand-teal: #014046; 
    --brand-teal-rgb: 1, 64, 70;
    --brand-teal-light: #006b72;
    --brand-teal-deep: #001d22;
    --brand-teal-surface: #F3F1ED;
    --brand-teal-hover: #013338;
    
    --brand-teal-gradient: linear-gradient(135deg, #001d22 0%, #004e54 50%, #006b72 100%);
    --brand-teal-gradient-soft: linear-gradient(135deg, rgba(0, 29, 34, 0.8) 0%, rgba(0, 78, 84, 0.8) 100%);
    
    --brand-primary: var(--brand-teal);
    --brand-accent: #A6AEB5; /* Elegant Silver Slate */

    --brand-navy: #002B30; /* Dark Teal Shadow */
    --brand-navy-rgb: 0, 43, 48;
    --brand-navy-hover: #001F22;

    --brand-silver: #A6AEB5;
    --brand-silver-rgb: 166, 174, 181;
    --brand-silver-light: rgba(166, 174, 181, 0.15);
    --brand-silver-hover: #8e979e;
    --brand-silver-gradient: linear-gradient(135deg, #A6AEB5 0%, #7F8C8D 100%);
    
    --cloud-dancer: #F3F1EDD4; /* Sophisticated semi-transparent off-white */
    --cloud-dancer-rgb: 243, 241, 237;
    --bg-secondary: var(--cloud-dancer);

    /* Backgrounds - Obsidian & Alabaster */
    --bg-primary: #FDFDFB; /* Premium Architectural White */
    --bg-secondary: #f4f5f2;
    --bg-tertiary: #ebece8;
    
    --text-primary: #1A1A1A; /* Obsidian Matte */
    --text-secondary: #555555; /* Refined Slate */
    --text-muted: #888888;
    
    --border-color: rgba(18, 18, 18, 0.08);
    --border-light: rgba(18, 18, 18, 0.04);
    
    /* Silver accents to replace Gold */
    --silver-light: #f4f6f8;
    --silver-mid: #A6AEB5;
    --silver-dark: #6C7A89;
    --silver-gradient: linear-gradient(180deg, #E6E9ED 0%, #A6AEB5 100%);
    
    /* Dark accents for high contrast sections */
    --dark-deep: #121212;
    --dark-charcoal: #1a1a1a;
    --dark-surface: #242424;

    --section-divider: rgba(1, 64, 70, 0.08);
    --section-divider-strong: rgba(1, 64, 70, 0.18);
    --teal-surface: #F3F1ED;
    --teal-surface-strong: rgba(1, 64, 70, 0.08); /* Sophisticated Teal tint */
    --teal-border: rgba(1, 64, 70, 0.15);
    
    /* Layout */
    --section-spacing: 160px;
    --container-width: 1300px;
    --nav-height: 90px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-luxury: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
    --shadow-luxury-hover: 0 20px 60px rgba(27, 48, 34, 0.12), 0 10px 25px rgba(197, 160, 89, 0.1);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    font-family: 'Spartan', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .section-title, .brand-lead, .corporate-accent-text {
    font-family: 'Spartan', sans-serif;
    font-weight: 700;
}

/* Navigation */
.impact-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
    align-items: center;
}

.gold-link {
    text-decoration: none;
    color: var(--brand-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-teal);
}

.nav-links a:hover::after, .nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--brand-teal);
}

/* Dropdown Submenu */
.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    border: 1px solid var(--border-color);
    margin-top: 10px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu li {
    padding: 8px 20px;
}

.submenu a {
    font-size: 0.8rem;
    text-transform: none;
    color: var(--text-secondary);
}

.submenu li:hover a {
    color: var(--brand-teal);
}

.submenu a::after {
    display: none !important;
}

/* About Section Layout */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.highlight-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    border-color: var(--brand-teal);
    background: var(--cloud-dancer);
    box-shadow: var(--shadow-md);
}

.feature-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    transition: 0.4s;
    user-select: none;
}

.feature-card:hover .feature-number {
    color: rgba(var(--brand-teal-rgb), 0.05);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border-left: 2px solid var(--brand-teal);
    padding-left: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

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

.stat-box h3 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--brand-teal);
    margin-bottom: 10px;
}

.stat-box span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Invest Strategy & Process Timeline */
.invest-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

/* ===== NEW INVEST DETAILS V2 LAYOUT ===== */
.invest-details-v2 {
    margin-top: 50px;
}

/* Strategy Intro Block (full width) */
.strategy-intro-block {
    background: var(--bg-secondary);
    border: 1px solid rgba(1, 64, 70, 0.08);
    padding: 55px 60px;
    margin-bottom: 60px;
}

.strategy-intro-text h3 {
    color: var(--brand-teal);
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Spartan', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.strategy-intro-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.strategy-intro-text p:last-child {
    margin-bottom: 0;
}

.strategy-intro-text strong {
    color: var(--brand-teal);
    font-weight: 700;
}

/* Stats Row */
.strategy-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(1, 64, 70, 0.1);
    margin-top: 40px;
    padding-top: 40px;
}

.strategy-stat {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.strategy-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-teal);
    font-family: 'Spartan', sans-serif;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.strategy-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.strategy-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(1, 64, 70, 0.15);
    flex-shrink: 0;
}

/* Advantage Cards Header */
.advantage-cards-header {
    margin-bottom: 10px;
}

.advantage-cards-header .section-label {
    text-align: left;
    margin-bottom: 0;
}

.advantage-cards-header .section-label::after {
    margin: 10px 0 0;
}

/* Advantage Cards Grid */
.advantage-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.advantage-card {
    background: #ffffff;
    border: 1px solid rgba(1, 64, 70, 0.06);
    padding: 35px 28px;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    background: var(--cloud-dancer);
    box-shadow: 0 15px 40px rgba(1, 64, 70, 0.12);
    border-color: var(--brand-teal);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00B1A8 0%, #014046 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 177, 168, 0.25);
}

.advantage-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.advantage-card h4 {
    color: var(--brand-teal);
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Spartan', sans-serif;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Old invest-details component styles (kept for backwards compat) */
.strategy-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.strategy-content h3 {
    color: var(--brand-teal);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.strategy-list-box h3 {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-teal);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.strategy-list-box ul {
    list-style: none;
    padding: 0;
}

.strategy-list-box li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(1, 64, 70, 0.1);
    font-weight: 500;
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Spartan', sans-serif;
}

.strategy-list-box li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand-teal-gradient);
    flex-shrink: 0;
}

.process-timeline {
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin-top: 60px;
}

.process-timeline h3 {
    color: var(--brand-teal);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 70px;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.timeline-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding: 0 40px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: rgba(1, 64, 70, 0.1); /* Static track */
    z-index: 0;
}

.timeline-steps::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 80px;
    width: 0; /* Animated progress */
    height: 3px;
    background: var(--brand-teal-gradient);
    z-index: 1;
    transition: width 2s cubic-bezier(0.2, 1, 0.3, 1);
}

.timeline-steps.is-visible::after {
    width: calc(100% - 160px);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    cursor: default;
    z-index: 10; /* Ensure steps sit above the progress line */
    
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.timeline-steps.is-visible .step-item {
    opacity: 1;
    transform: scale(1);
}

.step-item:nth-child(1) { transition-delay: 0.2s; }
.step-item:nth-child(2) { transition-delay: 0.5s; }
.step-item:nth-child(3) { transition-delay: 0.8s; }
.step-item:nth-child(4) { transition-delay: 1.1s; }
.step-item:nth-child(5) { transition-delay: 1.4s; }

.step-item:hover .step-circle {
    background: var(--brand-teal);
    color: #111;
}

.step-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #FDFDFB; /* Solid background to hide the line behind */
    border: 2px solid var(--brand-teal);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Spartan', sans-serif;
    margin-bottom: 25px;
    position: relative;
    z-index: 5; /* Above the line */
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 29, 34, 0.1);
}

.step-item:hover .step-circle {
    background: var(--brand-teal);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(1, 64, 70, 0.3);
}

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

.step-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Why Invest Block */
.why-invest {
    margin-top: 80px;
    padding-top: 80px;
}

.why-invest-full-content {
    max-width: 1200px; /* Contained width for better readability */
    margin-bottom: 60px;
}

.why-invest-full-content .brand-lead {
    font-size: 1.8rem;
    color: var(--brand-teal);
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 2.2rem;
    font-family: 'Spartan', sans-serif;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.why-invest-full-content p:not(.brand-lead) {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
}

.why-invest-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    max-width: 1200px;
}

.why-invest-header h3 {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.why-invest-header > * {
    margin: 0;
}

.why-invest-lead {
    color: var(--brand-teal);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.4;
}

.why-invest-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: var(--container-width);
}

.why-invest-card, .feature-card {
    background: #ffffff;
    border: 1px solid rgba(1, 64, 70, 0.05);
    padding: 40px 30px;
    border-radius: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-invest-card:hover {
    background: var(--cloud-dancer);
    box-shadow: 0 20px 50px rgba(1, 64, 70, 0.15);
    border-color: var(--brand-teal);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B1A8 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 177, 168, 0.25);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.why-invest-card h4 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-invest-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .why-invest-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.advantages-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: 0.3s;
}

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

.advantages-list li:hover {
    padding-left: 8px;
}

.advantages-list li svg {
    color: var(--brand-teal);
    flex-shrink: 0;
}

.advantages-list li span {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .invest-details,
    .why-invest {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }
    
    .why-invest {
        padding-top: 50px;
    }

    /* Strategy Intro Block - Mobile */
    .strategy-intro-block {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .strategy-stats-row {
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .strategy-stat {
        padding: 0;
        text-align: center;
    }

    .strategy-stat-value {
        font-size: 1.6rem;
    }

    .strategy-stat-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    /* Advantage Cards - Mobile Stack */
    .advantage-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .advantage-card {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .advantage-icon {
        margin-bottom: 18px;
        flex-shrink: 0;
    }

    .advantage-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .advantage-card p {
        font-size: 0.85rem;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    /* Hide horizontal progress line on mobile */
    .timeline-steps::before,
    .timeline-steps::after {
        display: none;
    }

    .step-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(1, 64, 70, 0.08);
        position: relative;
    }

    .step-item:last-child {
        border-bottom: none;
    }

    .step-circle {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .step-info {
        text-align: left;
        padding-top: 8px;
    }

    .step-info strong {
        font-size: 1rem;
    }

    .step-info p {
        font-size: 0.85rem;
        margin-top: 4px;
    }
}

/* Investment Types */
.types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.type-card {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.impact-luxury-wrapper .type-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.impact-luxury-wrapper .type-info-top {
    min-height: 220px; /* Aligns the Benefits section across different text lengths */
}

@media (max-width: 992px) {
    .impact-luxury-wrapper .type-info-top {
        min-height: auto; /* Reset for single column layout on mobile */
    }
}

.type-img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.type-card:hover {
    background: var(--cloud-dancer);
    border-color: var(--brand-navy);
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.type-card h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.type-lead {
    color: var(--brand-teal) !important;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.type-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.type-card h5 {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.type-card .advantages-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.type-link {
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}

/* ROI Section */
.roi-section {
    margin-top: 140px;
    padding: 120px 80px;
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-hover) 100%);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg), inset 0 0 100px rgba(0,0,0,0.3);
    position: relative;
    color: #ffffff;
}

.roi-content h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.roi-content .brand-lead {
    color: #ffffff !important;
    opacity: 0.95;
    margin-bottom: 50px;
}

.roi-lead {
    color: var(--brand-silver) !important;
    font-size: 1.3rem;
    margin-bottom: 70px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.roi-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.sales-desk-panel {
    margin-top: 20px; /* Reduced to bring phone numbers closer */
}

.sales-desk-title {
    font-size: 0.9rem;
    color: var(--brand-teal);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sales-desk-list {
    display: flex;
    flex-direction: column;
}

.sales-desk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-left: -25px;
    width: calc(100% + 50px);
}

.sales-desk-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--brand-teal);
    transition: height 0.3s ease;
}

.sales-desk-item:hover {
    background: var(--brand-teal-light);
    transform: translateX(10px);
}

.sales-desk-item:hover::before {
    height: 100%;
}

.sales-desk-label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sales-desk-icon {
    width: 28px;
    height: 28px;
    background: rgba(var(--brand-teal-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    transition: 0.3s;
}

.sales-desk-item:hover .sales-desk-icon {
    background: var(--brand-teal);
    color: #fff;
    box-shadow: 0 0 15px rgba(var(--brand-teal-rgb), 0.4);
}

.sales-desk-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: 0.3s;
}

.sales-desk-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: 0.3s;
}

.sales-desk-item:hover .sales-desk-label {
    color: var(--brand-teal);
}

.sales-desk-item:hover .sales-desk-value {
    color: var(--brand-teal);
}

.roi-stat-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.roi-stat-box:hover {
    background: var(--cloud-dancer);
    box-shadow: var(--shadow-luxury-hover);
    border-color: var(--brand-teal);
}

.roi-stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-teal);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.roi-stat-box:hover::after {
    transform: scaleX(1);
}

.roi-icon {
    color: var(--brand-teal);
    margin-bottom: 25px; /* Slightly more space below the larger icon */
}

.roi-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5px; /* Keep it elegant when scaled up */
}

.roi-section h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
}

.roi-section .brand-lead {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.roi-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-teal);
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.corporate-accent-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-silver);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
    opacity: 0.8;
}

.roi-stat-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.roi-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.roi-footer p {
    color: var(--brand-silver);
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .roi-section {
        padding: 40px 20px;
    }
    .roi-stats-grid {
        grid-template-columns: 1fr;
    }
    .roi-value {
        font-size: 1.8rem;
        white-space: normal;
        letter-spacing: -0.5px;
    }
    .corporate-accent-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .roi-stat-box p {
        font-size: 0.85rem;
    }
}

/* Global Button Styles (Legacy or components) */
.btn-cta-corporate {
    background: var(--brand-teal);
    color: #ffffff !important;
    border: none;
    padding: 16px 36px;
    text-decoration: none;
    font-family: 'Spartan', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-teal-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-cta-corporate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 29, 34, 0.25);
}

.btn-cta-corporate:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    height: 85vh;
    background: url('https://ariaverdi.ro/wp-content/uploads/2026/02/av1.png') center/cover;
    margin-top: var(--nav-height);
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(240,240,240,0.92) 35%, rgba(240,240,240,0.4) 70%, transparent);
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 850px;
    position: relative;
    padding-left: 45px; /* Space for the vertical architectural bar */
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--brand-teal-gradient);
}

.hero-content h1 {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    background: var(--brand-teal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.corporate-accent-text { 
    color: #444; 
    display: block;
    font-size: 1rem;
    font-family: 'Spartan', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 15px 0;
}

.corporate-accent-line {
    width: 60px;
    height: 1px;
    background: var(--brand-silver);
    margin: 20px 0;
}

/* Sections & Titles */
.content-section, .projects-preview, .projects-preview-v2 {
    padding: var(--section-spacing) 8%;
    position: relative;
    border-top: 1px solid var(--section-divider);
    border-bottom: 1px solid var(--section-divider);
    scroll-margin-top: var(--nav-height);
}

.content-section::before,
.projects-preview::before,
.projects-preview-v2::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--section-divider-strong), transparent);
    opacity: 0.6;
    pointer-events: none;
}

.section-dark { 
    background: #F3F1ED;
}

.section-teal {
    background: var(--brand-teal);
    color: #ffffff;
    padding: 120px 8%;
}

.section-teal h2, 
.section-teal h3, 
.section-teal h4 {
    color: #ffffff !important;
}

.section-teal p,
.section-teal .brand-lead {
    color: var(--brand-silver) !important;
}

.section-teal .section-title::after {
    background: var(--brand-teal-gradient);
    height: 3px;
    width: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 30px;
    color: var(--brand-teal); /* Ensure visibility on white backgrounds */
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--brand-teal);
    margin: 25px auto 0;
}


.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.why-invest-card, .feature-card {
    background: #ffffff;
    border: 1px solid rgba(166, 174, 181, 0.2);
    padding: 40px 30px;
}

.why-invest-card h4, .feature-card h4 {
    color: var(--brand-teal) !important;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.why-invest-card p, .feature-card p {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
}

.why-invest-card .card-icon svg, .feature-card .card-icon svg {
    fill: url(#teal-gradient);
}

.project-card {
    position: relative; /* Anchor for the border-left animation */
    background: #ffffff;
    border: 1px solid rgba(1, 64, 70, 0.1); /* Hairline architectural border */
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.project-card:hover {
    background: var(--cloud-dancer);
    box-shadow: 0 15px 45px rgba(1, 64, 70, 0.08);
}

/* Header Section */
.project-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-teal-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 10;
}

.project-card:hover::before {
    transform: scaleY(1);
}

/* Header Section */
.project-card-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border-bottom: 1px solid rgba(1, 64, 70, 0.08);
    transition: background 0.4s ease;
}

.project-logo-wrapper {
    flex: 0 0 90px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1);
    transition: transform 0.3s ease;
}

.project-card:hover .project-logo-wrapper img {
    opacity: 0.9;
}

.project-card-header h3 {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 800; /* Executive Boldness */
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 3px; /* High-end architectural spacing */
    margin: 0;
    text-align: right;
    transition: letter-spacing 0.4s ease;
}

.project-card:hover .project-card-header h3 {
    letter-spacing: 4px;
}

/* Image Section */
.project-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10; /* Fluid height prevents aggressive panoramic cropping on wide cards */
    width: 100%;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-card:hover .project-img {
    filter: brightness(1.05);
}

/* Footer Section */
.project-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    gap: 30px;
    border-top: 1px solid var(--brand-silver);
}

.project-card-footer p {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 65%;
}

.project-card:hover .project-card-footer p {
    color: var(--text-primary);
}

.corporate-link {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: var(--brand-teal-gradient);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border-radius: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.corporate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 29, 34, 0.3);
}

.gold-link::after {
    content: ' \2192';
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.project-card:hover .gold-link {
    background: var(--brand-teal);
    color: #ffffff;
    border-color: var(--brand-teal);
}

.project-card:hover .gold-link::after {
    transform: translateX(5px);
}

/* Luxury Card Glow Effect */
/* Removed fussy border animations */

/* Team Section Header is now handled by .section-header and .brand-lead */

/* --- TEAM MANIFESTO GRID --- */
.team-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin: 40px 0 80px;
    align-items: stretch;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-content .manifesto-lead {
    font-size: 1.35rem;
    color: var(--brand-teal);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
}

.manifesto-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.manifesto-quote-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-quote-card .quote-mark {
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    display: block;
    opacity: 0.8;
}

.manifesto-quote-card blockquote {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

@media (max-width: 992px) {
    .team-manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .manifesto-quote-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .manifesto-quote-card blockquote {
        font-size: 1.4rem;
    }
    .manifesto-content .manifesto-lead {
        font-size: 1.15rem;
    }
}

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

.team-member {
    background: var(--cloud-dancer);
    border: 1px solid rgba(1, 64, 70, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
}

.team-member:hover {
    border-color: var(--brand-teal);
    box-shadow: 0 15px 35px rgba(0, 29, 34, 0.12);
}

.member-img {
    height: 420px;
    width: 100%;
    background-size: cover;
    background-position: top center;
    border-radius: 0;
    transition: filter 0.5s ease;
}

.team-member:hover .member-img {
    transform: scale(1.03);
}

.member-info {
    padding: 30px 25px;
    background: transparent;
    text-align: center;
}

.member-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.project-tag {
    display: inline-block;
    font-size: 0.6rem;
    color: var(--brand-teal);
    border: 1px solid rgba(1, 64, 70, 0.2);
    padding: 2px 10px;
    border-radius: 0;
    letter-spacing: 1px;
    font-weight: 600;
    background: transparent;
    text-transform: uppercase;
}

.member-info h4 {
    color: var(--brand-teal);
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 800;
    font-family: 'Spartan', sans-serif;
    letter-spacing: 0.5px;
}

.member-role {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.member-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.member-phone-icon {
    width: 28px;
    height: 28px;
    background: rgba(var(--brand-teal-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    transition: 0.3s;
}

.team-member:hover .member-phone-icon {
    background: var(--brand-teal);
    color: #fff;
    box-shadow: 0 0 15px rgba(var(--brand-teal-rgb), 0.4);
}

.team-member:hover .member-phone {
    color: var(--brand-teal);
}

/* Contact Form - 2 Column Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center; /* Vertically centers the left info and right form for a balanced look */
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-lead {
    color: var(--brand-teal);
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px; /* Reduced to bring phone numbers closer */
}

.entrepreneur-guide-banner {
    background: var(--brand-teal);
    padding: 120px 8%;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.entrepreneur-guide-banner .brand-lead {
    color: #ffffff !important;
}

.entrepreneur-guide-banner .corporate-accent-text {
    color: var(--brand-silver);
}

.contact-form-panel {
    background: var(--bg-primary);
    padding: 60px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.impact-form .form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.impact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--brand-silver);
    color: var(--text-primary);
    font-family: 'Spartan', sans-serif;
    font-size: 0.95rem;
    padding: 10px 0;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-teal);
}

.input-group select {
    color: var(--text-primary);
    cursor: pointer;
}

.input-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.radio-group-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.radio-group-horizontal label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.radio-group-horizontal input[type="radio"] {
    accent-color: var(--brand-teal);
    cursor: pointer;
    width: auto !important; /* Overrides the 100% width from .input-group input */
    padding: 0;
}

.input-group textarea {
    resize: none;
    min-height: 40px;
}

.form-submit {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.form-submit button {
    cursor: pointer;
    border: none;
}

@media (max-width: 992px) {
    .team-quote-typography blockquote { font-size: 1.7rem; }
    .team-quote-box p { font-size: 1.4rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
    .team-grid {
        display: flex;
        flex-wrap: nowrap; /* Prevent cards from wrapping or squishing */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 8% 40px;
        margin: 0 -8%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 85%; /* Enforce width and prevent shrink */
        flex-shrink: 0; /* CRITICAL: prevents cards from getting narrow */
        scroll-snap-align: center;
        margin: 0;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 4px;
        overflow: hidden;
    }

    .member-img {
        height: 350px;
    }

    .member-info {
        padding: 25px;
        text-align: center; /* Center-aligned for a better mobile profile feel */
    }

    .member-tags {
        justify-content: center;
        margin-bottom: 12px;
    }

    .member-phone {
        justify-content: center;
        margin-top: 15px;
    }

    .team-quote-typography blockquote { font-size: 1.4rem; padding: 0 15px; }
    .team-quote-typography { padding: 40px 10px; margin: 10px auto 40px; }
    .team-quote-box { padding: 40px 20px 20px; }
    .team-quote-box p { font-size: 1.2rem; }

    .impact-form .form-row-2,
    .impact-form .form-row-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .radio-group-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .radio-group-horizontal label {
        justify-content: flex-start;
        width: 100%;
    }
}

/* Footer */
.luxury-footer {
    background: var(--brand-teal);
    padding: 120px 8% 60px;
    color: #ffffff;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/site-smi-icon-bg.jpg') center / cover no-repeat;
    opacity: 0.32;
    z-index: 0;
}

.luxury-footer > * {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; /* Fixed to 5 columns for single row */
    gap: 30px;
}

.footer-grid h4 {
    font-family: 'Spartan', sans-serif;
    font-size: 1rem;
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.branding-col .footer-logo {
    height: 45px;
    margin-bottom: 25px;
    filter: brightness(0.9);
}

.brand-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 20px; /* Standard gap between contact clusters */
    display: flex;
    flex-direction: column;
}

.footer-contact-item:last-of-type {
    margin-bottom: 0;
}

.contact-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: 0.3s;
}

/* Site-Wide Sharp Consistency */
.sales-desk-panel, 
.contact-form-panel,
.impact-form input,
.impact-form select,
.impact-form textarea,
.team-member,
.member-badge {
    border-radius: 2px !important; /* Forces the sharp architectural look everywhere */
}

/* Premium Form CTA */
.btn-cta-gold {
    background: var(--brand-navy);
    color: #ffffff !important;
    border: 1px solid rgba(var(--brand-navy-rgb), 0.35);
    font-weight: 700;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-cta-gold:hover {
    background: var(--brand-teal);
    color: #ffffff;
    border-color: var(--brand-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury-hover);
}

.footer-contact-item a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.email-item {
    margin-top: 10px;
}

.email-item a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.hours-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Stacking only when absolutely necessary */
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .luxury-footer {
        padding: 60px 8% 30px;
    }
}










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

.impact-luxury-wrapper {
    background-color: var(--bg-primary);
    font-family: 'Spartan', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Reveal System */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Section Label & Title Refinement */
.section-label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.section-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--brand-teal);
    margin: 10px auto 0;
    opacity: 0.6;
}

.section-label-spaced {
    margin-top: 80px;
}

.entrepreneur-guide-banner {
    margin-top: 30px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 60px;
    color: var(--brand-teal);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brand-teal);
    border-radius: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Section Base Styles */
.content-section {
    padding: var(--section-spacing) 8%;
}

.section-charcoal {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--gold-light) 100%);
    color: var(--text-primary);
}

.section-dark {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    color: var(--text-primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--brand-teal);
}

.gold-lead {
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hamburger Toggle Styling */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--brand-teal);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--brand-teal);
}

.impact-luxury-wrapper .nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.impact-luxury-wrapper .nav-links a:hover, 
.impact-luxury-wrapper .nav-links a.active {
    color: var(--brand-teal);
}

.impact-luxury-wrapper .nav-links a.btn-cta-gold {
    background: var(--brand-navy);
    color: #ffffff;
    border: 1px solid rgba(var(--brand-navy-rgb), 0.35);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.impact-luxury-wrapper .nav-links a.btn-cta-gold:hover {
    background: var(--brand-teal);
    color: #ffffff;
    border-color: #ffffff;
}

/* Hero Section - Full VH */
.impact-luxury-wrapper .hero-section {
    height: calc(100vh - var(--nav-height));
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://ariaverdi.ro/wp-content/uploads/2026/02/av1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.impact-luxury-wrapper .hero-overlay {
    width: 100%;
    padding: 0 8%;
}

.impact-luxury-wrapper .hero-content {
    max-width: 1200px; /* Increased to keep name on one line */
    animation: fadeInUp 1s ease-out;
}

.impact-luxury-wrapper .hero-content h1 {
    font-size: 4.2rem; /* Slightly larger for impact */
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-family: 'Spartan', sans-serif;
    color: var(--brand-teal);
    font-weight: 700;
}

.impact-luxury-wrapper .corporate-accent-text { 
    color: #333; 
    display: block;
    font-size: 0.95rem;
    font-family: 'Spartan', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 15px 0;
    text-shadow: none;
}

.impact-luxury-wrapper .corporate-accent-line {
    width: 50px;
    height: 1px;
    background: var(--brand-silver);
    margin: 20px auto 0;
}

.impact-luxury-wrapper .green-text { color: var(--brand-teal); }

.impact-luxury-wrapper .hero-content p {
    font-size: 1.1rem;
    color: #444;
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 400;
}

.impact-luxury-wrapper .hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.impact-luxury-wrapper .gold-accent-line {
    width: 80px;
    height: 2px;
    /* background: var(--brand-teal); */
}

/* Buttons */
.impact-luxury-wrapper .member-tags span {
    background: transparent;
    color: var(--brand-teal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1.5px solid var(--brand-teal);
}
.impact-luxury-wrapper .btn-cta-corporate {
    background: var(--brand-teal);
    color: #ffffff;
    padding: 15px 45px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-dark .btn-cta-corporate, 
.roi-section .btn-cta-corporate {
    color: #ffffff !important;
    border: none;
}

.section-dark .btn-cta-corporate:hover, 
.roi-section .btn-cta-corporate:hover {
    background: linear-gradient(135deg, #016b75 0%, #014046 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(1, 64, 70, 0.4);
}

.impact-luxury-wrapper .btn-cta-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-teal-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Suppress the ::before overlay for buttons on dark/roi sections */
.section-dark .btn-cta-corporate::before,
.roi-section .btn-cta-corporate::before {
    display: none;
}

.impact-luxury-wrapper .btn-cta-corporate:hover::before {
    opacity: 1;
}

.impact-luxury-wrapper .btn-cta-corporate:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 29, 34, 0.3);
}

.impact-luxury-wrapper .btn-outline-green {
    border: 1px solid var(--brand-teal);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 1px;
}

.impact-luxury-wrapper .btn-outline-green:hover {
    background: var(--brand-teal);
}

/* Scroll Indicator Animation */
.impact-luxury-wrapper .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.impact-luxury-wrapper .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    position: relative;
}

.impact-luxury-wrapper .mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--brand-teal);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 20px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
/* Mobile Navigation Overwrites */
@media (max-width: 768px) {
    .hamburger-toggle {
        display: flex;
    }

    .impact-luxury-wrapper .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #0a0a0a;
        padding: 100px 40px;
        gap: 25px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        margin: 0;
        box-shadow: -15px 0 40px rgba(0,0,0,0.8);
    }

    .impact-luxury-wrapper .nav-links.active {
        right: 0;
    }

    .impact-luxury-wrapper .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s ease;
    }

    .impact-luxury-wrapper .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .impact-luxury-wrapper .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .impact-luxury-wrapper .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .impact-luxury-wrapper .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .impact-luxury-wrapper .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .impact-luxury-wrapper .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .impact-luxury-wrapper .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

    .impact-luxury-wrapper .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        color: #fff; /* Ensure text is readable on dark mobile menu overlay */
    }

    .mobile-cta-li {
        margin-top: 30px;
        border-bottom: none !important;
    }

    .mobile-cta-li .btn-cta-gold {
        width: 100%;
        display: block;
        text-align: center;
        padding: 18px;
        font-size: 0.85rem;
        box-shadow: 0 10px 20px rgba(255,255,255,0.05);
    }

    .impact-luxury-wrapper .hero-content h1 { font-size: 2.2rem; }
    .impact-luxury-wrapper .hero-btns { flex-direction: column; width: 100%; }

    .projects-grid {
        grid-template-columns: 1fr; /* Single card per row on mobile for clarity */
        gap: 30px;
    }

    .project-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px; /* Better spacing between text and button */
        padding: 30px;
    }

    .project-card-footer p {
        max-width: 100%;
        margin: 0;
    }

    .gold-link {
        width: 100%; /* Full width button on mobile for better tap target */
        justify-content: center;
    }

    .why-invest-cards-grid {
        grid-template-columns: 1fr; /* Stack cards natively on mobile */
        gap: 20px;
    }

    /* Global Mobile Button Fix for Gold CTAs */
    .btn-cta-gold {
        display: inline-block !important;
        width: 100% !important;
        max-width: 400px;
        height: auto !important;
        padding: 16px 20px !important;
        line-height: 1.4 !important;
        text-align: center;
        font-size: 0.85rem !important;
    }
}

/* --- SECTION: CINE SUNTEM (MODERN BUSINESS) --- */

.impact-luxury-wrapper .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Image smaller, text wider */
    gap: 70px; /* Slight increase in gap to avoid crowding */
    margin-bottom: 80px;
}

.impact-luxury-wrapper .gold-lead, 
.impact-luxury-wrapper .brand-lead {
    font-size: 1.25rem;
    color: var(--brand-teal);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4;
}

.impact-luxury-wrapper .gold-lead.text-center,
.impact-luxury-wrapper .brand-lead.text-center {
    text-align: center;
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--brand-teal);
    font-weight: 300;
    line-height: 1.5;
}

.impact-luxury-wrapper .section-subtitle.brand-style {
    font-size: 1.15rem;
    color: var(--brand-teal);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.team-description-moved {
    margin-top: 40px;
    max-width: 900px;
}

.team-description-moved .team-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.impact-luxury-wrapper .about-intro p, 
.impact-luxury-wrapper .about-mission p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.impact-luxury-wrapper .experience-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.impact-luxury-wrapper .badge-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-teal);
    line-height: 1;
}

.impact-luxury-wrapper .badge-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.impact-luxury-wrapper .about-stats-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
    padding: 20px 0;
}

.impact-luxury-wrapper .stat-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--brand-teal);
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.impact-luxury-wrapper .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(var(--brand-teal-rgb), 0.03), transparent);
    opacity: 0;
    transition: 0.4s;
}

.impact-luxury-wrapper .stat-item:hover {
    background: var(--cloud-dancer);
    border-color: var(--brand-teal);
    border-left-color: var(--brand-teal);
}

.impact-luxury-wrapper .stat-item:hover::before {
    opacity: 1;
}

.impact-luxury-wrapper .stat-icon {
    margin-bottom: 25px;
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.3s;
}

.impact-luxury-wrapper .stat-icon svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.2;
}

.impact-luxury-wrapper .stat-item:hover .stat-icon {
    filter: drop-shadow(0 0 8px rgba(var(--brand-teal-rgb), 0.4));
}

.impact-luxury-wrapper .stat-num {
    display: block;
    font-size: 4.5rem;
    font-weight: 800; /* Bolder for impact */
    color: var(--brand-teal);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.05);
}

.impact-luxury-wrapper .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-teal);
    font-weight: 700;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .impact-luxury-wrapper .about-stats-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .impact-luxury-wrapper .about-stats-v2 {
        grid-template-columns: 1fr;
    }
    .impact-luxury-wrapper .stat-num {
        font-size: 3.2rem;
    }
}

.impact-luxury-wrapper .services-header,
.impact-luxury-wrapper .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--brand-teal);
    margin: 15px auto 0;
}

.team-description-moved {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 80px;
}

.team-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.impact-luxury-wrapper .section-subtitle {
    font-size: 0.8rem;
    color: var(--brand-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.impact-luxury-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.impact-luxury-wrapper .service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.impact-luxury-wrapper .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-teal);
    transition: width 0.5s ease;
}

.impact-luxury-wrapper .service-card:hover {
    background: var(--cloud-dancer);
    border-color: var(--brand-teal);
}

.impact-luxury-wrapper .service-card:hover::before {
    width: 100%;
}

.impact-luxury-wrapper .service-number-icon-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.impact-luxury-wrapper .service-number-icon-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.impact-luxury-wrapper .service-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Spartan', sans-serif;
    background: var(--brand-teal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    line-height: 1.1; /* No more clipping */
    margin: 0;
}

.impact-luxury-wrapper .service-svg-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(1, 64, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.service-card:hover .service-svg-icon {
    background: var(--brand-teal-gradient);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 29, 34, 0.25);
}

.impact-luxury-wrapper .service-svg-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.impact-luxury-wrapper .service-card h4 {
    color: var(--brand-teal);
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
    margin-top: 0;
    letter-spacing: 0.5px;
}

.impact-luxury-wrapper .service-card p {
    color: var(--brand-teal);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.75;
}

.impact-luxury-wrapper .service-card:hover p {
    opacity: 1;
}

.impact-luxury-wrapper .differentiators-header {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.impact-luxury-wrapper .trust-carousel {
    overflow: hidden;
    position: relative;
    margin: 0 -8%;
    padding: 10px 0;
}

.impact-luxury-wrapper .trust-carousel::before,
.impact-luxury-wrapper .trust-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.impact-luxury-wrapper .trust-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.impact-luxury-wrapper .trust-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.impact-luxury-wrapper .trust-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: trustScroll 35s linear infinite;
}

.impact-luxury-wrapper .trust-track:hover {
    animation-play-state: paused;
}

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

.impact-luxury-wrapper .trust-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-left: 3px solid transparent;
    padding: 35px 30px;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.impact-luxury-wrapper .trust-card:hover {
    background: var(--cloud-dancer);
    border-color: var(--brand-teal);
    border-left-color: var(--brand-teal);
}

.impact-luxury-wrapper .trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(var(--brand-teal-rgb), 0.08);
    border: 1px solid rgba(var(--brand-teal-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-teal);
    transition: all 0.4s ease;
}

.impact-luxury-wrapper .trust-card:hover .trust-icon {
    background: rgba(var(--brand-teal-rgb), 0.15);
    border-color: rgba(var(--brand-teal-rgb), 0.3);
}

.impact-luxury-wrapper .trust-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.impact-luxury-wrapper .trust-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}


@media (max-width: 992px) {
    .impact-luxury-wrapper .about-grid { grid-template-columns: 1fr; }
    .impact-luxury-wrapper .services-grid { grid-template-columns: 1fr 1fr; }
    .impact-luxury-wrapper .about-stats-v2 { flex-direction: column; gap: 40px; }
    .impact-luxury-wrapper .trust-card { min-width: 260px; max-width: 260px; }
    .impact-luxury-wrapper .differentiators-header { margin-top: 60px; padding-top: 50px; }
}

@media (max-width: 768px) {
    .impact-luxury-wrapper .services-grid { 
        grid-template-columns: 1fr; /* Single column on mobile for clarity */
        gap: 20px;
    }
}

/* Financing Section */
.financing-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.financing-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.financing-desc {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.financing-image-panel img {
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}

.financing-image-panel img:hover {
    transform: scale(1.02);
}

.financing-metrics-ribbon {
    background: linear-gradient(90deg, rgba(var(--brand-teal-rgb), 0.1) 0%, rgba(var(--brand-teal-rgb), 0.2) 50%, rgba(var(--brand-teal-rgb), 0.1) 100%);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.metric-value {
    display: block;
    font-size: 2.5rem;
    color: var(--brand-teal);
    font-weight: 800;
    margin-bottom: 5px;
}

.metric-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(1, 64, 70, 0.05); /* Hairline subtle border */
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B1A8 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 177, 168, 0.25);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.feature-card h4 {
    color: var(--brand-teal);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-family: 'Spartan', sans-serif;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.feature-card:hover {
    background: var(--cloud-dancer);
    box-shadow: 0 20px 50px rgba(1, 64, 70, 0.15);
    border-color: var(--brand-teal);
}

.feature-card.highlight {
    background: var(--brand-teal);
    color: #ffffff;
    border-color: var(--brand-teal);
}

.feature-card.highlight h4,
.feature-card.highlight p {
    color: #ffffff !important;
}

.feature-card.highlight .feature-icon {
    background: #ffffff;
    color: var(--brand-teal);
}

.financing-cta-box {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .financing-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .financing-metrics-ribbon {
        gap: 40px;
        flex-direction: column;
        padding: 40px 0;
    }
    
    .metric-divider {
        width: 60px;
        height: 1px;
    }
    
    .financing-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .financing-features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 8% 40px; /* Padding for horizontal breathing room */
        margin: 0 -8%; /* Pull to edges */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for clean look */
    }

    .financing-features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        flex: 0 0 85%; /* Shows most of first card and hint of second */
        scroll-snap-align: center;
        margin: 0;
        background: var(--bg-primary); 
        border: 1px solid var(--border-color);
        height: auto;
        min-height: 250px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section-label-spaced {
        margin-top: 60px;
    }

    .entrepreneur-guide-banner {
        padding: 30px 10px; /* Minimal padding for maximum content width */
        margin-left: -4%; /* Negative margins to expand beyond parent padding */
        margin-right: -4%;
        width: 108%; /* Counter-acting the negative margin */
        border-radius: 0; /* Full-width architectural look for mobile */
    }

    .guide-content-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .guide-img-container {
        margin: 0 auto;
        max-width: 280px; 
    }

    .guide-text-panel h3 {
        font-size: 1.7rem;
        padding: 0 5%; /* Slight inner padding for heading only */
    }

    .guide-stat-box {
        justify-content: center;
        text-align: left;
        width: 95%;
        margin: 0 auto;
    }
}

.guide-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.guide-img-container {
    flex: 1;
    max-width: 400px;
}

.guide-main-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    border-radius: 8px;
}

.guide-text-panel {
    flex: 1.5;
}

.guide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guide-text-panel h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
}

.guide-question {
    font-size: 1.1rem;
    color: var(--brand-teal);
    margin-bottom: 15px;
    font-weight: 500;
}

.guide-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.7;
}

.guide-stat-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 35px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.stat-text strong {
    color: #ffffff;
}

@media (max-width: 992px) {
    /* Removed restrictive padding: 40px 0 as requested */
    
    .guide-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .guide-img-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .guide-cta {
        display: flex;
        justify-content: center;
    }
    
    .guide-stat-box {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .financing-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Guide Topics List */
.guide-topics-box {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    margin-top: 10px;
}

.topics-title {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.topics-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    text-align: left;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.4;
}

.topic-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

/* GDPR Checkbox Custom Styling */
.gdpr-consent {
    margin-bottom: 25px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--brand-teal);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.consent-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.consent-text a {
    color: var(--brand-teal);
    text-decoration: underline;
    text-decoration-color: var(--brand-teal);
    text-underline-offset: 4px;
    transition: 0.3s;
}

.consent-text a:hover {
    color: var(--brand-teal-hover);
    text-decoration-color: var(--brand-teal-hover);
}

@media (max-width: 768px) {
    .topics-grid-simple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .section-tagline {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }

    .process-timeline {
        padding: 30px 20px;
    }

    .process-timeline h3 {
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .timeline-steps {
        margin-top: 10px;
    }
}
