/* =========================================
   CSS Variables & Theme Tokens
   ========================================= */
:root {
    /* Color Palette */
    --primary-blue: #062B96;
    --secondary-blue: #2F69CB;
    --light-blue: #EBF7FF;
    --dark-blue: #15244F;
    --accent: #FFB715;
    --accent-green: #29CB10;
    
    /* Backgrounds & Text */
    --bg-main: #FAFCFF;
    --bg-white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    --gradient-dark: linear-gradient(99.93deg, #3B5397 1.31%, #15244F 104.86%);
    
    /* Shadow & Glass */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(6, 43, 150, 0.1), 0 10px 10px -5px rgba(6, 43, 150, 0.04);
    --shadow-glow: 0 0 25px rgba(47, 105, 203, 0.4);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Resets & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #F8FAFC;
    background-image: linear-gradient(rgba(6, 43, 150, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(6, 43, 150, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* =========================================
   Typography & Utilities
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.left {
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

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

.bg-typography {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13vw;
    font-weight: 900;
    color: rgba(6, 43, 150, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 0.1em;
    user-select: none;
    text-transform: uppercase;
}

.bg-typography.light {
    color: rgba(255, 255, 255, 0.03);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 43, 150, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* =========================================
   Navbar (Glassmorphism)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    font-size: 1.125rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition-fast);
}

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

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-blue);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 999;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.gc-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    animation: float 8s ease-in-out infinite;
}

.gc-2 {
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: var(--light-blue);
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(47, 105, 203, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    border: 1px solid rgba(47, 105, 203, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trusted p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.trusted-logos {
    display: flex;
    gap: 24px;
    font-size: 1.75rem;
    color: #94A3B8;
}

.trusted-logos i {
    transition: var(--transition-fast);
}

.trusted-logos i:hover {
    color: var(--primary-blue);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.floating-badge {
    position: absolute;
    background: var(--bg-white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: bounce 6s infinite ease-in-out;
}

.fb-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 2s;
}

.fb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fb-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--dark-blue);
    line-height: 1.2;
}

.fb-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* =========================================
   Services Section (Catalog)
   ========================================= */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-blue);
    transition: var(--transition-normal);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.card-link {
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.service-card:hover h3, 
.service-card:hover p, 
.service-card:hover .card-link {
    color: white;
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* =========================================
   Stats Section
   ========================================= */
.stats {
    background: var(--gradient-dark);
    position: relative;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIyIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIi8+Cjwvc3ZnPg==') repeat;
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.image-grid img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.img-1 {
    aspect-ratio: 3/4;
    transform: translateY(30px);
}

.img-2 {
    aspect-ratio: 3/4;
    transform: translateY(-30px);
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-blue);
}

.feature-list i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: #0A192F;
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

.brand-col .footer-desc {
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background: var(--primary-blue);
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--secondary-blue);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================================
   Founder / CV Section
   ========================================= */
.founder {
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.founder-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.editorial-style {
    border-radius: 0 40px 0 40px;
    box-shadow: 20px 20px 0px rgba(6, 43, 150, 0.05);
}

.editorial-style .founder-img {
    height: 100%;
    min-height: 500px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    transition: var(--transition-slow);
}

.editorial-style:hover .founder-img {
    filter: grayscale(0%);
}

.founder-image-wrapper {
    position: relative;
    overflow: hidden;
}

.founder-socials {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.founder-socials a {
    color: var(--primary-blue);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    transition: var(--transition-fast);
}

.founder-socials a:hover {
    background: var(--primary-blue);
    color: white;
}

.founder-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-header {
    margin-bottom: 24px;
}

.founder-header h3 {
    font-size: 2.25rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.founder-role {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    background: var(--light-blue);
    padding: 6px 16px;
    border-radius: 50px;
}

.quote-mark {
    font-size: 8rem;
    font-family: serif;
    color: var(--primary-blue);
    opacity: 0.1;
    position: absolute;
    top: -50px;
    left: -20px;
    line-height: 1;
    z-index: -1;
}

.founder-bio {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 10px 0 30px 0;
    line-height: 1.8;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.modern-cv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.modern-cv .cv-text {
    display: flex;
    flex-direction: column;
}

.modern-cv .cv-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.modern-cv .cv-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
}

/* =========================================
   Animations & Reveals
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .founder-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-desc { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-trusted { justify-content: center; }
    .trusted-logos { justify-content: center; }
    
    .floating-badge { padding: 12px 16px; }
    .fb-icon { width: 36px; height: 36px; font-size: 1.2rem; }
    .fb-text strong { font-size: 1.1rem; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-header.left { text-align: center; }
    .about-text, .feature-list { text-align: left; }
    .about-content .btn { display: block; margin: 0 auto; width: fit-content; }
    
    .founder-layout { grid-template-columns: 1fr; gap: 40px; }
    .modern-cv { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .modern-cv .cv-value { font-size: 1.8rem; }
    .bg-typography { font-size: 18vw; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .fb-1, .fb-2 { display: none; }
    .modern-cv { grid-template-columns: 1fr; }
    .founder-layout { grid-template-columns: 1fr; gap: 30px; }
    .quote-mark { font-size: 5rem; top: -20px; }
    .editorial-style .founder-img { min-height: 350px; }
    .bg-typography { font-size: 24vw; letter-spacing: 0; }
}

/* =========================================
   NEW HERO SECTION (DARK TECH)
   ========================================= */
.hero-dark {
    background-color: #050B14;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 150px;
    overflow: hidden;
    color: #ffffff;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
}

.hero-container-new {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.badge-tech {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.hero-title-new {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-new {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-cyan {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-cyan:hover {
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.5);
    transform: translateY(-3px);
    color: white;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
}

.hero-ecosystem-logos p {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.logos-wrapper img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: 0.3s ease;
}

.logos-wrapper img:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Custom CSS Dashboard Visual */
.hero-visual-new {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-dashboard {
    width: 100%;
    max-width: 450px;
    height: 320px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    animation: float-dash 6s ease-in-out infinite;
}

@keyframes float-dash {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); }
}

.dash-header {
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.dash-circles {
    display: flex;
    gap: 6px;
}

.dash-circles span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}
.dash-circles span:nth-child(1) { background: #ef4444; }
.dash-circles span:nth-child(2) { background: #eab308; }
.dash-circles span:nth-child(3) { background: #22c55e; }

.dash-search {
    flex-grow: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.dash-body {
    display: flex;
    flex-grow: 1;
    padding: 15px;
    gap: 15px;
}

.dash-sidebar {
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-80 { width: 80%; }
.mt-2 { margin-top: 10px; }

.dash-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dash-chart {
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    gap: 10px;
}

.dash-chart .bar {
    flex: 1;
    background: linear-gradient(to top, #0ea5e9, #3b82f6);
    border-radius: 4px 4px 0 0;
}

.h-30 { height: 30%; }
.h-40 { height: 40%; }
.h-50 { height: 50%; }
.h-70 { height: 70%; }
.h-90 { height: 90%; }

.dash-cards {
    display: flex;
    gap: 15px;
    height: 80px;
}

.d-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.d-card i {
    color: #38bdf8;
    font-size: 1.2rem;
}

/* Orbiting Apps */
.orbit-app {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(14, 165, 233, 0.15);
    z-index: 20;
    transition: 0.3s ease;
}

.orbit-app:hover {
    transform: scale(1.05);
    border-color: #38bdf8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(14, 165, 233, 0.4);
}

.orbit-app img {
    height: 24px;
    width: auto;
}

.orbit-app span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.app-top {
    top: -30px;
    right: 15%;
    animation: float-1 5s ease-in-out infinite;
}

.app-right {
    bottom: 20%;
    right: -20px;
    animation: float-2 7s ease-in-out infinite;
}

.app-bottom {
    bottom: -30px;
    left: 10%;
    animation: float-3 6s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 10px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 15px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* Ensure navbar on dark background remains readable if transparent */
.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .nav-link,
.navbar:not(.scrolled) .mobile-toggle {
    color: #ffffff;
}

.navbar:not(.scrolled) .nav-link::after {
    background: #38bdf8;
}

/* New Responsive rules for the new Hero */
@media (max-width: 1024px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    .hero-desc-new {
        margin: 0 auto 40px;
    }
    .hero-buttons-new {
        justify-content: center;
    }
    .hero-ecosystem-logos p {
        text-align: center;
    }
    .logos-wrapper {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .hero-title-new { font-size: 2.5rem; }
    .hero-buttons-new { flex-direction: column; }
    .hero-visual-new { display: none; } /* Hide the custom dashboard on small mobile to save space */
}

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

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}
