/* ==========================================
   ROOT VARIABLES & RESET
   ========================================== */
:root {
    --primary: #6f00ff;
    --primary-dark: #3b0270;
    --primary-light: #b47dff;
    --primary-glow: rgba(111, 0, 255, 0.42);
    --secondary: #8f4dff;
    --accent: #fff1f1;
    --dark: #090012;
    --dark-lighter: #130022;
    --dark-card: #1a0833;
    --dark-border: #2c1450;
    --text: #fff1f1;
    --text-muted: #8888a8;
    --text-light: #fff1f1;
    --gradient-primary: linear-gradient(135deg, #6f00ff 0%, #9856ff 55%, #3b0270 100%);
    --gradient-bg: linear-gradient(135deg, #090012 0%, #130022 50%, #1a0833 100%);
    --gradient-card: linear-gradient(135deg, rgba(111, 0, 255, 0.2), rgba(59, 2, 112, 0.18));
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 12px 42px rgba(111, 0, 255, 0.45);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   PRELOADER
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-inner {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: loaderBounce 1.4s infinite ease-in-out both;
}

.loader-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loaderBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.loader-text {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.06s linear;
    display: none;
}

.custom-cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: width 0.14s ease, height 0.14s ease, border-color 0.14s ease;
    will-change: transform;
    display: none;
}

@media (min-width: 1024px) {

    .custom-cursor,
    .custom-cursor-follower {
        display: block;
    }

    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea {
        cursor: none;
    }
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.brand-wordmark {
    font-family: "Google Sans", "Product Sans", var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-light);
    line-height: 1;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.preloader-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    position: relative;
}

.lang-current {
    position: relative;
    min-width: 74px;
    height: 44px;
    padding: 0 10px;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-current:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(111, 0, 255, 0.18);
}

.lang-current .lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-current .lang-code {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.lang-current .fa-chevron-down {
    position: absolute;
    bottom: 4px;
    right: 4px;
    font-size: 9px;
    opacity: 0.85;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(19, 0, 34, 0.96);
    border: 1px solid var(--dark-border);
    border-radius: 999px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: var(--transition);
    pointer-events: none;
    z-index: 1200;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-option {
    min-width: 42px;
    height: 36px;
    border-radius: 50px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-option .lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-option .lang-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.lang-option:hover .lang-code,
.lang-option.active .lang-code {
    color: #ffffff;
}

.lang-option:hover {
    background: rgba(111, 0, 255, 0.2);
    border-color: rgba(111, 0, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.14);
}

.lang-option.active {
    background: var(--gradient-primary);
    border-color: rgba(255, 255, 255, 0.28);
}

.lang-option .lang-flag {
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mobile-lang-switcher .lang-option {
    width: 42px;
    height: 42px;
    border-color: var(--dark-border);
    background: rgba(255, 255, 255, 0.04);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(111, 0, 255, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--dark-border);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
}

.btn-ghost:hover {
    color: var(--primary-light);
}

.btn-white {
    background: white;
    color: var(--dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-ghost-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 30px 30px;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-nav-link:hover {
    color: var(--text-light);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-actions .btn {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-light);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

/* Hero Visual - Chat Interface */
.hero-visual {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.chat-interface {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.chat-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(108, 92, 231, 0.1);
    border-bottom: 1px solid var(--dark-border);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b894;
    border: 2px solid var(--dark-card);
}

.chat-header-left h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.chat-header-left .status {
    font-size: 12px;
    color: #00b894;
}

.chat-header-right {
    display: flex;
    gap: 12px;
}

.chat-header-right button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.chat-header-right button:hover {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

.chat-messages {
    padding: 24px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    max-width: 85%;
    animation: messageSlide 0.5s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 14px 18px;
}

.chat-message.user .message-content {
    background: rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.message-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}

.message-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.message-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
}

.list-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.typing-indicator {
    display: flex;
    gap: 12px;
    align-items: center;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.chat-input-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--dark-border);
}

.chat-input-bar input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.chat-input-bar input:focus {
    border-color: var(--primary);
}

.chat-input-bar button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.attach-btn,
.mic-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.send-btn {
    background: var(--gradient-primary);
    color: white;
}

.send-btn:hover {
    transform: scale(1.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 3;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.floating-card span {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.card-1 {
    top: 10%;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: -60px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: -40px;
    animation-delay: 4s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--dark-border);
}

.brands-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-slider {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: brandScroll 30s linear infinite;
    width: max-content;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 24px;
    white-space: nowrap;
    opacity: 0.5;
    transition: var(--transition);
}

.brand-item span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
}

.brand-item:hover {
    opacity: 1;
    color: var(--text-light);
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
}

.feature-icon-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    border-radius: 16px;
    background: var(--primary);
    filter: blur(30px);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-glow {
    opacity: 0.3;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
}

.feature-link:hover {
    gap: 12px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 120px 0;
    position: relative;
    background: var(--dark-lighter);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-dashboard {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--dark-border);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) {
    background: #ff5f57;
}

.dash-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dash-dots span:nth-child(3) {
    background: #28ca41;
}

.dashboard-header>span {
    font-size: 13px;
    color: var(--text-muted);
}

.dashboard-content {
    padding: 24px;
}

.dash-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 16px;
}

.dash-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.dash-stat-icon.blue {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

.dash-stat-icon.green {
    background: rgba(0, 206, 201, 0.2);
    color: var(--secondary);
}

.dash-stat-num {
    display: block;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.dash-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.dash-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.chart-period {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(108, 92, 231, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: var(--transition);
    animation: chartGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes chartGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.chart-bar span {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--text-muted);
}

.chart-bar:hover {
    opacity: 0.8;
}

.dash-progress-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-header span:first-child {
    font-size: 13px;
    color: var(--text);
}

.progress-header span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: var(--width);
    animation: progressGrow 2s ease-out forwards;
    transform-origin: left;
}

@keyframes progressGrow {
    from {
        width: 0;
    }
}

.about-float-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    animation: cardFloat 5s ease-in-out infinite;
}

.afc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 121, 168, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.afc-title {
    display: block;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.afc-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* About Content */
.about-content .section-tag {
    display: inline-flex;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
}

.afi-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-item h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-section {
    padding: 120px 0;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.3);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 25px;
}

.step-icon-wrapper {
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 30px;
    margin: 0 auto;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.step-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: var(--dark-border);
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
}

/* ==========================================
   SERVICES / USE CASES
   ========================================== */
.services-section {
    padding: 120px 0;
    background: var(--dark-lighter);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-stats {
    padding-top: 16px;
    border-top: 1px solid var(--dark-border);
}

.service-stats span {
    font-size: 13px;
    font-weight: 600;
    color: #00b894;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   COUNTER SECTION
   ========================================== */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.1));
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
}

.counter-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin: 0 auto 16px;
}

.counter-number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 120px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--text-light);
}

.toggle-switch {
    width: 56px;
    height: 30px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    padding: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(26px);
}

.save-badge {
    background: rgba(0, 206, 201, 0.15);
    color: var(--secondary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-light);
    display: block;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.currency {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

.amount {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
}

.plan-features li i {
    font-size: 12px;
}

.plan-features li .fa-check {
    color: #00b894;
}

.plan-features li .fa-times {
    color: var(--text-muted);
}

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 120px 0;
    background: var(--dark-lighter);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #ffd32a;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ==========================================
   INTEGRATIONS SECTION
   ========================================== */
.integration-section {
    padding: 120px 0;
}

.integration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.integration-content .section-tag {
    display: inline-flex;
}

.integration-content .section-title {
    text-align: left;
    font-size: 40px;
}

.integration-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.int-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.int-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-muted);
    transition: var(--transition);
    animation: intPop 0.5s ease-out calc(var(--delay)) both;
}

@keyframes intPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.int-icon:hover {
    color: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 120px 0;
    background: var(--dark-lighter);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(108, 92, 231, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(108, 92, 231, 0.05);
}

.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-light);
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 120px 0;
}

.cta-wrapper {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-orb.orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-orb.orb-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -40px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content h2 .text-gradient {
    -webkit-text-fill-color: white;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 120px 0;
    background: var(--dark-lighter);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.ci-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-socials {
    display: flex;
    gap: 12px;
    padding-top: 10px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-secondary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 80px 0 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==========================================
   CHAT WIDGET
   ========================================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 999;
}

.chat-widget-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    position: relative;
}

.chat-widget-btn .fa-times {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
    transition: var(--transition);
}

.chat-widget.active .chat-widget-btn .fa-comment-dots {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.chat-widget.active .chat-widget-btn .fa-times {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.chat-widget-btn:hover {
    transform: scale(1.1);
}

.chat-widget-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}

.chat-widget.active .chat-widget-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--gradient-primary);
}

.widget-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.widget-header h4 {
    font-family: var(--font-primary);
    color: white;
    font-size: 15px;
}

.widget-header span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.widget-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.widget-messages {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-message {
    max-width: 85%;
}

.widget-message.bot {
    align-self: flex-start;
}

.widget-message.user {
    align-self: flex-end;
}

.widget-message p {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.widget-message.bot p {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.widget-message.user p {
    background: rgba(108, 92, 231, 0.3);
    border: 1px solid rgba(108, 92, 231, 0.4);
    color: var(--text-light);
    border-bottom-right-radius: 4px;
}

.widget-input {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--dark-border);
}

.widget-input input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.widget-input input:focus {
    border-color: var(--primary);
}

.widget-input button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.widget-input button:hover {
    transform: scale(1.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   ANIMATIONS (data-aos replacement)
   ========================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-features-list {
        text-align: left;
    }

    .about-float-card {
        right: 10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
    }

    .integration-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .integration-content .section-title {
        text-align: center;
    }

    .int-icon-grid {
        justify-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        display: none;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .steps-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .cta-wrapper {
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .chat-widget {
        right: 20px;
    }

    .chat-widget-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .step-connector {
        display: none;
    }

    .int-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-number {
        font-size: 32px;
    }

    .chat-messages {
        min-height: 200px;
    }

    .int-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .int-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}