/* ==========================================================================
   RestoPos landing page design system & layout
   ========================================================================== */

/* Variables & Theme configuration (Dark Theme Premium) */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Color Palette */
    --bg-dark-base: #070b12;
    --bg-dark-card: rgba(20, 30, 48, 0.65);
    --bg-dark-input: #0f172a;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    
    --primary: #8b5cf6;       /* Violeta brillante */
    --primary-glow: rgba(139, 92, 246, 0.45);
    
    --secondary: #10b981;     /* Verde esmeralda */
    --secondary-glow: rgba(16, 185, 129, 0.3);

    --accent-orange: #f59e0b; /* Ámbar / Naranja */
    --accent-rose: #f43f5e;   /* Rosa intenso */
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --glass-bg: rgba(10, 15, 30, 0.7);
    --glass-blur: blur(12px) saturate(180%);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 25px var(--primary-glow);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 24px;
}

/* ==========================================================================
   Header Navbar Layout (Glassmorphism)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-cta-mobile {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Burger menu button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

/* Background animated spheres */
.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    mix-blend-mode: screen;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -50px;
    animation: floatGlow 12s infinite alternate;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, rgba(0,0,0,0) 70%);
    bottom: -100px;
    left: -100px;
    animation: floatGlow 18s infinite alternate-reverse;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 550px;
}

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

.hero-features-brief {
    display: flex;
    gap: 24px;
}

.brief-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.brief-icon {
    color: var(--secondary);
}

/* Mockup Frame & Badges */
.hero-visual {
    position: relative;
    width: 100%;
}

