/* Custom Styles for Domini Green */

:root {
    /* XTrady-Inspired Color Palette */
    --bg-dark: #1A202C;
    --bg-dark-secondary: #0F172A;
    
    /* Bright Vibrant Green (Main Brand Color) */
    --primary-green: #10B981;
    --primary-green-bright: #22D3EE;
    --primary-green-dark: #059669;
    --primary-green-light: #34D399;
    --primary-green-glow: rgba(16, 185, 129, 0.3);
    
    /* Neon Yellow-Green (New Vibrant Color) */
    --neon-green: #DAFF47;
    --neon-green-dark: #C4E83A;
    --neon-green-text: #111827;
    
    /* Bright Yellow (CTA Color) */
    --cta-yellow: #FCD34D;
    --cta-yellow-dark: #FBBF24;
    --cta-yellow-text: #111827;
    
    /* Dark Theme Backgrounds */
    --white: #1F2937;
    --off-white: #111827;
    --light-gray: #374151;
    --border-gray: #4B5563;
    
    /* Text Colors - Dark Theme */
    --text-white: #FFFFFF;
    --text-white-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #F9FAFB;
    --text-primary: #F9FAFB;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;
    
    /* Legacy Support */
    --dark-green: #059669;
    --light-green: #d1fae5;
    
    /* Grid Pattern */
    --grid-color: rgba(16, 185, 129, 0.2);
    
    /* Highlight Background */
    --highlight-bg: #0F172A;
    
    /* Golden Color */
    --golden: #F59E0B;
    --golden-dark: #D97706;
    --golden-light: #FCD34D;
    
    /* Accent Colors */
    --accent-cyan: #06B6D4;
    --accent-purple: #8B5CF6;

    /* Fonts */
    --font-body: 'Barlow', 'IBM Plex Sans', 'Nata Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Outfit', 'Nata Sans', 'Barlow', 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Container Padding Fix - Ensure all sections have proper padding */
.container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    max-width: 1280px;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.75rem !important;
        padding-right: 1.75rem !important;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1300px !important;
    }
}

/* Ensure sections don't have negative margins that remove padding */
section {
    padding-left: 0;
    padding-right: 0;
}

/* Fix for any full-width elements that might break container padding */
section > .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent accidental horizontal scroll and keep media responsive */
html, body {
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Mobile-friendly helper for tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Fixed header on all viewports (desktop + mobile) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

/* Global Typography */
body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-primary);
}

/* Logo Styles */
header img[alt*="Logo"],
footer img[alt*="Logo"] {
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Header logo visibility boost (new logo is dark on dark header) */
header .dg-site-logo {
    opacity: 1 !important;
    filter:
        brightness(1.75)
        contrast(1.15)
        saturate(1.05)
        drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 26px rgba(218, 255, 71, 0.18));
}

header img[alt*="Logo"]:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Circular Progress Bar - Bottom Right */
.circular-progress-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.circular-progress-container:hover {
    transform: scale(1.1);
}

.circular-progress-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.circular-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-progress-bg {
    fill: none;
    stroke: rgba(16, 185, 129, 0.2);
    stroke-width: 6;
}

.circular-progress-bar {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 188.5;
    transition: stroke-dashoffset 1s ease;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.6));
}

.circular-progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.circular-progress-percent {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    line-height: 1;
}

.circular-progress-icon {
    font-size: 0.5rem;
    color: var(--primary-green);
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.circular-progress-container:hover .circular-progress-icon {
    transform: translateY(-2px);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .circular-progress-container {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
    
    .circular-progress-percent {
        font-size: 0.65rem;
    }
    
    .circular-progress-bar {
        stroke-width: 5;
    }
    
    .circular-progress-bg {
        stroke-width: 5;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Nata Sans', 'Barlow', 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Advanced Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(218, 255, 71, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(218, 255, 71, 0.8);
    }
}

/* Scroll Animation Classes */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-rotate {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-rotate.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Stagger Animation Delays */
.scroll-delay-100 { transition-delay: 0.1s; }
.scroll-delay-200 { transition-delay: 0.2s; }
.scroll-delay-300 { transition-delay: 0.3s; }
.scroll-delay-400 { transition-delay: 0.4s; }
.scroll-delay-500 { transition-delay: 0.5s; }

/* Image Placeholder Styles */
.image-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(16, 185, 129, 0.05) 10px,
        rgba(16, 185, 129, 0.05) 20px
    );
}

.image-placeholder i {
    position: relative;
    z-index: 1;
}

.image-placeholder:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Portfolio Cards (Turning Energy Into Wealth) */
.portfolio-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(16, 185, 129, 0.5);
}

.portfolio-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.portfolio-card__badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.portfolio-card__percent {
    text-align: right;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-green);
}

.portfolio-card__bar {
    position: relative;
    height: 8px;
    background: var(--border-gray);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 8px;
}

.portfolio-card__bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 9999px;
}

.portfolio-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.25rem 0 0.5rem;
}

.portfolio-card__desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.portfolio-card__list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.portfolio-card__list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--text-muted);
}

.portfolio-card__list i {
    color: var(--primary-green);
    margin-top: 2px;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

/* Grid Background Pattern */
.grid-bg {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Button Styles */
.btn-primary {
    background: var(--neon-green);
    color: var(--neon-green-text);
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(218, 255, 71, 0.3);
}

.btn-primary:hover {
    background: var(--neon-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 255, 71, 0.5);
}

/* Golden Button Styles */
.btn-golden {
    background: var(--golden);
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-golden:hover {
    background: var(--golden-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.btn-outline {
    border: 2px solid #10b981;
    color: #10b981;
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #10b981;
    color: white;
}

/* Timeline Styles */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, #10b981 0%, #d1fae5 100%);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #d1fae5;
}

.timeline-item:last-child::before {
    display: none;
}

/* Stats Counter Animation */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Bar */
.progress-bar {
    height: 0.5rem;
    background: var(--border-gray);
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    transition: width 1s ease-out;
}

/* Language Selector Customization */
#languageList a,
#languageListMobile a {
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.2s ease;
    color: var(--text-primary);
}

#languageList a:last-child,
#languageListMobile a:last-child {
    border-bottom: none;
}

#languageList a:hover,
#languageListMobile a:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(4px);
    color: var(--primary-green);
}

/* Mobile Menu Animation */
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-dropdown.active {
    max-height: 500px;
}

/* Investment Card Hover */
.investment-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.investment-card:hover {
    border-color: var(--primary-green) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

/* Section Spacing */
.section-padding {
    padding: 5rem 0;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.3) 20%, 
        rgba(16, 185, 129, 0.5) 50%, 
        rgba(16, 185, 129, 0.3) 80%, 
        transparent 100%);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(218, 255, 71, 0.4), 
        transparent);
    animation: divider-shimmer 3s ease-in-out infinite;
}

