/* ============================================
   K2 TOOLKIT — COMPLETE STYLESHEET
   Color Palette inspired by K2 Technologies:
   Primary:   #5A5B8E (Deep Purple)
   Secondary: #4AA8B2 (Teal)
   Accent 1:  #58D8B1 (Mint Green)
   Accent 2:  #39B7D6 (Cyan)
   Accent 3:  #FF8A3D (Orange)
   Accent 4:  #FF5B5B (Coral Red)
   Dark BG:   #0A0E1A
   ============================================ */

/* ====== ROOT VARIABLES ====== */
:root {
    --primary: #5A5B8E;
    --primary-dark: #3D3E6B;
    --secondary: #4AA8B2;
    --accent-mint: #58D8B1;
    --accent-cyan: #39B7D6;
    --accent-orange: #FF8A3D;
    --accent-red: #FF5B5B;
    --accent-purple: #8B5CF6;
    --bg-dark: #0A0E1A;
    --bg-darker: #060912;
    --bg-card: #111629;
    --bg-card-hover: #161C35;
    --text-white: #FFFFFF;
    --text-light: #B4BCD0;
    --text-muted: #6B7490;
    --border-color: rgba(74, 168, 178, 0.15);
    --glow-primary: rgba(90, 91, 142, 0.4);
    --glow-secondary: rgba(74, 168, 178, 0.4);
    --glow-accent: rgba(88, 216, 177, 0.4);
    --gradient-main: linear-gradient(135deg, #5A5B8E, #4AA8B2, #58D8B1);
    --gradient-warm: linear-gradient(135deg, #FF8A3D, #FF5B5B);
    --gradient-cool: linear-gradient(135deg, #4AA8B2, #58D8B1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ====== THEME TOGGLE BUTTON ====== */
.theme-toggle-btn {
    position: relative;
    width: 56px;
    height: 30px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    margin-left: 15px;
    transition: var(--transition);
    overflow: hidden;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--glow-secondary);
}

.theme-toggle-btn i {
    font-size: 0.7rem;
    z-index: 2;
    transition: var(--transition-fast);
}

#themeIconLight {
    color: #FFC107;
}

#themeIconDark {
    color: #8B9DC3;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-main);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* When light theme is active, slider moves right */
[data-theme="light"] .toggle-slider {
    left: calc(100% - 23px);
}

/* ====== LIGHT THEME ====== */
[data-theme="light"] {
    --bg-dark: #F5F7FB;
    --bg-darker: #EBEEF5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F0F2F8;
    --text-white: #1A1D2E;
    --text-light: #4A5068;
    --text-muted: #7A8099;
    --border-color: rgba(90, 91, 142, 0.15);
    --glow-primary: rgba(90, 91, 142, 0.2);
    --glow-secondary: rgba(74, 168, 178, 0.2);
    --glow-accent: rgba(88, 216, 177, 0.2);
}

[data-theme="light"] body {
    background: var(--bg-dark);
}

[data-theme="light"] html {
    scrollbar-color: var(--secondary) var(--bg-dark);
}

[data-theme="light"] ::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

[data-theme="light"] ::selection {
    background: var(--secondary);
    color: #fff;
}

/* Light Preloader */
[data-theme="light"] #preloader {
    background: var(--bg-darker);
}

[data-theme="light"] .loader-text {
    color: var(--text-white);
}

[data-theme="light"] .loader-text span {
    -webkit-text-fill-color: var(--text-white);
}

[data-theme="light"] .loader-text span:nth-child(2) {
    -webkit-text-fill-color: transparent;
}

/* Light Cursor */
[data-theme="light"] .cursor-dot {
    background: var(--primary);
    mix-blend-mode: normal;
}

[data-theme="light"] .cursor-ring {
    border-color: rgba(90, 91, 142, 0.5);
    mix-blend-mode: normal;
}

/* Light Navbar */
[data-theme="light"] .navbar.scrolled {
    background: rgba(245, 247, 251, 0.92);
    border-bottom: 1px solid rgba(90, 91, 142, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .brand-name {
    color: var(--text-white);
}

[data-theme="light"] .navbar-nav .nav-link {
    color: var(--text-light);
}

[data-theme="light"] .navbar-nav .nav-link:hover,
[data-theme="light"] .navbar-nav .nav-link.active {
    color: var(--text-white);
}

[data-theme="light"] .toggler-icon span {
    background: var(--text-white);
}

/* Light Hero */
[data-theme="light"] .hero-section {
    background: var(--bg-dark);
}

[data-theme="light"] .gradient-orb {
    opacity: 0.15;
}

[data-theme="light"] .grid-overlay {
    background-image: 
        linear-gradient(rgba(90, 91, 142, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 91, 142, 0.06) 1px, transparent 1px);
}

[data-theme="light"] .hero-badge {
    background: rgba(74, 168, 178, 0.08);
    border: 1px solid rgba(74, 168, 178, 0.2);
}

[data-theme="light"] .hero-title {
    color: var(--text-white);
}

[data-theme="light"] .hero-subtitle strong {
    color: #2D9F83;
}

[data-theme="light"] .btn-outline-hero {
    border-color: rgba(90, 91, 142, 0.3);
    color: var(--text-white);
}

[data-theme="light"] .btn-outline-hero:hover {
    border-color: var(--secondary);
    background: rgba(74, 168, 178, 0.08);
    color: var(--text-white);
}

[data-theme="light"] .trust-avatars .avatar {
    border-color: var(--bg-dark);
}

/* Light Float Cards */
[data-theme="light"] .float-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(90, 91, 142, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .float-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .fc-title {
    color: var(--text-muted);
}

[data-theme="light"] .fc-value {
    color: var(--text-white);
}

[data-theme="light"] .sphere-core {
    box-shadow: 
        0 0 20px var(--glow-primary),
        0 0 40px var(--glow-secondary),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Light Marquee */
[data-theme="light"] .marquee-strip {
    background: linear-gradient(90deg, var(--bg-darker), rgba(255, 255, 255, 0.8), var(--bg-darker));
    border-color: rgba(90, 91, 142, 0.1);
}

/* Light Tool Cards */
[data-theme="light"] .tool-card-inner {
    background: var(--bg-card);
    border-color: rgba(90, 91, 142, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tool-card:hover .tool-card-inner {
    background: var(--bg-card);
    border-color: rgba(74, 168, 178, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .tool-number {
    color: rgba(90, 91, 142, 0.06);
}

[data-theme="light"] .tool-card:hover .tool-number {
    color: rgba(74, 168, 178, 0.1);
}

[data-theme="light"] .tool-name {
    color: var(--text-white);
}

[data-theme="light"] .tool-features span {
    background: rgba(74, 168, 178, 0.08);
    color: var(--text-light);
}

[data-theme="light"] .tool-launch-btn {
    border-color: rgba(90, 91, 142, 0.25);
    color: var(--text-white);
}

[data-theme="light"] .tool-launch-btn:hover {
    color: #fff;
}

/* Light Features Section */
[data-theme="light"] .features-section {
    background: var(--bg-darker);
}

[data-theme="light"] .feature-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(90, 91, 142, 0.1);
}

[data-theme="light"] .feature-card:hover {
    background: var(--bg-card);
    border-color: rgba(74, 168, 178, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-card h4 {
    color: var(--text-white);
}

[data-theme="light"] .feature-icon {
    background: rgba(74, 168, 178, 0.08);
    border-color: rgba(74, 168, 178, 0.15);
}

/* Light Stats */
[data-theme="light"] .stats-wrapper {
    background: linear-gradient(135deg, rgba(90, 91, 142, 0.06), rgba(74, 168, 178, 0.04));
    border-color: rgba(90, 91, 142, 0.1);
}

[data-theme="light"] .stats-bg-text {
    color: rgba(90, 91, 142, 0.04);
}

[data-theme="light"] .stat-label {
    color: var(--text-white);
}

/* Light Testimonials */
[data-theme="light"] .testimonials-section {
    background: var(--bg-darker);
}

[data-theme="light"] .testimonial-card {
    background: var(--bg-card);
    border-color: rgba(90, 91, 142, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .testimonial-card::before {
    color: rgba(74, 168, 178, 0.1);
}

[data-theme="light"] .testimonial-card:hover {
    border-color: rgba(74, 168, 178, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .testi-author strong {
    color: var(--text-white);
}

/* Light CTA */
[data-theme="light"] .cta-orb-1 {
    background: radial-gradient(circle, rgba(90, 91, 142, 0.1) 0%, transparent 70%);
}

[data-theme="light"] .cta-orb-2 {
    background: radial-gradient(circle, rgba(88, 216, 177, 0.1) 0%, transparent 70%);
}

/* Light Footer */
[data-theme="light"] .site-footer {
    background: var(--bg-darker);
    border-top-color: rgba(90, 91, 142, 0.1);
}

[data-theme="light"] .footer-socials a {
    border-color: rgba(90, 91, 142, 0.15);
    color: var(--text-muted);
}

[data-theme="light"] .footer-socials a:hover {
    color: #fff;
}

[data-theme="light"] .footer-heading {
    color: var(--text-white);
}

[data-theme="light"] .footer-newsletter {
    background: var(--bg-card);
    border-color: rgba(90, 91, 142, 0.15);
}

[data-theme="light"] .newsletter-input {
    color: var(--text-white);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(90, 91, 142, 0.1);
}

/* Light Back to Top */
[data-theme="light"] .back-to-top {
    box-shadow: 0 4px 20px rgba(74, 168, 178, 0.2);
}

/* Light Mobile Nav */
[data-theme="light"] .navbar-collapse {
    background: rgba(245, 247, 251, 0.97) !important;
    border-color: rgba(90, 91, 142, 0.1) !important;
}

/* Light Section Badges */
[data-theme="light"] .section-badge {
    background: rgba(74, 168, 178, 0.06);
    border-color: rgba(74, 168, 178, 0.15);
}

[data-theme="light"] .section-title {
    color: var(--text-white);
}

/* Light Tools Section BG */
[data-theme="light"] .tools-section::before {
    background: radial-gradient(circle, rgba(74, 168, 178, 0.05) 0%, transparent 70%);
}

/* Light particle adjustments */
[data-theme="light"] .particle {
    opacity: 0;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--bg-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--secondary);
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* ====== PRELOADER ====== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.loader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: loaderRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-ring div:nth-child(1) {
    border-top-color: var(--primary);
    animation-delay: -0.45s;
}

.loader-ring div:nth-child(2) {
    border-right-color: var(--secondary);
    animation-delay: -0.3s;
}

.loader-ring div:nth-child(3) {
    border-bottom-color: var(--accent-mint);
    animation-delay: -0.15s;
}

.loader-ring div:nth-child(4) {
    border-left-color: var(--accent-cyan);
}

@keyframes loaderRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

.loader-text span {
    display: inline-block;
    animation: loaderTextPulse 1.5s ease-in-out infinite;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.1s;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-dot {
    animation-delay: 0.2s !important;
    color: var(--accent-mint);
    -webkit-text-fill-color: var(--accent-mint) !important;
}

@keyframes loaderTextPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(-5px); }
}

/* ====== CUSTOM CURSOR ====== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-mint);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(88, 216, 177, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    transition: all 0.15s ease-out;
    mix-blend-mode: difference;
}

.cursor-ring.hover {
    transform: scale(1.5);
    border-color: var(--accent-orange);
    background: rgba(255, 138, 61, 0.1);
}

@media (max-width: 991px) {
    .cursor-dot, .cursor-ring {
        display: none;
    }
}

/* ====== TEXT UTILITIES ====== */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-animated {
    background: linear-gradient(270deg, #5A5B8E, #4AA8B2, #58D8B1, #39B7D6, #4AA8B2, #5A5B8E);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ====== NAVBAR ====== */
.navbar {
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-svg {
    width: 100%;
    height: 100%;
    /* rotation removed */
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.brand-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-white);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-main);
    color: var(--text-white) !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #58D8B1, #4AA8B2, #5A5B8E);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta-btn:hover::before {
    opacity: 1;
}

.nav-cta-btn span, .nav-cta-btn i {
    position: relative;
    z-index: 1;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-secondary);
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 5px;
    background: none !important;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.toggler-icon span {
    display: block;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-mint) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.05); }
    66% { transform: translate(20px, -40px) scale(1.1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.35; }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(74, 168, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 168, 178, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-mint);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(74, 168, 178, 0.1);
    border: 1px solid rgba(74, 168, 178, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-mint);
    border-radius: 50%;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(88, 216, 177, 0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(88, 216, 177, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--accent-mint);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Primary Glow Button */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-main);
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--glow-secondary);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow-secondary);
    color: var(--text-white);
}

.btn-primary-glow.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border: 2px solid rgba(74, 168, 178, 0.4);
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
    border-color: var(--secondary);
    background: rgba(74, 168, 178, 0.1);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-hero i {
    font-size: 1.2rem;
    color: var(--accent-mint);
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.trust-avatars .avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--text-white);
}

/* Hero Visual / Floating Dashboard */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.floating-dashboard {
    position: relative;
    width: 100%;
    height: 480px;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(17, 22, 41, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: var(--transition);
}

.float-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.float-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.float-card-text {
    display: flex;
    flex-direction: column;
}

.fc-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.fc-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.fc-value.score-up {
    color: var(--accent-mint);
}

.fc-value.score-up i {
    font-size: 0.75rem;
}

.card-1 {
    top: 20px;
    left: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 0;
    animation: floatCard 6s ease-in-out infinite 1.5s;
}

.card-3 {
    bottom: 120px;
    left: 10px;
    animation: floatCard 6s ease-in-out infinite 3s;
}

.card-4 {
    bottom: 20px;
    right: 20px;
    animation: floatCard 6s ease-in-out infinite 4.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Center Sphere */
.center-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.sphere-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
}

.sphere-ring.ring-1 {
    border-color: rgba(90, 91, 142, 0.3);
    animation: sphereRotate 8s linear infinite;
    inset: -20px;
}

.sphere-ring.ring-2 {
    border-color: rgba(74, 168, 178, 0.25);
    border-style: dashed;
    animation: sphereRotate 12s linear infinite reverse;
    inset: -40px;
}

.sphere-ring.ring-3 {
    border-color: rgba(88, 216, 177, 0.15);
    animation: sphereRotate 16s linear infinite;
    inset: -65px;
}

@keyframes sphereRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sphere-core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    box-shadow: 
        0 0 30px var(--glow-primary),
        0 0 60px var(--glow-secondary),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: spherePulse 3s ease-in-out infinite;
}

@keyframes spherePulse {
    0%, 100% { box-shadow: 0 0 30px var(--glow-primary), 0 0 60px var(--glow-secondary), inset 0 0 20px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 0 50px var(--glow-primary), 0 0 90px var(--glow-secondary), inset 0 0 30px rgba(255,255,255,0.15); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-mint);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ====== MARQUEE STRIP ====== */
.marquee-strip {
    padding: 18px 0;
    background: linear-gradient(90deg, var(--bg-darker), rgba(17, 22, 41, 0.8), var(--bg-darker));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 50px;
    padding-right: 50px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.marquee-content span i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.marquee-content span:hover {
    color: var(--text-white);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== SECTION HEADERS ====== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(74, 168, 178, 0.08);
    border: 1px solid rgba(74, 168, 178, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-badge i {
    font-size: 0.7rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* ====== TOOLS SECTION ====== */
.tools-section {
    padding: 120px 0;
    position: relative;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 168, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.tool-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-8px);
}

.tool-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(74, 168, 178, 0.3), transparent 50%, rgba(88, 216, 177, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover .tool-card-glow {
    opacity: 1;
}

.tool-card-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.tool-card:hover .tool-card-inner {
    background: var(--bg-card-hover);
    border-color: rgba(74, 168, 178, 0.3);
}

.tool-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.tool-card:hover .tool-number {
    color: rgba(74, 168, 178, 0.08);
}

.tool-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--tool-color-1), var(--tool-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.tool-card:hover .tool-icon {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tool-icon-ring {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 2px dashed rgba(74, 168, 178, 0.2);
    opacity: 0;
    transition: var(--transition);
    animation: iconRingSpin 10s linear infinite;
}

.tool-card:hover .tool-icon-ring {
    opacity: 1;
}

@keyframes iconRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tool-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.tool-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tool-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(74, 168, 178, 0.08);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.tool-features span i {
    font-size: 0.6rem;
    color: var(--accent-mint);
}

.tool-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.live {
    background: var(--accent-mint);
    box-shadow: 0 0 8px var(--accent-mint);
    animation: statusPulse 2s ease infinite;
}

.status-dot.soon {
    background: var(--accent-orange);
    box-shadow: 0 0 8px var(--accent-orange);
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 4px currentColor; }
    50% { box-shadow: 0 0 12px currentColor; }
}

.tool-launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid rgba(74, 168, 178, 0.4);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.tool-launch-btn:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--glow-secondary);
    color: var(--text-white);
}

.tool-launch-btn.disabled-btn {
    border-color: rgba(255, 138, 61, 0.3);
    color: var(--accent-orange);
}

.tool-launch-btn.disabled-btn:hover {
    background: rgba(255, 138, 61, 0.1);
    border-color: var(--accent-orange);
    box-shadow: 0 5px 20px rgba(255, 138, 61, 0.2);
}

/* Coming Soon overlay */
.tool-card.coming-soon .tool-card-inner::after {
    content: 'COMING SOON';
    position: absolute;
    top: 22px;
    right: -35px;
    transform: rotate(45deg);
    background: var(--gradient-warm);
    padding: 4px 45px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
}

/* ====== FEATURES SECTION ====== */
.features-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-darker);
}

.features-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 91, 142, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 32px;
    background: rgba(17, 22, 41, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card);
    border-color: rgba(74, 168, 178, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrap {
    margin-bottom: 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(74, 168, 178, 0.1);
    border: 1px solid rgba(74, 168, 178, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-mint);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 25px var(--glow-secondary);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ====== STATS SECTION ====== */
.stats-section {
    padding: 100px 0;
    position: relative;
}

.stats-wrapper {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(90, 91, 142, 0.1), rgba(74, 168, 178, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
}

.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}

.stat-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--accent-mint);
    display: inline;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 8px;
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-darker);
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 36px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(74, 168, 178, 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 168, 178, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-stars i {
    color: #FFC107;
    font-size: 0.8rem;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}

.testi-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ====== CTA SECTION ====== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 91, 142, 0.25) 0%, transparent 70%);
    left: -100px;
    top: -100px;
    animation: orbFloat1 10s ease-in-out infinite;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 216, 177, 0.2) 0%, transparent 70%);
    right: -100px;
    bottom: -100px;
    animation: orbFloat2 12s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-actions {
    margin-bottom: 20px;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--accent-mint);
}

/* ====== FOOTER ====== */
.site-footer {
    padding-top: 80px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding-bottom: 50px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 16px 0 24px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--glow-secondary);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent-mint);
    padding-left: 8px;
}

.footer-sub-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.footer-newsletter:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(74, 168, 178, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 0.88rem;
    outline: none;
    font-family: var(--font-primary);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    padding: 14px 22px;
    background: var(--gradient-main);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-btn:hover {
    opacity: 0.85;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.copyright a {
    color: var(--accent-mint);
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--accent-mint);
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-main);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 25px var(--glow-secondary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--glow-secondary);
}

/* ====== ANIMATION UTILITIES ====== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1199px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 14, 26, 0.97);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px 25px;
        margin-top: 15px;
        border: 1px solid var(--border-color);
    }

    .nav-cta-btn {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }

    .theme-toggle-btn {
        margin-left: 0;
        margin-top: 12px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-dashboard {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-glow, .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .tool-card-inner {
        padding: 30px 22px;
    }

    .feature-card {
        padding: 30px 22px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}
section#hero {
    padding-top: 200px;
    padding-bottom: 160px;
}