.mockup-frame {
    background-color: #0d1527;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium), 0 0 40px rgba(139, 92, 246, 0.1);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 40px;
    background-color: #080d1a;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.mockup-header .dot.red { background-color: #ff5f56; }
.mockup-header .dot.yellow { background-color: #ffbd2e; }
.mockup-header .dot.green { background-color: #27c93f; }

.mockup-search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2px 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.mockup-sidebar {
    width: 48px;
    background-color: #090e1c;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
}

.sidebar-item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-topbar {
    display: flex;
    justify-content: space-between;
}

.mockup-title-skeleton {
    width: 120px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mockup-profile-skeleton {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
}

.mockup-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title-skeleton {
    width: 70px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 16px;
}

.card-chart-skeleton-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    padding-top: 10px;
}

.card-chart-skeleton-bar .bar {
    width: 12%;
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 3px;
    animation: barGrow 2s ease-out forwards;
}

.card-list-skeleton {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-item {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.list-item:nth-child(2) { width: 85%; }
.list-item:nth-child(3) { width: 60%; }

/* Floating Badges */
.floating-badge {
    position: absolute;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-premium);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.sales-badge {
    top: 20%;
    left: -40px;
}

.orders-badge {
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}

.badge-icon {
    font-size: 1.5rem;
}

.floating-badge .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.floating-badge .value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    padding: 100px 0;
    position: relative;
}

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

.feature-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(139, 92, 246, 0.05);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper.purple {
    background-color: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.feature-icon-wrapper.emerald {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.feature-icon-wrapper.amber {
    background-color: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.feature-icon-wrapper.rose {
    background-color: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.feature-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Dashboard Simulator Section
   ========================================================================== */
.demo-section {
    padding: 100px 0;
    position: relative;
}

.interactive-simulator-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #0b111e;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.simulator-controls {
    display: flex;
    background-color: #070c16;
    border-bottom: 1px solid var(--border-color);
    padding: 10px;
    gap: 8px;
    overflow-x: auto;
}

.sim-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.sim-btn:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

.sim-btn.active {
    color: var(--text-primary);
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.simulator-screen {
    padding: 0;
}

.simulator-header {
    height: 38px;
    background-color: #060a12;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.mock-dots {
    display: flex;
    gap: 6px;
    margin-right: 24px;
}

.mock-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-dots .r { background-color: #ff5f56; }
.mock-dots .y { background-color: #ffbd2e; }
.mock-dots .g { background-color: #27c93f; }

.mock-url {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.simulator-body {
    padding: 30px;
    min-height: 380px;
    background-color: rgba(9, 14, 25, 0.9);
}

.sim-view {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.sim-view.active {
    display: block;
}

/* Simulator - Ventas View */
.sim-grid-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.sim-metric-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 500;
}

.metric-trend.green {
    color: #10b981;
}

.sim-chart-container {
    background-color: rgba(20, 30, 48, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.chart-header h4 {
    font-size: 1.1rem;
}

.chart-legend {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sim-bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 180px;
    padding-top: 20px;
    border-bottom: 1px solid var(--border-color);
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12%;
    height: 100%;
    justify-content: flex-end;
}

.bar-fill {
    width: 60%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.bar-label {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Simulator - Mesas View */
.salon-layout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.salon-indicators {
    display: flex;
    gap: 16px;
}

.indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ind-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ind-color.green { background-color: var(--secondary); }
.ind-color.red { background-color: var(--accent-rose); }
.ind-color.orange { background-color: var(--accent-orange); }

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

.table-node {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.table-status {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.table-timer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.table-node.occupied {
    background-color: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.3);
    color: #fda4af;
}

.table-node.occupied:hover {
    background-color: rgba(244, 63, 94, 0.15);
    transform: scale(1.02);
}

.table-node.free {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    color: #a7f3d0;
}

.table-node.free:hover {
    background-color: rgba(16, 185, 129, 0.15);
    transform: scale(1.02);
}

.table-node.waiting-bill {
    background-color: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fde047;
}

.table-node.waiting-bill:hover {
    background-color: rgba(245, 158, 11, 0.15);
    transform: scale(1.02);
}

/* Simulator - Platos View */
.view-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.dish-analytics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dish-row {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dish-rank {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    width: 24px;
}

.dish-info {
    flex: 1;
}

.dish-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.dish-category {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dish-bar-container {
    width: 35%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.dish-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.dish-qty {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 70px;
    text-align: right;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    margin-top: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    gap: 12px;
}

.pricing-toggle {
    width: 44px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 20px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-circle {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle.active .toggle-circle {
    transform: translateX(20px);
}

.pricing-toggle-yearly {
    position: relative;
}

.discount-badge {
    background-color: var(--secondary);
    color: #070b12;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
}

.pricing-card.popular {
    background-color: rgba(26, 30, 56, 0.7);
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 16px;
    border-radius: 30px;
}

.card-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.price-box {
    display: flex;
    align-items: baseline;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 4px;
}

.price-box .price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-box .period {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 6px;
}

.plan-features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features .check-icon {
    font-weight: bold;
}

.plan-features li:not(.disabled) .check-icon {
    color: var(--secondary);
}

.plan-features li.disabled {
    color: var(--text-muted);
}

.plan-features li.disabled .check-icon {
    color: var(--accent-rose);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact-detail-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Form Styling */
.contact-form-wrapper {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.3);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    background-color: var(--bg-dark-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
}

.submit-btn {
    margin-top: 10px;
    border: none;
}

.form-status {
    font-size: 0.9rem;
    text-align: center;
    min-height: 24px;
    transition: all 0.3s ease;
}

.form-status.success {
    color: var(--secondary);
}

.form-status.error {
    color: var(--accent-rose);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
    background-color: #04080f;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links h5 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

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

.back-to-top:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

@keyframes barGrow {
    0% { height: 0; }
}

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

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions, .hero-features-brief {
        justify-content: center;
    }
    
    .sales-badge { left: 0; }
    .orders-badge { right: 0; }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        grid-row: 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.85rem; }
    .hero-title { font-size: 2.5rem; }
    
    /* Responsive navbar */
    .burger-menu {
        display: flex;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark-base);
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-cta-mobile {
        display: block;
        width: 80%;
    }
    
    .burger-menu.open .burger-bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    
    .burger-menu.open .burger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.open .burger-bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Grids to columns */
    .features-grid, .pricing-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sim-grid-metrics {
        grid-template-columns: 1fr;
    }
    
    .salon-tables-grid {
        grid-template-columns: 1fr 1fr;
    }
}
