/* ==========================================================================
   UpMekan Page-Specific & Layout Stylesheet
   ========================================================================== */

/* --- A. HOME PAGE --- */
/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(36, 71, 212, 0.04) 0%, transparent 50%);
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(36, 71, 212, 0.1);
}

.hero-title {
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
}

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

/* CSS Dashboard Mockup */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.dashboard-mockup {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  height: 420px;
  position: relative;
}

/* Mockup Sidebar */
.mockup-sidebar {
  width: 70px;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}

.mockup-logo-dot {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.mockup-nav-item {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.mockup-nav-item.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
}

.mockup-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Mockup Content Container */
.mockup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f1f5f9;
}

.mockup-topbar {
  background-color: var(--bg-white);
  height: 50px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mockup-search {
  width: 150px;
  height: 28px;
  background-color: #f1f5f9;
  border-radius: var(--radius-sm);
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background-color: var(--primary-color);
}

/* Mockup Main Pane */
.mockup-pane {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

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

.mockup-stat-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--border-color);
}

.mockup-stat-card span {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.mockup-stat-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 4px;
}

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

.mockup-chart-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.mockup-chart-header {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.mockup-chart-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.mockup-chart-bar {
  flex: 1;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}

.mockup-chart-bar:hover {
  opacity: 1;
}

.mockup-recent-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--border-color);
}

.mockup-recent-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.mockup-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 6px;
}

.mockup-recent-item:last-child {
  border-bottom: none;
}

.mockup-recent-status {
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.6rem;
}

.mockup-status-green { background-color: #dcfce7; color: #15803d; }
.mockup-status-orange { background-color: #ffedd5; color: #c2410c; }

/* Mockup Decorator Floating Elements */
.mockup-decor-1 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-decor-1-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.mockup-decor-1-info h6 {
  font-size: 0.85rem;
  font-weight: 700;
}

.mockup-decor-1-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-section-title {
  max-width: 600px;
  margin: 0 auto 60px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

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

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

/* --- B. FEATURES PAGE --- */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

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

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

.tab-content {
  display: none;
  animation: fadeIn var(--transition-slow);
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.tab-text {
  max-width: 500px;
}

.tab-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.tab-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-points li svg {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tab-visual {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

/* Feature Mockup Elements inside Tabs */
.features-qr-mockup {
  width: 100%;
  max-width: 320px;
  background-color: var(--bg-white);
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow-card);
  border: 8px solid var(--text-dark);
}

.features-qr-screen {
  background-color: #fafafa;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.features-qr-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.features-qr-menu-items {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.features-qr-item {
  display: flex;
  gap: 12px;
  background-color: var(--bg-white);
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.features-qr-item-img {
  width: 50px;
  height: 50px;
  background-color: #f1f5f9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-qr-item-info {
  flex: 1;
}

.features-qr-item-info h6 {
  font-size: 0.8rem;
  font-weight: 700;
}

.features-qr-item-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.features-qr-item-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  align-self: center;
}

.features-table-mockup {
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.features-table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.features-table-box {
  border-radius: var(--radius-md);
  padding: 16px 8px;
  text-align: center;
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition-normal);
}

.features-table-box.occupied {
  border-color: #ef4444;
  background-color: #fee2e2;
}

.features-table-box.served {
  border-color: #22c55e;
  background-color: #dcfce7;
}

.features-table-box.empty {
  border-color: var(--border-color);
  background-color: var(--bg-light);
}

.features-table-label {
  font-size: 0.8rem;
  font-weight: 700;
}

.features-table-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.features-kitchen-mockup {
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-dark);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.features-kitchen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.features-kitchen-card {
  background-color: #1e293b;
  border-radius: var(--radius-md);
  padding: 12px;
  border-top: 4px solid var(--primary-color);
}

.features-kitchen-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.features-kitchen-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  list-style: none;
}

.features-kitchen-list li {
  display: flex;
  justify-content: space-between;
}

/* --- C. SOLUTIONS PAGE --- */
.solution-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.solution-grid-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.solution-card-banner {
  height: 200px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-card-banner::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(36, 71, 212, 0.1) 0%, transparent 60%);
}

.solution-card-banner svg {
  width: 64px;
  height: 64px;
  color: var(--primary-color);
  z-index: 1;
}

.solution-card-body {
  padding: 30px;
}

.solution-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.solution-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* --- D. PRICING PAGE --- */
.billing-switcher-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.billing-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
}

.billing-label.active {
  color: var(--text-dark);
}

/* Sliding Switch Toggle */
.billing-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background-color: var(--primary-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid rgba(36, 71, 212, 0.1);
}

.billing-switch-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-normal);
}

