/* ==========================================================================
   PriceXP SaaS Landing Page Stylesheet
   Design System: Premium Dark Theme, Glassmorphism, Neon Glows, Responsive
   ========================================================================== */

:root {
    --bg-main: #0b0f19;
    --bg-card: #131b2f;
    --bg-card-hover: #1c263e;
    --bg-input: #0f172a;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --accent-emerald: #10b981;
    --accent-emerald-hover: #059669;
    --accent-emerald-glow: rgba(16, 185, 129, 0.25);
    
    --accent-blue: #1e3a8a;
    --accent-blue-bright: #3b82f6;
    --accent-blue-glow: rgba(59, 130, 246, 0.25);
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-light: rgba(255, 255, 255, 0.12);
    --border-emerald: rgba(16, 185, 129, 0.4);
    
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
    --shadow-glow-blue: 0 0 40px rgba(30, 58, 138, 0.3);
}

/* Reset & Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Background Particles Container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-emerald {
    color: var(--accent-emerald);
}

.text-muted {
    color: var(--text-muted);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(19, 27, 47, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: var(--border-glass-light);
}

/* Buttons System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid var(--border-glass-light);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: rgba(30, 58, 138, 0.4);
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.25s ease;
}

.btn-login:hover {
    background: rgba(30, 58, 138, 0.8);
    color: #ffffff;
    border-color: #3b82f6;
}

/* Badge Component */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Product Switcher Component in Navbar */
.product-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3px;
    border-radius: 9999px;
    margin-left: 1rem;
}

.switcher-item {
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.25s ease;
}

.switcher-item:hover {
    color: #ffffff;
}