@keyframes divider-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Text Selection */
::selection {
    background: rgba(16, 185, 129, 0.3);
    color: #DAFF47;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1F2937;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Loading Animation */
.loading-spinner {
    border: 3px solid var(--border-gray);
    border-top: 3px solid #10b981;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Typography */
@media (max-width: 640px) {
    .stat-number {
        font-size: 2rem;
    }
}

/* Interactive Donut Banner Styles - Full Screen */
:root {
    --donut-c0: #ffcf33;
    --donut-c1: #3fd0ff;
    --donut-c2: #4fe38e;
    --donut-c3: #ff7ad9;
    --donut-accent: #33ff88;
}

.donut-hero-section {
    background: radial-gradient(circle at top left, #0e4a2e, #020b08);
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    padding: 0;
    position: relative;
}

.donut-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(14, 74, 46, 0.7), rgba(2, 11, 8, 0.8));
    z-index: 0;
}

.donut-hero-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* background: linear-gradient(135deg, #0b5a35, #079865); */
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 0px;
    min-height: 90vh;
    align-items: center;
    z-index: 1;
}

/* Animated background pattern */
.donut-hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(51, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(51, 255, 136, 0.1) 0%, transparent 50%);
    animation: pattern-move 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pattern-move {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

.donut-hero {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: linear-gradient(135deg, #0b5a35, #079865);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    min-height: 100vh;
    align-items: center;
}

/* Donut area */
.donut-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    width: 140%;
    z-index: 2;
}

/* Active Segment Icon - Center Right of Donut */
.donut-active-icon-container {
    position: absolute;
    top: 50%;
    right: 430px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .donut-active-icon-container {
        right: -60px;
    }
}

@media (max-width: 900px) {
    .donut-active-icon-container {
        right: -40px;
    }
    
    .active-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .active-text {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .donut-active-icon-container {
        right: -20px;
    }
    
    .active-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .active-text {
        font-size: 11px;
    }
}

.active-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(51, 255, 136, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    border: 3px solid var(--donut-accent);
    box-shadow: 0 0 30px rgba(51, 255, 136, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
    transform: scale(1);
}

.active-icon.fade-out {
    opacity: 0;
    transform: scale(0.5) translateX(-20px);
}

.active-icon.fade-in {
    animation: icon-fade-in 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes icon-fade-in {
    0% {
        opacity: 0;
        transform: scale(0.5) translateX(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.active-text {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
    opacity: 1;
}

.active-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.active-text.fade-in {
    animation: text-fade-in 0.5s ease forwards;
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.donut {
    --rotation: 0deg;
    position: relative;
    width: max(1600px, 45vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    /* background: conic-gradient(
        var(--donut-c0) 0% 25%,
        var(--donut-c1) 25% 50%,
        var(--donut-c2) 50% 75%,
        var(--donut-c3) 75% 100%
    ); */
    transform: translateX(-26%) rotate(var(--rotation));
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 16px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    right: 150px;
}

.donut-hero-full:hover .donut,
.donut-hero:hover .donut {
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7), 0 0 0 18px rgba(0, 0, 0, 0.3);
    transform: translateX(-26%) rotate(var(--rotation)) scale(1.02);
}

/* Glowing effect on active segment */
.donut::before {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* highlight ring on top */
.donut::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
                radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.65), transparent 65%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

/* hole */
.donut::after {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 10%, #1b4332, #020b08);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

/* inner image circle */
.donut-inner {
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 12px 30px rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease-out, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: rotate(calc(var(--rotation) * -1));
}

.donut-inner::before {
    /* Dark overlay for readability of center badge on any image */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.72)),
        linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
    opacity: 0.85;
    pointer-events: none;
    z-index: 3;
}

.donut-hero-full:hover .donut-inner,
.donut-hero:hover .donut-inner {
    transform: rotate(calc(var(--rotation) * -1)) scale(1.03);
}

.donut-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.3), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.7), transparent 60%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 4;
}

/* Center Badge */
.donut-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Keep center % + label ALWAYS upright (no rotation on segment change) */
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    transition: transform 0.3s ease;
    padding: 0.85rem 1.05rem;
    border-radius: 18px;
    background: rgba(2, 11, 8, 0.48);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}

.donut-center-badge::before {
    /* Neon halo for premium look */
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 26px;
    background: radial-gradient(circle at 50% 50%, rgba(218,255,71,0.16), transparent 60%);
    filter: blur(1px);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.center-badge-percent {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.center-badge-percent.animate-scale-in {
    animation: scale-in 0.5s ease-out;
}

@keyframes scale-in {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.center-badge-label {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.donut-hero:hover .donut-inner {
    transform: rotate(calc(var(--rotation) * -1)) scale(1.03);
}

/* invisible hit areas for manual selection */
.segment-hit {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    background: transparent;
    z-index: 10;
}

.segment-hit button {
    position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Hit areas for 4 equal segments (25% each) */
.hit-0 { clip-path: polygon(50% 50%, 100% 0%, 100% 50%, 50% 50%); } /* Top right - 0% to 25% */
.hit-1 { clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 50%); } /* Bottom right - 25% to 50% */
.hit-2 { clip-path: polygon(50% 50%, 0% 100%, 0% 50%, 50% 50%); } /* Bottom left - 50% to 75% */
.hit-3 { clip-path: polygon(50% 50%, 0% 0%, 0% 50%, 50% 50%); } /* Top left - 75% to 100% */

.segment-hit button::after {
    content: "";
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.segment-hit button:hover::after {
    opacity: 1;
}

.segment-hit button:active::after {
    background: radial-gradient(circle, rgba(51, 255, 136, 0.3), transparent 70%);
    opacity: 1;
}

/* Right panel */
.donut-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-right: 8px;
    color: #f8fafc;
    position: relative;
    z-index: 2;
}

.donut-pill {
    align-self: flex-start;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(3, 16, 10, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--donut-accent);
    box-shadow: 0 0 12px rgba(51, 255, 136, 0.8);
}

.donut-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    font-family: var(--font-heading);
}

.donut-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
    display: none;
}

.donut-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.donut-metric-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 20px 0;
}

.donut-stats + .donut-dots,
.donut-tags + .donut-dots {
    margin-top: 0 !important;
}

.donut-metric-row .donut-metric-percent {
    margin-bottom: 4px;
}

@keyframes scale-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-scale-in {
    animation: scale-in 0.4s ease-out;
}

.donut-metric-percent {
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.donut-metric-name {
    font-size: clamp(20px, 2.5vw, 32px);
    opacity: 0.95;
    font-weight: 600;
    color: #f8fafc;
    margin-top: 8px;
}

.donut-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

/* Crypto Coin Icons Float Randomly Across Banner */
.crypto-coins-float-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.crypto-coin-float-icon {
    position: absolute;
    width: var(--coin-size, 92px);
    height: var(--coin-size, 92px);
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
}

.crypto-coin-float-icon:hover {
    transform: scale(1.3);
    opacity: 1;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    z-index: 10;
}

/* Random positions and animations for each coin */
.crypto-coin-float-icon.coin-1 {
    top: 15%;
    left: 10%;
    --coin-size: 118px;
    animation: float-random-1 20s ease-in-out infinite;
}

.crypto-coin-float-icon.coin-2 {
    top: 60%;
    left: 25%;
    --coin-size: 78px;
    animation: float-random-2 25s ease-in-out infinite;
}

.crypto-coin-float-icon.coin-3 {
    top: 30%;
    left: 50%;
    --coin-size: 104px;
    animation: float-random-3 22s ease-in-out infinite;
}

.crypto-coin-float-icon.coin-4 {
    top: 70%;
    left: 65%;
    --coin-size: 84px;
    animation: float-random-4 18s ease-in-out infinite;
}

.crypto-coin-float-icon.coin-5 {
    top: 20%;
    left: 80%;
    --coin-size: 96px;
    animation: float-random-5 24s ease-in-out infinite;
}

.crypto-coin-float-icon.coin-6 {
    top: 55%;
    left: 5%;
    --coin-size: 70px;
    animation: float-random-6 21s ease-in-out infinite;
}

/* Extra icons (more density on the right side) */
.crypto-coin-float-icon.coin-7 {
    top: 12%;
    left: 88%;
    --coin-size: 72px;
    animation: float-random-3 23s ease-in-out infinite;
    animation-delay: -7s;
}
.crypto-coin-float-icon.coin-8 {
    top: 38%;
    left: 92%;
    --coin-size: 108px;
    animation: float-random-1 27s ease-in-out infinite;
    animation-delay: -12s;
}
.crypto-coin-float-icon.coin-9 {
    top: 72%;
    left: 84%;
    --coin-size: 80px;
    animation: float-random-5 26s ease-in-out infinite;
    animation-delay: -15s;
}
.crypto-coin-float-icon.coin-10 {
    top: 58%;
    left: 96%;
    --coin-size: 62px;
    animation: float-random-2 22s ease-in-out infinite;
    animation-delay: -9s;
}
.crypto-coin-float-icon.coin-11 {
    top: 22%;
    left: 74%;
    --coin-size: 96px;
    animation: float-random-4 24s ease-in-out infinite;
    animation-delay: -11s;
}
.crypto-coin-float-icon.coin-12 {
    top: 86%;
    left: 90%;
    --coin-size: 68px;
    animation: float-random-6 28s ease-in-out infinite;
    animation-delay: -18s;
}

/* Random floating animations */
@keyframes float-random-1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(30px, -40px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(40px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-random-2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-35px, 25px); }
    50% { transform: translate(25px, -35px); }
    75% { transform: translate(-15px, -20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-random-3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(20px, 45px); }
    50% { transform: translate(-45px, -15px); }
    75% { transform: translate(35px, -30px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-random-4 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-25px, -30px); }
    50% { transform: translate(40px, 20px); }
    75% { transform: translate(-20px, 35px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-random-5 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(35px, 15px); }
    50% { transform: translate(-20px, -40px); }
    75% { transform: translate(25px, 30px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-random-6 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-30px, 25px); }
    50% { transform: translate(45px, -25px); }
    75% { transform: translate(-15px, -35px); }
    100% { transform: translate(0, 0); }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .crypto-coin-float-icon {
        width: calc(var(--coin-size, 92px) * 0.62);
        height: calc(var(--coin-size, 92px) * 0.62);
    }
}

.donut-tag {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(1, 15, 9, 0.5);
    color: #f8fafc;
}

.donut-dots {
    /* User requested to remove the dots for all 4 rotations */
    display: none !important;
    gap: 6px;
    margin-top: 10px;
    align-items: center;
}

.donut-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.25s ease-out, transform 0.25s ease-out;
    cursor: pointer;
}

.donut-dot.active {
    background: var(--donut-accent);
    transform: scale(1.4);
    box-shadow: 0 0 16px rgba(51, 255, 136, 0.9);
}

.donut-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.donut-btn-primary {
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #33ff88, #22c55e);
    color: #022c22;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.donut-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.5);
}

.donut-btn-primary .icon {
    font-size: 16px;
}

.donut-btn-ghost {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #e5e7eb;
    padding: 9px 16px;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.donut-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Fade for content changes */
.donut-content .fade {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.donut-content .fade.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .donut-hero-full,
    .donut-hero {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        min-height: auto;
        gap: 40px;
    }

    .donut {
        transform: translateX(-5%) rotate(var(--rotation));
        margin-inline: auto;
        width: min(400px, 80vw);
    }

    .donut-content {
        order: -1;
        text-align: left;
    }

    .donut-subtitle {
        max-width: none;
    }
}

/* Progress Indicator */
.donut-progress-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 5;
    
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 60px;
}

.progress-bar-mini {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: var(--donut-accent);
    border-radius: 2px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px rgba(51, 255, 136, 0.6);
}

.progress-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stats Display */
.donut-stats {
    /* User requested: remove these stat cards from the banner (all slides) */
    display: none !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.donut-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.donut-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(51, 255, 136, 0.3);
}

.donut-stats .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(51, 255, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--donut-accent);
    font-size: 18px;
    flex-shrink: 0;
}

.donut-stats .stat-info {
    flex: 1;
}

.donut-stats .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.donut-stats .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Control Buttons */
.donut-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.control-btn:hover {
    background: rgba(51, 255, 136, 0.3);
    border-color: var(--donut-accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(51, 255, 136, 0.4);
}

.control-btn:active {
    transform: scale(0.95);
}

@media (max-width: 900px) {
    .donut-segment-labels {
        display: none;
    }
    
    .donut-progress-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }
    
    .donut-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .donut-hero-full,
    .donut-hero {
        padding: 30px 20px;
    }
    
    .donut {
        width: min(300px, 82vw);
    }
    
    .donut-controls {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Interactive Portfolio Cards */
.portfolio-stat {
    transition: all 0.3s ease;
}

.portfolio-stat:hover {
    transform: translateY(-5px);
}

.portfolio-bar {
    transition: width 1.5s ease-out;
}

.portfolio-progress {
    transition: width 1.5s ease-out;
}

/* Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

/* Hero Section Enhancements */
.hero-section {
    position: relative;
}

/* Investment Card Enhancements */
.investment-card {
    position: relative;
    transition: all 0.3s ease;
}

.investment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* Business Plans - Two Column Layout */
.plan-section {
    background: var(--highlight-bg);
    color: var(--text-white);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

/* Left Column: Pricing Plans */
.pricing-plans-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Left Column: Pricing Plans */
.pricing-plan-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(30, 48, 41, 0.6);
    border: 2px solid rgba(16, 185, 129, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-plan-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.pricing-plan-card.active {
    background: rgba(30, 48, 41, 0.6);
    border: 3px solid var(--neon-green);
    box-shadow: 0 10px 40px rgba(218, 255, 71, 0.25);
    transform: scale(1.05);
    padding: 2.3rem;
}

.pricing-plan-card.active .plan-name {
    font-size: 1.75rem;
}

.pricing-plan-card.active .plan-description {
    font-size: 1.05rem;
}

.pricing-plan-card.active .plan-price-display {
    font-size: 2rem;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.plan-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.pricing-plan-card[data-plan="green"] .plan-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.pricing-plan-card[data-plan="eco"] .plan-icon-wrapper {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.pricing-plan-card[data-plan="nature"] .plan-icon-wrapper {
    background: linear-gradient(135deg, var(--golden) 0%, #F59E0B 100%);
}

.plan-info {
    flex: 1;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
}

.plan-description {
    font-size: 0.95rem;
    color: var(--text-white-muted);
    margin: 0;
    line-height: 1.5;
}

.plan-price-display {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-top: 0.75rem;
}

/* Right Column: Features */
.pricing-features-column {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 48, 41, 0.55) 0%, rgba(20, 32, 28, 0.65) 100%);
    padding: 2.75rem;
    border-radius: 1.35rem;
    border: 1.5px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(https://html.vikinglab.agency/paycoin/assets/img/hero/hero1-coin.png);
    background-repeat: no-repeat;
    background-position: right 130px;
    background-size: initial;
}


.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.plan-details {
    margin-top: 1.5rem;
    flex: 1;
}

.plan-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    transition: all 0.25s ease;
}

.plan-detail-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-detail-label {
    color: var(--text-white-muted);
    font-size: 20px;
    flex: 1;
}

.plan-detail-value {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 30px;
    transition: all 0.25s ease;
}

.plan-detail-item:hover {
    border-color: rgba(16, 185, 129, 0.25);
}

.plan-detail-item:hover .plan-detail-value {
    color: var(--neon-green);
    transform: translateX(6px) scale(1.04);
    text-shadow: 0 0 12px rgba(218, 255, 71, 0.35);
}

.btn-invest-now {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: auto;
    background: var(--cta-yellow-dark);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-invest-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    background: var(--primary-green);
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-plan-card.active {
        transform: translateY(-5px);
    }
    
    .pricing-plan-card:hover {
        transform: translateY(-3px);
    }
}

/* Ripple Effect */
.btn-primary, .btn-outline {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Energy as New Currency Section */
.energy-currency-section {
    background: var(--off-white);
    color: var(--text-primary);
}

.energy-currency-title {
    color: var(--text-primary);
}

.energy-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.energy-image-placeholder.energy-image-portrait {
    aspect-ratio: 5/6;
}

.energy-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.3);
}

/* Energy as the New Currency – v2 layout (index.php) */
.enc-section {
    position: relative;
}
.enc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 280px at 15% 10%, rgba(218,255,71,0.10), transparent 60%),
        radial-gradient(900px 280px at 85% 90%, rgba(16,185,129,0.12), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}
.enc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .enc-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 2.2rem;
        align-items: center;
    }
}

.enc-media-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 28px 80px rgba(0,0,0,0.45);
    aspect-ratio: 5/6; /* requested portrait */
    background: rgba(255,255,255,0.03);
}
.enc-media-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.12), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.55), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.30));
    pointer-events: none;
}
.enc-media-badges {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 14px;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.enc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--text-white);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
}
.enc-chip.alt {
    color: #000;
    background: rgba(218,255,71,0.85);
    border-color: rgba(218,255,71,0.55);
}
.enc-media-caption {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.enc-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}
@media (min-width: 640px) {
    .enc-feature-grid { grid-template-columns: 1fr 1fr; }
}
.enc-card {
    border-radius: 18px;
    padding: 1.1rem 1.1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.32);
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}
.enc-ico {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: rgba(218,255,71,0.90);
    border: 1px solid rgba(218,255,71,0.55);
    flex-shrink: 0;
}
.enc-title {
    margin: 0;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.02rem;
}
.enc-text {
    margin: 0.35rem 0 0;
    color: var(--text-white-muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

.enc-note {
    margin-top: 1.1rem;
    border-radius: 22px;
    padding: 1.25rem 1.25rem;
    background: rgba(17,24,39,0.45);
    border: 1px solid rgba(16,185,129,0.18);
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
}
.enc-note-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}
.enc-note-top .pill {
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--neon-green);
    background: rgba(218,255,71,0.12);
    border: 1px solid rgba(218,255,71,0.18);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.enc-note-top .pill.alt {
    color: var(--primary-green);
    background: rgba(16,185,129,0.10);
    border-color: rgba(16,185,129,0.18);
}
.enc-note-text {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    font-size: 0.98rem;
}

.energy-feature-card {
    background: var(--white);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.energy-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.energy-icon-primary {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.energy-icon-neon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.energy-feature-card:hover .energy-icon-primary,
.energy-feature-card:hover .energy-icon-neon {
    transform: scale(1.1) rotate(5deg);
}

.energy-feature-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.energy-feature-text {
    color: var(--text-muted);
}

.energy-conclusion-card {
    background: var(--highlight-bg);
    color: var(--text-white);
    padding: 3rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.energy-conclusion-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.energy-conclusion-text {
    color: var(--text-white-muted);
    line-height: 1.8;
    text-align: center;
}

.energy-highlight {
    color: var(--neon-green);
    font-weight: 600;
}

/* How We Generate Profits Section */
.profits-section {
    background: var(--highlight-bg);
    color: var(--text-white);
}

.profits-title {
    color: var(--text-white);
}

.profits-subtitle {
    color: var(--text-white-muted);
}

.profits-image-placeholder {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profits-image-placeholder:hover {
    border-color: var(--primary-green);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.4);
}

.profits-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profits-feature-card.profits-card-neon {
    border-color: rgba(218, 255, 71, 0.3);
}

.profits-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.profits-feature-card.profits-card-neon:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 40px rgba(218, 255, 71, 0.25);
}

.profits-icon-primary {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.profits-icon-neon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.profits-feature-card:hover .profits-icon-primary,
.profits-feature-card:hover .profits-icon-neon {
    transform: scale(1.15) rotate(-5deg);
}

.profits-feature-title {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.profits-feature-text {
    color: var(--text-white-muted);
}

/* Why Online Section - Simple & Classy Design */
.why-online-section {
    background: var(--off-white);
    position: relative;
    color: var(--text-primary);
}

/* Mobile layout: use background image and overlay card */
@media (max-width: 768px) {
    .why-online-section {
        background-image: url('../images/index/why-online-borderless.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
    }
    .why-online-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(15,23,42,0.95));
        z-index: 0;
    }
    .why-online-section > .container {
        position: relative;
        z-index: 1;
    }
    .why-online-image-container {
        display: none;
    }
    .why-online-merged-card {
        background: rgba(15,23,42,0.92);
        backdrop-filter: blur(12px);
        border-radius: 1.25rem;
        border: 1px solid rgba(148,163,184,0.35);
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .why-online-merged-section {
        gap: 0.75rem;
    }
    .why-online-merged-content {
        gap: 0.4rem;
    }
    .why-online-merged-stats {
        gap: 0.75rem;
    }
    .why-online-merged-title {
        font-size: 1.6rem;
    }
    .why-online-merged-description {
        font-size: 1rem;
    }
    .why-online-merged-text,
    .why-online-merged-text-small,
    .why-online-merged-cta {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Title */
.why-online-title {
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.why-online-subtitle-main {
    color: var(--primary-green);
    letter-spacing: -0.01em;
}

.why-online-subtitle {
    color: var(--text-muted);
    font-weight: 400;
}

/* Image Container - Left Side */
.why-online-image-container {
    height: 100%;
    min-height: 500px;
}

.why-online-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--primary-green);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.why-online-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.3);
}

/* Merged Content Card - Right Side */
.why-online-merged-card {
    height: 100%;
    min-height: 500px;
    background: var(--white);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-online-merged-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
}

.why-online-merged-section {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-online-merged-section:last-of-type {
    margin-bottom: 0;
}

.why-online-merged-icon-primary,
.why-online-merged-icon-neon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-online-merged-icon-primary {
    background: var(--primary-green);
}

.why-online-merged-icon-neon {
    background: var(--neon-green);
}

.why-online-merged-icon-primary i,
.why-online-merged-icon-neon i {
    font-size: 1.75rem;
    color: white;
}

.why-online-merged-content {
    flex: 1;
}

.why-online-merged-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.why-online-merged-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.why-online-merged-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.why-online-stat-item {
    text-align: center;
}

.why-online-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.why-online-stat-value-green {
    color: var(--primary-green);
}

.why-online-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.why-online-merged-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-online-merged-text-small {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.why-online-merged-highlight-neon {
    color: var(--neon-green);
    display: block;
}

.why-online-merged-highlight-primary {
    color: var(--text-primary);
    display: block;
    font-weight: 700;
}

.why-online-merged-cta {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    margin-top: 0.5rem;
}

.why-online-merged-divider {
    width: 100%;
    height: 1px;
    background: rgba(16, 185, 129, 0.2);
    margin: 1.5rem 0;
}

/* Mission Content - Now part of content container */

.why-online-mission-header-simple {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.why-online-mission-icon-simple {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.why-online-mission-title-simple {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.why-online-mission-content-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
}

.why-online-mission-text-simple {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.why-online-mission-text-small-simple {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.why-online-mission-highlight {
    color: var(--neon-green);
    display: block;
}

.why-online-mission-highlight-white {
    color: var(--text-primary);
    display: block;
}

.why-online-mission-cta-simple {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    margin-top: 1rem;
}

/* Feature Cards - Simple */
.why-online-feature-card-simple {
    background: var(--white);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.why-online-feature-card-simple:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Feature Cards - Inline (Single Line) */
.why-online-feature-card-simple-inline {
    background: var(--white);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 160px;
}

.why-online-feature-card-simple-inline:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.why-online-feature-icon-simple-primary,
.why-online-feature-icon-simple-neon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.why-online-feature-icon-simple-primary {
    background: var(--cta-yellow-dark);
}

.why-online-feature-icon-simple-neon {
    background: var(--neon-green);
}

.why-online-feature-icon-simple-primary i,
.why-online-feature-icon-simple-neon i {
    font-size: 1.75rem;
    color: white;
}

.why-online-feature-card-simple:hover .why-online-feature-icon-simple-primary,
.why-online-feature-card-simple:hover .why-online-feature-icon-simple-neon,
.why-online-feature-card-simple-inline:hover .why-online-feature-icon-simple-primary,
.why-online-feature-card-simple-inline:hover .why-online-feature-icon-simple-neon {
    transform: scale(1.1);
}

.why-online-feature-title-simple {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-online-feature-title-simple-inline {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.why-online-feature-text-simple {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

/* Conclusion - Simple */
.why-online-conclusion-simple {
    text-align: center;
    margin-top: 3rem;
}

.why-online-conclusion-text-simple {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
}

.why-online-conclusion-highlight-simple {
    color: var(--primary-green);
    font-weight: 700;
}

.why-online-statement-simple-primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.why-online-statement-simple-neon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .why-online-hero-card-simple,
    .why-online-mission-card-simple {
        min-height: 400px;
    }
    
    .why-online-mission-text-simple {
        font-size: 1.25rem;
    }
    
    .why-online-statement-simple-neon {
        font-size: 1.5rem;
    }
    
    .why-online-statement-simple-primary {
        font-size: 1.25rem;
    }
    
    .why-online-conclusion-text-simple {
        font-size: 1.125rem;
    }
}

/* Remove All Inline Styles - Section Backgrounds */
.section-bg-off-white {
    background: var(--off-white);
}

.section-bg-highlight {
    background: var(--highlight-bg);
    color: var(--text-white);
}

.section-bg-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Text Colors */
.text-color-primary {
    color: var(--text-primary);
}

.text-color-white {
    color: var(--text-white);
}

.text-color-white-muted {
    color: var(--text-white-muted);
}

.text-color-muted {
    color: var(--text-muted);
}

.text-color-primary-green {
    color: var(--primary-green);
}

.text-color-neon-green {
    color: var(--neon-green);
}

/* Badge/Pill Styles */
.badge-neon {
    background: rgba(218, 255, 71, 0.2);
    border: 2px solid var(--neon-green);
}

.badge-neon-icon {
    color: var(--neon-green);
}

.badge-primary {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--primary-green);
}

.badge-primary-icon {
    color: var(--primary-green);
}

/* Animated Background Elements */
.bg-float-primary {
    background: var(--primary-green);
}

.bg-float-neon {
    background: var(--neon-green);
}

/* Grid Pattern */
.grid-pattern {
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
}

.grid-pattern-dots {
    background: radial-gradient(circle, var(--primary-green) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Image Placeholders */
.image-placeholder-green {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-placeholder-green-light {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-placeholder-neon {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(218, 255, 71, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 2px solid rgba(218, 255, 71, 0.4);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Generic image wiring for placeholders (Index + other pages)
   Add class "dg-imgbox" to any placeholder container and include:
   - <img class="dg-img" ... onload="..." onerror="...">
   - <div class="dg-img-fallback"> ... existing placeholder content ... </div>
*/
.dg-imgbox {
    position: relative;
    overflow: hidden;
}
.dg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
    transform: scale(1.02);
}
.dg-imgbox::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.14), transparent 55%),
                radial-gradient(circle at 80% 85%, rgba(0,0,0,0.60), transparent 60%),
                linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.35));
    pointer-events: none;
    opacity: 0.75;
}
.dg-img-fallback {
    position: absolute;
    inset: 0;
    z-index: 3;
}
.dg-imgbox.has-img .dg-img-fallback {
    display: none;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
}

.glass-card-neon {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(218, 255, 71, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
}

/* Icon Wrappers */
.icon-wrapper-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.icon-wrapper-yellow {
    background: linear-gradient(135deg, var(--cta-yellow) 0%, #F59E0B 100%);
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

.icon-wrapper-cyan {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0891B2 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.icon-wrapper-purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Investment Cards */
.investment-card-base {
    background: var(--white);
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.investment-image-yellow {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 1px solid rgba(252, 211, 77, 0.3);
}

.investment-image-green {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.investment-image-cyan {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.2) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.investment-image-purple {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Home - Turning Energy Into Wealth (single-line modern cards) */
.home-portfolio-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 1.25rem;
    overflow-x: hidden;
    padding: 0.25rem 0.25rem 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.home-portfolio-row::-webkit-scrollbar {
    height: 10px;
}
.home-portfolio-row::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
}
.home-portfolio-row::-webkit-scrollbar-thumb {
    background: rgba(218,255,71,0.25);
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,0.2);
}

@media (min-width: 1280px) {
    .home-portfolio-row {
        grid-auto-flow: unset;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
    }
}

.home-portfolio-slider {
    position: relative;
    overflow: hidden;
}

.home-portfolio-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(15,23,42,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.home-portfolio-arrow-left {
    left: 0.25rem;
}

.home-portfolio-arrow-right {
    right: 0.25rem;
}

@media (min-width: 1024px) {
    .home-portfolio-arrow {
        display: none;
    }
    .home-portfolio-row {
        grid-auto-columns: minmax(260px, 1fr);
    }
}

.home-portfolio-card {
    scroll-snap-align: start;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-portfolio-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: radial-gradient(900px 220px at 20% 0%, rgba(218,255,71,0.14), transparent 60%),
                radial-gradient(900px 220px at 80% 100%, rgba(16,185,129,0.16), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.home-portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(218,255,71,0.22);
    box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}

.home-portfolio-card:hover::before {
    opacity: 1;
}
.home-portfolio-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.home-portfolio-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10), transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(0,0,0,0.60), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55));
    pointer-events: none;
}
.home-portfolio-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: #000;
    background: rgba(218,255,71,0.92);
    border: 1px solid rgba(218,255,71,0.55);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.home-portfolio-chip {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 4;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.90);
    background: rgba(17,24,39,0.55);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}
.home-portfolio-body {
    padding: 1rem 1.05rem 1.15rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(17,24,39,0.00), rgba(17,24,39,0.55));
}

.home-portfolio-left {
    min-width: 0;
}

.home-portfolio-title {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.2;
}

.home-portfolio-sub {
    margin-top: 0.35rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}

.home-portfolio-lines {
    margin-top: 0.45rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.home-portfolio-value {
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.image-icon-yellow {
    color: var(--cta-yellow);
    font-size: 3rem;
    opacity: 0.5;
}

.image-icon-green {
    color: var(--primary-green);
    font-size: 3rem;
    opacity: 0.5;
}

.image-icon-cyan {
    color: var(--accent-cyan);
    font-size: 3rem;
    opacity: 0.5;
}

.image-icon-purple {
    color: var(--accent-purple);
    font-size: 3rem;
    opacity: 0.5;
}

/* Google Translate (keep UI hidden; we control language via our own dropdown) */
html.skiptranslate {
    scroll-padding-top: 90px;
}
body {
    top: 0 !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-ORHb,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}
/* Google sometimes wraps the banner in a skiptranslate container; hide only that wrapper, not the whole page */
div.skiptranslate {
    display: none !important;
}
html {
    margin-top: 0 !important;
}
body {
    position: static !important;
    margin-top: 0 !important;
}
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

/* Login Page (premium dark theme) */
.login-hero {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.25rem) 0;
    overflow: hidden;
}
.login-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 400px at 20% 10%, rgba(218,255,71,0.16), transparent 60%),
        radial-gradient(800px 360px at 80% 0%, rgba(16,185,129,0.16), transparent 55%),
        radial-gradient(900px 520px at 50% 95%, rgba(34,211,238,0.10), transparent 60%),
        linear-gradient(180deg, rgba(10,15,26,1), rgba(5,8,16,1));
}
.login-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero_bg.png") center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: screen;
    pointer-events: none;
}
.login-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.15), rgba(0,0,0,0.60));
    pointer-events: none;
}
.login-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: center;
}
@media (max-width: 1024px) {
    .login-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

.login-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.login-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
}
.login-badge i {
    color: rgba(218,255,71,0.95);
}
.login-badge-muted i {
    color: rgba(34,211,238,0.9);
}

.login-title {
    font-family: var(--font-heading);
    font-weight: 950;
    color: var(--text-white);
    font-size: clamp(2.2rem, 4.2vw, 3.35rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}
.login-subtitle {
    margin-top: 0.9rem;
    color: rgba(255,255,255,0.72);
    font-size: 1.06rem;
    line-height: 1.65;
    max-width: 56ch;
}

.login-kpis {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 520px;
}
.login-kpi {
    padding: 0.9rem 0.95rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 70px rgba(0,0,0,0.25);
}
.login-kpi-label {
    color: rgba(255,255,255,0.62);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.login-kpi-value {
    margin-top: 0.25rem;
    color: rgba(218,255,71,0.95);
    font-family: var(--font-heading);
    font-weight: 950;
    font-size: 1.25rem;
}

.login-points {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.55rem;
    max-width: 560px;
}
.login-point {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.78);
    font-weight: 700;
}
.login-point .material-icons {
    color: rgba(218,255,71,0.9);
    font-size: 20px;
}

.login-card {
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 110px rgba(0,0,0,0.50);
    padding: 1.25rem;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}
.login-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: radial-gradient(600px 220px at 10% 0%, rgba(218,255,71,0.18), transparent 60%),
                radial-gradient(600px 220px at 90% 100%, rgba(16,185,129,0.18), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
    filter: blur(18px);
}
.login-card > * {
    position: relative;
    z-index: 2;
}

.login-card-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.35rem 0.2rem 1.05rem;
}
.login-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(218,255,71,0.12);
    border: 1px solid rgba(218,255,71,0.22);
    box-shadow: 0 18px 60px rgba(218,255,71,0.14);
}
.login-card-icon .material-icons {
    color: rgba(218,255,71,0.95);
}
.login-card-title {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 950;
    font-size: 1.35rem;
    line-height: 1.15;
}
.login-card-sub {
    margin-top: 0.2rem;
    color: rgba(255,255,255,0.62);
    font-size: 0.92rem;
}

.login-form {
    display: grid;
    gap: 0.9rem;
}
.login-field {
    display: grid;
    gap: 0.45rem;
}
.login-label {
    color: rgba(255,255,255,0.70);
    font-weight: 800;
    font-size: 0.86rem;
}
.login-input {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: rgba(17,24,39,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.login-input:focus-within {
    border-color: rgba(218,255,71,0.35);
    box-shadow: 0 18px 65px rgba(218,255,71,0.10);
    transform: translateY(-1px);
}
.login-input .material-icons {
    color: rgba(255,255,255,0.52);
    font-size: 20px;
}
.login-input input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
}
.login-input input::placeholder {
    color: rgba(255,255,255,0.45);
}
.login-eye {
    background: transparent;
    border: 0;
    padding: 0;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
}
.login-eye:hover {
    color: rgba(255,255,255,0.9);
}

.login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.15rem;
}
.login-check {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.70);
    font-weight: 700;
    font-size: 0.9rem;
}
.login-check input {
    width: 16px;
    height: 16px;
    accent-color: rgba(218,255,71,0.95);
}
.login-link {
    color: rgba(218,255,71,0.95);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
}
.login-link:hover {
    text-decoration: underline;
}

.login-btn {
    margin-top: 0.2rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 950;
    color: #000;
    background: linear-gradient(90deg, rgba(218,255,71,0.95), rgba(16,185,129,0.92));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 70px rgba(218,255,71,0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 90px rgba(218,255,71,0.22);
    filter: saturate(1.04);
}

.login-note {
    margin-top: 0.55rem;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
}
.login-note .material-icons {
    color: rgba(34,211,238,0.9);
    font-size: 18px;
    margin-top: 1px;
}
.login-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    margin: 1rem 0;
}
.login-alt {
    display: grid;
    gap: 0.65rem;
    padding-bottom: 0.15rem;
}
.login-alt-text {
    color: rgba(255,255,255,0.66);
    font-weight: 800;
    font-size: 0.92rem;
    text-align: center;
}
.login-btn-ghost {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 950;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.login-btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(218,255,71,0.22);
}

.percentage-text {
    color: var(--primary-green);
    font-size: 1.875rem;
    font-weight: 700;
}

.progress-bar-bg {
    background: var(--border-gray);
}

.progress-bar-yellow {
    background: linear-gradient(90deg, var(--cta-yellow) 0%, #F59E0B 100%);
    transition: width 1s ease;
}

.progress-bar-green {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    transition: width 1s ease;
}

.progress-bar-cyan {
    background: linear-gradient(90deg, var(--accent-cyan) 0%, #0891B2 100%);
    transition: width 1s ease;
}

.progress-bar-purple {
    background: linear-gradient(90deg, var(--accent-purple) 0%, #7C3AED 100%);
    transition: width 1s ease;
}

.check-icon-green {
    color: var(--primary-green);
}

/* Stats Section */
.stats-badge {
    background: rgba(218, 255, 71, 0.2);
    border: 2px solid var(--neon-green);
}

.stats-icon-wrapper-primary {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid var(--primary-green);
}

.stats-icon-wrapper-neon {
    background: rgba(218, 255, 71, 0.2);
    border: 2px solid var(--neon-green);
}

.stats-icon-primary {
    color: var(--primary-green);
}

.stats-icon-neon {
    color: var(--neon-green);
}

.stats-number {
    color: var(--text-white);
}

.stats-label {
    color: var(--text-white-muted);
}


/* -------------------------------------- */
/* Mobile refinements for Why Online card */
/* -------------------------------------- */
@media (max-width: 768px) {
    .why-online-merged-card {
        min-height: auto !important;
        height: auto !important;
        padding: 1.75rem 1.5rem !important;
        border-radius: 1.25rem !important;
        border-width: 1px !important;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-online-merged-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .why-online-merged-icon-primary,
    .why-online-merged-icon-neon {
        width: 56px;
        height: 56px;
    }

    .why-online-merged-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .why-online-merged-description,
    .why-online-merged-text,
    .why-online-merged-text-small,
    .why-online-merged-cta {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .why-online-merged-stats {
        display: flex;
        justify-content: space-between;
        gap: 0.75rem;
    }
}
/* Profit With Purpose Section */
.profit-purpose-bg {
    position: relative;
}
.profit-purpose-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.70) 45%, rgba(15,23,42,0.88) 100%),
        radial-gradient(900px 260px at 15% 10%, rgba(218,255,71,0.12), transparent 60%),
        radial-gradient(900px 260px at 85% 90%, rgba(16,185,129,0.14), transparent 60%),
        url('../images/index/profit-with-purpose.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
    z-index: 0;
}
.profit-purpose-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.55), transparent 60%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
}
.profit-purpose-bg > .container {
    position: relative;
    z-index: 2;
}

.profit-purpose-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.profit-purpose-panel {
    border-radius: 22px;
    padding: 2rem;
    background: rgba(17,24,39,0.55);
    border: 1px solid rgba(218,255,71,0.18);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}
.profit-purpose-panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(700px 180px at 10% 0%, rgba(218,255,71,0.12), transparent 60%),
        radial-gradient(700px 180px at 90% 100%, rgba(16,185,129,0.14), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}
.profit-purpose-quote {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
.profit-purpose-quote .headline {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.35rem, 2.5vw, 2.15rem);
    line-height: 1.25;
    color: var(--neon-green);
    text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.profit-purpose-quote .sub {
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.profit-purpose-title {
    color: var(--text-white);
}

.profit-purpose-text {
    color: var(--text-white-muted);
}

.profit-purpose-highlight {
    color: var(--primary-green);
    font-weight: 600;
}

@media (min-width: 1024px) {
    .profit-purpose-layout {
        grid-template-columns: 1fr 1.15fr;
        align-items: end;
        gap: 2rem;
    }
    .profit-purpose-panel { padding: 2.4rem 2.4rem; }
}

@media (max-width: 640px) {
    .profit-purpose-panel { padding: 1.4rem; border-radius: 18px; }
}

/* Business Plan Section */
.plan-section-title {
    color: var(--text-white);
}

.plan-section-subtitle {
    color: var(--text-white-muted);
}

/* Hidden Element */
.hidden-element {
    display: none;
}

/* Security & Payment Section */
.security-section {
    background: var(--bg-dark);
    color: var(--text-white);
}

.security-title {
    color: var(--text-white);
}

.security-title-highlight {
    color: var(--neon-green);
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.security-item {
    background: rgba(255, 255, 255, 0.1);
}

.security-icon-green {
    color: var(--primary-green);
}

/* Security Seal Images */
.security-seal-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    height: 70px;
    width: auto;
}

.security-seal-image {
    max-width: 150px;
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Fallback for missing images */
.security-seal-image:not([src]),
.security-seal-image[src=""] {
    display: none;
}

.security-icon-yellow {
    color: var(--cta-yellow);
}

.security-icon-blue {
    color: #3B82F6;
}

.currency-badge {
    background: #345D9D;
}

.currency-badge-red {
    background: #E61E24;
}

.currency-badge-teal {
    background: #26A17B;
}

.currency-badge-orange {
    background: #F7931A;
}

/* Index - Accepted Currencies (SVG icons) */
.currency-icon {
    width: 40px;
    height: 40px;
    display: block;
}

/* Index - Accepted Currencies (PNG logos, no background) */
.currency-icons-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.currency-icon-plain {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
    user-select: none;
    pointer-events: none;
}
@media (max-width: 480px) {
    .currency-icon-plain {
        width: 54px;
        height: 54px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--text-white);
}

.cta-badge {
    background: rgba(218, 255, 71, 0.2);
    border: 2px solid var(--neon-green);
}

.cta-badge-icon {
    color: var(--neon-green);
}

.cta-title {
    color: var(--text-white);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-outline {
    border-color: var(--text-white);
}

/* Roadmap Banner */
.roadmap-banner-section {
    position: relative;
    min-height: 620px;
    padding: clamp(3rem, 5vw, 5rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-banner-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.roadmap-banner-section:hover .roadmap-banner-background {
    transform: scale(1.15);
}

.roadmap-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(14, 74, 46, 0.85) 0%,
        rgba(2, 11, 8, 0.8) 50%,
        rgba(218, 255, 71, 0.35) 100%);
    z-index: 1;
}

.roadmap-banner-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.roadmap-banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.roadmap-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(218, 255, 71, 0.15);
    border: 1px solid rgba(218, 255, 71, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.roadmap-banner-badge i {
    color: var(--neon-green);
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.roadmap-banner-badge span {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.roadmap-banner-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.roadmap-banner-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 820px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.roadmap-banner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto clamp(1.5rem, 3vw, 3rem);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.roadmap-banner-cta {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.roadmap-banner-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(218, 255, 71, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 255, 71, 0.4);
    background: var(--primary-green);
    color: var(--text-white);
}

.roadmap-banner-btn-primary i {
    transition: transform 0.3s ease;
}

.roadmap-banner-btn-primary:hover i {
    transform: translateY(3px);
}

.roadmap-banner-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeIn 1s ease-out 1s both;
}

/* Roadmap timeline */
.roadmap-section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
    background: #0b1220;
}

.roadmap-timeline {
    position: relative;
    padding-left: 1rem;
    margin: 0 auto;
    max-width: 900px;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(218, 255, 71, 0.6), rgba(16, 185, 129, 0.7));
    opacity: 0.6;
}

.roadmap-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

/* Modern roadmap cards */
.roadmap-timeline-visual {
    position: relative;
    padding: 0 0 3rem;
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.roadmap-timeline-visual::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, rgba(218, 255, 71, 0.6), rgba(16, 185, 129, 0.7));
    transform: translateX(-50%);
    opacity: 0.9;
}

.roadmap-timeline-visual .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 1.25rem;
    align-items: center;
}

.timeline-side {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100%;
}

.timeline-dot {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 0 6px rgba(218, 255, 71, 0.12), 0 15px 30px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(16, 185, 129, 0.45);
    z-index: 2;
}

.roadmap-card-modern {
    position: relative;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(218, 255, 71, 0.15);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.roadmap-card-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(218, 255, 71, 0.08), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.08), transparent 35%);
    z-index: 0;
}

.roadmap-card-modern .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.roadmap-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(218, 255, 71, 0.15), rgba(16, 185, 129, 0.2));
    border: 1px solid rgba(218, 255, 71, 0.25);
    color: var(--text-white);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.roadmap-year-badge .icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(218, 255, 71, 0.15);
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    box-shadow: inset 0 0 0 1px rgba(218, 255, 71, 0.25);
}

.roadmap-phase-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap-card-modern h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.roadmap-card-modern .roadmap-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.5rem;
    color: var(--text-white-muted);
}

.roadmap-card-modern .roadmap-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    line-height: 1.5;
}

.roadmap-card-modern .roadmap-list i {
    color: var(--neon-green);
    margin-top: 0.15rem;
    font-size: 0.95rem;
}

.roadmap-card-modern .roadmap-vision {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(16, 185, 129, 0.18);
    font-weight: 600;
}

.timeline-item:nth-child(odd) .roadmap-card-modern {
    grid-column: 3;
}

.timeline-item:nth-child(even) .roadmap-card-modern {
    grid-column: 1;
    justify-self: end;
}

@media (max-width: 900px) {
    .roadmap-timeline-visual::before {
        left: 12px;
        transform: none;
    }
    .roadmap-timeline-visual .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 2.75rem;
    }
    .timeline-dot {
        left: 0;
        right: auto;
    }
    .timeline-item .roadmap-card-modern {
        grid-column: 1 !important;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .roadmap-banner-title {
        font-size: 2.6rem;
    }
    .roadmap-banner-section {
        min-height: 560px;
    }
}

.roadmap-marker {
    position: absolute;
    left: 0;
    top: 0.35rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.roadmap-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(218, 255, 71, 0.4), rgba(16, 185, 129, 0.5));
    border: 2px solid rgba(218, 255, 71, 0.6);
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.roadmap-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-chip.neon {
    background: rgba(218, 255, 71, 0.18);
    border-color: rgba(218, 255, 71, 0.4);
    color: var(--neon-green);
}

.roadmap-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.75), rgba(17, 24, 39, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.roadmap-item.highlight .roadmap-card {
    border-color: rgba(218, 255, 71, 0.4);
    box-shadow: 0 25px 60px rgba(218, 255, 71, 0.15);
}

.roadmap-item.pinnacle .roadmap-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 0, 0, 0.85));
    border-color: rgba(16, 185, 129, 0.6);
}