.billing-switch.yearly .billing-switch-slider {
  transform: translateX(28px);
}

.discount-badge {
  background-color: #22c55e;
  color: var(--bg-white);
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

/* Pricing Card Grid */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-card);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing-price {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

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

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
  flex: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-features-list li svg {
  color: #22c55e;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-section {
  max-width: 800px;
  margin: 100px auto 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-focus);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
}

.faq-question svg {
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- E. ABOUT US PAGE --- */
.values-grid {
  margin-top: 60px;
}

.value-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- F. CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-info-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-mockup {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  position: relative;
  background-color: #e5e7eb;
}

/* Simulate map styling */
.map-mockup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #d1d5db 20%, transparent 20%),
              radial-gradient(circle at 30% 70%, #d1d5db 15%, transparent 15%),
              linear-gradient(45deg, #e5e7eb 25%, transparent 25%),
              linear-gradient(-45deg, #e5e7eb 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.8;
}

.map-mockup-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-mockup-pin svg {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.map-mockup-label {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 8px;
  box-shadow: var(--shadow-md);
}

/* --- G. REGISTRATION PAGE (STANDALONE) --- */
.register-body {
  background-color: var(--bg-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.register-container {
  width: 100%;
  max-width: 1000px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  overflow: hidden;
  min-height: 650px;
}

/* Register Left Panel */
.register-left {
  background: linear-gradient(135deg, var(--primary-color) 0%, #102685 100%);
  color: var(--bg-white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.register-left::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  top: -100px;
  left: -100px;
}

.register-left-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.register-left-logo svg {
  fill: var(--bg-white);
  width: 36px;
  height: 36px;
}

.register-left-content h2 {
  color: var(--bg-white);
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.register-left-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.register-left-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.register-left-features li svg {
  width: 20px;
  height: 20px;
  stroke: var(--bg-white);
  stroke-width: 3;
  fill: none;
}

.register-testimonial-block {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.register-testimonial-block p {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 12px;
}

.register-testimonial-owner {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-white);
}

/* Register Right Panel (Form) */
.register-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.register-right h3 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.register-right p.subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

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

/* Phone input container with code selector */
.phone-input-container {
  display: flex;
  gap: 8px;
}

.phone-code-select {
  width: 90px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.phone-code-select:focus {
  border-color: var(--primary-color);
}

/* Password field with show/hide toggle */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.password-toggle-btn:hover {
  color: var(--text-dark);
}

/* Password Strength Indicator */
.password-strength-bar {
  height: 4px;
  background-color: var(--border-color);
  border-radius: var(--radius-pill);
  margin-top: 6px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.password-strength-fill {
  height: 100%;
  width: 0;
  background-color: transparent;
  transition: width 0.3s, background-color 0.3s;
}

.password-strength-fill.weak { width: 33%; background-color: #ef4444; }
.password-strength-fill.medium { width: 66%; background-color: #f59e0b; }
.password-strength-fill.strong { width: 100%; background-color: #10b981; }

/* Validation styles */
.form-group.has-error .form-control {
  border-color: #ef4444;
  background-color: #fffafb;
}

.form-group.has-error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.invalid-feedback {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}

.form-group.has-error .invalid-feedback {
  display: block;
}

/* Checkbox Style */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.register-footer-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.register-footer-link a:hover {
  text-decoration: underline;
}

/* Success Validation Screen Overlay inside card */
.register-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-card);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.register-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-circle-icon {
  width: 72px;
  height: 72px;
  background-color: #dcfce7;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  margin-bottom: 24px;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-circle-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.redirect-counter {
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.redirect-counter span {
  font-weight: 700;
  color: var(--primary-color);
}

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

@keyframes scaleUp {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .register-container {
    grid-template-columns: 1fr;
  }
  .register-left {
    display: none; /* Hide illustrative panel on smaller screens to prioritize forms */
  }
  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tab-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  .hero-mockup {
    margin-top: 50px;
    max-width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .register-right {
    padding: 40px 24px;
  }
  .showcase-mockup-wrapper {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 12px;
  }
}


/* ==========================================================================
   HIGH-FIDELITY SaaS SCREEN MOCKUPS
   ========================================================================== */

.showcase-mockup-wrapper {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.canvas-mockup {
  background-color: #f1f5f9;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  color: #1e293b;
}

/* Stat Cards Row for Mockups */
.mockup-stat-badge {
  padding: 2px 8px;
  font-size: 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.badge-today { background-color: #e0f2fe; color: #0369a1; }
.badge-live { background-color: #dcfce7; color: #15803d; }
.badge-filter { background-color: #f1f5f9; color: #475569; }
.badge-critical { background-color: #fee2e2; color: #b91c1c; }

/* 2. QR Menu Mockup */
.qr-menu-canvas {
  width: 320px;
  background-color: #ffffff;
  border: 8px solid #0f172a;
  border-radius: 32px;
  height: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
}
.qr-menu-banner {
  height: 140px;
  background-color: #1e293b;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: white;
}
.qr-menu-banner h4 {
  font-size: 1.1rem;
  font-weight: 800;
  z-index: 2;
  margin: 0;
}
.qr-menu-banner span {
  font-size: 0.7rem;
  opacity: 0.8;
  z-index: 2;
}
.qr-menu-cats {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}
.qr-cat-pill {
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.qr-cat-pill.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.qr-menu-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  flex: 1;
  background-color: #fafafa;
}
.qr-menu-item-row {
  display: flex;
  background-color: white;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius-md);
  padding: 8px;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.qr-menu-item-icon {
  width: 44px;
  height: 44px;
  background-color: #f8fafc;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.qr-menu-item-details {
  flex: 1;
}
.qr-menu-item-details h5 {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 2px 0;
}
.qr-menu-item-details p {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}
.qr-menu-item-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-color);
  align-self: center;
  white-space: nowrap;
}

/* 3. Table Map Mockup */
.table-map-canvas {
  width: 500px;
  height: 380px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.table-map-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.table-stat-card {
  padding: 6px 10px;
  background-color: #f8fafc;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  text-align: left;
}
.table-stat-card span {
  font-size: 0.6rem;
  color: var(--text-muted);
  display: block;
}
.table-stat-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-map-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  overflow: hidden;
}
.table-map-area {
  padding: 12px;
  overflow-y: auto;
  background-color: #fafafa;
}
.table-map-section-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.table-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}
.table-element {
  background-color: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
}
.table-element.occupied {
  background-color: #ffebee;
  border-color: #f44336;
}
.table-element h6 {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
}
.table-element p {
  font-size: 0.55rem;
  color: #475569;
  margin: 1px 0 0 0;
}
.table-element-actions {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}
.table-mini-btn {
  font-size: 0.5rem;
  padding: 1px 4px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: #475569;
  font-weight: 600;
}
.table-sidebar-panel {
  padding: 12px;
  background-color: #ffffff;
  border-left: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.table-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.table-sidebar-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.table-sidebar-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  border: 2px dashed #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px;
}

/* 4. Kitchen Screen Mockup */
.kitchen-screen-canvas {
  width: 500px;
  height: 350px;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.kitchen-screen-top {
  background-color: #ffffff;
  padding: 10px 14px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kitchen-screen-title {
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.kitchen-screen-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kitchen-alert-bar {
  background-color: #fef9c3;
  border-bottom: 1px solid #fef08a;
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #854d0e;
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}
.kitchen-tickets-container {
  flex: 1;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}
.kitchen-ticket-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  padding: 10px;
  border-top: 4px solid var(--primary-color);
  text-align: left;
}
.kitchen-ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.kitchen-ticket-pill {
  background-color: #ef4444;
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.6rem;
  font-weight: 700;
}
.kitchen-ticket-info-row {
  display: flex;
  gap: 8px;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.kitchen-ticket-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.kitchen-ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8fafc;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #f1f5f9;
}
.kitchen-ticket-item h6 {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
}
.kitchen-ticket-item span {
  font-size: 0.65rem;
  font-weight: 800;
  background-color: #0f172a;
  color: white;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.kitchen-ticket-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6px;
}
.kitchen-action-btn {
  padding: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.kitchen-btn-red { background-color: #ef4444; color: white; }
.kitchen-btn-green { background-color: #22c55e; color: white; }

/* 5. Sales & Reporting Dashboard Mockup */
.sales-dashboard-canvas {
  width: 540px;
  height: 380px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.sales-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 8px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.sales-stat-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  text-align: center;
}
.sales-stat-box h6 {
  font-size: 0.75rem;
  font-weight: 800;
  margin: 0;
}
.sales-stat-box p {
  font-size: 0.5rem;
  color: var(--text-muted);
  margin: 1px 0 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sales-charts-container {
  flex: 1;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow-y: auto;
  background-color: #fafafa;
}
.sales-chart-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.sales-chart-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.line-graph-draw {
  height: 80px;
  position: relative;
  border-left: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  margin: 10px 10px 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.line-graph-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bar-chart-draw {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-bottom: 1px solid #cbd5e1;
  padding: 0 4px;
  margin-bottom: 10px;
}
.bar-chart-bar {
  flex: 1;
  background-color: var(--primary-color);
  border-radius: 2px 2px 0 0;
  position: relative;
}
.bar-chart-bar-orange {
  background-color: #f97316;
}
.bar-chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  color: #475569;
}
.pie-chart-draw {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pie-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary-color) 0% 65%,
    #f97316 65% 85%,
    #22c55e 85% 100%
  );
  flex-shrink: 0;
}
.pie-legend {
  font-size: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 10px;
}
.pie-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pie-color-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* 6. Product catalog mockup */
.catalog-canvas {
  width: 540px;
  height: 380px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.catalog-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.catalog-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  overflow: hidden;
  background-color: #fafafa;
}
.catalog-form-panel {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  text-align: left;
}
.catalog-panel-title {
  font-size: 0.75rem;
  font-weight: 800;
  margin: 0 0 2px 0;
}
.catalog-panel-sub {
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.catalog-mini-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.catalog-input {
  width: 100%;
  padding: 5px 8px;
  font-size: 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
}
.catalog-select {
  width: 100%;
  padding: 5px 8px;
  font-size: 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: #475569;
}
.catalog-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
}
.catalog-cats-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}
.catalog-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 4px 6px;
  font-size: 0.65rem;
}
.catalog-cat-row h6 {
  font-size: 0.65rem;
  font-weight: 700;
  margin: 0;
}
.catalog-cat-row span {
  font-size: 0.55rem;
  color: var(--text-muted);
}
.catalog-cat-actions {
  display: flex;
  gap: 4px;
}
.catalog-action-badge {
  padding: 1px 4px;
  font-size: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.catalog-badge-blue { background-color: #e0f2fe; color: #0369a1; }
.catalog-badge-red { background-color: #fee2e2; color: #b91c1c; }

/* --- TURKEY SVG MAP STYLES --- */
.turkey-map-section {
  background-color: #ffffff;
  position: relative;
}
.turkey-map-container {
  max-width: 860px;
  margin: 40px auto 0;
  position: relative;
}
#svg-turkiye-haritasi {
  width: 100%;
  height: auto;
}
#svg-turkiye-haritasi g path {
  fill: #f0f0f0;
  stroke: #ffffff;
  stroke-width: 1.5;
  transition: fill 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#svg-turkiye-haritasi g.active-city path {
  fill: #2447D4;
  stroke: #1732ad;
  cursor: pointer;
  pointer-events: auto;
}
#svg-turkiye-haritasi g.active-city:hover path {
  fill: #1d3db5;
  stroke: #1732ad;
}
.map-tooltip {
  position: absolute;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: none;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.15s ease;
}



/* --- RESPONSIVE GRID CLASSES FOR SECTOR PAGES --- */
.sector-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.sector-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sector-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.sector-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sector-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .sector-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .sector-hero-grid > div {
    text-align: center !important;
  }
  .sector-hero-grid div[style*="display: flex"] {
    justify-content: center !important;
  }
  .sector-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .sector-pain-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .sector-features-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .sector-mockup-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .sector-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

.sector-hero-mockup-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tab-navigation {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 12px !important;
    margin-bottom: 40px !important;
    border-bottom: 1px solid var(--border-color);
  }
  .tab-navigation::-webkit-scrollbar {
    display: none !important;
  }
  .tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .sector-hero-mockup-card {
    padding: 20px 16px;
  }
}

/* --- GLOBAL HERO TOP SPACING ADJUSTMENT --- */
body > section:first-of-type,
main > section:first-of-type,
.hero-section {
  padding-top: 30px !important;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .showcase-mockup-wrapper {
    overflow-x: hidden !important;
    justify-content: center !important;
    padding: 12px !important;
    min-height: auto !important;
  }
  .canvas-mockup,
  .qr-menu-canvas,
  .table-map-canvas,
  .kitchen-screen-canvas,
  .sales-dashboard-canvas,
  .catalog-canvas {
    zoom: 0.8;
  }
}

@media (max-width: 576px) {
  .canvas-mockup,
  .qr-menu-canvas,
  .table-map-canvas,
  .kitchen-screen-canvas,
  .sales-dashboard-canvas,
  .catalog-canvas {
    zoom: 0.62;
  }
}

@media (max-width: 400px) {
  .canvas-mockup,
  .qr-menu-canvas,
  .table-map-canvas,
  .kitchen-screen-canvas,
  .sales-dashboard-canvas,
  .catalog-canvas {
    zoom: 0.52;
  }
}