.switcher-item.active {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 9rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-microcopy {
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ==========================================================================
   CANONICAL SMARTPHONE HARDWARE COMPONENT SYSTEM (UNIFIED PF & MEI)
   ========================================================================== */
.hero-demo-wrapper {
    position: relative;
    width: 100%;
}

.hero-demo-container {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

.smartphone-shell {
    width: 250px;
    height: 480px;
    background: #1e1e1e;
    border-radius: 35px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.smartphone-shell.mei {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(6, 182, 212, 0.15);
}

.smartphone-shell.pf:hover {
    transform: translateY(-4px);
    border-color: #10b981;
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.25);
}

.smartphone-shell.mei:hover {
    transform: translateY(-4px);
    border-color: #06b6d4;
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(6, 182, 212, 0.25);
}

.smartphone-screen {
    background: #0b0f19;
    width: 100%;
    height: 100%;
    border-radius: 33px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.smartphone-notch {
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #0b0f19;
    z-index: 5;
}

.smartphone-speaker {
    width: 45px;
    height: 4px;
    background: #2a2a2a;
    border-radius: 2px;
}

.smartphone-camera {
    width: 10px;
    height: 10px;
    background: #2a2a2a;
    border-radius: 50%;
    position: absolute;
    right: 35px;
}

/* Backward compatibility mappings for legacy selectors */
.phone-rodry-card { width: 250px; height: 480px; background: #1e1e1e; border-radius: 35px; border: 2px solid #2a2a2a; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.15); position: relative; overflow: hidden; flex-shrink: 0; }
.phone-rodry-card .card-int { background: #0b0f19; width: 100%; height: 100%; border-radius: 33px; display: flex; flex-direction: column; overflow: hidden; }
.phone-rodry-card .top { height: 24px; display: flex; justify-content: center; align-items: center; position: relative; background: #0b0f19; z-index: 5; }
.phone-rodry-card .speaker { width: 45px; height: 4px; background: #2a2a2a; border-radius: 2px; }
.phone-rodry-card .camera { width: 10px; height: 10px; background: #2a2a2a; border-radius: 50%; position: absolute; right: 35px; }


/* WhatsApp Live Phone Simulator Card */
.wa-sim-card {
    display: flex;
    flex-direction: column;
    height: calc(100% - 24px);
    background: #0b141a;
}

.wa-sim-header {
    background: #202c33;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-sim-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.wa-sim-user-info {
    display: flex;
    flex-direction: column;
}

.wa-sim-name {
    color: #e9edef;
    font-weight: 600;
    font-size: 0.95rem;
}

.wa-sim-status {
    color: #00a884;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-sim-body {
    flex: 1;
    padding: 1rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.wa-sim-body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.wa-bubble {
    max-width: 88%;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.4s ease forwards;
}

.wa-bubble-user {
    align-self: flex-end;
    background: #005c4b;
    color: #e9edef;
    border-top-right-radius: 2px;
}

.wa-bubble-bot {
    align-self: flex-start;
    background: #202c33;
    color: #d1d7db;
    border-top-left-radius: 2px;
    border-left: 3px solid #10b981;
}

.wa-bubble-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 3px;
}

/* Dashboard Live Mini Card */
.dash-mini-card {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    background: #0b0f19;
}

.dash-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.dash-mini-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dash-mini-balance {
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.75rem;
}

.dash-mini-bal-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.dash-mini-bal-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 2px;
}

.dash-mini-txs-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.dash-mini-tx-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.dash-mini-tx-list::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.dash-mini-tx-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    animation: slideInRight 0.4s ease forwards;
}

/* Category Badges (Imported System) */
.cat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

/* ==========================================================================
   Section: 3 Steps (Você fala. O PriceXP organiza.)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.step-card {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--border-emerald);
    color: var(--accent-emerald);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.step-card-box {
    width: 100%;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    font-size: 0.85rem;
    text-align: left;
}

/* ==========================================================================
   Section: Natural Language Interactive Try Out
   ========================================================================== */
.nl-container {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
}

.nl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.nl-examples {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.nl-item {
    background: rgba(19, 27, 47, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.nl-item:hover, .nl-item.active {
    border-color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(4px);
}

.nl-item i {
    color: var(--accent-emerald);
}

.nl-parser-box {
    background: #0b141a;
    border: 1px solid var(--border-emerald);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.nl-parser-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-emerald);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nl-parser-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.nl-field-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.85rem;
}

.nl-field-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.nl-field-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 2px;
}

/* ==========================================================================
   Section: Traditional vs PriceXP Comparison
   ========================================================================== */
.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
}

.comp-card-trad {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-card-pricexp {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid var(--border-emerald);
    box-shadow: var(--shadow-glow);
}

.comp-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.comp-badge-trad { color: #ef4444; }
.comp-badge-pricexp { color: #10b981; }

.comp-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.comp-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comp-step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
}

.comp-step-icon-bad {
    color: #ef4444;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comp-step-icon-good {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Section: Real Features Grid (6 Cards)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.feature-card {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Section: Pricing Cards (Standard vs Anual)
   ========================================================================== */
/* ==========================================================================
   Section: Pricing Cards (3 Tiers: Essencial, Inteligente, Premium)
   ========================================================================== */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pricing-toggle-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass-light);
    padding: 4px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
}

.pricing-toggle-btn {
    padding: 0.55rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.pricing-toggle-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: var(--radius-xl);
}

.price-card-inteligente {
    background: linear-gradient(135deg, rgba(19, 27, 47, 0.95) 0%, rgba(16, 185, 129, 0.12) 100%);
    border: 2px solid var(--accent-emerald);
    box-shadow: 0 0 45px rgba(16, 185, 129, 0.25);
    transform: scale(1.03);
    z-index: 2;
}

.price-top-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.price-off-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}

.price-plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.price-old-val {
    font-size: 0.95rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.price-val-box {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 0.75rem 0;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    transition: opacity 0.15s ease;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-equiv {
    font-size: 0.85rem;
    color: var(--accent-emerald);
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.price-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.price-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-feature-item i {
    color: var(--accent-emerald);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Grounded Security Grid Component */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.security-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.security-card i {
    font-size: 1.5rem;
    color: var(--accent-emerald);
    margin-bottom: 0.5rem;
}

.security-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.security-card-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Feature Special Highlight Card: PriceXP Vision */
.feature-card-vision {
    background: linear-gradient(135deg, rgba(19, 27, 47, 0.9) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.4);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Conta Conjunta Spotlight Box */
.joint-account-card {
    background: linear-gradient(135deg, rgba(19, 27, 47, 0.9) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    margin-top: 4rem;
}


/* ==========================================================================
   Section: FAQ Accordion
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(19, 27, 47, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    color: var(--accent-emerald);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

/* ==========================================================================
   Section: Final CTA & Footer
   ========================================================================== */
.cta-final-box {
    text-align: center;
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid var(--border-emerald);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;

}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--text-main);
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   Mobile First Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nl-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    .nav-menu {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-glass);
        color: var(--text-main);
        cursor: pointer;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.25;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    
    .hero-demo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }

    .phone-rodry-card {
        width: 275px !important;
        height: 450px !important;
        margin: 0 auto;
    }
    
    .steps-grid,
    .comp-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .phone-rodry-card {
        width: 255px !important;
        height: 420px !important;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 0.85rem 1.25rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   ORIGINKIT NEON BORDER BUTTONS SYSTEM
   ========================================================================== */
@property --neon-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.btn-neon,
.btn-primary,
.btn-cta-glow {
    position: relative !important;
    isolation: isolate !important;
    overflow: visible !important;
    z-index: 1 !important;
    border: none !important;
    background: #0f172a !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    border-radius: 24px !important;
    padding: 0.85rem 1.85rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Sharp Conic Gradient Outer Border (Originkit Continuous Movement) */
.btn-neon::before,
.btn-primary::before,
.btn-cta-glow::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    padding: 3px;
    background: conic-gradient(
        from var(--neon-angle, 0deg) at 50% 50%,
        rgba(16, 185, 129, 0) 0deg,
        rgba(16, 185, 129, 0.25) 40deg,
        #10b981 120deg,
        #3b82f6 180deg,
        #10b981 240deg,
        rgba(16, 185, 129, 0.25) 320deg,
        rgba(16, 185, 129, 0) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-clip: content-box, border-box;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    animation: neonSpin 3.2s linear infinite;
}

/* Multi-layer Ambient Glow (Originkit 3-Layer Blur Blend) */
.btn-neon::after,
.btn-primary::after,
.btn-cta-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: conic-gradient(
        from var(--neon-angle, 0deg) at 50% 50%,
        rgba(16, 185, 129, 0) 0deg,
        rgba(16, 185, 129, 0.3) 40deg,
        #10b981 120deg,
        #3b82f6 180deg,
        #10b981 240deg,
        rgba(16, 185, 129, 0.3) 320deg,
        rgba(16, 185, 129, 0) 360deg
    );
    filter: blur(14px);
    opacity: 0.8;
    pointer-events: none;
    z-index: -2;
    animation: neonSpin 3.2s linear infinite;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Hover Interaction & Glow Expansion */
.btn-neon:hover,
.btn-primary:hover,
.btn-cta-glow:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: #1e293b !important;
    color: #ffffff !important;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.45) !important;
}

.btn-neon:hover::after,
.btn-primary:hover::after,
.btn-cta-glow:hover::after {
    filter: blur(22px);
    opacity: 1;
}

@keyframes neonSpin {
    0% {
        --neon-angle: 0deg;
    }
    100% {
        --neon-angle: 360deg;
    }
}

/* ==========================================================================
   PREMIUM TYPOGRAPHIC ANIMATIONS SYSTEM
   ========================================================================== */

/* 1. Aurora Gradient Text */
.aurora-gradient-text {
    background: linear-gradient(
        120deg,
        #10b981 0%,
        #34d399 25%,
        #3b82f6 50%,
        #60a5fa 75%,
        #10b981 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: auroraFlow 6s ease-in-out infinite alternate;
}

@keyframes auroraFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* 2. 3D Stagger Flip Text (Safe Failover) */
.stagger-flip-target,
.stagger-line-base {
    display: inline-block;
    opacity: 1 !important;
    transform: none !important;
}

.stagger-flip-target .stagger-char,
.stagger-flip-target .stagger-word {
    display: inline-block;
    opacity: 1 !important;
    transform: none !important;
}

/* 3. Kinetic Grid Converge */
.kinetic-words-fade-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
    transition: all 0.8s ease;
}

.kw-fade-word {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.kw-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

.kinetic-target-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-bottom: 1rem;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.kinetic-target-word {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #10b981;
}

.kinetic-converge-card.converged .kw-fade-word {
    opacity: 0;
    transform: scale(0.85) translateY(-8px);
    filter: blur(4px);
}

.kinetic-converge-card.converged .kinetic-target-pill {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

/* 4. Dynamic Weight Banner (Cursor Proximity) */
.dynamic-weight-banner {
    font-size: 1.85rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-main);
    display: inline-block;
    padding: 1rem 2rem;
    cursor: default;
    user-select: none;
    font-variation-settings: 'wght' var(--dw-weight, 400);
}

.dynamic-weight-banner .dw-char {
    display: inline-block;
    font-variation-settings: 'wght' var(--char-weight, 400);
    font-weight: var(--char-weight, 400);
    transition: font-weight 0.1s ease, font-variation-settings 0.1s ease;
}

/* Mobile & Accessibility Overrides */
@media (max-width: 768px) {
    .dynamic-weight-banner {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   HERO SEQUENTIAL ANIMATION & SCROLL REVEAL SYSTEM
   ========================================================================== */

/* Hero Headline Line-by-Line Entrance */
.hero-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
    animation: heroLineFadeIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    will-change: transform, opacity, filter;
}

.hero-line-1 { animation-delay: 0.05s; }
.hero-line-2 { animation-delay: 0.19s; }
.hero-line-3 { animation-delay: 0.33s; }

@keyframes heroLineFadeIn {
    0% {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Subtitle, CTAs & Microcopy Stagger Items */
.hero-stagger-item {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(5px);
    animation: heroItemFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-delay-sub   { animation-delay: 0.50s; }
.hero-delay-cta   { animation-delay: 0.70s; }
.hero-delay-micro { animation-delay: 0.85s; }

@keyframes heroItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Hero Right Side Mockup Cards Entrance */
.hero-mockup-wa {
    opacity: 0;
    transform: translateX(35px) scale(0.98);
    animation: heroWaCardSlide 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
}

.hero-mockup-dash {
    opacity: 0;
    transform: translateX(45px) scale(0.98);
    animation: heroDashCardSlide 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.60s forwards;
}

@keyframes heroWaCardSlide {
    0% {
        opacity: 0;
        transform: translateX(35px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroDashCardSlide {
    0% {
        opacity: 0;
        transform: translateX(45px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 3D Stagger Flip Word-by-Word (Disabled to prevent line overlap) */
.stagger-line-base,
.stagger-flip-target,
.stagger-flip-target .stagger-word {
    display: inline-block;
    opacity: 1 !important;
    transform: none !important;
}

/* Style 1: Universal Title Scroll Reveal (.reveal-title) */
.reveal-title {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, filter;
}

.reveal-title.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (max-width: 768px) {
    .hero-line, .hero-stagger-item, .reveal-title {
        filter: none !important;
        animation-duration: 0.65s !important;
    }
    .hero-mockup-wa, .hero-mockup-dash {
        transform: translateY(20px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aurora-gradient-text {
        animation: none !important;
        background-position: 0% 50% !important;
    }
    .stagger-flip-target .stagger-word {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .kinetic-words-fade-wrapper {
        display: none !important;
    }
    .dynamic-weight-banner .dw-char {
        font-weight: 700 !important;
        transition: none !important;
    }
    .hero-line, .hero-stagger-item, .hero-mockup-wa, .hero-mockup-dash, .reveal-title, .stagger-line-base {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   UIVERSE 00KUBI CYBER GLOW FEATURE CARDS SYSTEM
   ========================================================================== */
.feature-card {
    position: relative !important;
    isolation: isolate !important;
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 2.25rem 1.75rem !important;
    overflow: hidden !important;
    perspective: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                filter 0.35s ease !important;
    will-change: transform;
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25), inset 0 0 25px rgba(16, 185, 129, 0.12) !important;
    filter: brightness(1.08);
}

.feature-card-inner {
    position: relative;
    z-index: 10;
}

/* Corner Bracket Elements */
.corner-elements span {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(59, 130, 246, 0.25);
    pointer-events: none;
    z-index: 5;
    transition: all 0.3s ease;
}

.corner-elements span:nth-child(1) { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.corner-elements span:nth-child(2) { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.corner-elements span:nth-child(3) { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.corner-elements span:nth-child(4) { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.feature-card:hover .corner-elements span {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

/* Scan Line Animation */
.scan-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(16, 185, 129, 0.12),
        transparent
    );
    transform: translateY(-100%);
    animation: scanMove 2.8s linear infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes scanMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Cyber Animated Horizon Lines */
.cyber-lines span {
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(16, 185, 129, 0.25),
        transparent
    );
    pointer-events: none;
    z-index: 3;
}

.cyber-lines span:nth-child(1) { top: 25%; left: 0; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left; animation: lineGrow 3s linear infinite; }
.cyber-lines span:nth-child(2) { top: 50%; right: 0; width: 100%; height: 1px; transform: scaleX(0); transform-origin: right; animation: lineGrow 3s linear infinite 1s; }
.cyber-lines span:nth-child(3) { top: 75%; left: 0; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left; animation: lineGrow 3s linear infinite 2s; }

@keyframes lineGrow {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

/* Ambient Radial Glowing Elements */
.glowing-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.glow-1, .glow-2, .glow-3 {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(16, 185, 129, 0.25) 0%,
        rgba(16, 185, 129, 0) 70%
    );
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.glow-1 { top: -25px; left: -25px; }
.glow-2 { top: 50%; right: -30px; transform: translateY(-50%); }
.glow-3 { bottom: -25px; left: 35%; }

.feature-card:hover .glowing-elements div {
    opacity: 1;
}

/* Floating Card Particles */
.card-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.feature-card:hover .card-particles span {
    animation: particleFloat 2.2s infinite;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(calc(var(--x, 0) * 35px), calc(var(--y, 0) * 35px)); opacity: 0; }
}

.card-particles span:nth-child(1) { --x: 1; --y: -1; top: 40%; left: 20%; }
.card-particles span:nth-child(2) { --x: -1; --y: -1; top: 60%; right: 20%; }
.card-particles span:nth-child(3) { --x: 0.5; --y: 1; top: 20%; left: 40%; }
.card-particles span:nth-child(4) { --x: -0.5; --y: 1; top: 80%; right: 40%; }
.card-particles span:nth-child(5) { --x: 1; --y: 0.5; top: 30%; left: 60%; }
.card-particles span:nth-child(6) { --x: -1; --y: 0.5; top: 70%; right: 60%; }

/* Card Glare Sweep */
.card-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.04) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 55%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
    z-index: 5;
}

.feature-card:hover .card-glare {
    opacity: 1;
}

/* ==========================================================================
   UIVERSE ADAMGIEBL DYNAMIC 4-BLOB ANIMATED GLASS CARDS (FOR STEP CARDS)
   ========================================================================== */
.step-card {
    position: relative !important;
    isolation: isolate !important;
    background: rgba(15, 23, 42, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 21px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 12px 12px 25px -12px rgba(0, 0, 0, 0.75), inset 0 0 15px rgba(255, 255, 255, 0.15) !important;
    overflow: hidden !important;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease !important;
}

.step-card-1 { transform: rotate(-1.5deg); }
.step-card-2 { transform: rotate(1deg); }
.step-card-3 { transform: rotate(-1deg); }

.step-card:hover {
    transform: translateY(-6px) rotate(0deg) scale(1.02) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.25) !important;
}

.step-card-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(15, 23, 42, 0.45));
    border-radius: 21px;
    padding: 2.25rem 1.75rem;
    height: 100%;
}

/* 4 Liquid Dynamic Blobs (Animated) */
.blob {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    filter: blur(18px);
    opacity: 0.65;
    transition: all 0.5s ease;
    pointer-events: none;
    will-change: transform;
}

.step-card:hover .blob {
    opacity: 0.85;
    filter: blur(12px);
}

/* Blob 1: Top-Left (Emerald & Cyan Gradient) */
.blob-1 {
    left: -55px;
    top: -45px;
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    transform: rotate(12deg);
    animation: blobFloat1 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Blob 2: Middle-Left (Electric Blue & Indigo Gradient) */
.blob-2 {
    left: -35px;
    top: 110px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #1d4ed8);
    transform: rotate(20deg);
    animation: blobFloat2 22s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Blob 3: Bottom-Right (Purple & Magenta Gradient) */
.blob-3 {
    right: -55px;
    bottom: -20px;
    background: linear-gradient(135deg, #a855f7, #c084fc, #7e22ce);
    transform: rotate(-10deg);
    animation: blobFloat3 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Blob 4: Top-Right (Amber & Mint Golden Gradient) */
.blob-4 {
    right: -65px;
    top: 15px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24, #10b981);
    transform: rotate(-25deg);
    animation: blobFloat4 24s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Blob Keyframe Animations */
@keyframes blobFloat1 {
    0% {
        transform: translate(0, 0) rotate(12deg) scale(1);
    }
    50% {
        transform: translate(25px, 30px) rotate(35deg) scale(1.12);
    }
    100% {
        transform: translate(0, 0) rotate(12deg) scale(1);
    }
}

@keyframes blobFloat2 {
    0% {
        transform: translate(0, 0) rotate(20deg) scale(1);
    }
    50% {
        transform: translate(-20px, -25px) rotate(-25deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(20deg) scale(1);
    }
}

@keyframes blobFloat3 {
    0% {
        transform: translate(0, 0) rotate(-10deg) scale(1);
    }
    50% {
        transform: translate(-30px, -25px) rotate(35deg) scale(1.12);
    }
    100% {
        transform: translate(0, 0) rotate(-10deg) scale(1);
    }
}

@keyframes blobFloat4 {
    0% {
        transform: translate(0, 0) rotate(-25deg) scale(1);
    }
    50% {
        transform: translate(20px, -25px) rotate(-45deg) scale(0.92);
    }
    100% {
        transform: translate(0, 0) rotate(-25deg) scale(1);
    }
}

/* Sweeping Diagonal Shine Overlay */
.step-card::after {
    content: " ";
    position: absolute;
    width: 160%;
    height: 12px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        rgba(16, 185, 129, 0.8),
        rgba(255, 255, 255, 0.7),
        transparent
    );
    transform: rotateZ(45deg);
    filter: blur(18px);
    animation: shineSweep 9.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes shineSweep {
    0% {
        top: 130%;
        left: -130%;
    }
    40%, 100% {
        top: -40%;
        left: 110%;
    }
}

/* ==========================================================================
   UIVERSE ANARK_7616 GOOEY MORPHING DASHBOARD CARD
   ========================================================================== */
.morph-dashboard-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
    perspective: 1200px;
}

.morph-card {
    position: relative;
    width: 100%;
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: url(#morphGoo);
    cursor: pointer;
    padding: 1.5rem;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base Liquid Morph Blobs forming the gooey card base */
.morph-blob {
    position: absolute;
    background: #0b0f19;
    border-radius: 50%;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-radius 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                width 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                height 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.morph-blob-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 28px;
    animation: morphPulse1 16s ease-in-out infinite alternate;
}

.morph-blob-2 {
    width: 240px;
    height: 240px;
    top: -25px;
    left: 40px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    opacity: 0.35;
    animation: morphPulse2 18s ease-in-out infinite alternate;
}

.morph-blob-3 {
    width: 220px;
    height: 220px;
    bottom: -20px;
    right: 50px;
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    opacity: 0.35;
    animation: morphPulse3 20s ease-in-out infinite alternate;
}

/* Hover Gooey Transformation (anark_7616 re-shaping) */
.morph-card:hover .morph-blob-1 {
    border-radius: 35px;
    transform: rotate(-1.5deg) scale(1.01);
}

.morph-card:hover .morph-blob-2 {
    width: 280px;
    height: 280px;
    top: -45px;
    left: -15px;
    transform: rotate(15deg);
    opacity: 0.6;
}

.morph-card:hover .morph-blob-3 {
    width: 260px;
    height: 260px;
    bottom: -35px;
    right: 30px;
    transform: rotate(-12deg);
    opacity: 0.6;
}

/* Active State Compression */
.morph-card:active .morph-blob {
    transform: scale(0.97) !important;
    transition-duration: 0.2s;
}

/* Organic Morphing Pulse Keyframes */
@keyframes morphPulse1 {
    0% { border-radius: 28px; transform: scale(1) rotate(0deg); }
    50% { border-radius: 34px; transform: scale(1.01) rotate(0.5deg); }
    100% { border-radius: 26px; transform: scale(1) rotate(-0.5deg); }
}

@keyframes morphPulse2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.15); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes morphPulse3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Dashboard Content Frame */
.morph-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-mockup-frame {
    width: 100%;
    background: rgba(11, 15, 25, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

.morph-card:hover .dashboard-mockup-frame {
    transform: translateY(-4px) scale(1.008);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 35px 75px rgba(16, 185, 129, 0.28), inset 0 0 25px rgba(255, 255, 255, 0.1);
}

.dashboard-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.35rem;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.mockup-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-url {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.95rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-mockup-body {
    width: 100%;
    overflow: hidden;
    background: #0b0f19;
}

.dashboard-print-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.morph-card:hover .dashboard-print-img {
    transform: scale(1.012);
}

/* ==========================================================================
   UIVERSE RODRYPALADIN REALISTIC SMARTPHONE PHONE CARDS
   ========================================================================== */
.phone-rodry-card {
    position: relative !important;
    width: 290px;
    height: 480px;
    background: #000000 !important;
    border-radius: 38px !important;
    border: 2px solid rgb(40, 40, 40) !important;
    padding: 7px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), inset 0 0 10px rgba(255, 255, 255, 0.05) !important;
    isolation: isolate;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 1.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
    cursor: pointer;
    will-change: transform;
}

/* Phone Rodry Card Hover Accent */
.phone-rodry-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-emerald);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.25);
}