.roadmap-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.roadmap-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.roadmap-list li {
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.roadmap-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.roadmap-vision {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(218, 255, 71, 0.08);
    border: 1px solid rgba(218, 255, 71, 0.25);
    color: var(--text-white);
    font-weight: 700;
}

/* New centered rail timeline */
.roadmap-legend {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.25rem;
}

.roadmap-legend .legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.roadmap-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 0 6px rgba(218, 255, 71, 0.15);
}

.roadmap-legend .dot.success {
    background: var(--primary-green);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.18);
}

.roadmap-legend .dot.future {
    background: #6ee7b7;
    box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.15);
}

.roadmap-rail {
    position: relative;
    display: grid;
    gap: 2.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0 3rem;
}

.roadmap-rail-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(218, 255, 71, 0.9), rgba(16, 185, 129, 0.75));
    opacity: 0.9;
    overflow: hidden;
}

.roadmap-rail-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(218, 255, 71, 0) 0%, rgba(218, 255, 71, 0.5) 50%, rgba(16, 185, 129, 0) 100%);
    background-size: 100% 200%;
    animation: lineFlow 3.5s ease-in-out infinite;
}

.roadmap-milestone {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 1rem;
    align-items: stretch;
}

.roadmap-milestone .milestone-node {
    position: relative;
    align-self: center;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.roadmap-milestone .node-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--neon-green);
    border: 2px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 0 8px rgba(218, 255, 71, 0.15), 0 15px 30px rgba(0, 0, 0, 0.35);
    display: inline-block;
    position: relative;
    animation: nodePulse 2.8s ease-in-out infinite;
}

