/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-main: #030712;
    --bg-surface: #0a0f1d;
    --bg-surface-elevated: #111827;
    
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.3);
    
    --secondary: #8b5cf6;
    --secondary-hover: #7c3aed;
    --secondary-glow: rgba(139, 92, 246, 0.25);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.2);
    
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --text-dark: #4b5563;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --border-focus: rgba(59, 130, 246, 0.5);
    
    --glass-bg: rgba(10, 15, 30, 0.65);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   AMBIENT GLOWS
   ========================================================================== */
.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}
.bg-glow-1 {
    top: -10vw;
    right: -10vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.bg-glow-2 {
    top: 40vh;
    left: -20vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}
.bg-glow-3 {
    bottom: -10vh;
    right: -10vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

/* ==========================================================================
   LAYOUTS & CONTAINER
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 100px 0;
}

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

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

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

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-muted);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 6s linear infinite;
}

.text-muted-gradient {
    background: linear-gradient(135deg, var(--text-secondary) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 60px auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-glow {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-primary {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

/* Pulse dots */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: 50%;
    animation: pulse 1.6s infinite ease-in-out;
}
.pulse-dot.green {
    background-color: var(--success);
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* ==========================================================================
   GLASSMORPHISM BASE
   ========================================================================== */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
}
.logo span span {
    color: var(--primary);
}

.logo-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: var(--transition);
}
.logo:hover .logo-icon {
    transform: rotate(135deg);
    border-color: var(--secondary);
}
.logo-core {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 3px;
    animation: corePulse 2s infinite ease-in-out;
}
@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Currency Switch widget */
.currency-toggle-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}
.currency-label {
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}
.currency-label.text-muted {
    color: var(--text-dark);
}
.currency-switch {
    width: 36px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.currency-switch-handle {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--text-primary);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--transition);
}
.currency-toggle-container.usd-active .currency-switch {
    background-color: var(--primary);
}
.currency-toggle-container.usd-active .currency-switch-handle {
    transform: translateX(16px);
}

.menu-toggle {
    display: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Nav Menu */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.mobile-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
}
.mobile-btn {
    width: 100%;
    margin-top: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
}

.badge-container {
    margin-bottom: 24px;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-pricing-hint {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}
.hero-pricing-hint .price-val {
    font-weight: 800;
    font-size: 1.3rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Live Server Widget */
.server-status-pill {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.server-status-pill .divider {
    color: var(--border-hover);
}
.status-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-weight: 700;
}

/* Hero Visual Orb */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.agent-core-container {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-sphere {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.sphere-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    animation: orbFloat 4s infinite ease-in-out;
}
.sphere-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: orbPulse 2s infinite ease-in-out;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

.core-orbit {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
}
.core-orbit-1 {
    width: 220px;
    height: 220px;
}
.core-orbit-2 {
    width: 300px;
    height: 300px;
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes rotateOrbit {
    to { transform: rotate(360deg); }
}

/* Floating nodes around orb */
.floating-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 3;
    animation: floatNode 6s infinite ease-in-out;
}
.floating-node i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.fn-1 { top: 10%; left: -5%; animation-delay: 0s; }
.fn-2 { top: 75%; left: 0%; animation-delay: 1.5s; }
.fn-3 { top: 20%; right: -5%; animation-delay: 3s; }
.fn-4 { top: 70%; right: -5%; animation-delay: 4.5s; }

@keyframes floatNode {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}

/* ==========================================================================
   INTERACTIVE AGENT SELECTOR (QUIZ)
   ========================================================================== */
.quiz-card {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    margin-bottom: 40px;
    overflow: hidden;
}
.quiz-progress {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.4s ease;
}

.quiz-steps {
    position: relative;
    min-height: 340px;
}

.quiz-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.quiz-step.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.quiz-question {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.quiz-options {
    gap: 16px;
}

.quiz-option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    position: relative;
}
.quiz-option-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.quiz-option-card.selected {
    background: rgba(59, 130, 246, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.option-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: var(--transition);
}
.quiz-option-card:hover .option-icon,
.quiz-option-card.selected .option-icon {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}
.quiz-option-card.selected .option-icon {
    transform: scale(1.05);
}

.option-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.option-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.option-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    color: var(--text-muted);
}
.option-badge.primary {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.quiz-step-indicator {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Quiz Result Panel */
.quiz-result {
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.05);
    animation: fadeInResult 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeInResult {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.result-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.result-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.result-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.result-details {
    gap: 16px;
    margin-bottom: 24px;
}
.detail-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}
.detail-val {
    font-size: 1.4rem;
    font-weight: 800;
}

.result-features-container {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}
.result-features-container h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}
.result-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.result-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.result-features-list li i {
    width: 14px;
    height: 14px;
    color: var(--success);
    flex-shrink: 0;
}

.result-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   AGENTS CATALOG
   ========================================================================== */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.agent-card {
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
    transition: var(--transition);
}
.agent-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition);
}
.agent-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.agent-card.featured::before {
    border-color: rgba(59, 130, 246, 0.2);
}
.agent-card.featured:hover::before {
    border-color: rgba(59, 130, 246, 0.5);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.card-ribbon.font-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.25);
}

.agent-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.agent-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}
.agent-card-icon.bg-blue-glow {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.2);
}
.agent-card-icon.bg-green-glow {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}

