:root {
    --ip-primary: #1e1f21;
    --ip-accent: #c8d5b9;
    --ip-sage: #227c20;
    --ip-dark: #041b2f;
    --ip-light: #f8f9fa;
    --ip-white: #ffffff;
    --ip-text: #5d666f;
    --ip-text-dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.investment-opener {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}

.investment-opener::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #c8d5b9 0%, transparent 60%);
    opacity: 0.08;
    animation: float-subtle 20s infinite ease-in-out;
}

@keyframes float-subtle {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
}

.investment-opener-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 120px;
    border-bottom: 2px solid #0000000d;
}

.investment-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1e1f21;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.investment-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 72px;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.investment-main-title strong {
    font-weight: 700;
    background: linear-gradient(270deg, #21A870 43.94%, #1C9D68 70.62%, #1B9965 97.3%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.investment-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: #5d666f;
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    letter-spacing: normal;
    text-wrap-mode: wrap;
    overflow-wrap: break-word;
}

/* Investment Plans Section - Unique Diagonal Layout */
.investment-plans-section {
    padding: 120px 0;
    background: var(--ip-white);
    position: relative;
    overflow: hidden;
}

.investment-plans-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 213, 185, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.investment-plans-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 124, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.plans-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.plans-header {
    text-align: center;
    margin-bottom: 80px;
}

.plans-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ip-text-dark);
    margin-bottom: 16px;
    line-height: 54px;
}

.plans-header p {
    font-size: 18px;
    color: var(--ip-text);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Unique Staggered Grid Layout */
.plans-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    position: relative;
    padding: 40px 0;
}

.plan-row {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.plan-row:nth-child(1) { animation-delay: 0.1s; }
.plan-row:nth-child(2) { animation-delay: 0.2s; margin-top: 80px; }
.plan-row:nth-child(3) { animation-delay: 0.3s; }
.plan-row:nth-child(4) { animation-delay: 0.4s; margin-top: 80px; }
.plan-row:nth-child(5) { animation-delay: 0.5s; grid-column: 1 / -1; max-width: 600px; margin: 0 auto; width: 100%; }

.plan-content {
    width: 100%;
    background: var(--ip-white);
    border: 2px solid var(--ip-accent);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.plan-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--ip-sage);
}

/* Plan Marker - Number Badge */
.plan-marker {
    position: absolute;
    top: 12px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--ip-sage);
    border: 3px solid var(--ip-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--ip-white);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(34, 124, 32, 0.25);
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 124, 32, 0.1);
    color: var(--ip-sage);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

.plan-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--ip-text-dark);
    margin-bottom: 12px;
}

.plan-description {
    font-size: 15px;
    color: var(--ip-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.plan-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.plan-currency {
    font-size: 20px;
    color: var(--ip-text);
    font-weight: 600;
}

.plan-amount {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ip-primary) 0%, var(--ip-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-minimum {
    font-size: 13px;
    color: var(--ip-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plan-returns {
    background: rgba(34, 124, 32, 0.08);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.returns-label {
    font-size: 12px;
    color: var(--ip-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.returns-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--ip-sage);
}

.plan-features {
    margin-bottom: 28px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ip-text);
}

.plan-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--ip-sage);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--ip-sage);
    color: var(--ip-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-cta:hover {
    background: #1a6318;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 124, 32, 0.3);
}

.plan-cta svg {
    width: 16px;
    height: 16px;
}

/* Portfolio Features */
.portfolio-features {
    padding: 100px 0;
    background: var(--ip-white);
}

.portfolio-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.portfolio-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ip-text-dark);
    margin-bottom: 20px;
    line-height: 54px;
}

.portfolio-header p {
    font-size: 18px;
    color: var(--ip-text);
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.feature-item {
    background: var(--ip-white);
    padding: 48px 40px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--ip-accent), var(--ip-sage));
    transition: height 0.3s ease;
}

.feature-item:hover {
    background: var(--ip-light);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item:hover::before {
    height: 60px;
}

.feature-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--ip-sage);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ip-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 16px;
    color: var(--ip-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-metric {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(200, 213, 185, 0.15);
    color: var(--ip-sage);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Investment Process */
.investment-process {
    padding: 100px 0;
    background: var(--ip-light);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ip-text-dark);
    line-height: 54px;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--ip-accent), var(--ip-sage));
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: 0;
    width: 64px;
    height: 64px;
    background: var(--ip-white);
    border: 4px solid var(--ip-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--ip-sage);
    z-index: 2;
}

