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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    box-sizing: border-box;
}

body.modal-open {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001; /* Above hero, but below nav */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

html, body {
    height: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1003;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1fae3d; /* Fallback for green shade */
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #10b981;
}

/* --- Menu Toggle (Hamburger Icon) --- */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #10b981; /* Primary color for the icon */
    padding: 5px;
    z-index: 1001; 
}


/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 2000px;
    max-height: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 2.5rem;
    margin-bottom: 5.5rem;
    opacity: 0.95;
}

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

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #0f766e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f766e;
}

@keyframes hero-stamp-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(134, 239, 172, 0.85));
    }
}

@keyframes hero-stamp-ring-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes hero-stamp-breathe {
    0%, 100% {
        transform: translateY(-50%) rotate(-8deg) scale(1);
    }
    50% {
        transform: translateY(-50%) rotate(-8deg) scale(1.04);
    }
}

.hero-invest-stamp {
    position: absolute;
    left: clamp(5rem, 17vw, 11rem);
    top: 56%;
    z-index: 2;
    text-decoration: none;
    animation:
        hero-stamp-glow 2.2s ease-in-out infinite,
        hero-stamp-breathe 2.6s ease-in-out infinite;
    transition: filter 0.2s ease;
}

.hero-invest-stamp__seal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(72px, 6.5vw, 84px);
    height: clamp(72px, 6.5vw, 84px);
    background: #0f5c38;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-invest-stamp__ring {
    position: absolute;
    inset: 5px;
    border: 2px dotted rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: hero-stamp-ring-pulse 2.2s ease-in-out infinite;
}

.hero-invest-stamp__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
    pointer-events: none;
}

.hero-invest-stamp__line {
    font-size: clamp(0.5rem, 0.75vw, 0.6rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #ffffff;
    line-height: 1;
}

.hero-invest-stamp__line--now {
    font-size: clamp(0.58rem, 0.85vw, 0.68rem);
    letter-spacing: 0.18em;
    color: #bbf7d0;
}

.hero-invest-stamp:hover {
    animation: hero-stamp-glow 1.2s ease-in-out infinite, hero-stamp-breathe 1.6s ease-in-out infinite;
    filter: brightness(1.1);
}

.hero-invest-stamp:hover .hero-invest-stamp__seal {
    background: #117a4a;
}

.hero-invest-stamp:active .hero-invest-stamp__seal {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .hero-invest-stamp {
        left: 4rem;
        top: auto;
        bottom: 2.75rem;
        animation: hero-stamp-glow 2.2s ease-in-out infinite, hero-stamp-breathe-mobile 2.6s ease-in-out infinite;
    }

    @keyframes hero-stamp-breathe-mobile {
        0%, 100% {
            transform: rotate(-7deg) scale(1);
        }
        50% {
            transform: rotate(-7deg) scale(1.04);
        }
    }

    .hero-invest-stamp__seal {
        width: 68px;
        height: 68px;
    }

    .hero-invest-stamp:hover {
        filter: brightness(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-invest-stamp,
    .hero-invest-stamp__ring {
        animation: none;
    }

    .hero-invest-stamp {
        filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.55));
    }
}

/* Highlights Section */
.highlights {
    padding: 5rem 2rem;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    transition: transform 0.3s;
}

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

.highlight-icon {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-img {
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: #4b5563;
    font-size: 1rem;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.about-content p {
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--service-accent, #10b981);
}

.service-card:nth-child(1) { --service-accent: #3b82f6; }
.service-card:nth-child(2) { --service-accent: #10b981; }


.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.8rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    color: white;
}

.technology .section-title {
    -webkit-text-fill-color: white;
    background: none;
}

.technology .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.tech-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05); /* Lighter for glass effect */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    text-align: center;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
}

.tech-icon-container {
    width: 60px;
    height: 60px;
    background: var(--accent-bg, rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color, #10b981);
    transition: all 0.3s ease;
}

.tech-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px var(--accent-glow, rgba(16, 185, 129, 0.3)));
}

.tech-card:hover .tech-icon-container {
    background: var(--accent-color, #10b981);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow, rgba(16, 185, 129, 0.3));
}

/* Individual Tech Card Colors */
.tech-card:nth-child(1) { 
    --accent-color: #f59e0b; 
    --accent-bg: rgba(245, 158, 11, 0.1);
    --accent-glow: rgba(245, 158, 11, 0.4);
}
.tech-card:nth-child(2) { 
    --accent-color: #3b82f6; 
    --accent-bg: rgba(59, 130, 246, 0.1);
    --accent-glow: rgba(59, 130, 246, 0.4);
}
.tech-card:nth-child(3) { 
    --accent-color: #a855f7; 
    --accent-bg: rgba(168, 85, 247, 0.1);
    --accent-glow: rgba(168, 85, 247, 0.4);
}
.tech-card:nth-child(4) { 
    --accent-color: #10b981; 
    --accent-bg: rgba(16, 185, 129, 0.1);
    --accent-glow: rgba(16, 185, 129, 0.4);
}

.tech-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.tech-card:hover h4 {
    color: var(--accent-color);
}


.tech-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: white;
}

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

.contact-form {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

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

.contact-info {
    padding: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.info-icon {
    font-size: 1.5rem;
    color: #10b981;
}

.info-content h4 {
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #22345e;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-weight: bold;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    gap: 10px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    color: #f0f1f3;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Footer Styles */

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #fdfdfd;
    width: 100%;
    
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    text-align: left;
}


.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0; 
    padding: 0;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column; 
        gap: 0.5rem;
    }
    .footer-bottom p {
        text-align: center;
        width: 100%;
    }
}
/* --- Responsive (Mobile View) --- */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        padding: 0 1.5rem;
        position: relative;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Show the hamburger icon */
    .menu-toggle {
        display: block;
        color: #10b981;
        z-index: 1005;
        transition: transform 0.3s ease;
        position: absolute;
        left: 1.5rem;
    }

    .menu-toggle[aria-expanded="true"] {
        transform: rotate(90deg);
    }
    
    .logo {
        margin: 0 auto;
        font-size: 1.5rem;
    }

    /* Hide desktop links on mobile */
    .desktop-links {
        display: none !important;
    }

    /* Style the navigation links for mobile sidebar */
    .mobile-menu {
        display: flex !important; 
        position: fixed;
        top: 0;
        left: 0;
        width: 300px; /* Slightly wider for better reach */
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 5.5rem 1.5rem 2rem;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1004;
        list-style: none;
        gap: 1.2rem;
        border-right: 1px solid rgba(16, 185, 129, 0.2);
    }

    /* Active state to show the menu */
    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        transition-delay: calc(var(--i) * 0.1s);
    }

    .mobile-menu.open li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu a {
        font-size: 1.25rem;
        font-weight: 600;
        display: block;
        padding: 0.8rem 1.2rem;
        color: #1f2937;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .mobile-menu a:hover {
        background: rgba(16, 185, 129, 0.08);
        color: #10b981;
        border-left: 3px solid #10b981;
        padding-left: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Update Desktop Nav-Links Target */
.desktop-links { 
    display: flex;
    gap: 2rem;
    list-style: none;
}

.desktop-links a { 

    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-links a:hover {
    color: #10b981;
}


.mobile-menu {
    display: none; 
}

.powered-logo {
    height: 40px;
    width: auto;
    vertical-align: middle; 
    margin: 0 4px 0 4px; 
    display: inline-block; 
}

.powered-by-container {
    display: inline-flex;
    align-items: center;
    gap: 0; 
}
.powered-by-wrapper {
    display: flex;
    align-items: center; 
    gap: 4px; 
    margin: 0; 
}

.invest-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 2vw;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.invest-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.invest-modal {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 95%;
    background: #f8faf9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.invest-overlay.active .invest-modal {
    transform: scale(1);
    opacity: 1;
}

.invest-overlay.closing .invest-modal {
    transform: scale(0.97);
    opacity: 0;
}

.invest-scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.invest-banner {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.banner-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
}

.banner-wrap + .banner-wrap,
.invest-banner + .banner-wrap {
    margin-top: 0;
}

@keyframes invest-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 14px rgba(74, 222, 128, 0.55),
            0 0 28px rgba(34, 197, 94, 0.4),
            0 6px 18px rgba(22, 163, 74, 0.45);
    }
    50% {
        box-shadow:
            0 0 22px rgba(134, 239, 172, 0.9),
            0 0 44px rgba(34, 197, 94, 0.65),
            0 0 64px rgba(22, 163, 74, 0.35),
            0 8px 24px rgba(22, 163, 74, 0.55);
    }
}