.agent-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.agent-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.agent-card-features {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.agent-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.agent-card-features li i {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.agent-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}

.setup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 14px;
}
.setup-badge i {
    width: 14px;
    height: 14px;
}

.pricing-block {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.price-type {
    color: var(--text-muted);
}
.price-amount {
    font-weight: 700;
}
.price-amount.text-primary {
    font-weight: 800;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-detail-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    min-height: 340px;
    position: relative;
}
.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.service-detail-card:hover::before {
    border-color: rgba(59, 130, 246, 0.25);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.service-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}
.service-detail-icon.bg-blue-glow {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.2);
}
.service-detail-icon.bg-green-glow {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}
.service-detail-icon.bg-purple-glow {
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary);
    border-color: rgba(139, 92, 246, 0.2);
}

.service-detail-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.service-detail-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 16px;
}

.service-detail-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.service-detail-features li i {
    width: 14px;
    height: 14px;
    color: var(--success);
    flex-shrink: 0;
}

.service-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}
.service-detail-price {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TECH SPECS & CONSOLE
   ========================================================================== */
.tech-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
}

.tech-info h2 {
    margin-bottom: 20px;
}
.tech-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.tech-specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tech-spec-item {
    display: flex;
    gap: 16px;
}
.tech-spec-item i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}
.tech-spec-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.tech-spec-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Console window mock */
.tech-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.tech-visual-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    position: relative;
}
.console-buttons {
    display: flex;
    gap: 6px;
}
.console-buttons span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.console-buttons span:nth-child(1) { background-color: #ef4444; }
.console-buttons span:nth-child(2) { background-color: #eab308; }
.console-buttons span:nth-child(3) { background-color: #22c55e; }

.console-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.console-body {
    padding: 24px;
    background: #020617;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.5;
    min-height: 320px;
    overflow-y: auto;
}

.console-line {
    margin-bottom: 8px;
    word-break: break-all;
}
.console-line .text-green { color: #22c55e; }
.console-line .text-blue { color: #3b82f6; }
.console-line .text-muted { color: var(--text-dark); }

.console-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
}
.console-cursor {
    display: inline-block;
    width: 6px;
    height: 14px;
    background-color: var(--text-primary);
    animation: blinkCursor 1s infinite step-end;
}
@keyframes blinkCursor {
    from, to { background-color: transparent }
    50% { background-color: var(--text-primary) }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: fit-content;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--border-hover);
}
.faq-item.active {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}
.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}
.faq-question i {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}
.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary height to make collapse animation function */
    padding-bottom: 24px;
}

/* ==========================================================================
   CONTACT FORM & CARD
   ========================================================================== */
.contact-card {
    padding: 48px;
}
.contact-card .section-header {
    margin-bottom: 40px;
}
.contact-card .section-desc {
    margin-bottom: 0;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    width: 100%;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-hover);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.form-group select option {
    background-color: var(--bg-surface-elevated);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
}

/* Success Card */
.form-success {
    text-align: center;
    padding: 30px 10px;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--success);
}
.success-icon i {
    width: 32px;
    height: 32px;
}
.form-success h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.form-success p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}
.success-actions {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-md);
    max-width: 520px;
    margin: 0 auto;
}
.success-actions p {
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    margin-bottom: 16px;
    width: 100%;
}
.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border);
    background: #010409;
    padding: 60px 0 30px 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 360px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}
.footer-links h5 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-links a i {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }
    .agent-core-container {
        width: 280px;
        height: 280px;
    }
    .core-orbit-1 { width: 190px; height: 190px; }
    .core-orbit-2 { width: 260px; height: 260px; }
}

