/* ============================================
   De Horeca Helper — Flagship Portfolio Page
   Blue neon theme + SaaS showcase components
   ============================================ */

/* --- Theme Override --- */
:root {
  --accent: #5095CC;
  --accent-rgb: 80, 149, 204;
  --accent-light: #6AAFE6;
  --accent-dim: #3A7AB0;
  --glow-accent: 0 0 15px rgba(80, 149, 204, 0.4);
  --glow-accent-strong: 0 0 30px rgba(80, 149, 204, 0.6), 0 0 60px rgba(80, 149, 204, 0.2);
  --bg-card: #141418;
  --card-border: rgba(80, 149, 204, 0.12);
}

.site-header .logo { color: var(--accent-light); text-shadow: var(--glow-accent); }
.site-header .logo:hover { color: var(--accent-light); text-shadow: var(--glow-accent-strong); }
.site-header { border-bottom-color: rgba(80, 149, 204, 0.08); }
.site-footer { border-top-color: rgba(80, 149, 204, 0.08); }
.footer-links a:hover { color: var(--accent-light); }
a { color: var(--accent-light); }
a:hover { color: #fff; text-shadow: var(--glow-accent); }
.nav-links a:hover { color: var(--accent-light); }
.lang-btn:hover, .lang-btn.active { color: var(--accent-light); }

/* =============================================
   Hero
   ============================================= */
.horeca-hero {
  padding: 180px 0 60px;
  text-align: center;
}

.horeca-hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--accent-light);
  text-shadow: var(--glow-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.horeca-hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.horeca-hero .subtitle {
  font-size: 0.95rem;
  color: var(--text-sub);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* --- Platform Badges Row --- */
.platform-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(80, 149, 204, 0.08);
  border: 1px solid rgba(80, 149, 204, 0.2);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.platform-pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --- Hero CTA Buttons --- */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  border-color: var(--accent-light);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
  color: var(--text);
  text-shadow: none;
}

.hero-btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero-btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: var(--glow-accent-strong);
  color: #fff;
}

.hero-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-btn svg.stroke-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   Stats Banner
   ============================================= */
