/* Global CSS Design System - Secure Shutdown */
/* Enhanced Version with Inter Font, Animations, and Premium Effects */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Default Light Theme Variables */
:root {
    --bg-color: #F8FAFC;
    --card-bg: #FFFFFF;
    --card-secondary: #F1F5F9;
    --text-color: #0F172A;
    --text-muted: #475569;
    --text-dim: #94A3B8;
    --border-color: #E2E8F0;
    --primary-color: #15803D;
    --primary-hover: #16A34A;
    --glow-color: rgba(21, 128, 61, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.06);
    --font-heading: 'Inter', Arial, Helvetica, sans-serif;
    --font-body: 'Inter', Arial, Helvetica, sans-serif;
    --success-color: #16A34A;
    --warning-color: #F59E0B;
    --error-color: #DC2626;
}

/* Dark Theme Override (App Portal Optional) */
body.dark-theme {
    --bg-color: #06090E;
    --card-bg: #0F172A;
    --card-secondary: #1E293B;
    --text-color: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-color: #22C55E;
    --primary-hover: #4ADE80;
    --glow-color: rgba(34, 197, 94, 0.25);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --success-color: #22C55E;
    --error-color: #EF4444;
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color) !important;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container & Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass:hover {
    border-color: rgba(21, 128, 61, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-color);
}

/* BUTTONS: Dark Green to Black Gradient with White Text Across All Pages */
.btn, 
.btn-primary, 
.btn-secondary, 
.dl-btn, 
.phone-btn-demo,
button[type="submit"] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(34, 197, 94, 0.4) !important;
    background: linear-gradient(135deg, #15803D 0%, #0B3F1D 50%, #030F07 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(11, 63, 29, 0.35) !important;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn *, 
.btn-primary *, 
.btn-secondary *, 
.dl-btn *, 
.phone-btn-demo *,
button[type="submit"] * {
    color: #FFFFFF !important;
}

.btn:hover, 
.btn-primary:hover, 
.btn-secondary:hover, 
.dl-btn:hover, 
.phone-btn-demo:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 50%, #0B3F1D 100%) !important;
    color: #FFFFFF !important;
    border-color: rgba(74, 222, 128, 0.7) !important;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.45) !important;
    transform: translateY(-2px);
}

/* Button Shine Effect Animation */
.btn::after, 
.btn-primary::after, 
.btn-secondary::after, 
.dl-btn::after, 
.phone-btn-demo::after,
button[type="submit"]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after, 
.btn-primary:hover::after, 
.btn-secondary:hover::after, 
.dl-btn:hover::after, 
.phone-btn-demo:hover::after,
button[type="submit"]:hover::after {
    transform: rotate(30deg) translateX(100%);
}

/* Auth Cards - 0.8px Solid Dark Green & Black Gradient Border Effect */
.auth-card {
    position: relative;
    max-width: 440px;
    margin: 40px auto;
    padding: 36px 32px;
    border-radius: 18px;
    background: var(--card-bg);
    border: 0.8px solid #15803D !important;
    box-shadow: 0 12px 35px rgba(21, 128, 61, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 2;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 0.8px;
    background: linear-gradient(135deg, #15803D 0%, #0B3F1D 50%, #000000 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

/* Auth Page Floating Background Particle Container */
.auth-floating-wrapper {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 16px;
}

.auth-floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 128, 61, 0.22) 0%, rgba(11, 63, 29, 0.05) 70%, transparent 100%);
    filter: blur(3px);
    animation: floatAuthShape 8s ease-in-out infinite alternate;
}

.auth-shape-1 {
    width: 220px;
    height: 220px;
    top: 10%;
    left: 10%;
    animation-duration: 9s;
}

.auth-shape-2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    right: 10%;
    animation-duration: 11s;
    animation-delay: -2s;
}

.auth-shape-3 {
    width: 150px;
    height: 150px;
    top: 55%;
    left: 18%;
    animation-duration: 7s;
    animation-delay: -4s;
}

.auth-shape-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-duration: 10s;
    animation-delay: -1s;
}

@keyframes floatAuthShape {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-35px) translateX(25px) scale(1.1); }
    100% { transform: translateY(20px) translateX(-20px) scale(0.95); }
}

/* Public Header Navbar */
header.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
}

header.navbar-header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
}

