/* ============================================
   LANDING PAGE - ULTIMATEPOS
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --secondary: #8B5CF6;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #06B6D4;
    
    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Borders */
    --border-radius: 0.75rem;
    --border-radius-lg: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    height: 40px;
    width: auto;
}

.logo-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-small,
.btn-primary-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-outline-small i,
.btn-primary-small i {
    font-size: 1rem;
}

.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animated:hover::before {
    width: 300px;
    height: 300px;
}

.btn-animated small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 0.25rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 30%, #EDE9FE 70%, #F3E8FF 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--warning);
    font-size: 1rem;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.hero-feature i {
    color: var(--success);
    font-size: 1.125rem;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-social-proof {
    margin-top: var(--spacing-lg);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-item .stars {
    display: flex;
    gap: 2px;
    color: #FCD34D;
}

.trust-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.trust-text {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.stat-icon {
    font-size: 2rem;
}

.stat-text strong {
    display: block;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.stat-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-visual {
    position: relative;
    height: 600px;
    padding: 2rem;
    box-sizing: border-box;
}

.hero-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-mockup {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 600px;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Mockup Placeholder */
.mockup-placeholder {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 60px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.mockup-logo {
    width: 120px;
    height: 24px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 4px;
}

.mockup-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    width: 60px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 4px;
}

.mockup-content {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 200px;
    background: #f1f5f9;
    padding: 1.5rem 1rem;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-item {
    height: 12px;
    background: #cbd5e1;
    border-radius: 4px;
}

.mockup-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--border-radius);
    border: 1px solid #e0f2fe;
}

.chart-area {
    flex: 1;
    min-height: 120px;
}

.chart {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: var(--border-radius);
    border: 1px solid #fde68a;
    position: relative;
    overflow: hidden;
}

.chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.table-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-row {
    height: 16px;
    background: #f1f5f9;
    border-radius: 4px;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    min-width: 160px;
    max-width: 200px;
    z-index: 10;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-icon.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.card-icon.info {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.card-icon.warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.card-icon.primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.card-icon i {
    font-size: 1.25rem;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 8%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 8%;
    right: 8%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
}

.section-badge i {
    color: var(--primary);
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: var(--transition);
    position: relative;
}

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

.feature-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #F0F9FF 0%, white 100%);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-700);
}

.feature-list i {
    color: var(--success);
}

.feature-list li.disabled {
    opacity: 0.5;
}

.feature-list li.disabled i {
    color: var(--gray-400);
}

/* ============================================
   BUSINESS TYPES
   ============================================ */
.business-types {
    background: var(--gray-50);
}

.business-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-btn i {
    font-size: 1.25rem;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.business-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.business-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.business-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.business-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: white;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.toggle-label {
    font-weight: 600;
    color: var(--gray-700);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #F0F9FF 0%, white 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--gray-200);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-900);
}

.period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
}

.plan-description {
    color: var(--gray-600);
}

.plan-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
    font-size: 0.875rem;
}

.plan-features i {
    color: var(--success);
    font-size: 1rem;
}

.plan-features li.disabled {
    opacity: 0.5;
}

.plan-features li.disabled i {
    color: var(--gray-400);
}

.pricing-card .btn-block {
    margin-top: auto;
    margin-bottom: 0;
}

.pricing-note {
    text-align: center;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--success);
    margin-right: var(--spacing-xs);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #FCD34D;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-info span {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.author-location {
    font-style: italic;
}

.testimonial-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-badge.success {
    background: #D1FAE5;
    color: var(--success);
}

.testimonial-badge.warning {
    background: #FEF3C7;
    color: var(--warning);
}

.testimonial-badge.info {
    background: #CFFAFE;
    color: var(--info);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-700);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

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

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom i {
    color: #EF4444;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

.back-to-top.show {
    display: flex;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: var(--spacing-md);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-outline-small,
    .btn-primary-small {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-features-list {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .trust-divider {
        display: none;
    }
    
    .hero-visual {
        height: 400px;
        padding: 1rem;
    }
    
    .floating-card {
        padding: var(--spacing-sm);
        font-size: 0.875rem;
        min-width: 140px;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
    
    .card-1 {
        top: 5%;
        left: 5%;
    }
    
    .card-2 {
        top: 10%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 15%;
        left: 5%;
    }
    
    .card-4 {
        bottom: 5%;
        right: 5%;
    }
    
    /* Mockup responsive */
    .mockup-placeholder {
        height: 300px;
    }
    
    .mockup-header {
        padding: 0 1rem;
        height: 50px;
    }
    
    .mockup-logo {
        width: 100px;
        height: 20px;
    }
    
    .mockup-nav {
        gap: 0.5rem;
    }
    
    .nav-item {
        width: 40px;
        height: 6px;
    }
    
    .mockup-content {
        flex-direction: column;
    }
    
    .mockup-sidebar {
        width: 100%;
        height: 60px;
        padding: 0.5rem;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .sidebar-item {
        width: 50px;
        height: 8px;
    }
    
    .mockup-main {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .stat-card {
        height: 60px;
    }
    
    .chart-area {
        min-height: 80px;
    }
    
    .table-area {
        gap: 0.25rem;
    }
    
    .table-row {
        height: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 350px;
        padding: 0.5rem;
    }
    
    .mockup-placeholder {
        height: 250px;
    }
    
    .mockup-header {
        padding: 0 0.75rem;
        height: 45px;
    }
    
    .mockup-logo {
        width: 80px;
        height: 18px;
    }
    
    .mockup-nav {
        display: none;
    }
    
    .mockup-sidebar {
        height: 50px;
        padding: 0.25rem;
    }
    
    .sidebar-item {
        width: 40px;
        height: 6px;
    }
    
    .mockup-main {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .stat-card {
        height: 50px;
    }
    
    .chart-area {
        min-height: 60px;
    }
    
    .table-area {
        gap: 0.25rem;
    }
    
    .table-row {
        height: 10px;
    }
    
    .floating-card {
        padding: 0.5rem;
        font-size: 0.75rem;
        min-width: 120px;
    }
    
    .card-1 {
        top: 2%;
        left: 2%;
    }
    
    .card-2 {
        top: 8%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 12%;
        left: 2%;
    }
    
    .card-4 {
        bottom: 2%;
        right: 2%;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .tab-btn span {
        display: none;
    }
}