.roadmap-milestone.left .milestone-card {
    grid-column: 1 / span 5;
}

.roadmap-milestone.left .milestone-node {
    grid-column: 6 / span 2;
}

.roadmap-milestone.right .milestone-node {
    grid-column: 6 / span 2;
}

.roadmap-milestone.right .milestone-card {
    grid-column: 8 / span 5;
}

.milestone-card {
    position: relative;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(218, 255, 71, 0.18);
    border-radius: 18px;
    padding: 1.6rem 1.75rem;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.milestone-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(218, 255, 71, 0.08), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(16, 185, 129, 0.08), transparent 40%);
    z-index: 0;
}

.milestone-card-vision {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 30px 70px rgba(16, 185, 129, 0.22);
}

.milestone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.1rem;
}

.milestone-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(218, 255, 71, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    box-shadow: inset 0 0 0 1px rgba(218, 255, 71, 0.25);
}

.badge-year {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.badge-phase {
    font-size: 0.9rem;
    color: var(--text-white-muted);
}

.milestone-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(218, 255, 71, 0.18);
    color: var(--text-white);
    border: 1px solid rgba(218, 255, 71, 0.3);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.milestone-chip.success {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.35);
}

.milestone-chip.future {
    background: rgba(110, 231, 183, 0.18);
    border-color: rgba(110, 231, 183, 0.3);
}

