/* ============================================================
   AWFlux — Site Institucional
   style.css
   ============================================================ */

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

:root {
    --brand: #6C3CE1;
    --brand-dark: #4A1DB5;
    --brand-light: #8B5CF6;
    --brand-glow: rgba(108, 60, 225, 0.15);
    --green: #10B981;
    --green-dark: #059669;
    --red: #EF4444;
    --blue: #3B82F6;
    --orange: #F59E0B;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(108, 60, 225, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--brand);
    border: 2px solid var(--brand);
}

.btn-secondary:hover {
    background: var(--brand);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--brand);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.navbar-brand span {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand span {
    color: var(--dark);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-light);
    transition: width 0.3s;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .navbar-links a {
    color: var(--gray-600);
}

.navbar.scrolled .navbar-links a:hover {
    color: var(--brand);
}

.navbar-cta {
    padding: 10px 24px;
    font-size: 13px;
}

/* ============================================================
   NAVBAR DROPDOWN
   ============================================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown > a svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-dropdown:hover > a svg {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
    min-width: 220px;
    padding: 24px 8px 8px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(-6px);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--gray-700) !important;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--brand) !important;
}

.dropdown-menu a span.drop-icon {
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 8px;
    flex-shrink: 0;
}

/* Mobile dropdown */
.mobile-menu .mobile-drop-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 16px 0 6px;
    pointer-events: none;
}

.mobile-menu .mobile-drop-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 12px;
    border-left: 2px solid var(--brand-light);
    margin-bottom: 8px;
}

.mobile-menu .mobile-drop-links a {
    font-size: 15px;
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle i {
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggle i {
    color: var(--dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0F0C29 0%, #1e1b4b 25%, #302b63 50%, #4c1d95 75%, #24243e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 30%, #8b5cf6 60%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 4px;
}

/* ============================================================
   SECTIONS GLOBAL
   ============================================================ */
section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand);
    background: var(--brand-glow);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   FEATURES (SOLUÇÕES)
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
    color: var(--brand);
}

.feature-icon.green {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: var(--green-dark);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: var(--blue);
}

.feature-icon.red {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    color: var(--red);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: var(--orange);
}

.feature-icon.indigo {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    color: #4F46E5;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.feature-list {
    margin-top: 16px;
}

.feature-list li {
    font-size: 13px;
    color: var(--gray-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#como-funciona {
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(108, 60, 225, 0.3);
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   DASHBOARD PREVIEW
   ============================================================ */
#dashboard-preview {
    background: linear-gradient(135deg, #0F0C29 0%, #1e1b4b 50%, #302b63 100%);
    color: var(--white);
}

.dashboard-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    width: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

/* Browser frame around screenshot */
.screenshot-frame {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
}

.screenshot-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #1a1a2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.screenshot-dots {
    display: flex;
    gap: 7px;
}

.screenshot-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-dots span:nth-child(1) { background: #ff5f56; }
.screenshot-dots span:nth-child(2) { background: #ffbd2e; }
.screenshot-dots span:nth-child(3) { background: #27c93f; }

.screenshot-url {
    font-size: 12px;
    color: var(--gray-500);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 16px;
    border-radius: 6px;
    font-family: monospace;
    letter-spacing: 0.3px;
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
    background: #0F172A;
}

/* Fallback quando a imagem não carrega */
.screenshot-frame.img-placeholder {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1f 100%);
}

.screenshot-frame.img-placeholder::after {
    content: attr(data-label);
    font-size: 18px;
    font-weight: 600;
    color: rgba(196, 181, 253, 0.6);
    text-align: center;
    padding: 40px;
    letter-spacing: 0.5px;
}

/* Captions below screenshot */
.carousel-caption {
    text-align: center;
    padding: 24px 20px 8px;
}

.caption-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Navigation: arrows + dots */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.08);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--brand-light);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
    transform: scale(1.25);
}

.carousel-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.client-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin: 0 auto 20px;
    padding: 12px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.client-card .client-location {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.client-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.client-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 60px 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-bar-item .value {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
}

.stats-bar-item .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
#beneficios {
    background: var(--gray-50);
}

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

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--brand-light);
    box-shadow: 0 4px 12px var(--brand-glow);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    font-size: 64px;
    font-weight: 900;
    color: var(--brand-glow);
    position: absolute;
    top: 12px;
    left: 24px;
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-400);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #0F0C29 0%, #1e1b4b 30%, #4c1d95 60%, #302b63 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 60%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    padding: 4px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand);
    color: var(--white);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close i {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

}

@media (max-width: 1024px) {
    .dashboard-carousel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .hero-stat-value {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    section {
        padding: 64px 0;
    }

    .hero .container {
        padding-top: 80px;
        padding-bottom: 48px;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-item .value {
        font-size: 32px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-caption p {
        font-size: 13px;
    }

    .screenshot-topbar {
        padding: 8px 12px;
    }

    .screenshot-url {
        font-size: 10px;
        padding: 3px 10px;
    }

    .screenshot-dots span {
        width: 9px;
        height: 9px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
