/* ================================
   CSS Variables - Olive Design System
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=DM+Serif+Display&family=DM+Serif+Text&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Primary Colors - Olive Theme */
    --olive-background: #F3EFE6;
    --olive-dark: #1E241E;
    --olive-primary: #2F3A2E;
    --olive-secondary: #6B7F5A;
    --olive-accent: #C96A4A;
    --olive-dark-surface: #2A3328;
    --olive-mid: #9C9688;
    --olive-input-bg: #2F3A2E;

    /* Neutral Colors */
    --white: #FFFFFF;
    --dark-text: #1E241E;
    --muted-text: #9C9688;
    --dark-secondary: #B8B2A3;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-text: 'DM Serif Text', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--olive-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ================================
   Container & Layout
   ================================ */
.container {
    max-width: 1244px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ================================
   Buttons
   ================================ */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--olive-accent);
    color: var(--olive-dark);
    border: 1px solid var(--olive-primary);
}

.btn-primary:hover {
    background-color: #B85A3A;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: var(--olive-accent);
    color: var(--olive-dark);
    padding: 14px 28px;
    font-size: 20px;
    border-radius: 10px;
}

.btn-cta:hover {
    background-color: #B85A3A;
    transform: translateY(-2px);
}

.btn-submit {
    background-color: var(--olive-accent);
    color: var(--olive-dark);
    width: 100%;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 36px;
}

.btn-submit:hover {
    background-color: #B85A3A;
}

/* ================================
   Navigation - Olive Header
   ================================ */
.navbar {
    background-color: var(--olive-background);
    padding: 8px 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    padding: 0 98px;
}

.nav-brand,
.nav-logo a,
.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--olive-dark);
    letter-spacing: 0.15px;
    line-height: 24px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a,
.nav-menu .nav-link {
    font-family: var(--font-text);
    color: var(--olive-primary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 36px;
}

.nav-menu a:hover,
.nav-menu .nav-link:hover {
    color: var(--olive-accent);
}

.nav-menu .nav-link.active {
    color: var(--olive-accent);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--olive-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   Hero Section
   ================================ */
.hero,
.hero-section {
    background-color: var(--olive-background);
    padding: 45px 0 60px;
    text-align: center;
}

.hero-badge {
    background-color: var(--olive-secondary);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 81px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-dark);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 54px;
    margin-bottom: var(--spacing-md);
    color: var(--olive-dark);
    font-weight: 400;
    max-width: 965px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.hero-description,
.hero p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--olive-dark);
    max-width: 965px;
    margin: 0 auto var(--spacing-md);
    line-height: 36px;
    letter-spacing: 0.5px;
}

.tag {
    background-color: var(--olive-secondary);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-text);
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* ================================
   Hero with Background Image
   ================================ */
.hero-with-bg {
    background: linear-gradient(rgba(243, 239, 230, 0.85), rgba(243, 239, 230, 0.85)),
                url('../images/hero-cityscape.png');
    background-size: cover;
    background-position: center top;
    padding: var(--spacing-xl) 0;
    padding-bottom: 280px;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    position: relative;
}

.hero-with-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(to top, var(--olive-background) 0%, var(--olive-background) 30%, transparent 100%);
    pointer-events: none;
}

/* ================================
   Features Section
   ================================ */
.features {
    background-color: transparent;
    padding: var(--spacing-xl) 0;
    padding-top: 0;
    padding-bottom: var(--spacing-lg);
    margin-top: -220px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-secondary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--spacing-md) 0;
}

.feature-card h3 {
    font-family: var(--font-text);
    font-size: 28px;
    line-height: 42px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-family: var(--font-body);
    color: var(--olive-dark);
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.5px;
}

/* ================================
   Section Titles
   ================================ */
.section-title {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 66px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-body);
    color: var(--olive-dark);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
}

/* ================================
   Two Markets / Content Grid Section
   ================================ */
.two-markets-section,
.markets-section {
    padding: var(--spacing-xl) 0;
}

.markets-grid {
    display: flex;
    gap: 78px;
    align-items: center;
}