.milestone-card h3 {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    font-size: 1.25rem;
    margin: 0 0 0.9rem;
}

.milestone-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--text-white-muted);
}

.milestone-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    line-height: 1.55;
}

.milestone-list i {
    color: var(--neon-green);
    margin-top: 0.2rem;
}

.milestone-vision {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .roadmap-rail {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .roadmap-rail-line {
        left: 18px;
        transform: none;
    }

    .roadmap-milestone {
        grid-template-columns: 1fr;
        padding-left: 2.75rem;
    }

    .roadmap-milestone .milestone-node {
        grid-column: 1;
        justify-self: flex-start;
    }

    .roadmap-milestone .milestone-card {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    /* Simplified single-column mobile layout for roadmap timeline */
    .roadmap-rail {
        display: block;
        padding: 0 0 2.5rem 1.75rem;
    }

    .roadmap-rail-line {
        left: 10px;
        width: 2px;
    }

    .roadmap-milestone {
        display: block;
        padding-left: 2.25rem;
        margin: 0 0 1.75rem;
    }

    .roadmap-milestone .milestone-node {
        position: absolute;
        left: 10px;
        top: 1.6rem;
        transform: translateX(-50%);
        justify-content: flex-start;
    }

    .roadmap-milestone .milestone-card {
        width: 100%;
    }

    .milestone-card {
        padding: 1.35rem 1.1rem;
    }

    .milestone-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .milestone-chip {
        align-self: flex-start;
    }
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(218, 255, 71, 0.15), 0 15px 30px rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(218, 255, 71, 0.25), 0 18px 36px rgba(0, 0, 0, 0.4);
        transform: scale(1.08);
    }
}

@keyframes lineFlow {
    0% { background-position: 0 0; }
    50% { background-position: 0 100%; }
    100% { background-position: 0 0; }
}

.roadmap-cta-section {
    background: radial-gradient(circle at 20% 20%, rgba(218, 255, 71, 0.15), transparent 35%), 
                radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.18), transparent 30%), 
                linear-gradient(135deg, #0b1a14, #0c271b 50%, #0f3323);
}