@media (max-width: 900px) {
    .grid-2, .grid-3, .form-grid {
        grid-template-columns: 1fr;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-desc {
        margin: 0 auto 24px auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        margin-top: 40px;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .result-features-list {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-links, .navbar-actions .btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    
    .quiz-card {
        padding: 24px;
    }
    .quiz-question {
        font-size: 1.3rem;
    }
    .quiz-option-card {
        padding: 16px;
    }
    .result-actions {
        flex-direction: column;
    }
    .contact-card {
        padding: 24px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   LIVE DEMO CHAT WIDGET STYLES
   ========================================================================== */
.demo-chat-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: flex-start;
}

.demo-chat-info h2 {
    margin-bottom: 20px;
}
.demo-chat-info > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.demo-chat-instructions {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}
.demo-chat-instructions h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--primary);
}
.demo-chat-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.demo-chat-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.demo-chat-bullet-list li::before {
    content: '→';
    color: var(--secondary);
    font-weight: bold;
}

.demo-chat-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    align-items: flex-start;
}
.demo-chat-note i {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.demo-chat-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Chat Widget Container */
.demo-chat-widget {
    height: 540px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.chat-widget-header {
    background: rgba(10, 15, 30, 0.8);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.chat-agent-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--primary);
}
.avatar-glow {
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
}
.chat-agent-avatar i {
    width: 18px;
    height: 18px;
}
.chat-agent-profile h4 {
    font-size: 0.95rem;
    font-weight: 700;
}
.chat-agent-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.chat-agent-status .pulse-dot {
    width: 6px;
    height: 6px;
}

.chat-reset-btn {
    color: var(--text-dark);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.chat-reset-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}
.chat-reset-btn i {
    width: 18px;
    height: 18px;
}

/* Messages Area */
.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 80%;
    animation: bubbleFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes bubbleFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.chat-message.agent {
    align-self: flex-start;
}

.chat-avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}
.chat-avatar-mini i {
    width: 13px;
    height: 13px;
}
.chat-message.user .chat-avatar-mini {
    background: rgba(255,255,255,0.05);
    border-color: var(--border);
    color: var(--text-secondary);
}

.chat-message-text {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    position: relative;
    word-break: break-word;
}
.chat-message.agent .chat-message-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-top-left-radius: 2px;
    color: var(--text-primary);
}
.chat-message.user .chat-message-text {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(59, 130, 246, 0.7) 100%);
    color: white;
    border-top-right-radius: 2px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Typing indicator */
.chat-typing-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 16px 20px;
    animation: bubbleFadeIn 0.3s ease;
}
.typing-bubble {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: 14px;
    border-top-left-radius: 2px;
    display: flex;
    gap: 4px;
    align-items: center;
}
.typing-bubble span {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-bubble span:nth-child(1) { animation-delay: -0.32s; }
.typing-bubble span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Suggestion Chips */
.chat-suggestions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(3, 7, 18, 0.2);
}
.chat-suggestion-chip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.chat-suggestion-chip:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--primary);
    color: var(--text-primary);
}

/* Typing input form */
.chat-input-form {
    background: rgba(10, 15, 30, 0.9);
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.chat-input-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
}
.chat-input-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}
.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}
.chat-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.chat-send-btn i {
    width: 16px;
    height: 16px;
}

/* Responsive collapse */
@media (max-width: 900px) {
    .demo-chat-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .demo-chat-widget {
        height: 480px;
    }
}

/* ==========================================================================
   HERO IMAGE & VISUALS
   ========================================================================== */
.hero-image-wrapper {
    position: relative;
    max-width: 100%;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: visible;
    animation: orbFloat 6s infinite ease-in-out;
    transition: var(--transition);
}
.hero-image-wrapper:hover {
    transform: scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
}
.hero-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    object-fit: cover;
}
.hero-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgba(10, 15, 30, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
}
.hero-floating-badge i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    animation: corePulse 1.5s infinite ease-in-out;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(10, 15, 29, 0.4) 100%);
}
.steps-grid {
    margin-top: 40px;
}
.step-card {
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.05);
}
.step-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}
.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}
.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: linear-gradient(180deg, rgba(10, 15, 29, 0.4) 0%, var(--bg-main) 100%);
}
.testimonials-grid {
    margin-top: 40px;
}
.testimonial-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.05);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #eab308;
}
.testimonial-stars i {
    width: 16px;
    height: 16px;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}
.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    flex-shrink: 0;
}
.user-avatar.bg-blue-glow {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--primary);
}
.user-avatar.bg-green-glow {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--success);
}
.testimonial-user h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-user span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.testimonial-plan-badge {
    display: inline-block !important;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 0.7rem !important;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #a78bfa !important;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   CONTACT SECTION RESTYLING (DOUBLE COLUMN)
   ========================================================================== */
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}
.contact-info-panel {
    padding: 48px;
    background: rgba(10, 15, 30, 0.4);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
.contact-info-panel h2 {
    font-size: 2.2rem;
    margin-top: 8px;
    margin-bottom: 0;
}
.contact-panel-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}
.contact-method-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.contact-method-item:hover {
    transform: translateX(4px);
}
.method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}
.method-icon.bg-green-glow {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25d366;
}
.method-icon.bg-blue-glow {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--primary);
}
.method-icon.bg-purple-glow {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    color: var(--secondary);
}
.contact-method-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.contact-method-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.payment-trust-container {
    border-top: 1px dashed var(--border);
    padding-top: 24px;
}
.payment-trust-container h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.payment-logos-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}
.pay-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}
.pay-badge i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.contact-form-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================================
   GRID 4 (RECOMMENDED CARD SETUP ROW)
   ========================================================================== */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Media Query Adaptations for Contact Grid */
@media (max-width: 900px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px;
    }
    .contact-form-panel {
        padding: 32px;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