@keyframes invest-ring-breathe {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.08);
    }
}

@keyframes invest-shimmer {
    0% {
        transform: translateX(-150%) skewX(-18deg);
    }
    100% {
        transform: translateX(250%) skewX(-18deg);
    }
}

.invest-now-btn {
    position: absolute;
    left: 73.92%;
    top: 86.19%;
    width: 24.32%;
    min-width: 140px;
    height: 4.04%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border: 2px solid rgba(187, 247, 208, 0.65);
    border-radius: 999px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 35%, #16a34a 70%, #15803d 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-size: clamp(0.7rem, 1.8vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 10;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    animation:
        invest-glow-pulse 2.4s ease-in-out infinite,
        invest-gradient-shift 4s ease infinite;
    transition: transform 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

@keyframes invest-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.invest-now-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(134, 239, 172, 0.55) 0%, rgba(34, 197, 94, 0.15) 55%, transparent 72%);
    z-index: -1;
    pointer-events: none;
    animation: invest-ring-breathe 2.4s ease-in-out infinite;
}

.invest-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 100%
    );
    pointer-events: none;
    animation: invest-shimmer 2.8s ease-in-out infinite;
}

.invest-now-btn:hover {
    transform: scale(1.08);
    border-color: rgba(220, 252, 231, 0.95);
    filter: brightness(1.1);
    animation: invest-glow-pulse 1.2s ease-in-out infinite, invest-gradient-shift 2s ease infinite;
}

.invest-now-btn:hover::before {
    animation: invest-ring-breathe 1.2s ease-in-out infinite;
}

.invest-now-btn:active {
    transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
    .invest-now-btn,
    .invest-now-btn::before,
    .invest-now-btn::after {
        animation: none;
    }

    .invest-now-btn {
        box-shadow: 0 0 18px rgba(34, 197, 94, 0.5);
    }
}

.invest-close,
#closePdf.invest-close {
    position: fixed;
    top: 4vh;
    right: 4vw;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #101010;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.invest-close:hover,
#closePdf.invest-close:hover {
    transform: scale(1.06);
    background: #262626;
}

@media (max-width: 768px) {
    .invest-overlay {
        padding: 1.5vh 1.5vw;
    }

    .invest-modal {
        width: 97%;
        height: 95%;
        border-radius: 12px;
    }

    .invest-now-btn {
        left: 70%;
        top: 85.5%;
        width: 27%;
        min-width: 120px;
        min-height: 40px;
        font-size: clamp(0.65rem, 3.2vw, 0.85rem);
    }

    .invest-close,
    #closePdf.invest-close {
        top: 2.5vh;
        right: 3.5vw;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .invest-now-btn {
        left: 68%;
        top: 85%;
        width: 29%;
        min-width: 108px;
        padding: 0 0.5rem;
    }
}