.roadmap-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(218, 255, 71, 0.3);
}

.roadmap-btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-green);
    color: var(--text-white);
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.35);
}

.roadmap-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
}

.roadmap-btn-ghost:hover {
    transform: translateY(-3px);
    border-color: rgba(218, 255, 71, 0.5);
    color: var(--neon-green);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
    .roadmap-banner-section {
        height: 60vh;
        min-height: 500px;
    }

    .roadmap-banner-title {
        font-size: 3rem;
    }

    .roadmap-banner-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .roadmap-banner-section {
        /* Let content define the height on mobile to avoid clipping */
        height: auto;
        min-height: 0;
        padding-top: 4.5rem;
        padding-bottom: 3rem;
        align-items: flex-start;
        overflow: visible;
    }

    .roadmap-banner-title {
        font-size: 2.5rem;
    }

    .roadmap-banner-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .roadmap-banner-background {
        background-attachment: scroll;
    }

    .roadmap-timeline::before {
        left: 8px;
    }

    .roadmap-marker {
        left: -4px;
    }

    .roadmap-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .roadmap-item {
        padding-left: 2.25rem;
    }
}
/* About Us Interactive Banner */
.about-banner-section {
    position: relative;
    /* Allow content to breathe to avoid overlap (stats/CTA/scroll-indicator) */
    height: clamp(620px, 75vh, 920px);
    min-height: 620px;
    max-height: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.about-banner-section:hover .about-banner-background {
    transform: scale(1.15);
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(14, 74, 46, 0.85) 0%, 
        rgba(2, 11, 8, 0.75) 50%,
        rgba(16, 185, 129, 0.6) 100%);
    z-index: 1;
}