.logo-wrapper img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Public Mobile Navigation Hamburger Drawer */
.public-mobile-toggle {
    display: none;
    background: var(--card-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.public-mobile-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
    padding: 20px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.public-mobile-drawer.active {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.public-mobile-drawer a.drawer-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-mobile-drawer a.drawer-link:last-child {
    border-bottom: none;
}

/* Theme Switcher Toggle */
.theme-switch {
    background: var(--card-secondary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.theme-switch:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.2);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.2;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw + 1rem, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-color);
}

.gradient-text {
    background: linear-gradient(135deg, #15803D, #22C55E, #4ADE80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(21, 128, 61, 0.1);
    border: 1px solid rgba(21, 128, 61, 0.25);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(21, 128, 61, 0); }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.play-badge-link {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-badge-link:hover {
    transform: scale(1.05);
}

.play-badge-img {
    width: 160px;
    height: auto;
    display: block;
}

.hero-dashboard-btn {
    height: 48px !important;
    padding: 0 28px !important;
    font-size: 1rem !important;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 4px 15px var(--shadow-color);
    max-width: fit-content;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Carousel */
.hero-carousel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-carousel-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel-slide {
    min-width: 100%;
    position: relative;
}

.hero-carousel-slide img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    display: block;
    background: transparent;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

/* Ambient Floating Background Orbs */
.ambient-orb-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 128, 61, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 10s infinite ease-in-out alternate;
}

.ambient-orb-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 12s infinite ease-in-out alternate-reverse;
}

/* Interactive Demo Section (previously Why Choose Us) */
.interactive-demo {
    padding: 80px 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

/* Interactive Phone Mockup */
.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.phone-glow-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    max-width: 100%;
    border-radius: 36px;
    background: #020617;
    border: 10px solid #1E293B;
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-power-btn {
    position: absolute;
    right: -14px;
    top: 140px;
    width: 4px;
    height: 48px;
    background: #475569;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    box-shadow: 2px 0 8px rgba(34, 197, 94, 0.5);
    z-index: 10;
}

.phone-power-btn:hover {
    background: var(--primary-color);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
    font-family: var(--font-body);
}

.phone-status-bar {
    height: 24px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #64748B;
}

.phone-status-icons {
    display: flex;
    gap: 6px;
}

.phone-content-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 24px);
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: filter 0.3s ease;
}

.phone-content-ui img.logo {
    height: 52px;
    margin-bottom: 12px;
}

.phone-content-ui h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.phone-content-ui p {
    font-size: 0.75rem;
    color: #94A3B8;
    margin-bottom: 20px;
}

.phone-shield {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--glow-color);
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: shieldPulse 3s infinite ease-in-out;
}

/* Lock Overlay */
.phone-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.96);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-screen.show-lock .phone-lock-overlay {
    transform: translateY(0);
}

.phone-screen.show-lock .phone-content-ui {
    filter: blur(4px);
}

.lock-header {
    text-align: center;
    margin-bottom: 20px;
}

.lock-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.lock-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.lock-desc {
    font-size: 0.7rem;
    color: #94A3B8;
    margin-top: 4px;
}

.lock-pin-dots {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #475569;
}

.pin-dot.filled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

.lock-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 180px;
}

.keypad-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.keypad-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.keypad-btn.action {
    font-size: 0.7rem;
}

/* Trust Bar Section */
.trust-bar {
    padding: 28px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--card-bg);
}

.trust-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-color);
}

.trust-item span.check {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw + 1rem, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-color);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px var(--shadow-color);
    border-color: rgba(21, 128, 61, 0.4);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(21, 128, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--glow-color);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.benefits-list li span.bullet {
    color: var(--success-color);
    font-weight: 700;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 960px;
    margin: 36px auto 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color), var(--primary-color), var(--border-color));
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: scale(1.08);
    background: linear-gradient(135deg, #15803D, #0B3F1D);
    color: #FFFFFF;
}

.step-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-color);
}

.step-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 180px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
}

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    padding: 16px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.slide-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.screenshot-phone {
    width: 190px;
    height: 380px;
    border-radius: 24px;
    background: #020617;
    border: 6px solid #1E293B;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.screenshot-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--glow-color);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--glow-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(21, 128, 61, 0.4);
    box-shadow: 0 4px 20px var(--glow-color);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    gap: 12px;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 18px;
}

.faq-toggle-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Download CTA */
.download-cta {
    padding: 80px 0;
}

.cta-box {
    border-radius: 20px;
    padding: 50px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), #22C55E, transparent);
}

.cta-shield-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    animation: shieldPulse 3s infinite ease-in-out;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
}

.dl-btn span.small-text {
    font-size: 0.68rem;
    font-weight: 400;
    color: #E2E8F0;
    display: block;
}

.dl-btn span.big-text {
    font-size: 0.95rem;
    color: #FFFFFF;
}

/* Developers Section */
.developers {
    padding: 80px 0;
}

.developers-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.dev-card {
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 36px 20px;
}

.dev-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 16px;
    overflow: hidden;
    background: rgba(21, 128, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dev-card:hover .dev-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-color);
}

