* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-green: #00cc88;
    --dark-green-bg: #032b1d;
    --dark-text: #0f2137;
    --light-text: #616b77;
    --card-border-highlight: #00cc88;
    --bg-light: #f6f9fc;
    --white: #ffffff;
}

body {
    background-color: var(--bg-light);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* --- Header / Navigation Layout --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo i {
    color: var(--primary-green);
}

.logo span {
    font-weight: 400;
    color: var(--light-text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    font-size: 0.85rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-green);
}

.drop-icon {
    font-size: 0.7rem;
}

.btn-signup {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-signup:hover {
    background-color: #00b377;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
}

/* --- Hero Banner Section --- */
.hero-banner {
    background: radial-gradient(circle at 80% 20%, #063d2a 0%, var(--dark-green-bg) 100%);
    padding: 160px 20px 100px 20px;
    margin-top: 60px;
    border-bottom-right-radius: 100px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
}

.floating-currency-icon {
    position: absolute;
    right: 5%;
    top: 40%;
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transform: rotate(-15deg);
}

/* --- Intro Header Text --- */
.services-intro {
    text-align: center;
    padding: 60px 20px 30px 20px;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-intro h2 span {
    color: var(--primary-green);
}

.services-intro p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* --- Cards Grid Architecture --- */
.services-grid-section {
    padding: 20px 20px 80px 20px;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card.highlighted {
    border-color: var(--card-border-highlight);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #f0fbf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.card-icon-wrapper i {
    font-size: 1.8rem;
    color: #11a374;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #071c35;
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Notification System --- */
.notification-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #121212;
    color: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1100;
    transform: translateY(150px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.notification-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-indicator {
    width: 4px;
    height: 35px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.toast-content {
    font-size: 0.9rem;
}

.toast-amount {
    color: var(--primary-green);
    font-weight: 700;
}

/* --- Footer Elements --- */
.footer {
    background-color: #021a12;
    color: #a3b3bc;
    padding: 80px 20px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}

.white-logo {
    color: var(--white) !important;
    margin-bottom: 20px;
    position: relative;
    display: inline-flex !important;
}

.trend-line {
    margin-left: 10px;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-right: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #a3b3bc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.footer-links-group h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: #a3b3bc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-group ul li a:hover {
    color: var(--primary-green);
}

/* --- Persistent Chat Float Button --- */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0099ff;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,153,255,0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-chat-widget span {
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: lowercase;
}

/* --- Responsive Media Queries (Mobile Optimization) --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none;
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .service-card {
        padding: 20px 20px;
        margin: 0 auto;

    }
    .service-card h3 {
        font-size: 1.2rem;
    }
    .btn-signup {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .notification-toast {
        left: 20px;
        right: 20px;
        bottom: 95px;
    }
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs span {
    font-size: 0.8rem;
}

/* --- Two-Column FAQ Grid Layout --- */
.faq-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Elegant CSS Accordion Card Styling --- */
.faq-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-card.open-active {
    border-color: #0d1e33;
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0b1f38;
    gap: 15px;
}

.faq-card.open-active .faq-header {
    color: #0055ff;
}

/* Custom CSS Pseudo-element Icon Canvas (+ / - Toggle) */
.faq-icon-box {
    width: 24px;
    height: 24px;
    border: 2px solid #a4b3c1;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.3s;
}

.faq-icon-box::before, .faq-icon-box::after {
    content: '';
    position: absolute;
    background-color: #0b1f38;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, background-color 0.3s;
}

/* Horizontal Line */
.faq-icon-box::before {
    width: 10px;
    height: 2px;
}

/* Vertical Line */
.faq-icon-box::after {
    width: 2px;
    height: 10px;
}

.faq-card.open-active .faq-icon-box {
    border-color: #0055ff;
    transform: rotate(180deg);
}

.faq-card.open-active .faq-icon-box::before,
.faq-card.open-active .faq-icon-box::after {
    background-color: #0055ff;
}

/* Smooth slide collapse vertical rule */
.faq-card.open-active .faq-icon-box::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

/* --- Max-Height Core Transitions (No-Jerk Layout Engine) --- */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* --- Core Landing Page Hero Banner Framework --- */
.landing-hero {
    background: radial-gradient(circle at 10% 90%, #063a28 0%, #021f15 100%);
    padding: 180px 20px 180px 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.landing-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Column: CSS 3D Floating Token Mockups --- */
.hero-image-column {
    display: flex;
    justify-content: center;
    position: relative;
    height: 380px;
}

.graphics-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
}

.floating-wallet {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e2ebd5 100%);
    width: 200px;
    height: 140px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    animation: floatingWallet 4s ease-in-out infinite;
    z-index: 5;
}

.floating-wallet i {
    font-size: 4rem;
    color: #12382a;
}

.wallet-glow-node {
    position: absolute;
    right: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #00ffcc;
    box-shadow: 0 0 15px #00ffcc;
}

.crypto-coin {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: floatingCoins 5s ease-in-out infinite alternate;
}

.coin-btc {
    background-color: #ff9900;
    color: white;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    bottom: 120px;
    right: 30px;
    animation-delay: 0.5s;
}

.coin-eth {
    background-color: #3c3c3d;
    color: #00ffcc;
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
    top: 60px;
    left: 40px;
    border: 2px solid #00ffcc;
}

.coin-ada {
    background-color: #0033ad;
    color: white;
    width: 110px;
    height: 110px;
    font-size: 3.2rem;
    top: 20px;
    right: 10px;
    animation-delay: 1s;
}

/* --- Right Column: Text Elements & Custom Conversion Buttons --- */
.hero-text-column h1 {
    color: var(--white);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-text-column p {
    color: #a5c2b6;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-cta-primary {
    background-color: var(--primary-green);
    color: var(--dark-green-bg);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta-primary:hover {
    background-color: #00eb9c;
    transform: translateY(-2px);
}

.arrow-inline {
    font-size: 0.85rem;
}

.btn-cta-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s, border-color 0.3s;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.play-inline {
    font-size: 1.1rem;
}

/* --- Hero Frame Wave Curved Vector Component Base --- */
.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-bottom-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
    transform: rotate(180deg);
}

.hero-bottom-curve .shape-fill {
    fill: var(--bg-light);
}

/* --- Animation Keyframes --- */
@keyframes floatingWallet {
    0% { transform: translateY(0px) rotate(-10deg); }
    50% { transform: translateY(-12px) rotate(-8deg); }
    100% { transform: translateY(0px) rotate(-10deg); }
}

@keyframes floatingCoins {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-18px); }
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 992px) {
    .landing-hero {
        padding: 140px 20px 100px 20px;
    }
    
    .landing-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-image-column {
        order: 2;
        height: 320px;
    }
    
    .hero-text-column p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-text-column h1 {
        font-size: 2.6rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* --- Services Module Layout Variables & Reset --- */
.services-domain-section {
    padding: 100px 20px;
    max-width: 1240px;
    margin: 0 auto;
    background-color: #f7f9fc; /* Soft gray contrast separating hero block sections */
}

/* Section Header Typography */
.services-header-node {
    text-align: center;
    margin-bottom: 60px;
}

.services-header-node h2 {
    font-size: 2.4rem;
    color: #0b1f38;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.header-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00b377, #00ffcc);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.services-header-node p {
    color: #617388;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- Clean Grid System Architecture --- */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Dashboard Investment Cards */
.service-investment-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 56, 0.04);
    border: 1px solid rgba(11, 31, 56, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.service-investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 31, 56, 0.08);
}

/* Top Image Container Block */
.card-image-canvas {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.card-image-canvas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-investment-card:hover .card-image-canvas img {
    transform: scale(1.06);
}

/* Custom Floating Badge Layout Alignment Engine */
.floating-vector-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    background-color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(11, 31, 56, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.3s, transform 0.3s;
}

.floating-vector-badge i {
    font-size: 1.3rem;
    color: #0055ff; /* Premium high-contrast vector accent */
    transition: color 0.3s;
}

.service-investment-card:hover .floating-vector-badge {
    background-color: #0055ff;
    transform: rotate(5deg);
}

.service-investment-card:hover .floating-vector-badge i {
    color: #ffffff;
}

/* Bottom Card-Details Typography Context Panel */
.card-details-canvas {
    padding: 30px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-accent-pill {
    width: 28px;
    height: 3px;
    background-color: #00b377; /* Matching standard corporate signature branding */
    border-radius: 1.5px;
    margin-bottom: 14px;
}

.card-details-canvas h3 {
    font-size: 1.25rem;
    color: #0b1f38;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-details-canvas p {
    color: #617388;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Multi-tier Responsive Media Framework Query Blocks --- */
@media (max-width: 1024px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .services-domain-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .services-header-node h2 {
        font-size: 2rem;
    }
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card-image-canvas {
        height: 190px;
    }
}