.market-image {
    flex-shrink: 0;
    width: 548px;
    height: 638px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-content {
    flex: 1;
}

.market-content h2,
.market-content .section-title {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 54px;
    color: var(--olive-dark);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
    text-align: left;
}

.market-item {
    display: flex;
    gap: 28px;
    margin-bottom: var(--spacing-lg);
}

.market-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.market-icon svg {
    color: var(--white);
    width: 38px;
    height: 38px;
}

.market-text h3 {
    font-family: var(--font-text);
    font-size: 28px;
    line-height: 36px;
    color: var(--olive-dark);
    margin-bottom: 9px;
    letter-spacing: 0.5px;
}

.market-text p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

/* ================================
   Benefits Section
   ================================ */
.benefits-section {
    background-color: var(--olive-background);
    padding: 40px 22px;
    border-radius: 25px;
}

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

.benefit-card {
    background-color: var(--white);
    padding: 33px 21px;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    height: 423px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    color: var(--white);
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-family: var(--font-text);
    font-size: 28px;
    line-height: 42px;
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

/* ================================
   Revenue Section
   ================================ */
.revenue-section {
    padding: var(--spacing-xl) 0;
}

.revenue-box {
    background-color: var(--white);
    padding: 37px 60px;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 915px;
    margin: 0 auto;
}

.revenue-box h2,
.revenue-box .section-title {
    font-family: var(--font-text);
    font-size: 40px;
    line-height: 42px;
    color: var(--olive-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.revenue-text {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.revenue-text .highlight {
    font-weight: 700;
    color: var(--olive-accent);
}

.revenue-subtext {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-primary);
    letter-spacing: 0.5px;
}

/* ================================
   Olive Footer / Contact Section
   ================================ */
.contact-section,
.olive-footer {
    background-color: var(--olive-dark-surface);
    padding: 69px 57px;
    color: var(--olive-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 66px;
    margin-bottom: var(--spacing-md);
    color: var(--olive-background);
    letter-spacing: 0.5px;
}

.contact-info > p,
.contact-intro {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-md);
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.contact-item {
    display: flex;
    gap: 21px;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--olive-background);
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-item p {
    font-family: var(--font-text);
    font-size: 18px;
    line-height: 24px;
    color: var(--olive-background);
    letter-spacing: 0.5px;
    margin: 0;
}

.contact-form-wrapper,
.contact-form {
    background-color: var(--olive-dark);
    padding: 21px 36px;
    border-radius: 10px;
}

.contact-form-wrapper h3,
.contact-form h3 {
    font-family: var(--font-text);
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 29px;
    color: var(--olive-background);
    letter-spacing: 0.5px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-text);
    font-size: 18px;
    line-height: 24px;
    color: var(--olive-background);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background-color: var(--olive-input-bg);
    color: var(--olive-mid);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--olive-mid);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #3a4a39;
}

.form-group textarea {
    min-height: 136px;
    resize: vertical;
}

/* Form Status Messages */
.form-status {
    margin-top: var(--spacing-sm);
    padding: 10px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    text-align: center;
}

.form-status:empty {
    display: none;
}

.form-status.success {
    background-color: rgba(107, 127, 90, 0.2);
    color: #9CCC65;
}

.form-status.error {
    background-color: rgba(201, 106, 74, 0.2);
    color: var(--olive-accent);
}

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--olive-dark-surface);
    color: var(--olive-background);
    padding: 0 57px 27px;
}

.footer-grid {
    display: flex;
    gap: 267px;
    padding-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-background);
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    max-width: 310px;
    letter-spacing: 0.5px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 24px;
    margin-bottom: var(--spacing-md);
    color: var(--olive-background);
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

/* ================================
   Investment Opportunities
   ================================ */
.investment-opportunities {
    background-color: var(--olive-background);
    padding: var(--spacing-xl) 0;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.opportunity-card {
    background-color: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.opportunity-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--olive-mid);
}

.opportunity-content {
    padding: var(--spacing-md);
}

.opportunity-content h3 {
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-xs);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.opportunity-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

/* ================================
   Property Features Section
   ================================ */
.property-features {
    background-color: var(--olive-background);
    padding: var(--spacing-xl) 0;
}

.property-feature-large {
    margin-bottom: var(--spacing-lg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.property-feature-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.property-feature-content {
    background-color: var(--white);
    padding: var(--spacing-md);
    text-align: center;
}

.property-feature-content p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.property-feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.property-feature-image-small {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.property-feature-text h3 {
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-xs);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.property-feature-text p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

/* ================================
   How It Works / Process Section
   ================================ */
.how-it-works {
    background-color: var(--olive-background);
    padding: var(--spacing-xl) 0;
}

.section-subtitle-alt {
    text-align: center;
    font-family: var(--font-text);
    font-size: 28px;
    line-height: 42px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.section-description {
    text-align: center;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-dark);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

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

.process-step {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--olive-accent);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin: 0 auto var(--spacing-md);
}

.process-step h4 {
    font-family: var(--font-text);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.process-step p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

/* ================================
   Revenue Model Section
   ================================ */
.revenue-model {
    background-color: var(--olive-background);
    padding: var(--spacing-xl) 0;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.revenue-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.revenue-card:hover {
    transform: translateY(-5px);
}

.revenue-icon {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--olive-accent);
    margin-bottom: var(--spacing-sm);
}

.revenue-card h4 {
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.revenue-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

.expected-returns {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 25px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.expected-returns h3 {
    font-family: var(--font-text);
    font-size: 28px;
    line-height: 42px;
    margin-bottom: var(--spacing-sm);
    color: var(--olive-dark);
    letter-spacing: 0.5px;
}

.expected-returns p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

/* ================================
   Benefits Cards Section (Dark)
   ================================ */
.benefits {
    background-color: var(--olive-dark);
    padding: var(--spacing-xl) 0;
}

.benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.benefits .benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 25px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: auto;
}

.benefits .benefit-icon {
    background-color: var(--olive-accent);
}

.benefits .benefit-card h3 {
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    letter-spacing: 0.5px;
}

.benefits .benefit-card ul {
    list-style: none;
}

.benefits .benefit-card li {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

.benefits .benefit-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--olive-secondary);
    border-radius: 50%;
}

/* ================================
   Developers Page - Bottlenecks Section
   ================================ */
.bottlenecks-section {
    padding: var(--spacing-xl) 0;
}

.bottlenecks-content {
    display: flex;
    gap: 73px;
    align-items: center;
}

.bottlenecks-text {
    flex: 1;
    padding: 40px 10px;
}

.bottlenecks-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 54px;
    color: var(--olive-dark-surface);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.bottlenecks-text .section-intro {
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 36px;
    color: var(--olive-dark-surface);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.feature-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

.feature-content h3 {
    font-family: var(--font-text);
    font-size: 28px;
    line-height: 36px;
    color: var(--olive-dark-surface);
    margin-bottom: 9px;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-dark-surface);
    letter-spacing: 0.5px;
}

.bottlenecks-image {
    width: 548px;
    height: 807px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.bottlenecks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   Dual Capital Section
   ================================ */
.dual-capital-section {
    background-color: var(--olive-background);
    padding: 80px 33px;
    border-radius: 25px;
}

.dual-capital-section .section-title {
    font-family: var(--font-body);
    font-size: 44px;
    line-height: 66px;
    font-weight: 500;
    color: #023047;
    margin-bottom: 41px;
}

.capital-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-bottom: var(--spacing-lg);
}

.capital-card {
    background-color: var(--white);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.capital-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.capital-card .card-icon svg {
    color: var(--white);
    width: 24px;
    height: 24px;
}

.capital-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 42px;
    color: var(--olive-primary);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.capital-card .card-intro {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-primary);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.card-benefits {
    list-style: none;
}

.card-benefits li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.card-benefits li::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: var(--olive-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
}

.card-benefits li::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--dark-secondary);
    border-radius: 50%;
}

/* ================================
   FinTech Section
   ================================ */
.fintech-section {
    padding: var(--spacing-lg) 0;
}

.fintech-box {
    background-color: var(--white);
    padding: 37px 60px;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.fintech-box h2 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 54px;
    color: var(--olive-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.fintech-box p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-primary);
    max-width: 793px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ================================
   Investors Page - Features Section
   ================================ */
.features-section {
    padding: var(--spacing-xl) 0;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.features-section .feature-card.light-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.features-section .feature-card.dark-card {
    background-color: var(--olive-dark-surface);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: var(--olive-background);
}

.features-section .feature-card.dark-card .feature-icon {
    background-color: var(--olive-background);
}

.features-section .feature-card.dark-card .feature-icon svg {
    color: var(--olive-dark-surface);
}

.features-section .feature-card.dark-card h2 {
    color: var(--olive-background);
}

.features-section .feature-card.dark-card p {
    color: var(--olive-background);
}

.features-section .feature-card.dark-card .feature-list li {
    color: var(--olive-background);
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    padding-left: 37px;
    position: relative;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    background-color: var(--olive-secondary);
    border-radius: 50%;
}

/* ================================
   Advantages Section
   ================================ */
.advantages-section {
    padding: var(--spacing-xl) 0;
}

.advantages-card {
    background-color: var(--white);
    padding: 40px 60px;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.advantages-card .section-title {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: var(--spacing-lg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--olive-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.advantage-icon svg {
    color: var(--white);
    width: 24px;
    height: 24px;
}

.advantage-title {
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 36px;
    color: var(--olive-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.advantage-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-mid);
    letter-spacing: 0.5px;
}

.advantages-footer {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 30px;
    color: var(--olive-dark);
    text-align: center;
    letter-spacing: 0.5px;
}

/* ================================
   Blog Page Styles
   ================================ */
.filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--olive-primary);
    color: var(--olive-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--olive-secondary);
    border-color: var(--olive-secondary);
    color: var(--white);
}

.blog-content {
    padding: 0 var(--spacing-md) var(--spacing-xl);
    max-width: 1244px;
    margin: 0 auto;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    background-color: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: var(--spacing-xl);
}

.featured-image {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--olive-secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 14px;
}

.featured-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    color: var(--olive-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.featured-content h2 {
    font-family: var(--font-text);
    font-size: 32px;
    line-height: 42px;
    color: var(--olive-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.featured-content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-mid);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.article-meta {
    display: flex;
    gap: var(--spacing-md);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--olive-mid);
    margin-bottom: var(--spacing-md);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--olive-accent);
    color: var(--olive-dark);
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    font-family: var(--font-display);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-article-btn:hover {
    background-color: #B85A3A;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--olive-secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 12px;
}

.blog-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    color: var(--olive-secondary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.5px;
}

.blog-card-content h3 {
    font-family: var(--font-text);
    font-size: 20px;
    line-height: 28px;
    color: var(--olive-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.blog-card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 21px;
    color: var(--olive-mid);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.blog-card-meta {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--olive-mid);
}

.blog-card-author {
    display: block;
    color: var(--olive-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.blog-card-date {
    display: flex;
    gap: 8px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--olive-accent);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #B85A3A;
}

/* ================================
   Newsletter Section
   ================================ */
.newsletter-section {
    background-color: var(--olive-background);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.newsletter-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 54px;
    color: var(--olive-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.newsletter-section p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    color: var(--olive-mid);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid var(--olive-primary);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--olive-accent);
}

.newsletter-form button {
    background-color: var(--olive-secondary);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #5A6E4A;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1280px) {
    .navbar .container {
        padding: 0 40px;
    }

    .footer-grid {
        gap: 100px;
    }
}

@media (max-width: 1024px) {
    .features-grid,
    .benefits-grid,
    .process-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .markets-grid,
    .bottlenecks-content {
        flex-direction: column;
    }

    .market-image,
    .bottlenecks-image {
        width: 100%;
        height: 400px;
    }

    .capital-cards {
        grid-template-columns: 1fr;
    }

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

    .featured-article {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 36px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 27px;
    }

    .section-title {
        font-size: 36px;
        line-height: 48px;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        text-align: center;
        order: 4;
        padding: var(--spacing-md) 0;
        background-color: var(--olive-background);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        display: none;
        order: 5;
        width: 100%;
        text-align: center;
        margin-top: var(--spacing-sm);
    }

    .nav-cta.active {
        display: inline-flex;
        justify-content: center;
    }

    .features-grid,
    .opportunities-grid,
    .process-grid,
    .revenue-grid,
    .benefits-grid,
    .advantages-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .property-features-grid {
        grid-template-columns: 1fr;
    }

    .property-feature-item {
        flex-direction: column;
    }

    .property-feature-image-small {
        width: 100%;
    }

    .benefit-card {
        height: auto;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .footer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero,
    .hero-section {
        padding: var(--spacing-md) 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 16px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .newsletter-form {
        flex-direction: column;
    }
}
