:root {
    --neon-green: #096235;
    --dark-green: #E8F5E9;
    --bg-dark: #ffffff;
    --bg-darker: #F4F7F6;
    --text-light: #0f216a;
    --text-muted: #061950;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.1);
    --font-heading: 'Syncopate', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* --- HERO UPPER LAYER IMAGE --- */
.hero-upper-layer-img {
    position: absolute;
    bottom: 4%; /* Let it anchor near the bottom */
    right: 5%;   /* Push it to the right side */
    left: 48%;
    width: 60%;  /* Scale it down so it doesn't overwhelm */
    max-width: 5000px;
    max-height: 5400px;
    z-index: 1; /* 0 is the background orbs, 2 is your glass text card */
    animation: floatCar 5s ease-in-out infinite alternate;
    
}

/* --- AMBIENT BACKGROUND EFFECTS --- */
.hero-scene-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-scene-effects::before,
.hero-scene-effects::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    animation: pulseOrbs 10s ease-in-out infinite alternate;
}

.hero-scene-effects::before {
    width: 600px;
    height: 600px;
    background: var(--neon-green);
    top: -10%;
    right: -10%;
    
}

.floating-particles .particle {
    position: absolute;
    background: var(--neon-green);
    opacity: 0.1;
    border-radius: 4px;
    z-index: 1;
}

.p1 { width: 40px; height: 40px; top: 20%; right: 25%; animation: float 8s infinite; }
.p2 { width: 20px; height: 20px; top: 60%; right: 40%; animation: float 12s infinite reverse; }
.p3 { width: 60px; height: 60px; bottom: 15%; right: 15%; animation: float 10s infinite; opacity: 0.05 !important; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(20deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero-upper-layer-img {
    
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.1)); /* Soft shadow for 3D depth */
    transition: transform 0.3s ease-out;
}

/* Subtle mouse-move tilt effect (Optional: requires small JS) */
.hero-upper-layer-img:hover {
    transform: translateY(-25px) scale(1.02);
}

/* Soft Blue/Dark-Green Orb behind the Text */
.hero-scene-effects::after {
    width: 500px;
    height: 500px;
    background: var(--text-light);
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
}
 

@keyframes pulseOrbs {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, -30px); }
}

@keyframes floatCar {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}
/* --- GLOBAL UPDATES & BACKGROUND IMAGE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- UTILITIES & ANIMATIONS --- */
.hidden {
    display: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--neon-green);
    background: rgba(0, 230, 118, 0.05);
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
}

/* --- BRAND LOGO IMAGE --- */
.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 32px;
    }
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
}

.brand-logo span {
    color: var(--neon-green);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
   
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 650;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-green) !important;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu-toggle {
    color: var(--text-light) !important;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    overflow: hidden;
    background: linear-gradient(110deg, #ffffff 50%, #f0fdf4 50%);
    
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF; /* Bright white base */
   
    z-index: 0;
}

.hero-scene-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-scene-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/.png');
    background-size: cover;
    background-position: bottom;
    z-index: 0;
    padding: 520px;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
    animation: fadeUp 1.3s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Center horizontally */
    text-align: left; /* Center text */
    margin:left; /* Center block */
    gap: 10px;
}

.hero-badge {
    margin-top: 0 !important;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-top: 0px;
    color: var(--text-light);
    padding-top: 10px;
}

.hero h1 span {
    color: var(--neon-green);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px !important;
    max-width: 550px;
    font-weight: 500;
    margin-left: 1;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center; /* Centering */
    gap: 15px;
}

.hero-overlay {
    background: linear-gradient(90deg, var(--bg-darker) 0%, rgba(255, 255, 255, 0.4) 100%) !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- GLOBAL TEXT COLORS --- */
.res-val,
.loc-name,
.charger-details h3,
.spec-value,
.gallery-overlay p,
.slide-text h2,
.app-content h2 {
    color: var(--text-light) !important;
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 80%) !important;
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 60px 5%;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--neon-green);
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 120px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
    background: transparent;
}

