/* ================================
   ROOT VARIABLES
================================ */
:root {
    --primary-color: #1B2A3B;
    --text-color: #556070;
    --text-muted: #8898a8;
    --accent-color: #6DC042;
    --accent-hover: #5ca836;
    --accent-glow: rgba(109, 192, 66, 0.14);
    --bg-light: #f8f8f8;
    --bg-card: #ffffff;
    --white: #ffffff;
    --border-color: #eeeeee;
    --border-subtle: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1240px;
    --font: 'Outfit', sans-serif;
    --navbar-bg: rgba(255, 255, 255, 0.92);
}

body.dark {
    --primary-color: #f0f0f0;
    --text-color: #999;
    --text-muted: #666;
    --bg-light: #0f0f0f;
    --bg-card: #161616;
    --white: #0a0a0a;
    --border-color: #242424;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --navbar-bg: rgba(10, 10, 10, 0.92);
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font);
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.mark_text { color: var(--accent-color); }
.highlight { color: var(--accent-color); }

/* ================================
   UTILITIES
================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.section-header { margin-bottom: 56px; }

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-color);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
}

.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 9px 20px;
    font-size: 0.88rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 209, 198, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

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

/* ================================
   PRELOADER
================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.preloader-logo img {
    height: 48px;
    width: auto;
    will-change: transform;
    animation: preloaderBreath 2s ease-in-out infinite;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #4ea82e);
    border-radius: 3px;
    animation: preloaderFill 1.8s ease forwards;
}

@keyframes preloaderBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ================================
   CUSTOM CURSOR
================================ */
.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
}

.cursor-ring.hover {
    width: 50px;
    height: 50px;
    opacity: 0.2;
    background: var(--accent-glow);
}

@media (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ================================
   SCROLL PROGRESS
================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent-color), #1B2A3B);
    z-index: 9996;
    width: 0%;
    transition: width 0.08s linear;
}

/* ================================
   NAVBAR
================================ */
.navbar {
    padding: 14px 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s ease,
                backdrop-filter 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.navbar.scrolled {
    padding: 4px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border-subtle);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.logo:hover img { opacity: 0.85; }

.navbar.scrolled .logo img { height: 28px; }


.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-color), #4ea82e);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 5px;
    background: white;
    border-radius: 2px;
    opacity: 0.9;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.92rem;
    position: relative;
    padding-bottom: 2px;
}

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

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

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

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


.dark-mode-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--accent-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 59px;
    left: 0; right: 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a:hover { color: var(--accent-color); }

.mobile-menu a.btn {
    border-bottom: none;
    text-align: center;
    margin-top: 12px;
    justify-content: center;
}