.dev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dev-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.dev-role {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dev-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dev-link:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

/* Enhanced Footer Section */
footer.main-footer {
    padding: 60px 0 28px;
    border-top: none;
    background: var(--card-bg);
    position: relative;
}

.footer-gradient-border {
    height: 3px;
    background: linear-gradient(90deg, transparent, #15803D, #22C55E, #4ADE80, #22C55E, #15803D, transparent);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--glow-color);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-links a i {
    font-size: 0.7rem;
}

.footer-contact a {
    word-break: break-all;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 10px;
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-link:hover {
    background: rgba(21, 128, 61, 0.2) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.footer-cta-btn i {
    font-size: 1.4rem;
}

.footer-cta-btn .small-text {
    font-size: 0.65rem;
    font-weight: 500;
    display: block;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-cta-btn .big-text {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

.email-btn {
    background: linear-gradient(135deg, #ea4335, #c5221f);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.2);
}

.email-btn:hover {
    background: linear-gradient(135deg, #fbbc05, #ea4335);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 67, 53, 0.3);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #005f8f);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #33aadd, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

.play-btn {
    background: linear-gradient(135deg, #15803D 0%, #0B3F1D 50%, #030F07 100%);
    box-shadow: 0 4px 15px rgba(21, 128, 61, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

.play-btn:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 50%, #0B3F1D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ANIMATIONS ON SCROLL & INTERACTION */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.94); opacity: 0.4; }
    100% { transform: scale(1.08); opacity: 0.7; }
}

@keyframes floatPhone {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes shieldPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--glow-color); }
    50% { transform: scale(1.06); box-shadow: 0 0 24px var(--primary-color); }
    100% { transform: scale(1); box-shadow: 0 0 10px var(--glow-color); }
}

/* Shimmer Effect for CTA Box */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 128, 61, 0.05), transparent);
    animation: shimmer 5s infinite;
    pointer-events: none;
}

/* -------------------------------------------------- */
/* Interactive Animated Background */
/* -------------------------------------------------- */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    pointer-events: none;
    z-index: -3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(21, 128, 61, 0.05), transparent 80%);
    pointer-events: none;
    z-index: -2;
    transition: background 0.15s ease;
}

/* -------------------------------------------------- */
/* Typography & Utilities */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* FULL MOBILE & TABLET RESPONSIVE BREAKPOINTS SYSTEM */
/* -------------------------------------------------- */
@media (max-width: 991px) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        margin: 0 auto;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.98rem;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        margin: 0 auto;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .demo-grid > div:first-child .section-header {
        text-align: center !important;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 28px;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .carousel-slide {
        min-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    header.navbar-header .nav-container {
        height: 64px;
    }

    .nav-menu {
        display: none !important;
    }

    .public-mobile-toggle {
        display: flex !important;
    }

    .logo-wrapper span {
        font-size: 1.05rem;
    }

    .logo-wrapper img {
        height: 28px;
    }

    .nav-actions {
        gap: 8px !important;
    }

    .nav-actions .btn {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-carousel {
        width: 100%;
    }

    .hero-carousel-slide img {
        height: 260px;
    }

    .phone-mockup {
        width: 240px !important;
        height: 480px !important;
        border-width: 8px !important;
    }

    .phone-power-btn {
        right: -12px !important;
        height: 40px !important;
    }

    .trust-bar {
        padding: 20px 0 !important;
    }

    .trust-flex {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .trust-item {
        font-size: 0.82rem !important;
    }

    .features {
        padding: 44px 0 !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .feature-card {
        padding: 22px 18px !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
    }

    .feature-card p {
        font-size: 0.88rem !important;
    }

    .interactive-demo {
        padding: 44px 0 !important;
    }

    .benefits-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .benefits-list li {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
    }

    .how-it-works {
        padding: 44px 0 !important;
    }

    .step-number {
        width: 58px !important;
        height: 58px !important;
        font-size: 1.15rem !important;
    }

    .screenshots {
        padding: 44px 0 !important;
    }

    .carousel-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    .faq {
        padding: 44px 0 !important;
    }

    .faq-question {
        padding: 16px 18px !important;
        font-size: 0.9rem !important;
    }

    .faq-answer {
        font-size: 0.85rem !important;
    }

    .download-cta {
        padding: 44px 0 !important;
    }

    .cta-box {
        padding: 28px 16px !important;
        border-radius: 16px !important;
    }

    .cta-box h2 {
        font-size: 1.5rem !important;
    }

    .download-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .dl-btn {
        justify-content: center !important;
        width: 100% !important;
    }

    .developers {
        padding: 44px 0 !important;
    }

    .dev-card {
        width: 100% !important;
        max-width: 320px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }

    .auth-card {
        margin: 20px auto !important;
        padding: 24px 18px !important;
        border-radius: 14px !important;
    }
}

/* Responsive Split Grid & Portal Mobile Styles */
.portal-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 991px) {
    .portal-split-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .portal-content {
        margin-left: 0 !important;
        padding: 16px 16px 24px !important;
        width: 100% !important;
    }

    .portal-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .portal-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .table-card {
        padding: 16px 12px !important;
        border-radius: 12px !important;
        overflow-x: auto !important;
    }
}