.process-content {
    margin-left: 100px;
    background: var(--ip-white);
    padding: 32px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.process-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ip-text-dark);
    margin-bottom: 12px;
}

.process-content p {
    font-size: 16px;
    color: var(--ip-text);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-timeline {
        gap: 30px 40px;
    }

    .plan-row:nth-child(2),
    .plan-row:nth-child(4) {
        margin-top: 60px;
    }

    .plan-content {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .investment-main-title {
        font-size: 56px;
    }

    .plans-timeline {
        display: block;
        position: relative;
        padding: 60px 0;
    }

    .plans-timeline::before {
        content: '';
        position: absolute;
        left: 36px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, transparent, var(--ip-accent), var(--ip-accent), transparent);
    }

    .plan-row,
    .plan-row:nth-child(1),
    .plan-row:nth-child(2),
    .plan-row:nth-child(3),
    .plan-row:nth-child(4),
    .plan-row:nth-child(5) {
        margin: 0 0 80px 0;
        max-width: 100%;
        grid-column: auto;
    }

    .plan-row:last-child {
        margin-bottom: 0;
    }

    .plan-content {
        margin-left: 100px;
        padding: 40px;
    }

    .plan-marker {
        left: 36px;
        top: 50%;
        right: auto;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .investment-opener {
        padding: 80px 0 60px;
    }

    .investment-opener-content {
        padding: 0 20px;
        padding-bottom: 90px;
        padding-top: 20px;
    }

    .investment-tagline {
        font-size: 11px;
        margin-bottom: 24px;
    }

    .investment-main-title {
        font-size: 36px;
        letter-spacing: -0.25px;
        line-height: 44px;
    }

    .investment-subtitle {
        font-size: 17px;
    }

    .investment-plans-section {
        padding: 60px 0;
    }

    .plans-wrapper {
        padding: 0 16px;
    }

    .plans-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .plans-timeline::before {
        left: 20px;
    }

    .plan-row,
    .plan-row:nth-child(1),
    .plan-row:nth-child(2),
    .plan-row:nth-child(3),
    .plan-row:nth-child(4),
    .plan-row:nth-child(5) {
        margin-bottom: 70px;
    }

    .plan-row:last-child {
        margin-bottom: 0;
    }

    .plan-content {
        margin-left: 0;
        padding: 32px 28px;
    }

    .plan-marker {
        left: auto;
        right: 28px;
        top: 15px;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-width: 2px;
    }

    .plan-name {
        font-size: 26px;
    }

    .plan-amount {
        font-size: 40px;
    }

    .portfolio-features {
        padding: 60px 0;
    }

    .portfolio-features-container {
        padding: 0 20px;
    }

    .portfolio-header {
        margin-bottom: 40px;
    }

    .portfolio-header h2 {
        font-size: 32px;
    }

    .feature-item {
        padding: 32px 24px;
    }

    .feature-item h3 {
        font-size: 20px;
    }

    .investment-process {
        padding: 60px 0;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-header h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .process-timeline::before {
        left: 16px;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .process-content {
        padding: 24px 20px;
        margin-left: 60px;
    }

    .process-number {
        left: 0;
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-width: 3px;
    }

    .process-content h3 {
        font-size: 20px;
    }

    .process-content p {
        font-size: 14px;
    }
}