/* ================================
   HERO
================================ */
.hero {
    padding: 20px 0 50px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(109, 192, 66, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 209, 198, 0.5); }
    50% { box-shadow: 0 0 0 5px transparent; }
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.cursor-blink {
    color: var(--accent-color);
    animation: blink 1s step-end infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-image { flex: 1; position: relative; }

/* Neural Network Canvas */
.hero-neural-wrap {
    position: relative;
    width: 100%;
    height: 500px;
}

#neuralCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

/* Neural Float Cards */
.neural-float {
    position: absolute;
    z-index: 10;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: neuralFloat 4s ease-in-out infinite;
    white-space: nowrap;
}

.neural-float i {
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.neural-float-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nf-label {
    font-size: 0.7rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nf-val {
    font-size: 0.88rem;
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.2px;
}

.nf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
    animation: dotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.neural-float-1 {
    top: 24px;
    left: 20px;
    animation-duration: 4.5s;
    animation-delay: 0s;
}

.neural-float-2 {
    bottom: 60px;
    left: 20px;
    animation-duration: 5.5s;
    animation-delay: 1.8s;
}

.neural-float-3 {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    animation-delay: 2.1s;
}

@keyframes neuralFloat {
    0%   { transform: translateY(0px) scale(1); }
    30%  { transform: translateY(-10px) scale(1.02); }
    60%  { transform: translateY(-5px) scale(0.99); }
    100% { transform: translateY(0px) scale(1); }
}

.neural-float-3 {
    animation: neuralFloat3 5s ease-in-out infinite;
    animation-delay: 2.1s;
}

@keyframes neuralFloat3 {
    0%   { transform: translateY(-50%) translateX(0px) scale(1); }
    30%  { transform: translateY(calc(-50% - 10px)) translateX(3px) scale(1.02); }
    60%  { transform: translateY(calc(-50% - 4px)) translateX(-2px) scale(0.99); }
    100% { transform: translateY(-50%) translateX(0px) scale(1); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--accent-color); }
    50% { opacity: 0.5; transform: scale(0.65); box-shadow: 0 0 4px var(--accent-color); }
}

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

.hero-sub {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    max-width: 92%;
    border: 1px solid var(--border-subtle);
}

.hero-sub p {
    margin-bottom: 22px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-cta-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item-hero { display: flex; flex-direction: column; }

.stat-num-row {
    display: flex;
    align-items: baseline;
    gap: 1px;
    line-height: 1;
    margin-bottom: 4px;
}

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

.stat-suffix-hero {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

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

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

/* ================================
   TRUSTED BY MARQUEE
================================ */
.trusted-by {
    padding: 36px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.marquee-wrapper {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.marquee-inner {
    display: flex;
    gap: 56px;
    animation: marquee 45s linear infinite;
    width: max-content;
}

.marquee-inner:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-item:hover { color: var(--primary-color); }
.marquee-item i { font-size: 1.3rem; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================================
   BRANDS / PRODUCTS
================================ */
.brands { padding: 90px 0; }

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.brands-header h2 {
    font-size: 3rem;
    font-weight: 800;
    flex: 1;
    letter-spacing: -0.5px;
}

.brands-header p {
    flex: 1.2;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.75;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.brand-card {
    background: var(--bg-card);
    padding: 42px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-card:hover { background: var(--bg-light); }
.brand-card:hover::before { opacity: 1; }

.brand-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.brand-icon i {
    padding: 13px;
    background: var(--accent-glow);
    border-radius: 12px;
    font-size: 26px;
    color: var(--accent-color);
    display: inline-block;
    transition: var(--transition);
}

.brand-card:hover .brand-icon i {
    transform: scale(1.1) rotate(-6deg);
    background: var(--accent-color);
    color: #fff;
}

.brand-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.brand-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.93rem;
    line-height: 1.65;
}

.learn-more {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.learn-more:hover { gap: 12px; color: var(--accent-color); }

/* ================================
   PRODUCTS SHOWCASE
================================ */
.products-showcase { padding: 90px 0; }

.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-tab {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-tab.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.nova-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nova-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.nova-card.hidden {
    display: none;
}

.nova-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--card-color, var(--accent-color));
}

.nova-card-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 16px 16px 0 0;
}

.nova-card:hover .nova-card-top { transform: scaleX(1); }

.nova-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--card-color) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--card-color);
    margin-bottom: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.nova-card:hover .nova-icon {
    background: var(--card-color);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.nova-industry {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--card-color);
    margin-bottom: 6px;
    display: block;
}

.nova-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: var(--primary-color);
}

.nova-card p {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.nova-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nova-features li {
    font-size: 0.82rem;
    color: var(--text-color);
    line-height: 1.5;
    padding-left: 0;
}

.nova-features li:first-child {
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.nova-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--card-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.nova-link:hover { gap: 10px; }

@media (max-width: 1200px) {
    .nova-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nova-products-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-tabs { gap: 6px; }
    .filter-tab { padding: 7px 14px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .nova-products-grid { grid-template-columns: 1fr; }
}

/* ================================
   HOW WE WORK
================================ */
.how-we-work {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-step {
    padding: 44px 36px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #1B2A3B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover::after { transform: scaleX(1); }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
    transition: color 0.3s ease;
    font-variant-numeric: tabular-nums;
}

.process-step:hover .step-number { color: var(--accent-glow); }

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-step:hover .step-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-color);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ================================
   WHO WE ARE
================================ */
.who-we-are { padding: 90px 0; }

.who-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 40px;
}

.who-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.who-header p {
    max-width: 560px;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: right;
}

.who-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.who-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.who-content:hover .who-image { transform: scale(1.03); }

.who-overlay {
    position: absolute;
    bottom: 40px; right: 40px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: #fff;
    padding: 40px;
    max-width: 380px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.who-overlay p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.88;
}

.learn-more-accent {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.learn-more-accent:hover { gap: 14px; }

/* ================================
   STATS SECTION
================================ */
.stats-section {
    padding: 80px 0;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

body.dark .stats-section {
    background: #060a0d;
    border-top: 1px solid #1a2535;
    border-bottom: 1px solid #1a2535;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(109, 192, 66, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -150px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(27, 42, 59, 0.4) 0%, transparent 65%);
    pointer-events: none;
}

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

.stat-box {
    text-align: center;
    padding: 48px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-box:last-child { border-right: none; }

.stat-box .stat-num-row {
    justify-content: center;
    margin-bottom: 10px;
}

.stat-count {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-text {
    font-size: 2.8rem;
}

.stat-suffix {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ================================
   TEAMS / SERVICES
================================ */
.teams { padding: 90px 0; }

.teams-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    gap: 60px;
}

.teams-header h2 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    min-width: 260px;
}

.our-text { color: var(--text-heading, #111827); }
body.dark .our-text { color: #fff; }

.services-text { color: var(--accent-color); }

.teams-header p {
    max-width: 580px;
    color: var(--text-color);
    font-size: 2.6rem;
    line-height: 1.2;
    font-style: italic;
    font-weight: 700;
}

.services-ai-highlight {
    font-style: normal;
    font-weight: 800;
    color: var(--accent-color);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.team-card {
    padding: 30px 24px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--accent-glow);
    transition: height 0.35s ease;
    z-index: 0;
}

.team-card:hover::after { height: 100%; }
.team-card > * { position: relative; z-index: 1; }
.team-card:nth-child(4n) { border-right: none; }

.team-card i {
    color: var(--accent-color);
    margin-bottom: 14px;
    display: block;
    font-size: 1.7rem;
    transition: transform 0.3s ease;
}

.team-card:hover i { transform: scale(1.2) rotate(-8deg); }

.team-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-card p {
    font-size: 0.82rem;
    color: var(--text-color);
    line-height: 1.55;
}

/* ================================
   SERVICES LAYOUT
================================ */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.service-featured {
    background: var(--bg-dark, #0a0f1a);
    border-radius: 24px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
}

body:not(.dark) .service-featured {
    background: linear-gradient(135deg, #0d1b2a 0%, #0a1628 60%, #0d2240 100%);
}

.sf-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,209,198,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.sf-icon {
    width: 64px; height: 64px;
    background: rgba(0,209,198,0.12);
    border: 1px solid rgba(0,209,198,0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.sf-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.service-featured h3 {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #fff;
    margin: 0;
}

.service-featured p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    flex: 1;
}

.sf-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.sf-step {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-step span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(0,209,198,0.1);
    border: 1px solid rgba(0,209,198,0.2);
    border-radius: 6px;
    padding: 2px 8px;
    letter-spacing: 0.5px;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--accent-glow);
    transition: height 0.35s ease;
    z-index: 0;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { height: 100%; }
.service-card > * { position: relative; z-index: 1; }

.sc-icon {
    width: 54px; height: 54px;
    min-width: 54px;
    background: var(--accent-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .sc-icon {
    background: var(--accent-color);
    color: #fff;
}

.sc-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.sc-body p {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.65;
    margin-bottom: 14px;
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.sc-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    background: var(--accent-glow);
    border: 1px solid rgba(0,209,198,0.2);
    padding: 4px 10px;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
}

.service-card:hover .sc-tags span {
    background: rgba(0,209,198,0.15);
}

@media (max-width: 900px) {
    .services-layout { grid-template-columns: 1fr; }
    .service-featured { padding: 40px 32px; }
}

/* ================================
   TESTIMONIALS
================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 16px;
    font-size: 9rem;
    font-weight: 900;
    color: var(--accent-glow);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 209, 198, 0.3);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-card > p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--avatar-color, var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.client-info strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================
   FAQ
================================ */
.faq { padding: 100px 0; }

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item { border-bottom: 1px solid var(--border-color); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--accent-color); }

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.faq-item.open .faq-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    color: var(--text-color);
    font-size: 0.93rem;
    line-height: 1.8;
    padding-bottom: 22px;
}

.faq-item.open .faq-answer { max-height: 220px; }

/* ================================
   CTA SECTION
================================ */
.cta-section { padding: 80px 0; }

.cta-inner {
    background: linear-gradient(140deg, #111 0%, #000 100%);
    border-radius: 24px;
    padding: 84px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 209, 198, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ================================
   BANNER
================================ */
.bottom-banner { padding: 0 0 80px; }

.banner-img {
    width: 100%;
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bottom-banner:hover .banner-img { transform: scale(1.01); }

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-cta {
    padding: 52px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-cta-text h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.footer-cta-text p {
    font-size: 0.88rem;
    color: var(--text-color);
}

.footer-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 48px;
    padding: 60px 0 56px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo { margin-bottom: 16px; display: block; }
.footer-brand .logo img { height: 34px; }

.footer-brand p {
    color: var(--text-color);
    font-size: 0.87rem;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 270px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--text-color);
    transition: color 0.2s ease;
}

.footer-contact-item a:hover { color: var(--accent-color); }

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

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

.social-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    background: var(--accent-glow);
}

.footer-links-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links-col a {
    color: var(--text-color);
    font-size: 0.87rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

.footer-bottom-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-badge span { color: var(--accent-color); }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: var(--accent-color); }

/* ================================
   BLOG SECTION
================================ */
.blog-section { padding: 100px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
    margin-top: 48px;
    align-items: stretch;
}

.blog-featured {
    display: flex;
}

.blog-featured-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, var(--blog-color1), var(--blog-color2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: var(--transition);
}

.blog-featured-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.blog-featured-text {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.blog-featured-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.blog-featured-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 18px;
}

.blog-cat {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: var(--accent-color);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-cat.sponsored {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.blog-read-link:hover { gap: 10px; }

.blog-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card-sm {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--blog-color1), var(--blog-color2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: var(--transition);
}

.blog-card-sm:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.blog-sm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.blog-sm-text {
    position: relative;
    z-index: 2;
    padding: 18px 20px;
}

.blog-sm-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 6px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured-img { height: 360px; }
    .blog-stack { flex-direction: row; }
    .blog-card-sm { min-height: 220px; }
}

@media (max-width: 768px) {
    .blog-stack { flex-direction: column; }
    .blog-card-sm { min-height: 180px; }
}

/* ================================
   BACK TO TOP
================================ */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    z-index: 990;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 209, 198, 0.4);
}

/* ================================
   BOOK A MEETING WIDGET
================================ */
.meet-widget {
    position: fixed;
    bottom: 32px;
    left: 28px;
    width: 220px;
    border-radius: 0;
    overflow: visible;
    background: none;
    box-shadow: none;
    z-index: 9999;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
    font-size: 0;
    line-height: 0;
}

.meet-widget.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.meet-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 28px; height: 28px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 0.78rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.meet-close:hover { background: rgba(0,0,0,0.7); }

.meet-image-link {
    display: block;
    cursor: pointer;
}

.meet-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: transform 0.35s ease;
}

.meet-image-link:hover .meet-img { transform: scale(1.03); }

@media (max-width: 768px) {
    .meet-widget {
        width: 160px;
        bottom: 20px;
        left: 16px;
    }
}

@media (max-width: 480px) {
    .meet-widget {
        width: 140px;
        bottom: 16px;
        left: 12px;
    }
}

/* ================================
   SCROLL REVEAL ANIMATIONS
================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.75s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

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

/* ================================
   PAGE HERO (Inner pages)
================================ */
.page-hero {
    padding: 80px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: -200px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero-content { text-align: center; position: relative; z-index: 1; }

.page-hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

/* ================================
   CONTACT FORM
================================ */
.contact-section { padding: 100px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-info p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-text span {
    color: var(--text-color);
    font-size: 0.92rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.93rem;
    color: var(--primary-color);
    background: var(--bg-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-card);
}

.form-group textarea {
    height: 120px;
    resize: none;
    line-height: 1.6;
}

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .process-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
    .faq-inner { grid-template-columns: 1fr; gap: 44px; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .hero-container { flex-direction: column; gap: 40px; }
    .hero-image { width: 100%; }
    .hero-sub { max-width: 100%; }
    .hero-float-card.card-1 { left: 10px; }
    .hero-float-card.card-2 { right: 10px; }
    .brands-grid { grid-template-columns: 1fr; }
    .teams-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card:nth-child(2n) { border-right: none; }
    .team-card:nth-child(4n) { border-right: 1px solid var(--border-color); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-box:nth-child(2) { border-right: none; }
    .stat-box { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
    .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cta-inner { padding: 60px 40px; }
    .cta-inner h2 { font-size: 2.6rem; }
    .hero-neural-wrap { height: 400px; }
    .neural-float-3 { right: 12px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-content h1 { font-size: 2.6rem; letter-spacing: -0.5px; }
    .hero-sub { padding: 22px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }
    .brands-header, .who-header, .teams-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .who-header p { text-align: left; font-size: 1.4rem; }
    .section-header h2 { font-size: 2.2rem; }
    .teams-grid { grid-template-columns: 1fr; }
    .team-card { border-right: none !important; }
    .who-overlay { position: relative; bottom: 0; right: 0; max-width: 100%; margin: -20px 20px 0; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .cta-inner { padding: 50px 24px; }
    .cta-inner h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-cta-actions { flex-direction: column; width: 100%; }
    .footer-cta-actions .btn { text-align: center; justify-content: center; }
    .page-hero-content h1 { font-size: 2.4rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .brands-header h2, .teams-header h2, .who-header h2 { font-size: 2.4rem; }
    .hero-neural-wrap { height: 340px; }
    .neural-float { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-float-card { display: none; }
    .stat-count, .stat-suffix { font-size: 2.6rem; }
    .cta-inner h2 { font-size: 1.75rem; }
    .process-step { padding: 32px 24px; }
    .brand-card { padding: 28px; }
    .hero-neural-wrap { height: 280px; }
    .neural-float { display: none; }
}