.horeca-stats {
  padding: 40px 0 60px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-block {
  text-align: center;
  padding: 24px 16px;
  background: rgba(80, 149, 204, 0.04);
  border: 1px solid rgba(80, 149, 204, 0.1);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-block:hover {
  border-color: rgba(80, 149, 204, 0.3);
  box-shadow: 0 0 20px rgba(80, 149, 204, 0.06);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   Browser Mockup — Web Dashboard
   ============================================= */
.horeca-browser-showcase {
  padding: 0 0 80px;
  overflow: hidden;
}

.browser-frame {
  max-width: 900px;
  margin: 0 auto;
  background: #1A1A1E;
  border: 1px solid rgba(80, 149, 204, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(80, 149, 204, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.browser-frame:hover {
  border-color: rgba(80, 149, 204, 0.3);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(80, 149, 204, 0.1);
}

.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #12121A;
  border-bottom: 1px solid rgba(80, 149, 204, 0.08);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.browser-url {
  flex: 1;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.7rem;
  color: var(--text-sub);
  font-family: var(--font-body);
}

.browser-content {
  padding: 24px;
  background: #0C0C10;
  min-height: 400px;
}

/* --- Dashboard Mock UI --- */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.04em;
}

.dash-nav {
  display: flex;
  gap: 16px;
}

.dash-nav-item {
  font-size: 0.65rem;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.dash-nav-item--active {
  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat-card {
  background: rgba(80, 149, 204, 0.05);
  border: 1px solid rgba(80, 149, 204, 0.1);
  border-radius: 8px;
  padding: 14px;
}

.dash-stat-label {
  font-size: 0.6rem;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.dash-stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent-light);
  display: block;
}

.dash-stat-delta {
  font-size: 0.6rem;
  color: #2ecc71;
  margin-top: 4px;
  display: block;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

/* Tasks panel */
.dash-tasks {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.dash-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dash-panel-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.dash-panel-badge {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.06em;
}

.dash-panel-badge--ok {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.dash-panel-badge--warning {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.dash-task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
}

.dash-task-row:last-child { border-bottom: none; }

.dash-task-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(80, 149, 204, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-task-check--done {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-size: 9px;
}

.dash-task-name {
  flex: 1;
  color: var(--text-sub);
}

.dash-task-name--done {
  text-decoration: line-through;
  opacity: 0.5;
}

.dash-task-time {
  font-size: 0.6rem;
  color: var(--text-sub);
  opacity: 0.6;
}

/* Activity panel */
.dash-activity {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.dash-event-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dash-event-row:last-child { border-bottom: none; }

.dash-event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.dash-event-dot--blue { background: var(--accent-light); }
.dash-event-dot--green { background: #2ecc71; }
.dash-event-dot--orange { background: #e67e22; }

.dash-event-text {
  font-size: 0.7rem;
  color: var(--text-sub);
  line-height: 1.4;
}

.dash-event-time {
  display: block;
  font-size: 0.6rem;
  color: var(--text-sub);
  opacity: 0.5;
  margin-top: 2px;
}

/* =============================================
   Phone Mockup — Mobile Apps
   ============================================= */
.horeca-mobile-showcase {
  padding: 80px 0;
}

.horeca-mobile-showcase .section-title {
  margin-bottom: 12px;
}

.horeca-mobile-showcase .section-subtitle {
  color: var(--text-sub);
  font-size: 0.95rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 48px;
}

.phone-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  perspective: 1200px;
}

.phone-mockup { flex-shrink: 0; }

.phone-mockup:nth-child(1) {
  transform: rotateY(5deg) scale(0.92);
}

.phone-mockup:nth-child(2) {
  transform: scale(1.02);
  z-index: 2;
}

.phone-mockup:nth-child(3) {
  transform: rotateY(-5deg) scale(0.92);
}

.phone-frame {
  width: 260px;
  height: 540px;
  background: #1A1A1E;
  border-radius: 36px;
  border: 3px solid #2A2A30;
  padding: 10px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(80, 149, 204, 0.05);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #1A1A1E;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: calc(100% - 30px);
  background: #0C0C10;
  border-radius: 26px;
  overflow: hidden;
  padding: 16px 14px;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 11px;
  color: #fff;
  line-height: 1.4;
}

/* --- Mock App UI --- */
.mock-app-header {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  color: var(--accent-light);
}

.mock-app-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.mock-app-tab {
  flex: 1;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
  border-radius: 6px;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.03);
}

.mock-app-tab--active {
  color: #fff;
  background: var(--accent);
}

/* HACCP task list mock */
.mock-task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #1A1A1E;
  border: 1px solid #2A2A30;
  border-radius: 10px;
  margin-bottom: 8px;
}

.mock-task-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(80, 149, 204, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-task-check--done {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-size: 10px;
}

.mock-task-info {
  flex: 1;
}

.mock-task-name {
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.mock-task-meta {
  font-size: 9px;
  color: var(--text-sub);
  margin-top: 2px;
  display: block;
}

.mock-task-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}

.mock-task-badge--ok {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.15);
}

.mock-task-badge--alert {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.15);
}

.mock-task-badge--pending {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.15);
}

/* Schedule mock */
.mock-schedule-day {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-shift {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #1A1A1E;
  border: 1px solid #2A2A30;
  border-radius: 8px;
  margin-bottom: 6px;
}

.mock-shift-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(80, 149, 204, 0.3), rgba(80, 149, 204, 0.1));
  border: 1px solid rgba(80, 149, 204, 0.2);
  flex-shrink: 0;
}

.mock-shift-info {
  flex: 1;
}

.mock-shift-name {
  display: block;
  width: 60px;
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 3px;
}

.mock-shift-role {
  font-size: 9px;
  color: var(--text-sub);
}

.mock-shift-time {
  font-size: 10px;
  color: var(--text-sub);
  font-weight: 500;
}

/* Recipe mock */
.mock-recipe-card {
  background: #1A1A1E;
  border: 1px solid #2A2A30;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.mock-recipe-img {
  height: 60px;
  background: linear-gradient(135deg, rgba(80, 149, 204, 0.15), rgba(80, 149, 204, 0.05));
  position: relative;
}

.mock-recipe-img-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  opacity: 0.4;
}

.mock-recipe-body {
  padding: 10px 12px;
}

.mock-recipe-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mock-recipe-allergens {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.mock-allergen {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(80, 149, 204, 0.12);
  border: 1px solid rgba(80, 149, 204, 0.2);
  font-size: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-weight: 700;
}

.mock-recipe-meta {
  font-size: 9px;
  color: var(--text-sub);
}

/* Phone Float Animations */
@keyframes phoneFloat1 {
  0%, 100% { transform: rotateY(5deg) scale(0.92) translateY(0); }
  50% { transform: rotateY(5deg) scale(0.92) translateY(-8px); }
}

@keyframes phoneFloat2 {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.02) translateY(-8px); }
}

@keyframes phoneFloat3 {
  0%, 100% { transform: rotateY(-5deg) scale(0.92) translateY(0); }
  50% { transform: rotateY(-5deg) scale(0.92) translateY(-8px); }
}

.phone-mockup:nth-child(1) {
  animation: phoneFloat1 4s ease-in-out infinite;
}

.phone-mockup:nth-child(2) {
  animation: phoneFloat2 4s ease-in-out infinite;
  animation-delay: 0.6s;
}

.phone-mockup:nth-child(3) {
  animation: phoneFloat3 4s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* =============================================
   About / Case Study
   ============================================= */
.horeca-about {
  padding: 80px 0 40px;
}

.about-text {
  max-width: 740px;
  margin: 24px auto 0;
  text-align: center;
}

.about-text p {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =============================================
   How It Works
   ============================================= */
.horeca-how {
  padding: 60px 0 80px;
}

.horeca-how .section-title { margin-bottom: 48px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.how-step:hover {
  border-color: var(--accent-light);
  box-shadow: var(--glow-accent);
  transform: translateY(-3px);
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(80, 149, 204, 0.1);
  border: 1px solid rgba(80, 149, 204, 0.25);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.how-step p {
  color: var(--text-sub);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* =============================================
   Features Section (Expanded)
   ============================================= */
.horeca-features {
  padding: 80px 0;
}

.horeca-features .section-title { margin-bottom: 40px; }

.horeca-features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.horeca-features .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.horeca-features .feature-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--glow-accent);
  transform: translateY(-3px);
}

.horeca-features .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.horeca-features .feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.horeca-features .feature-card p {
  color: var(--text-sub);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* =============================================
   Pricing Section
   ============================================= */
.horeca-pricing {
  padding: 80px 0;
}

.horeca-pricing .section-title { margin-bottom: 12px; }

.horeca-pricing .section-subtitle {
  color: var(--text-sub);
  font-size: 0.95rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(80, 149, 204, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(80, 149, 204, 0.06);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 0 30px rgba(80, 149, 204, 0.1);
}

.pricing-card--featured::before {
  content: 'Populair';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 14px;
  border-radius: 10px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price-sub {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-bottom: 20px;
  display: block;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  font-size: 0.8rem;
  color: var(--text-sub);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '\2713';
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.7rem;
  color: var(--text-sub);
  opacity: 0.7;
  margin-top: auto;
}

/* =============================================
   CTA Section
   ============================================= */
.horeca-cta {
  padding: 80px 0;
  text-align: center;
}

.horeca-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent-light);
  text-shadow: var(--glow-accent);
  margin-bottom: 12px;
}

.horeca-cta p {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.store-badge:hover {
  border-color: var(--accent-light);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
  color: var(--text);
  text-shadow: none;
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--text);
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}

.store-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* --- Visit Website Badge --- */
.horeca-badge { display: flex; justify-content: center; }

.visit-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.visit-badge:hover {
  border-color: var(--accent-light);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
  color: var(--text);
  text-shadow: none;
}

.visit-badge svg { width: 24px; height: 24px; color: var(--text); flex-shrink: 0; }
.visit-badge small { display: block; font-size: 0.65rem; color: var(--text-sub); }
.visit-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =============================================
   Responsive
   ============================================= */
@media (min-width: 768px) {
  .horeca-features .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .phone-mockup:nth-child(1),
  .phone-mockup:nth-child(3) {
    display: none;
  }

  .phone-mockup:nth-child(2) {
    transform: none;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (min-width: 1025px) {
  .phone-showcase {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .horeca-hero {
    padding: 140px 0 50px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-nav {
    display: none;
  }

  .browser-content {
    padding: 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}