.about-banner-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--neon-green);
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 16s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

.about-banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    /* Extra bottom padding so CTA never overlaps the scroll indicator */
    padding: 4.5rem 0 7.5rem;
}

.about-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(218, 255, 71, 0.15);
    border: 1px solid rgba(218, 255, 71, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.about-banner-badge i {
    color: var(--neon-green);
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.about-banner-badge span {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-banner-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-banner-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.about-banner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(218, 255, 71, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-green);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(218, 255, 71, 0.5);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-banner-cta {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.about-banner-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(218, 255, 71, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 255, 71, 0.4);
    background: var(--primary-green);
    color: var(--text-white);
}

.about-banner-btn-primary i {
    transition: transform 0.3s ease;
}

.about-banner-btn-primary:hover i {
    transform: translateY(3px);
}

.about-banner-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeIn 1s ease-out 1s both;
}

/* If viewport height is short, hide scroll indicator to prevent overlap */
@media (max-height: 720px) {
    .about-banner-scroll-indicator {
        display: none;
    }
    .about-banner-content {
        padding-bottom: 4.5rem;
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-banner-section {
        height: 60vh;
        min-height: 500px;
    }
    
    .about-banner-title {
        font-size: 3rem;
    }
    
    .about-banner-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .about-banner-section {
        /* Let mobile content breathe – avoid fixed banner height */
        height: auto;
        min-height: 0;
        padding-top: 4.5rem;
        padding-bottom: 3rem;
        align-items: flex-start;
        overflow: visible;
    }
    
    .about-banner-title {
        font-size: 2.5rem;
    }
    
    .about-banner-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-banner-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-banner-background {
        background-attachment: scroll;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