.about-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.08);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-title span {
    color: var(--neon-green);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.benefit-list {
    list-style: none;
    margin-bottom: 45px;
}

.benefit-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.05rem;
}

.benefit-list i {
    color: var(--neon-green);
    background: rgba(0, 230, 118, 0.1);
    padding: 12px;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 120px 5%;
    background: var(--bg-darker);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--neon-green);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- PRODUCTS SECTION --- */
.products-section {
    padding: 120px 5%;
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.product-card {
    background: linear-gradient(145deg, var(--glass-bg), rgba(88, 156, 107, 0.818));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neon-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 230, 118, 0.2);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card i {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.product-specs {
    list-style: none;
    margin: 25px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: left;
}

.product-specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-specs i {
    font-size: 1rem;
    color: var(--neon-green);
    margin: 0;
}

/* --- APP PROMO SECTION --- */
.app-promo-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d7743a2 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.app-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.app-content {
    flex: 1;
}

.app-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-content h2 span {
    color: var(--neon-green);
}

.app-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.step-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.store-buttons {
    display: flex;
    gap: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    padding: 12px 25px;
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.store-btn:hover {
    border-color: var(--neon-green);
    background: rgba(0, 230, 118, 0.05);
    transform: translateY(-3px);
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border: 10px solid #222;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 230, 118, 0.2);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--dark-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    text-align: center;
    padding: 20px;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #222;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- CLIENTS SECTION --- */
.clients-section {
    padding: 60px 5%;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.clients-section h3 {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: calc(200px * 14);
    animation: scrollLogos 17s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.client-logo {
    width: 150px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    transition: all 0.2s ease;
    cursor: pointer;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); }
}

.bg-white-fix {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 8px;
}

.bg-white-fix:hover {
    filter: grayscale(0%) opacity(1);
}



/* --- MOBILE HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--neon-green);
}

/* --- CALCULATOR COMPONENT --- */
.master-calc-section {
    padding: 50px 5%;
    background: var(--bg-darker);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.roi-box {
    --roi-ng: #096235;
    --roi-ng-dim: rgba(9, 98, 53, 0.08);
    --roi-ng-mid: rgba(9, 98, 53, 0.15);
    --roi-amber: #d98200;
    --roi-red: #d32f2f;
    --roi-blue: #0288d1;
    --roi-purple: #7e57c2;
    --roi-border: rgba(0, 0, 0, 0.12);
    --roi-border-hi: rgba(9, 98, 53, 0.25);
    --roi-muted: #555555;
    --roi-light: #1A1F1B;
    --roi-mono: 'DM Mono', monospace;
    --roi-sans: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--roi-light);
    font-family: var(--roi-sans);
    background: #FFFFFF;
    border: 1px solid var(--roi-border-hi);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(9, 98, 53, 0.08);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 680px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.scrollable-col {
    overflow-y: auto;
    padding: 30px;
}

.scrollable-col::-webkit-scrollbar { width: 6px; }
.scrollable-col::-webkit-scrollbar-track { background: transparent; }
.scrollable-col::-webkit-scrollbar-thumb {
    background: rgba(9, 98, 53, 0.25);
    border-radius: 10px;
}
.scrollable-col::-webkit-scrollbar-thumb:hover {
    background: rgba(9, 98, 53, 0.5);
}

.inputs-col { background: #F9FBFA; }
.results-panel { background: #FFFFFF; border-left: 1px solid var(--roi-border); }

.panel {
    background: #FFFFFF;
    border: 1px solid var(--roi-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.panel:last-child { margin-bottom: 0; }

.ph {
    background: var(--roi-ng-dim);
    border-bottom: 1px solid var(--roi-border);
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.ph .num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--roi-ng);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ph h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--roi-light);
}

.ph .tag {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--roi-muted);
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 10px;
    border: 1px solid var(--roi-border);
    font-weight: 500;
}

.pb { padding: 22px; }

.sl {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--roi-ng);
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--roi-border)
}

.styled-select {
    width: 100%;
    padding: 12px 15px;
    background: #FFFFFF;
    border: 1px solid var(--roi-border);
    color: var(--roi-light);
    border-radius: 9px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
    font-family: var(--roi-sans);
}

.styled-select:focus { border-color: var(--roi-ng); }
.styled-select option, .styled-select optgroup { background: #fff; color: #000; }

.charger-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.unit-box {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #FFFFFF;
    border: 1px solid var(--roi-border);
    border-radius: 9px;
    padding: 8px 11px;
    white-space: nowrap;
}

.unit-box label { color: var(--roi-muted); font-size: 0.8rem; font-weight: 500; }

.unit-box input {
    width: 44px;
    background: transparent;
    border: none;
    color: var(--roi-ng);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    outline: none;
    font-family: var(--roi-mono);
}

.unit-box .arrs { display: flex; flex-direction: column; gap: 2px; }

.unit-box .arrs button {
    background: var(--roi-ng-dim);
    border: none;
    color: var(--roi-ng);
    border-radius: 4px;
    width: 19px;
    height: 15px;
    font-size: 9px;
    cursor: pointer;
    line-height: 1;
    transition: background .2s;
}

.unit-box .arrs button:hover { background: var(--roi-ng-mid); }

.input-row { display: flex; gap: 10px; margin-bottom: 14px; }
.input-row:last-child { margin-bottom: 0; }

.ib {
    flex: 1;
    background: #F9FBFA;
    border: 1px solid var(--roi-border);
    border-radius: 9px;
    padding: 11px 13px;
    transition: border-color .2s;
}

.ib:focus-within { border-color: var(--roi-ng); }
.ib label {
    display: block;
    font-size: 0.8rem;
    color: var(--roi-muted);
    margin-bottom: 3px;
    font-weight: 500;
}

.ib .ir { display: flex; align-items: center; gap: 3px; }
.ib .pfx { color: var(--roi-muted); font-size: 0.9rem; }

.ib input {
    background: transparent;
    border: none;
    color: var(--roi-light);
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    outline: none;
    font-family: var(--roi-mono);
}

.amc-banner {
    background: var(--roi-ng-dim);
    border: 1px solid var(--roi-border-hi);
    border-radius: 9px;
    padding: 11px 15px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.amc-banner .ico { color: var(--roi-ng); font-size: 1.1rem; }
.amc-banner .al { font-size: 0.8rem; color: var(--roi-muted); }
.amc-banner .al strong { color: var(--roi-light); display: block; font-size: 0.9rem; }
.amc-val { color: var(--roi-ng); font-weight: 700; font-size: 1.05rem; font-family: var(--roi-mono); }

.infobox {
    background: rgba(217, 130, 0, 0.06);
    border: 1px solid rgba(217, 130, 0, 0.2);
    border-radius: 9px;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #A06000;
    line-height: 1.6;
    display: flex;
    gap: 9px;
    margin-top: 12px;
    font-weight: 500;
}

.infobox i { color: var(--roi-amber); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.infobox.blue { background: rgba(2, 136, 209, 0.06); border-color: rgba(2, 136, 209, 0.2); color: #01579b; }
.infobox.blue i { color: var(--roi-blue); }
.infobox.green { background: var(--roi-ng-dim); border-color: var(--roi-border-hi); color: #064d29; }
.infobox.green i { color: var(--roi-ng); }

.infra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 4px; }

.cc {
    border: 1px solid var(--roi-border);
    border-radius: 9px;
    padding: 11px 13px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #FFFFFF;
}

.cc.full { grid-column: 1/-1; }
.cc:hover { border-color: var(--roi-border-hi); }
.cc.active { border-color: var(--roi-ng); background: var(--roi-ng-dim); }
.cc input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }

.ct { display: flex; align-items: center; gap: 7px; }
.cbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}
.cc.active .cbox { background: var(--roi-ng); border-color: var(--roi-ng); color: #fff; }
.cn { font-size: 0.85rem; font-weight: 600; color: var(--roi-light); }

.cp {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #F9FBFA;
    border: 1px solid var(--roi-border);
    border-radius: 5px;
    padding: 4px 7px;
    margin-top: 2px;
}
.cp span { color: var(--roi-muted); font-size: 0.8rem; }
.cp input {
    background: transparent;
    border: none;
    color: var(--roi-ng);
    font-weight: 600;
    font-size: 0.9rem;
    width: 68px;
    outline: none;
    text-align: right;
    font-family: var(--roi-mono);
}

.land-btns, .fin-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.fin-btns { margin-bottom: 16px; }
.lbtn, .fbtn, .tbtn {
    padding: 13px;
    border-radius: 9px;
    border: 1px solid var(--roi-border);
    background: #FFFFFF;
    cursor: pointer;
    text-align: center;
    transition: all .25s;
    color: var(--roi-muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.lbtn i, .fbtn i { display: block; font-size: 1.2rem; margin-bottom: 5px; }
.lbtn.active, .fbtn.active, .tbtn.active { border-color: var(--roi-ng); background: var(--roi-ng-dim); color: var(--roi-ng); }

.tax-btns { display: flex; gap: 8px; margin-top: 8px; }
.tbtn { flex: 1; padding: 8px 4px; }

.tog-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.tog-info .tl { font-size: 0.9rem; font-weight: 600; color: var(--roi-light); }
.tog-info .ts { font-size: 0.8rem; color: var(--roi-muted); margin-top: 2px; }
.tog-sw {
    width: 42px;
    height: 22px;
    background: #d0d0d0;
    border: 1px solid #bbb;
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.tog-sw.on { background: var(--roi-ng); border-color: var(--roi-ng); }
.tog-sw::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    transition: all .2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.tog-sw.on::after { left: 22px; }

.sg { margin-bottom: 20px; }
.sh { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.sh label { font-size: 0.9rem; font-weight: 600; color: var(--roi-light); }
.sh .sv { font-weight: 700; font-size: 1rem; color: var(--roi-ng); font-family: var(--roi-mono); }
.sh .sv.dim { color: var(--roi-muted); }

.cs {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    outline: none;
    cursor: pointer;
}
.cs::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--roi-ng);
    box-shadow: 0 0 8px rgba(9, 98, 53, 0.4);
    transition: transform .15s;
}
.cs::-webkit-slider-thumb:hover { transform: scale(1.2); }

.range-hints {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--roi-muted);
    margin-top: 6px;
    font-weight: 500;
}

.anc-item {
    border: 1px solid var(--roi-border);
    border-radius: 9px;
    padding: 13px;
    margin-bottom: 9px;
    transition: border-color .2s;
    background: #FFF;
}
.anc-item.on { border-color: var(--roi-ng); background: var(--roi-ng-dim); }
.anc-header { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.anc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(9, 98, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roi-ng);
    font-size: 1rem;
}
.anc-info { flex: 1; }
.anc-info .an { font-size: 0.9rem; font-weight: 600; color: var(--roi-light); }
.anc-info .as { font-size: 0.75rem; color: var(--roi-muted); margin-top: 2px; }
.anc-val { font-family: var(--roi-mono); font-size: 0.95rem; color: var(--roi-ng); font-weight: 600; }
.anc-body { margin-top: 12px; display: none; }
.anc-item.on .anc-body { display: block; }

.capex-sec, .pnl-sec, .fame-sec, .cta-sec {
    padding: 0 0 25px;
    border-bottom: 1px solid var(--roi-border);
    margin-bottom: 25px;
}
.cta-sec { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.capex-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--roi-muted);
    margin-bottom: 12px;
}
.capex-row { display: flex; justify-content: space-between; align-items: flex-end; }
.capex-amt {
    font-family: var(--roi-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--roi-light);
    letter-spacing: -0.5px;
}

.pnl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.9rem;
}
.pnl-row:last-child { border-bottom: none; }
.pnl-row .pl { color: var(--roi-muted); font-weight: 500; }
.pnl-row .pl i { width: 20px; color: var(--roi-ng); opacity: 0.8; }
.pnl-row .pa { font-weight: 600; font-family: var(--roi-mono); font-size: 0.95rem; }
.pnl-row .pa.g { color: var(--roi-ng); }
.pnl-row .pa.r { color: var(--roi-red); }
.pnl-row .pa.a { color: var(--roi-amber); }

.pnl-div { height: 1px; background: var(--roi-border); margin: 10px 0; }
.pnl-total { font-size: 0.95rem !important; font-weight: 700 !important; border-bottom: none; }
.pnl-total .pl { color: var(--roi-light); }

.emi-sec {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--roi-border);
    background: rgba(217, 130, 0, 0.04);
    display: none;
    margin-bottom: 25px;
}
.emi-sec.show { display: block; }
.emi-result {
    background: #FFF;
    border: 1px solid var(--roi-border);
    border-radius: 9px;
    padding: 15px;
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.emi-cell { text-align: center; }
.emi-cell .ev {
    font-family: var(--roi-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--roi-ng);
    margin-bottom: 4px;
}
.emi-cell .ev.amber { color: var(--roi-amber); }
.emi-cell .el { font-size: 0.75rem; color: var(--roi-muted); font-weight: 500; }

.emi-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 6px 0;
    font-weight: 500;
}
.emi-detail-row .el { color: var(--roi-muted); }
.emi-detail-row .ev { font-family: var(--roi-mono); font-weight: 700; color: var(--roi-amber); }
.emi-detail-row .ev.pos { color: var(--roi-ng); }

.net-hero {
    text-align: center;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid var(--roi-border);
    background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(9, 98, 53, 0.08) 0%, transparent 80%);
    margin-bottom: 25px;
}
.net-hero .nl {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--roi-muted);
}
.net-hero .na {
    font-family: var(--roi-mono);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 8px 0 5px;
}
.net-hero .na.pos { color: var(--roi-ng); }
.net-hero .na.neg { color: var(--roi-red); }
.net-hero .ns { font-size: 0.8rem; color: var(--roi-muted); font-weight: 500; }

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--roi-border);
    border: 1px solid var(--roi-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}
.metric { background: #FFF; padding: 18px 10px; text-align: center; }
.metric .mv {
    font-family: var(--roi-mono);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--roi-ng);
    margin-bottom: 5px;
}
.metric .mk {
    font-size: 0.7rem;
    color: var(--roi-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
    font-weight: 600;
}

.tax-benefit {
    background: rgba(126, 87, 194, 0.06);
    border: 1px solid rgba(126, 87, 194, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: none;
}
.tax-benefit.show { display: block; }
.tb-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 5px 0;
    font-weight: 500;
}
.tb-row .tl { color: var(--roi-muted); }
.tb-row .tv { font-family: var(--roi-mono); font-weight: 600; color: var(--roi-purple); }

.btn-cta {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: var(--roi-ng);
    color: #FFF;
    font-family: var(--roi-sans);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 8px 24px rgba(9, 98, 53, 0.3);
}
.btn-cta:hover {
    background: #0b7a42;
    box-shadow: 0 12px 30px rgba(9, 98, 53, 0.4);
    transform: translateY(-2px);
}

.msedcl-note {
    background: rgba(217, 130, 0, 0.06);
    border: 1px solid rgba(217, 130, 0, 0.25);
    border-radius: 9px;
    padding: 14px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #A06000;
    line-height: 1.6;
    font-weight: 500;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--roi-muted);
    margin-top: 12px;
    line-height: 1.6;
    text-align: justify;
}

.calc-group select,
.calc-group input,
.search-box {
    background: #FFFFFF !important;
    color: var(--text-light) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

/* CHATBOT & WHATSAPP */
.bot-toggle-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background:#00c465; color: var(--bg-darker); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; cursor: pointer; box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4); z-index: 9999; border: none; transition: transform 0.3s; }
.bot-toggle-btn:hover { transform: scale(1.1) rotate(5deg); }
.bot-widget-container { position: fixed; bottom: 100px; right: 30px; width: 380px; height: 550px; background: var(--bg-darker); border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); display: none; flex-direction: column; overflow: hidden; z-index: 9999; border: 1px solid var(--glass-border); font-family: var(--font-body); }
.bot-header { background: linear-gradient(135deg, var(--bg-dark) 0%, #0a1f0f 100%); color: var(--text-light); padding: 18px; text-align: center; font-weight: 600; font-family: var(--font-heading); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass-border);}
.bot-header button { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 18px; transition: color 0.3s;}
.bot-header button:hover { color: var(--neon-green); }
.bot-messages { flex: 1; padding: 20px; overflow-y: auto; background-color: var(--bg-darker); scroll-behavior: smooth; }
.bot-bubble { margin: 8px 0; padding: 12px 16px; border-radius: 14px; max-width: 85%; font-size: 0.9rem; line-height: 1.5; word-wrap: break-word; }
.ai-msg { background-color: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-light); align-self: flex-start; border-bottom-left-radius: 4px; }
.user-msg { background-color: var(--dark-green); color: var(--text-light); margin-left: auto; border-bottom-right-radius: 4px; }
.bot-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 15px; background: var(--bg-dark); border-top: 1px solid var(--glass-border); justify-content: center; }
.bot-quick-btn { background: transparent; border: 1px solid var(--neon-green); color: var(--neon-green); padding: 8px 14px; border-radius: 20px; font-size: 0.8rem; cursor: pointer; transition: 0.3s; font-weight: 500;}
.bot-quick-btn:hover { background: rgba(0, 230, 118, 0.1); }
.bot-input-area { display: flex; padding: 15px; border-top: 1px solid var(--glass-border); background: var(--bg-dark); }
.bot-input-area input { flex: 1; padding: 12px 18px; border: 1px solid var(--glass-border); background: rgba(0,0,0,0.5); color: white; border-radius: 25px; outline: none; font-size: 0.9rem; }
.bot-input-area input:focus { border-color: var(--neon-green); }
.bot-input-area button { margin-left: 10px; padding: 0 20px; background: var(--neon-green); color: var(--bg-darker); border: none; border-radius: 25px; cursor: pointer; transition: 0.3s;}
.bot-input-area button:hover { background: #00c465; }
.lang-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #444;
  background: transparent;
  color: #aaa;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}
.active-lang {
  background: var(--neon-green);
  color: #000;
  border-color: var(--neon-green);
  font-weight: bold;
}

.whatsapp-float-btn {
    position: fixed; bottom: 100px; right: 30px; width: 60px; height: 60px;
    background-color: #25D366; color: #FFF; border-radius: 50%; display: flex;
    justify-content: center; align-items: center; font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 9998;
    transition: all 0.3s ease; text-decoration: none;
}
.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(-10deg); background-color: #20BA5C; color: #FFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .bot-toggle-btn { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .whatsapp-float-btn { bottom: 85px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
    .bot-widget-container { width: 90%; right: 5%; bottom: 90px; }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.8rem; }
    .about-section { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .app-grid { flex-direction: column; text-align: center; }
    .step-item { flex-direction: column; align-items: center; text-align: center; }
    .store-buttons { justify-content: center; flex-wrap: wrap; }
    .master-container { grid-template-columns: 1fr; }
    .result-panel { position: relative; top: 0; }
    .roi-box { grid-template-columns: 1fr; height: 800px; }
    .results-panel { border-left: none; border-top: 1px solid var(--roi-border); }
}

@media (max-width: 768px) {

    .hero {

    min-height: 980px !important;

    padding-bottom: 120px !important;
}
   .hero-upper-layer-img {
        width: 160%;      
        left: -30%;       
        right: auto;
        bottom: 15%;      
        opacity: 0.25; 
        z-index: 1 !important;; 
    }

    
    .hero-ripples { 
        position: absolute !important;
        right: auto !important; 
        top: auto !important;
        left: 50% !important;      
        bottom: 35% !important; 
        transform: translateX(-50%) !important; 
        z-index: 0 !important;     
        animation: mobileRipplesIntro 2.5s ease-in-out forwards !important;
    }
    @keyframes mobileRipplesIntro {
        0%   { opacity: 0; }
        25%  { opacity: 1; }     
        60%  { opacity: 1; }
        100% { opacity: 0.15; }   
    }
    .hero-ripples span {
        z-index: -0!important;
    }

    .navbar {
        padding: 10px 4%;
        background: rgba(253, 255, 253, 0.95) !important;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }
    .nav-logo-img { height: 40px; width: auto; object-fit: contain; }
    .nav-controls { display: flex; align-items: center; gap: 8px !important; }
    .persistent-app-btn {
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        font-size: 0;
    }
    .persistent-app-btn i { font-size: 1rem; margin: 0 !important; }
    .persistent-app-btn .app-btn-text,
    .persistent-app-btn span:not(i) { display: none !important; }
    .hide-on-tiny { display: none; }
    .menu-toggle {
        display: block;
        font-size: 1.6rem;
        margin-left: 0;
        cursor: pointer;
        position: relative;
        z-index: 9999;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98) !important;
        flex-direction: column;
        gap: 0 !important;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        display: none;
        text-align: center;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 0;
        margin: 0;
    }
    .nav-links a {
        display: block;
        padding: 10px 0;
        margin: 0;
    }
    .nav-links.active { display: flex; animation: slideDown 0.3s ease forwards; }
    .mobile-only-link { display: block !important; }

    .hero { padding-top: 80px; z-index: 5; align-items: flex-start; }
    .hero h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 0; }
    .hero p { font-size: 1rem; margin-bottom: 0; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 12px; margin-top: 10px; }
    .hero-buttons .btn { text-align: center; width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .logo-track { gap: 40px; }
    .client-logo { width: 100px; }
    .checkbox-grid { grid-template-columns: 1fr; }

    .bot-toggle-btn { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .whatsapp-float-btn { bottom: 85px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
    .bot-widget-container { width: 90%; right: 5%; bottom: 90px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpCar {
    from { opacity: 0; transform: translateY(150px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ripples {
    position: absolute;
    bottom: 50%;
    right: 22%;
    width: 0;
    height: 0;
    z-index: -0;         
    pointer-events: none;
    overflow: visible; 
}

.hero-ripples span {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #4ade80;          
    background: rgba(2, 142, 53, 0.081);
    transform: translate(-50%, -50%) scale(0);
    animation: ripplePulse 5s ease-out infinite;
    opacity: 15%;
}

.hero-ripples span:nth-child(1) {
    width: 180px; height: 180px;
    animation-delay: 1ms;
    border-color: rgba(136, 218, 163, 0.85);
}
.hero-ripples span:nth-child(2) {
    width: 600px; height: 600px;
    animation-delay: 1s;
    border-color: rgba(74, 222, 128, 0.65);
}
.hero-ripples span:nth-child(3) {
    width: 790px; height: 790px;
    animation-delay: 1s;
    border-color: rgba(74, 222, 128, 0.45);
}
.hero-ripples span:nth-child(4) {
    width: 990px; height: 990px;
    animation-delay: 1s;
    border-color: rgba(74, 222, 128, 0.28);
}
.hero-ripples span:nth-child(5) {
    width: 1190px; height: 1190px;
    animation-delay: 1s;
    border-color: rgba(74, 222, 128, 0.14);
}
.hero-ripples span:nth-child(6) {
    width: 1390px; height: 1390px;
    animation-delay: 1s;
    border-color: rgba(74, 222, 128, 0.14);
}
@keyframes ripplePulse {
    0%   { opacity: 0;   transform: translate(-50%, -50%) scale(0.2); }
    15%  { opacity: 1; }
    70%  { opacity: 0.5; }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(1); }
}

.hero-ticker-wrap {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-ticker {
    display: flex;
    gap: 0;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.hero-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(9, 98, 53, 0.55);
    white-space: nowrap;
}

.hero-ticker-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon-green);
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-kpis {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.kpi-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(9, 98, 53, 0.14);
    border-radius: 40px;
    padding: 9px 18px 9px 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(9, 98, 53, 0.08);
    animation: kpiFloat 3.5s ease-in-out infinite alternate;
    transition: box-shadow 0.3s;
}

.kpi-chip:hover {
    box-shadow: 0 6px 24px rgba(9, 98, 53, 0.18);
    transform: translateY(-3px);
}

.kpi-chip:nth-child(2) { animation-delay: 0.6s; }
.kpi-chip:nth-child(3) { animation-delay: 1.2s; }

.kpi-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4f5e2 0%, #a8e6c3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--neon-green);
    flex-shrink: 0;
}

.kpi-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
}

.kpi-text span {
    font-size: 0.68rem;
    color: rgba(9, 98, 53, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes kpiFloat {
    0%   { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}


.hero-trust {
    position: absolute;
    bottom: 65px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 22px;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 1.4s forwards;
}

.hero-trust-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(9, 98, 53, 0.45);
    white-space: nowrap;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(9, 98, 53, 0.12);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neon-green);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    transition: all 0.25s;
}

.hero-trust-badge:hover {
    border-color: rgba(9, 98, 53, 0.35);
    box-shadow: 0 4px 14px rgba(9, 98, 53, 0.1);
}

/* --- VERTICAL SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 70px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 1.8s forwards;
}

.scroll-indicator span {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(9, 98, 53, 0.4);
    writing-mode: vertical-rl;
    font-weight: 700;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(9,98,53,0.5), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
    0%   { top: -100%; }
    100% { top: 200%; }
}


.hero-badge    { opacity: 0; animation: fadeUp 0.9s ease-out 0.2s forwards; }
.hero h1       { opacity: 0; animation: fadeUp 0.9s ease-out 0.45s forwards; }
.hero p        { opacity: 0; animation: fadeUp 0.9s ease-out 0.65s forwards; }
.hero-buttons  { opacity: 0; animation: fadeUp 0.9s ease-out 0.85s forwards; }
.hero-kpis     { opacity: 0; animation: fadeUp 0.9s ease-out 1.05s forwards; }


@media (max-width: 768px) {

    .hero-upper-layer-img {
        width: 160%;
        left: -30%;
        right: auto;
        bottom: 15%;
        margin-top: 50px;
        z-index: 1 !important;
        animation: mobileImageIntro 2.5s ease-in-out forwards !important;
    }
    @keyframes mobileImageIntro {
        0% { opacity: 0; transform: scale(1.05); }
        25% { opacity: 1; transform: scale(1); }      
        60% { opacity: 1; transform: scale(1); }      
        100% { opacity: 0.15; transform: scale(1); } 
    }
    .hero-badge    { animation-delay: 2.0s !important; }
    .hero h1       { animation-delay: 2.2s !important; }
    .hero p        { animation-delay: 2.4s !important; }
    .hero-buttons  { animation-delay: 2.6s !important; }
    .hero-kpis     { animation-delay: 2.8s !important; }
}
/* ==========================================================================
   HIDE WIDGET ON SMARTPHONES
   ========================================================================== */
@media (max-width: 768px) {
    .sunarth-horizontal-widget {
        display: none !important;
    }
}