/* Investment Page Styles */

/* Hero Section */
.investment-hero {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.investment-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.investment-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.investment-hero-subtitle {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Investment Intro */
.investment-intro {
    padding: 80px 0;
    background: #ffffff;
}

.intro-content {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
}

/* Opportunity Matrix */
.opportunity-matrix {
    padding: 80px 0;
    background: #f8f9fa;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.opportunity-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.opportunity-card:hover::before {
    width: 8px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.opportunity-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.card-badge {
    background: #f8f9fa;
    border: 1px solid #000000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #000000;
}

.feature-item i {
    color: #d4af37;
    font-size: 0.9rem;
    width: 16px;
}

/* Key Numbers Section */
.key-numbers {
    padding: 80px 0;
    background: #ffffff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.number-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.number-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.number-card:hover::before {
    width: 8px;
}

.number-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.number-card:hover .number-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.number-content {
    flex: 1;
}

.number-value {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.number-label {
    font-size: 1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.number-description {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

/* Investment Cycle Section */
.investment-cycle {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f1f1 100%);
    position: relative;
    overflow: hidden;
}

.investment-cycle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cycle-timeline {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.cycle-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    opacity: 0.3;
}

.cycle-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cycle-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: all 0.4s ease;
}

.cycle-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(255, 215, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cycle-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.cycle-step:hover::before {
    width: 12px;
}

.cycle-step:hover::after {
    opacity: 1;
}

.step-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    padding-top: 0.5rem;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cycle-step:hover .step-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.cycle-step:hover .step-icon::before {
    opacity: 0.3;
}

.step-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.8rem;
    position: relative;
}

.step-content h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cycle-step:hover .step-content h4::after {
    opacity: 1;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.detail-tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.detail-tag:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.detail-tag:hover::before {
    left: 0;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="caseGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="%23d4af37" opacity="0.08"/><circle cx="80" cy="80" r="0.8" fill="%23d4af37" opacity="0.08"/><circle cx="40" cy="60" r="0.4" fill="%23d4af37" opacity="0.05"/><circle cx="60" cy="40" r="0.4" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23caseGrain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: all 0.4s ease;
}

.case-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.case-card:hover::before {
    width: 12px;
}

.case-card:hover::after {
    opacity: 1;
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
}

.case-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover .case-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.case-card:hover .case-icon::before {
    opacity: 0.3;
}

.case-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.case-card:hover .case-badge {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.case-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    position: relative;
}

.case-content h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover .case-content h4::after {
    opacity: 1;
}

.case-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric:hover {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric:hover .metric-label {
    color: #ffffff;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
}

.metric:hover .metric-value {
    color: #ffffff;
}

.case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.feature-tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #d4af37;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.feature-tag:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.feature-tag:hover::before {
    left: 0;
}

/* FAQ Section */
.investor-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f1f1 100%);
    position: relative;
    overflow: hidden;
}

.investor-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faqGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.6" fill="%23d4af37" opacity="0.06"/><circle cx="70" cy="70" r="0.6" fill="%23d4af37" opacity="0.06"/><circle cx="50" cy="20" r="0.3" fill="%23d4af37" opacity="0.04"/><circle cx="20" cy="80" r="0.3" fill="%23d4af37" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23faqGrain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: all 0.4s ease;
}

.faq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(255, 215, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.faq-card:hover::before {
    width: 10px;
}

.faq-card:hover::after {
    opacity: 1;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    transition: border-color 0.3s ease;
}

.faq-card:hover .faq-header {
    border-color: #d4af37;
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.faq-card:hover .faq-icon::before {
    opacity: 0.2;
}

.faq-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    position: relative;
}

.faq-header h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card:hover .faq-header h4::after {
    opacity: 1;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    position: relative;
}

.faq-question::before {
    content: 'Q:';
    position: absolute;
    left: -2rem;
    top: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #d4af37;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover .faq-question::before {
    opacity: 1;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    padding-left: 0;
    position: relative;
}

.faq-answer::before {
    content: 'A:';
    position: absolute;
    left: -2rem;
    top: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #d4af37;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover .faq-answer::before {
    opacity: 1;
}

/* CTA Section */
.investment-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.investment-cta .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .investment-hero {
        padding: 80px 0 40px;
    }
    
    .investment-hero-title {
        font-size: 2.2rem;
    }
    
    .investment-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .opportunity-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    .card-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .card-features {
        gap: 0.6rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .number-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .number-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .number-value {
        font-size: 1.8rem;
    }
    
    .number-label {
        font-size: 0.9rem;
    }
    
    .number-description {
        font-size: 0.85rem;
    }
    
    .cycle-timeline {
        gap: 1.2rem;
    }
    
    .cycle-step {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .step-number {
        width: auto;
        padding-top: 0;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin: 0 auto 0.8rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }
    
    .step-details {
        justify-content: center;
        gap: 0.25rem;
    }
    
    .detail-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        border-radius: 15px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-card {
        padding: 1.5rem;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .case-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .case-content h4 {
        font-size: 1.4rem;
    }
    
    .case-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .metric {
        padding: 0.6rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .metric-value {
        font-size: 0.85rem;
    }
    
    .case-features {
        gap: 0.4rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .faq-header h4 {
        font-size: 1.1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .investment-hero {
        padding: 60px 0 30px;
    }
    
    .investment-hero-title {
        font-size: 1.8rem;
    }
    
    .investment-hero-subtitle {
        font-size: 1rem;
    }
    
    .opportunity-grid {
        gap: 1rem;
    }
    
    .opportunity-card {
        padding: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-subtitle {
        font-size: 0.8rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .number-card {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .number-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .number-value {
        font-size: 1.5rem;
    }
    
    .number-label {
        font-size: 0.8rem;
    }
    
    .number-description {
        font-size: 0.8rem;
    }
    
    .cycle-timeline {
        gap: 0.8rem;
    }
    
    .cycle-step {
        padding: 0.8rem;
        gap: 0.6rem;
        border-radius: 12px;
    }
    
    .step-number {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin: 0 auto 0.6rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .step-details {
        gap: 0.2rem;
    }
    
    .detail-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
        border-radius: 12px;
    }
    
    .case-grid {
        gap: 1rem;
    }
    
    .case-card {
        padding: 1rem;
    }
    
    .case-header {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .case-content h4 {
        font-size: 1.2rem;
    }
    
    .case-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .case-metrics {
        gap: 0.6rem;
    }
    
    .metric {
        padding: 0.5rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .metric-value {
        font-size: 0.8rem;
    }
    
    .case-features {
        gap: 0.3rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-card {
        padding: 1rem;
    }
    
    .faq-header {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .faq-header h4 {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
}